diff --git a/.circleci/config.yml b/.circleci/config.yml
index 5f4e5bf9f0c..d335ca18c2e 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -3,13 +3,13 @@ version: 2.1
executors:
musicbrainz-tests:
docker:
- - image: metabrainz/musicbrainz-tests:v-2023-08
+ - image: metabrainz/musicbrainz-tests:v-2023-11
user: root
working_directory: /home/musicbrainz/musicbrainz-server
- musicbrainz-tests-node-v16:
+ musicbrainz-tests-perl-5-dot-30:
docker:
- - image: metabrainz/musicbrainz-tests:v-2022-10
+ - image: metabrainz/musicbrainz-tests:v-2023-11-perl5.30
user: root
working_directory: /home/musicbrainz/musicbrainz-server
@@ -39,6 +39,7 @@ jobs:
- v2-node-
- run: |
chown -R musicbrainz:musicbrainz .
+ corepack enable
sudo -E -H -u musicbrainz yarn
- save_cache:
key: v2-node-{{ checksum "yarn.lock" }}
@@ -46,55 +47,13 @@ jobs:
- "node_modules"
- run: |
- sudo -E -H -u musicbrainz mkdir -p junit_output
- sudo -E -H -u musicbrainz cp docker/musicbrainz-tests/DBDefs.pm lib/
- rm /etc/service/{postgresql,redis}/down && sv start postgresql redis
- sudo -E -H -u musicbrainz carton exec -- ./script/create_test_db.sh
- sudo -E -H -u musicbrainz make -C po all_quiet deploy
- MUSICBRAINZ_RUNNING_TESTS=1 NODE_ENV=test WEBPACK_MODE=development NO_PROGRESS=1 sudo -E -H -u musicbrainz carton exec -- \
- ./script/compile_resources.sh client server web-tests
- sudo -E -H -u musicbrainz ./node_modules/.bin/flow --quiet
- sudo -E -H -u musicbrainz ./node_modules/.bin/eslint --max-warnings 0 .
- rm /etc/service/chrome/down && sv start chrome
- sudo -E -H -u musicbrainz carton exec -- node \
- t/web.js \
- | tee >(./node_modules/.bin/tap-junit > ./junit_output/js_web.xml) \
- | ./node_modules/.bin/tap-difflet
- sv kill chrome
- ./docker/musicbrainz-tests/add_mbtest_alias.sh
- sudo -u postgres createdb -O musicbrainz -T musicbrainz_test -U postgres musicbrainz_test_json_dump
- sudo -u postgres createdb -O musicbrainz -T musicbrainz_test -U postgres musicbrainz_test_full_export
- sudo -u postgres createdb -O musicbrainz -T musicbrainz_test -U postgres musicbrainz_test_sitemaps
- rm /etc/service/{template-renderer,vnu,website}/down && sv start template-renderer vnu website
- export MMD_SCHEMA_ROOT=/home/musicbrainz/mb-solr/mmd-schema
- export JUNIT_OUTPUT_FILE=junit_output/perl_and_pgtap.xml
- sudo -E -H -u musicbrainz carton exec -- prove \
- --pgtap-option dbname=musicbrainz_test \
- --pgtap-option host=localhost \
- --pgtap-option port=5432 \
- --pgtap-option username=musicbrainz \
- --source pgTAP \
- --source Perl \
- -I lib \
- t/author/* \
- t/critic.t \
- t/hydration_i18n.t \
- t/pgtap/* \
- t/pgtap/unused-tags/* \
- t/script/MergeDuplicateArtistCredits.t \
- t/script/BuildSitemaps.t \
- t/script/DumpJSON.t \
- t/script/ExportAllTables.t \
- t/script/dbmirror2.t \
- t/tests.t \
- --harness=TAP::Harness::JUnit \
- -v
+ ./docker/musicbrainz-tests/run_circleci_tests.sh
- store_test_results:
path: ./junit_output
- js-perl-and-pgtap-node-v16:
- executor: musicbrainz-tests-node-v16
+ js-perl-and-pgtap-perl-5-dot-30:
+ executor: musicbrainz-tests-perl-5-dot-30
steps:
- restore_cache:
keys:
@@ -114,60 +73,19 @@ jobs:
- restore_cache:
keys:
- - v2-node-v16-{{ checksum "yarn.lock" }}
- - v2-node-v16-
+ - v2-perl-5-dot-30-{{ checksum "yarn.lock" }}
+ - v2-perl-5-dot-30-
- run: |
chown -R musicbrainz:musicbrainz .
+ corepack enable
sudo -E -H -u musicbrainz yarn
- save_cache:
- key: v2-node-v16-{{ checksum "yarn.lock" }}
+ key: v2-perl-5-dot-30-{{ checksum "yarn.lock" }}
paths:
- "node_modules"
- run: |
- sudo -E -H -u musicbrainz mkdir -p junit_output
- sudo -E -H -u musicbrainz cp docker/musicbrainz-tests/DBDefs.pm lib/
- rm /etc/service/{postgresql,redis}/down && sv start postgresql redis
- sudo -E -H -u musicbrainz carton exec -- ./script/create_test_db.sh
- sudo -E -H -u musicbrainz make -C po all_quiet deploy
- MUSICBRAINZ_RUNNING_TESTS=1 NODE_ENV=test WEBPACK_MODE=development NO_PROGRESS=1 sudo -E -H -u musicbrainz carton exec -- \
- ./script/compile_resources.sh client server web-tests
- sudo -E -H -u musicbrainz ./node_modules/.bin/flow --quiet
- sudo -E -H -u musicbrainz ./node_modules/.bin/eslint --max-warnings 0 .
- rm /etc/service/chrome/down && sv start chrome
- sudo -E -H -u musicbrainz carton exec -- node \
- t/web.js \
- | tee >(./node_modules/.bin/tap-junit > ./junit_output/js_web.xml) \
- | ./node_modules/.bin/tap-difflet
- sv kill chrome
- ./docker/musicbrainz-tests/add_mbtest_alias.sh
- sudo -u postgres createdb -O musicbrainz -T musicbrainz_test -U postgres musicbrainz_test_json_dump
- sudo -u postgres createdb -O musicbrainz -T musicbrainz_test -U postgres musicbrainz_test_full_export
- sudo -u postgres createdb -O musicbrainz -T musicbrainz_test -U postgres musicbrainz_test_sitemaps
- rm /etc/service/{template-renderer,vnu,website}/down && sv start template-renderer vnu website
- export MMD_SCHEMA_ROOT=/home/musicbrainz/mb-solr/mmd-schema
- export JUNIT_OUTPUT_FILE=junit_output/perl_and_pgtap.xml
- sudo -E -H -u musicbrainz carton exec -- prove \
- --pgtap-option dbname=musicbrainz_test \
- --pgtap-option host=localhost \
- --pgtap-option port=5432 \
- --pgtap-option username=musicbrainz \
- --source pgTAP \
- --source Perl \
- -I lib \
- t/author/* \
- t/critic.t \
- t/hydration_i18n.t \
- t/pgtap/* \
- t/pgtap/unused-tags/* \
- t/script/MergeDuplicateArtistCredits.t \
- t/script/BuildSitemaps.t \
- t/script/DumpJSON.t \
- t/script/ExportAllTables.t \
- t/script/dbmirror2.t \
- t/tests.t \
- --harness=TAP::Harness::JUnit \
- -v
+ ./docker/musicbrainz-tests/run_circleci_tests.sh
- store_test_results:
path: ./junit_output
@@ -177,4 +95,4 @@ workflows:
build-and-test:
jobs:
- js-perl-and-pgtap
- - js-perl-and-pgtap-node-v16
+ - js-perl-and-pgtap-perl-5-dot-30
diff --git a/.eslintrc.unfixed.yaml b/.eslintrc.unfixed.yaml
index d4af316639f..53cd2e69903 100644
--- a/.eslintrc.unfixed.yaml
+++ b/.eslintrc.unfixed.yaml
@@ -41,5 +41,3 @@ rules:
react/no-multi-comp: [warn, {ignoreStateless: true}]
react/no-render-return-value: warn
react/jsx-no-bind: [warn, {ignoreDOMComponents: true}]
- flowtype/no-types-missing-file-annotation: error
- flowtype/no-weak-types: warn
diff --git a/.eslintrc.yaml b/.eslintrc.yaml
index 659a8adafc9..b426120dd13 100644
--- a/.eslintrc.yaml
+++ b/.eslintrc.yaml
@@ -1,11 +1,11 @@
root: true
-parser: "@babel/eslint-parser"
+parser: "hermes-eslint"
plugins:
- import
- react
- - flowtype
+ - ft-flow
- fb-flow
- react-hooks
- simple-import-sort
@@ -125,7 +125,12 @@ rules:
strict: off
# Variables
- no-undef: error
+ # no-undef is mostly superfluous as it is checked by Flow; enabling it
+ # actually triggers thousands of false positives because hermes-eslint
+ # doesn't track global types (those defined with `declare type`).
+ # Ideally we could keep no-undef enabled for files that aren't Flow-
+ # typed yet, but we don't maintain a separate config for those.
+ no-undef: off
no-use-before-define: off
# Stylistic Issues
@@ -227,7 +232,9 @@ rules:
import/export: error
import/extensions: [error, ignorePackages]
import/first: warn
- import/newline-after-import: [warn, {count: 1}]
+ import/newline-after-import: [warn, {count: 1,
+ exactCount: true,
+ considerComments: true}]
import/no-commonjs: error
import/no-duplicates: warn
import/no-dynamic-require: error
@@ -280,6 +287,7 @@ rules:
react/require-render-return: error
react/self-closing-comp: error
react/sort-comp: off
+ react/sort-default-props: warn
react/sort-prop-types: off
react/style-prop-object: error
react/void-dom-elements-no-children: error
@@ -305,7 +313,6 @@ rules:
react/jsx-one-expression-per-line: [warn, {allow: single-child}]
react/jsx-curly-brace-presence: [error, {props: never, children: ignore}]
react/jsx-pascal-case: error
- react/jsx-sort-default-props: warn
react/jsx-sort-props: warn
react/jsx-tag-spacing: [error, {beforeClosing: never}]
# jsx-uses-react is not implied since
@@ -320,31 +327,29 @@ rules:
logical: ignore,
prop: ignore}]
- ##########################
- # eslint-plugin-flowtype #
- ##########################
+ #########################
+ # eslint-plugin-ft-flow #
+ #########################
- flowtype/boolean-style: [warn, boolean]
- flowtype/define-flow-type: warn
- flowtype/delimiter-dangle: [warn, always-multiline]
- flowtype/generic-spacing: off
- flowtype/no-dupe-keys: error
- flowtype/no-flow-fix-me-comments: off
- flowtype/no-mutable-array: off
- flowtype/no-primitive-constructor-types: error
- flowtype/object-type-delimiter: [warn, comma]
- flowtype/require-exact-type: off
- flowtype/require-indexer-name: [warn, always]
- flowtype/require-parameter-type: off
- flowtype/require-return-type: off
- flowtype/require-valid-file-annotation: off
- flowtype/semi: [warn, always]
- flowtype/sort-keys: [warn, asc]
- flowtype/space-after-type-colon: [warn, always, {allowLineBreak: true}]
- flowtype/space-before-generic-bracket: [warn, never]
- flowtype/space-before-type-colon: [warn, never]
- flowtype/union-intersection-spacing: [warn, always]
- flowtype/use-flow-type: warn
+ ft-flow/boolean-style: [warn, boolean]
+ ft-flow/delimiter-dangle: [warn, always-multiline]
+ ft-flow/generic-spacing: off
+ ft-flow/no-dupe-keys: error
+ ft-flow/no-flow-fix-me-comments: off
+ ft-flow/no-mutable-array: off
+ ft-flow/no-primitive-constructor-types: error
+ ft-flow/object-type-delimiter: [warn, comma]
+ ft-flow/require-exact-type: off
+ ft-flow/require-indexer-name: [warn, always]
+ ft-flow/require-parameter-type: off
+ ft-flow/require-return-type: off
+ ft-flow/require-valid-file-annotation: off
+ ft-flow/semi: [warn, always]
+ ft-flow/sort-keys: [warn, asc]
+ ft-flow/space-after-type-colon: [warn, always, {allowLineBreak: true}]
+ ft-flow/space-before-generic-bracket: [warn, never]
+ ft-flow/space-before-type-colon: [warn, never]
+ ft-flow/union-intersection-spacing: [warn, always]
#########################
# eslint-plugin-fb-flow #
diff --git a/.flowconfig b/.flowconfig
index 6ad46ffaf80..d709be0cb4c 100644
--- a/.flowconfig
+++ b/.flowconfig
@@ -3,7 +3,7 @@
A compilation, for the purposes of the MusicBrainz database, covers the "
+"following types of releases: The MusicBrainz project does not generally consider the following to be "
+"compilations: Compilation should be used in addition to, not instead of, other types: "
+"for example, a various artists soundtrack using pre-released music should be "
+"marked as both a soundtrack and a compilation. A single has different definitions depending on the market it is released "
+"for. There are other variations of the single called a \"split single\" where "
+"songs by two different artists are released on the one disc, typically vinyl."
+" Yra ir kitų singlo variantų, vadinamų „padalytu singlu“, kai dviejų "
@@ -262,7 +279,8 @@ msgid ""
"A (usually green) space kept available for recreation in an otherwise built "
"and populated area."
msgstr ""
-"Poilsiui skirta (paprastai žalia) vieta užstatytoje ir apgyvendintoje zonoje."
+"(Paprastai žalia) erdvė, skirta poilsiui, esanti užstatytoje ir "
+"apgyvendintoje teritorijoje."
#: DB:medium_format/description:129
msgctxt "medium_format"
@@ -271,6 +289,9 @@ msgid ""
"often in the first track, that will have to be skipped in many audio "
"players. Relatively common in old video game CDs."
msgstr ""
+"CD, kuriame yra ir garsas, ir duomenys tame pačiame seanse. Duomenys dažnai "
+"būna pirmajame takelyje, kurį daugelyje garso grotuvų tenka praleisti. "
+"Santykinai dažnai sutinkamas senuose vaizdo žaidimų CD."
#: DB:medium_format/description:42
msgctxt "medium_format"
@@ -279,6 +300,9 @@ msgid ""
"they are properly separated, audio players will not try to play the data "
"session and it won't be part of the disc ID for the CD."
msgstr ""
+"CD, kuriame yra dvi seansai – viena su garsu, kita su duomenimis. Kadangi "
+"jos tinkamai atskirtos, garso grotuvai nebandys groti duomenų sesijos ir ji "
+"nebus įtraukta į CD disko ID."
#: DB:release_group_secondary_type/description:8
msgctxt "release_group_secondary_type"
@@ -289,6 +313,11 @@ msgid ""
"manner, and the DJ who does this modification is usually (although not "
"always) credited in a fairly prominent way."
msgstr ""
+"DJ miksas – kelių įrašų, grojantys vienas po kito, seka, kiekvienas "
+"modifikuotas taip, kad susilietų į vientisą muzikos srautą. DJ mikso "
+"leidinys reikalauja, kad įrašai būtų kaip nors modifikuoti, o šį "
+"modifikavimą atlikęs (-usi) DJ paprastai (nors ne visada) būna įrašytas gana "
+"ryškiai."
#: DB:work_attribute_type_allowed_value/value:794
msgctxt "work_attribute_type_allowed_value"
@@ -298,7 +327,7 @@ msgstr "Dorianas"
#: DB:work_attribute_type_allowed_value/value:806
msgctxt "work_attribute_type_allowed_value"
msgid "A Mixolydian"
-msgstr ""
+msgstr "Miksolydiškasis"
#: DB:work_type/description:2
msgctxt "work_type"
@@ -306,11 +335,12 @@ msgid ""
"A ballet is music composed to be used, together with a choreography, for a "
"ballet dance production."
msgstr ""
+"Baletas – muzika, sukurta kartu su choreografija baleto šokio spektakliui."
#: DB:release_packaging/description:19
msgctxt "release_packaging"
msgid "A box usually containing multiple discs as part of a boxed set."
-msgstr ""
+msgstr "Dėžutė, kurioje paprastai būna keli diskai kaip dėžutės rinkinio dalis."
#: DB:work_type/description:3
msgctxt "work_type"
@@ -318,6 +348,9 @@ msgid ""
"A cantata is a vocal (often choral) composition with an instrumental "
"(usually orchestral) accompaniment, typically in several movements."
msgstr ""
+"Kantata – vokalinis (dažnai chorinis) kompozicija su instrumentiniu ("
+"dažniausiai orkestriniu) akompanimentu, paprastai susidedantis iš kelių "
+"dalių."
#: DB:medium_format/description:46
msgctxt "medium_format"
@@ -327,6 +360,10 @@ msgid ""
"with physical releases but sometimes sold as a standalone item (especially "
"in Asia)."
msgstr ""
+"Kortelė (arba kita panaši fizinė priemonė), kurioje tiesiogiai nėra muzikos, "
+"bet yra kodas, leidžiantis ją atsisiųsti skaitmeniniu būdu. Dažnai pridedama "
+"prie fizinių leidinių, bet kartais parduodama kaip atskiras daiktas (ypač "
+"Azijoje)."
#: DB:label_type/description:10
msgctxt "label_type"
@@ -334,12 +371,16 @@ msgid ""
"A company that manufactures physical releases (such as pressing CDs or vinyl "
"records)."
msgstr ""
+"Kompanija, kuri gamina fizinius leidinius (pavyzdžiui, presuoja CD diskus "
+"arba vinilines plokšteles)."
#: DB:work_type/description:4
msgctxt "work_type"
msgid ""
"A concerto is a musical work for soloist(s) accompanied by an orchestra."
msgstr ""
+"Koncerto – tai muzikinis kūrinys solistui (-ei, -ams), kuriam (-iems) "
+"akompanuoja orkestras."
#: DB:event_type/description:4
msgctxt "event_type"
@@ -348,6 +389,9 @@ msgid ""
"orientated around music performances, but can include them as side "
"activities."
msgstr ""
+"Konvencija, ekspozicija ar prekybos mugė – renginys, kuris paprastai nėra "
+"orientuotas į muzikos pasirodymus, tačiau gali apimti juos kaip papildomą "
+"veiklą."
#: DB:release_status/description:2
msgctxt "release_status"
@@ -366,6 +410,9 @@ msgid ""
"A grouping of multiple musicians who perform together (in some cases, some "
"or all of the members might differ in different performances or recordings)."
msgstr ""
+"Grupė, susidedanti iš kelių muzikantų, kurie muzikuoja kartu (kai kuriais "
+"atvejais, kai kurie ar visi nariai gali skirtis skirtinguose pasirodymuose "
+"arba įrašuose)."
#: DB:instrument_type/description:7
msgctxt "instrument_type"
@@ -373,11 +420,14 @@ msgid ""
"A grouping of related but different instruments, like the different violin-"
"like instruments"
msgstr ""
+"Susijusių, bet skirtingų instrumentų grupė, kaip skirtingi į smuiką panašūs "
+"instrumentai"
#: DB:label_type/description:5
msgctxt "label_type"
msgid "A label that primarily puts out unsanctioned (bootleg) releases."
msgstr ""
+"Leidykla, kuri daugiausia išleidžia nesankcionuotus (neoficialus) leidinius."
#: DB:release_packaging/description:55
msgctxt "release_packaging"
@@ -386,12 +436,13 @@ msgid ""
"America, so that they would fit existing vinyl racks in stores."
msgstr ""
"Didelė kartoninė dėžė, iki 1990-ųjų vidurio dažnai naudota Šiaurės Amerikoje "
-"CD pardavinėti, kad jie tilptų į parduotuvėse esančias vinilų lentynas."
+"CD diskus pardavinėti, kad jie tilptų į parduotuvėse esančias vinilų "
+"lentynas."
#: DB:place_type/description:43
msgctxt "place_type"
msgid "A large, permanent outdoor stage, typically with a fixed seating area."
-msgstr ""
+msgstr "Didelė nuolatinė lauko scena, paprastai su stacionaria sėdimų vieta."
#: DB:work_attribute_type_allowed_value/value:28
msgctxt "work_attribute_type_allowed_value"
@@ -449,9 +500,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -488,6 +539,9 @@ msgid ""
"Religious buildings often host concerts and serve as recording locations, "
"especially for classical music."
msgstr ""
+"Vieta, kurioje atliekama pagrindinė garbinimo ar religijos studijų funkcija. "
+"Religiniuose pastatuose dažnai rengiami koncertai ir naudojamos kaip įrašų "
+"vietos, ypač klasikinės muzikos."
#: DB:place_type/description:4
msgctxt "place_type"
@@ -587,31 +641,33 @@ msgid ""
"A school, university or other similar educational institution (especially, "
"but not only, one where music is taught)"
msgstr ""
+"Mokykla, universitetas ar kita panaši švietimo įstaiga (ypač, bet ne tik ta, "
+"kurioje mokoma muzikos)"
#: DB:series_type/description:14
msgctxt "series_type"
msgid "A series of artists honoured by the same award."
-msgstr ""
+msgstr "Serija atlikėjų, pagerbtų tuo pačiu apdovanojimu."
#: DB:series_type/description:13
msgctxt "series_type"
msgid "A series of artists."
-msgstr ""
+msgstr "Atlikėjų serija."
#: DB:series_type/description:15
msgctxt "series_type"
msgid "A series of award ceremonies, usually one per year."
-msgstr ""
+msgstr "Apdovanojimų ceremonijų serija, paprastai viena per metus."
#: DB:series_type/description:6
msgctxt "series_type"
msgid "A series of events."
-msgstr ""
+msgstr "Renginių serija."
#: DB:series_type/description:9
msgctxt "series_type"
msgid "A series of performances of the same show at the same venue."
-msgstr ""
+msgstr "Pasirodymų serija to paties šou toje pačioje vietoje."
#: DB:series_type/description:48
msgctxt "series_type"
@@ -708,6 +764,10 @@ msgid ""
"as soundtracks because the musical properties of the CDs are more "
"interesting to MusicBrainz than their data properties."
msgstr ""
+"Garso takelis – filmo, televizijos serialo, scenos šou, vaizdo žaidimo ar "
+"kitos medijos muzikinė partitūra. Vaizdo žaidimų CD su garso takeliais "
+"turėtų būti klasifikuojami kaip garso takeliai, nes MusicBrainz labiau "
+"domina muzikinės CD ypatybės nei jų duomenų ypatybės."
#: DB:instrument_type/description:6
msgctxt "instrument_type"
@@ -787,6 +847,9 @@ msgid ""
"and sung scenes, the latter incorporating operatic and popular song, as well "
"as dance."
msgstr ""
+"Zarzuela – ispanų lyrinis dramos kūrinys, kuriame kaitaliojamos kalbamos ir "
+"dainuojamos scenos, į pastarąsias įtraukiamos operinės ir populiarios "
+"dainos, taip pat šokiai."
#: DB:work_attribute_type_allowed_value/value:26
msgctxt "work_attribute_type_allowed_value"
@@ -811,42 +874,42 @@ msgstr ""
#: DB:work_attribute_type/name:57
msgctxt "work_attribute_type"
msgid "AACIMH ID"
-msgstr ""
+msgstr "AACIMH ID"
#: DB:work_attribute_type/name:44
msgctxt "work_attribute_type"
msgid "ACAM ID"
-msgstr ""
+msgstr "ACAM ID"
#: DB:work_attribute_type/name:47
msgctxt "work_attribute_type"
msgid "ACDAM ID"
-msgstr ""
+msgstr "ACDAM ID"
#: DB:work_attribute_type/name:58
msgctxt "work_attribute_type"
msgid "AEI ID"
-msgstr ""
+msgstr "AEI ID"
#: DB:work_attribute_type/name:43
msgctxt "work_attribute_type"
msgid "AGADU ID"
-msgstr ""
+msgstr "AGADU ID"
#: DB:work_attribute_type/name:63
msgctxt "work_attribute_type"
msgid "AKKA/LAA ID"
-msgstr ""
+msgstr "AKKA/LAA ID"
#: DB:work_attribute_type/name:23
msgctxt "work_attribute_type"
msgid "AKM ID"
-msgstr ""
+msgstr "AKM ID"
#: DB:work_attribute_type/name:38
msgctxt "work_attribute_type"
msgid "AMRA ID"
-msgstr ""
+msgstr "AMRA ID"
#: DB:work_attribute_type/name:46
msgctxt "work_attribute_type"
@@ -856,22 +919,22 @@ msgstr "APA ID"
#: DB:work_attribute_type/name:41
msgctxt "work_attribute_type"
msgid "APDAYC ID"
-msgstr ""
+msgstr "APDAYC ID"
#: DB:work_attribute_type/name:13
msgctxt "work_attribute_type"
msgid "APRA ID"
-msgstr ""
+msgstr "APRA ID"
#: DB:work_attribute_type/name:48
msgctxt "work_attribute_type"
msgid "ARTISJUS ID"
-msgstr ""
+msgstr "ARTISJUS ID"
#: DB:work_attribute_type/name:6
msgctxt "work_attribute_type"
msgid "ASCAP ID"
-msgstr ""
+msgstr "ASCAP ID"
#: DB:work_attribute_type_allowed_value/value:299
msgctxt "work_attribute_type_allowed_value"
@@ -918,6 +981,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
@@ -1054,6 +1122,9 @@ msgid ""
"accompaniment. They are most common inside operas, but also appear in "
"cantatas, oratorios and even on their own (concert arias)."
msgstr ""
+"Arija – tai savarankiškas kūrinys vienam balsui, paprastai su orkestro "
+"akompanimentu. Dažniausiai jos būna operose, tačiau taip pat skamba "
+"kantatose, oratorijose ir netgi atskirai (koncertinės arijos)."
#: DB:work_type/description:25
msgctxt "work_type"
@@ -1061,6 +1132,8 @@ msgid ""
"An audio drama is a dramatized, purely acoustic performance, broadcast on "
"radio or published on an audio medium (tape, CD, etc.)."
msgstr ""
+"Garso drama – dramatizuotas grynai akustinis spektaklis, transliuotas per "
+"radiją arba išleistas garso laikmenoje (kasetėje, CD ir pan.)."
#: DB:release_group_secondary_type/description:11
msgctxt "release_group_secondary_type"
@@ -1069,11 +1142,14 @@ msgid ""
"always, meant for radio). Unlike audiobooks, it usually has multiple "
"performers rather than a main narrator."
msgstr ""
+"Garso drama – tai tik garsinis pjesės atlikimas (dažnai, bet ne visada, "
+"skirtas radijui). Skirtingai nei garso knygose, paprastai ją atlieka keli "
+"atlikėjai, o ne pagrindinis pasakotojas (-a)."
#: DB:release_group_secondary_type/description:5
msgctxt "release_group_secondary_type"
msgid "An audiobook is a book read by a narrator without music."
-msgstr ""
+msgstr "Garso knyga – knyga, kurią skaito pasakotojas (-a) be muzikos."
#: DB:event_type/description:7
msgctxt "event_type"
@@ -1082,6 +1158,9 @@ msgid ""
"but often includes musical performances in between the awarding of said "
"prizes, especially for musical awards."
msgstr ""
+"Apdovanojimų ceremonija – tai renginys, kuriame daugiausia dėmesio skiriama "
+"apdovanojimams įteikti, tačiau dažnai tarp apdovanojimų įteikimo vyksta "
+"muzikiniai pasirodymai, ypač muzikinių apdovanojimai."
#: DB:release_group_primary_type/description:12
msgctxt "release_group_primary_type"
@@ -1089,6 +1168,8 @@ msgid ""
"An episodic release that was originally broadcast via radio, television, or "
"the Internet, including podcasts."
msgstr ""
+"Epizodinis leidinys, kuris iš pradžių buvo transliuojamas per radiją, "
+"televiziją ar internetą, įskaitant tinklalaides."
#: DB:event_type/description:2
msgctxt "event_type"
diff --git a/po/attributes.mr.po b/po/attributes.mr.po
index c226083da3a..bb60c88b654 100644
--- a/po/attributes.mr.po
+++ b/po/attributes.mr.po
@@ -28,6 +28,11 @@ msgid ""
"or solo + keyboard) instrumental works, initially in baroque music."
msgstr ""
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -38,6 +43,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr ""
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -63,6 +73,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr ""
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -374,9 +389,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -829,6 +844,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.nb.po b/po/attributes.nb.po
index f25b2976ed2..ade52e1ebca 100644
--- a/po/attributes.nb.po
+++ b/po/attributes.nb.po
@@ -33,6 +33,11 @@ msgid ""
"or solo + keyboard) instrumental works, initially in baroque music."
msgstr ""
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -43,6 +48,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr "10\" vinyl"
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -68,6 +78,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr ""
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -379,9 +394,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -834,6 +849,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr "Acemtarab"
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.nl.po b/po/attributes.nl.po
index 718c195c43e..832a7cb68f9 100644
--- a/po/attributes.nl.po
+++ b/po/attributes.nl.po
@@ -45,6 +45,11 @@ msgstr ""
"composities (vaak voor een solo-instrument of een solo-instrument samen met "
"piano). De sonate is ontstaan in de barok."
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -55,6 +60,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr "10″-vinyl"
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -80,6 +90,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr "5,25″-floppy"
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -499,9 +514,9 @@ msgstr "Een gelijmd gebonden boek met achterin een hoesje voor een cd."
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
"Een uitvoering van een of meer toneelstukken, musicals, opera’s, balletten "
"of soortgelijke composities met de bijbehorende voorstelling (in "
@@ -1041,6 +1056,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr "Acemtarab"
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.oc.po b/po/attributes.oc.po
index 43489037007..2ebed524d7c 100644
--- a/po/attributes.oc.po
+++ b/po/attributes.oc.po
@@ -30,6 +30,11 @@ msgid ""
"or solo + keyboard) instrumental works, initially in baroque music."
msgstr ""
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -40,6 +45,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr "Vinil 10 po"
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -65,6 +75,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr ""
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -391,9 +406,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -846,6 +861,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.pa.po b/po/attributes.pa.po
index 81891a6fecb..c2779bdeee8 100644
--- a/po/attributes.pa.po
+++ b/po/attributes.pa.po
@@ -28,6 +28,11 @@ msgid ""
"or solo + keyboard) instrumental works, initially in baroque music."
msgstr ""
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -38,6 +43,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr ""
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -63,6 +73,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr ""
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -374,9 +389,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -829,6 +844,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.pl.po b/po/attributes.pl.po
index 2721bc4828c..cb829524406 100644
--- a/po/attributes.pl.po
+++ b/po/attributes.pl.po
@@ -25,9 +25,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
-"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
-"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
+"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
+"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#: DB:work_type/description:9
msgctxt "work_type"
@@ -50,6 +50,11 @@ msgstr ""
"melodyczną (solo lub solo+instrument klawiszowy) w muzyce instrumentalnej, "
"początkowo w muzyce barokowej."
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -60,6 +65,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr "10-calowy winyl"
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -85,6 +95,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr "Dyskietka 5,25 cala"
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -422,9 +437,9 @@ msgstr "Perfekcyjnie oprawiona książka z osłoną na CD na końcu"
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -880,6 +895,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.pot b/po/attributes.pot
index f91e3f5735f..12dfede6a43 100644
--- a/po/attributes.pot
+++ b/po/attributes.pot
@@ -23,6 +23,11 @@ msgid ""
"or solo + keyboard) instrumental works, initially in baroque music."
msgstr ""
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -33,6 +38,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr ""
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -58,6 +68,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr ""
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -824,6 +839,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.pt.po b/po/attributes.pt.po
index b64c71747cb..75527b16d3a 100644
--- a/po/attributes.pt.po
+++ b/po/attributes.pt.po
@@ -1,18 +1,21 @@
#
# Translators:
+# Водка665 A compilation, for the purposes of the MusicBrainz database, covers the "
+"following types of releases: The MusicBrainz project does not generally consider the following to be "
+"compilations: Compilation should be used in addition to, not instead of, other types: "
+"for example, a various artists soundtrack using pre-released music should be "
+"marked as both a soundtrack and a compilation. A single has different definitions depending on the market it is released "
+"for. There are other variations of the single called a \"split single\" where "
+"songs by two different artists are released on the one disc, typically vinyl."
+" 为了MusicBrainz数据库的目的,汇编包括以下类型的发行版: MusicBrainz项目一般不认为以下内容是合辑: 合辑应该是对其他类型的补充,而不是替代:例如,使用预发行音乐的各种艺术家的"
+"原声带应该同时标记为原声带和合辑。
EOF
@@ -308,7 +309,7 @@ sub write_dot_files
foreach my $schema (keys %created_schemas) {
my @schema_tables;
foreach my $table (@diagram_tables_names) {
- if (any { $_ eq $table } @{ $created_schemas{$schema} }) {
+ if (contains_string($created_schemas{$schema}, $table)) {
push @schema_tables, $table;
}
}
diff --git a/entities.mjs b/entities.mjs
index 4ffdaaeb97d..59f26a3ef48 100644
--- a/entities.mjs
+++ b/entities.mjs
@@ -21,10 +21,6 @@ type AutomaticRemovalPropsT = {
...
};
-type $MakeReadOnly =
- & ($col > = {
dispatch: D,
@@ -31,7 +31,7 @@ declare module 'redux' {
declare export type Reducer = (state: S, action: A) => S;
declare export type CombinedReducer = (
- state: ($Shape & {...}) | void,
+ state: (Partial & {...}) | void,
action: A
) => S;
diff --git a/lib/MusicBrainz/Server/Controller/Admin/Attributes.pm b/lib/MusicBrainz/Server/Controller/Admin/Attributes.pm
index 17b61021fcd..5be4cbd7141 100644
--- a/lib/MusicBrainz/Server/Controller/Admin/Attributes.pm
+++ b/lib/MusicBrainz/Server/Controller/Admin/Attributes.pm
@@ -3,12 +3,11 @@ use Moose;
use namespace::autoclean;
use utf8;
+use MusicBrainz::Server::Data::Utils qw( contains_string );
use MusicBrainz::Server::Entity::Util::JSON qw( to_json_array );
use MusicBrainz::Server::Translation qw( l );
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
BEGIN { extends 'MusicBrainz::Server::Controller' };
my @models = qw(
@@ -47,7 +46,7 @@ sub index : Path('/admin/attributes') Args(0) RequireAuth(account_admin) {
sub attribute_base : Chained('/') PathPart('admin/attributes') CaptureArgs(1) RequireAuth(account_admin) {
my ($self, $c, $model) = @_;
- $c->detach('/error_404') unless $model ~~ @models;
+ $c->detach('/error_404') unless contains_string(\@models, $model);
$c->stash->{model} = $model;
}
diff --git a/lib/MusicBrainz/Server/Controller/Collection.pm b/lib/MusicBrainz/Server/Controller/Collection.pm
index 70f2f9d19bf..51cf663d989 100644
--- a/lib/MusicBrainz/Server/Controller/Collection.pm
+++ b/lib/MusicBrainz/Server/Controller/Collection.pm
@@ -74,7 +74,7 @@ sub _do_add_or_remove {
my $entity = $c->model(type_to_model($entity_type))->get_by_id($entity_id);
unless ($entity) {
- $c->stash->{message} = l('“{id}” is not a valid row ID; the entity might have been merged or deleted.', { id => $entity_id });
+ $c->stash->{message} = l('“{id}” is not a valid row ID; the entity might have been merged or removed.', { id => $entity_id });
$c->detach('/error_400');
}
diff --git a/lib/MusicBrainz/Server/Controller/Role/Load.pm b/lib/MusicBrainz/Server/Controller/Role/Load.pm
index ff4b868a158..c9e58f56499 100644
--- a/lib/MusicBrainz/Server/Controller/Role/Load.pm
+++ b/lib/MusicBrainz/Server/Controller/Role/Load.pm
@@ -3,14 +3,12 @@ package MusicBrainz::Server::Controller::Role::Load;
use MooseX::MethodAttributes::Role;
use MooseX::Role::Parameterized;
use namespace::autoclean;
-use MusicBrainz::Server::Data::Utils qw( model_to_type );
+use MusicBrainz::Server::Data::Utils qw( contains_string model_to_type );
use MusicBrainz::Server::Validation qw( is_guid is_positive_integer );
use MusicBrainz::Server::Constants qw( :direction %ENTITIES );
use Readonly;
use aliased 'MusicBrainz::Server::Entity::RelationshipLinkTypeGroup';
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
parameter 'model' => (
isa => 'Str',
required => 1
@@ -74,10 +72,10 @@ role
my $relationships = $params->relationships;
my $loaded = 0;
- if ($action ~~ $relationships->{all}) {
+ if (contains_string($relationships->{all}, $action)) {
$c->model('Relationship')->load($entity);
$loaded = 1;
- } elsif ($action ~~ $relationships->{cardinal}) {
+ } elsif (contains_string($relationships->{cardinal}, $action)) {
$c->model('Relationship')->load_cardinal($entity);
$loaded = 1;
}
diff --git a/lib/MusicBrainz/Server/Controller/Search.pm b/lib/MusicBrainz/Server/Controller/Search.pm
index cbb2293f85f..b88d1fa5179 100644
--- a/lib/MusicBrainz/Server/Controller/Search.pm
+++ b/lib/MusicBrainz/Server/Controller/Search.pm
@@ -10,9 +10,6 @@ use MusicBrainz::Server::Entity::Util::JSON qw( to_json_array );
use MusicBrainz::Server::Form::Search::Query;
use MusicBrainz::Server::Form::Search::Search;
use Scalar::Util qw( looks_like_number );
-use feature 'switch';
-
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
sub search : Path('')
{
@@ -124,79 +121,77 @@ sub direct : Private
my @entities = map { $_->entity } @$results;
- given ($type) {
- when ('artist') {
- $c->model('ArtistType')->load(@entities);
- $c->model('Area')->load(@entities);
- $c->model('Gender')->load(@entities);
- }
- when ('editor') {
- $c->model('Editor')->load_preferences(@entities);
- }
- when ('release_group') {
- $c->model('ReleaseGroupType')->load(@entities);
- $c->model('ReleaseGroup')->load_has_cover_art(@entities);
- }
- when ('release') {
- $c->model('Language')->load(@entities);
- $c->model('Release')->load_related_info(@entities);
- $c->model('Release')->load_meta(@entities);
- $c->model('Script')->load(@entities);
- $c->model('ReleaseStatus')->load(@entities);
- $c->model('ReleaseGroup')->load(@entities);
- $c->model('ReleaseGroupType')->load(map { $_->release_group }
- @entities);
- }
- when ('label') {
- $c->model('LabelType')->load(@entities);
- $c->model('Area')->load(@entities);
- }
- when ('recording') {
- my %recording_releases_map = $c->model('Release')->find_by_recordings(map {
- $_->entity->id
- } @$results);
- my %result_map = map { $_->entity->id => $_ } @$results;
-
- $result_map{$_}->extra($recording_releases_map{$_}) for keys %recording_releases_map;
-
- my @releases = map { $_->{release} } map { @{ $_->extra } } @$results;
- $c->model('ReleaseGroup')->load(@releases);
- $c->model('ReleaseGroupType')->load(map { $_->release_group } @releases);
- $c->model('Medium')->load_for_releases(@releases);
- $c->model('Track')->load_for_mediums(map { $_->all_mediums } @releases);
- $c->model('Recording')->load(
- map { $_->all_tracks } map { $_->all_mediums } @releases);
- $c->model('ISRC')->load_for_recordings(map { $_->entity } @$results);
- }
- when ('work') {
- $c->model('Work')->load_writers(@entities);
- $c->model('Work')->load_recording_artists(@entities);
- $c->model('ISWC')->load_for_works(@entities);
- $c->model('Language')->load_for_works(@entities);
- $c->model('WorkType')->load(@entities);
- }
- when ('area') {
- $c->model('AreaType')->load(@entities);
- $c->model('Area')->load_containment(@entities);
- }
- when ('place') {
- $c->model('PlaceType')->load(@entities);
- $c->model('Area')->load(@entities);
- }
- when ('instrument') {
- $c->model('InstrumentType')->load(@entities);
- }
- when ('series') {
- $c->model('SeriesType')->load(@entities);
- $c->model('SeriesOrderingType')->load(@entities);
- }
- when ('event') {
- $c->model('Event')->load_related_info(@entities);
- $c->model('Event')->load_areas(@entities);
- }
- when ('tag') {
- $c->model('Genre')->load(@entities);
- }
+ if ($type eq 'artist') {
+ $c->model('ArtistType')->load(@entities);
+ $c->model('Area')->load(@entities);
+ $c->model('Gender')->load(@entities);
+ }
+ elsif ($type eq 'editor') {
+ $c->model('Editor')->load_preferences(@entities);
+ }
+ elsif ($type eq 'release_group') {
+ $c->model('ReleaseGroupType')->load(@entities);
+ $c->model('ReleaseGroup')->load_has_cover_art(@entities);
+ }
+ elsif ($type eq 'release') {
+ $c->model('Language')->load(@entities);
+ $c->model('Release')->load_related_info(@entities);
+ $c->model('Release')->load_meta(@entities);
+ $c->model('Script')->load(@entities);
+ $c->model('ReleaseStatus')->load(@entities);
+ $c->model('ReleaseGroup')->load(@entities);
+ $c->model('ReleaseGroupType')->load(map { $_->release_group }
+ @entities);
+ }
+ elsif ($type eq 'label') {
+ $c->model('LabelType')->load(@entities);
+ $c->model('Area')->load(@entities);
+ }
+ elsif ($type eq 'recording') {
+ my %recording_releases_map = $c->model('Release')->find_by_recordings(map {
+ $_->entity->id
+ } @$results);
+ my %result_map = map { $_->entity->id => $_ } @$results;
+
+ $result_map{$_}->extra($recording_releases_map{$_}) for keys %recording_releases_map;
+
+ my @releases = map { $_->{release} } map { @{ $_->extra } } @$results;
+ $c->model('ReleaseGroup')->load(@releases);
+ $c->model('ReleaseGroupType')->load(map { $_->release_group } @releases);
+ $c->model('Medium')->load_for_releases(@releases);
+ $c->model('Track')->load_for_mediums(map { $_->all_mediums } @releases);
+ $c->model('Recording')->load(
+ map { $_->all_tracks } map { $_->all_mediums } @releases);
+ $c->model('ISRC')->load_for_recordings(map { $_->entity } @$results);
+ }
+ elsif ($type eq 'work') {
+ $c->model('Work')->load_writers(@entities);
+ $c->model('Work')->load_recording_artists(@entities);
+ $c->model('ISWC')->load_for_works(@entities);
+ $c->model('Language')->load_for_works(@entities);
+ $c->model('WorkType')->load(@entities);
+ }
+ elsif ($type eq 'area') {
+ $c->model('AreaType')->load(@entities);
+ $c->model('Area')->load_containment(@entities);
+ }
+ elsif ($type eq 'place') {
+ $c->model('PlaceType')->load(@entities);
+ $c->model('Area')->load(@entities);
+ }
+ elsif ($type eq 'instrument') {
+ $c->model('InstrumentType')->load(@entities);
+ }
+ elsif ($type eq 'series') {
+ $c->model('SeriesType')->load(@entities);
+ $c->model('SeriesOrderingType')->load(@entities);
+ }
+ elsif ($type eq 'event') {
+ $c->model('Event')->load_related_info(@entities);
+ $c->model('Event')->load_areas(@entities);
+ }
+ elsif ($type eq 'tag') {
+ $c->model('Genre')->load(@entities);
}
if ($type =~ /(recording|release|release_group)/)
@@ -260,17 +255,14 @@ sub do_external_search {
my $template = 'search/error/';
# Switch on the response code to decide which template to provide
- given ($ret->{code})
- {
- when (404) { $template .= 'NoResults'; }
- when (403) { $template .= 'NoInfo'; };
- when (414) { $template .= 'UriTooLarge'; };
- when (500) { $template .= 'InternalError'; }
- when (400) { $template .= 'Invalid'; }
- when (503) { $template .= 'RateLimited'; }
-
- default { $template .= 'General'; }
- }
+ my $code = $ret->{code};
+ if ($code == 404) { $template .= 'NoResults'; }
+ elsif ($code == 403) { $template .= 'NoInfo'; }
+ elsif ($code == 414) { $template .= 'UriTooLarge'; }
+ elsif ($code == 500) { $template .= 'InternalError'; }
+ elsif ($code == 400) { $template .= 'Invalid'; }
+ elsif ($code == 503) { $template .= 'RateLimited'; }
+ else { $template .= 'General'; }
my %props = (
form => $c->stash->{form}->TO_JSON,
diff --git a/lib/MusicBrainz/Server/Controller/Series.pm b/lib/MusicBrainz/Server/Controller/Series.pm
index 6db89ea9268..977a1d2cc4b 100644
--- a/lib/MusicBrainz/Server/Controller/Series.pm
+++ b/lib/MusicBrainz/Server/Controller/Series.pm
@@ -109,11 +109,14 @@ sub show : PathPart('') Chained('load') {
}
my %props = (
- entities => to_json_array(\@entities),
+ listProps => {
+ entities => to_json_array(\@entities),
+ seriesEntityType => $series->type->item_entity_type,
+ seriesItemNumbers => \@item_numbers,
+ },
numberOfRevisions => $c->stash->{number_of_revisions},
pager => serialize_pager($c->stash->{pager}),
series => $series->TO_JSON,
- seriesItemNumbers => \@item_numbers,
wikipediaExtract => to_json_object($c->stash->{wikipedia_extract}),
);
diff --git a/lib/MusicBrainz/Server/Controller/Statistics.pm b/lib/MusicBrainz/Server/Controller/Statistics.pm
index 330b11ffa43..e4ed3f25f8d 100644
--- a/lib/MusicBrainz/Server/Controller/Statistics.pm
+++ b/lib/MusicBrainz/Server/Controller/Statistics.pm
@@ -162,6 +162,8 @@ sub countries : Local
my $artist_country_prefix = 'count.artist.country';
my $release_country_prefix = 'count.release.country';
my $label_country_prefix = 'count.label.country';
+ my $event_country_prefix = 'count.event.country';
+ my $place_country_prefix = 'count.place.country';
my @countries = $c->model('CountryArea')->get_all();
my %countries = map { $_->country_code => $_ } grep { defined $_->country_code } @countries;
foreach my $stat_name
@@ -169,11 +171,15 @@ sub countries : Local
if (my ($iso_code) = $stat_name =~ /^$artist_country_prefix\.(.*)$/) {
my $release_stat = $stat_name =~ s/$artist_country_prefix/$release_country_prefix/r;
my $label_stat = $stat_name =~ s/$artist_country_prefix/$label_country_prefix/r;
+ my $event_stat = $stat_name =~ s/$artist_country_prefix/$event_country_prefix/r;
+ my $place_stat = $stat_name =~ s/$artist_country_prefix/$place_country_prefix/r;
push(@$country_stats, ({
'entity' => to_json_object($countries{$iso_code}),
'artist_count' => $stats->statistic($stat_name),
'release_count' => $stats->statistic($release_stat),
- 'label_count' => $stats->statistic($label_stat)
+ 'label_count' => $stats->statistic($label_stat),
+ 'event_count' => $stats->statistic($event_stat),
+ 'place_count' => $stats->statistic($place_stat)
}));
}
}
diff --git a/lib/MusicBrainz/Server/Controller/WS/2/Tag.pm b/lib/MusicBrainz/Server/Controller/WS/2/Tag.pm
index a04e3763aba..45843de2564 100644
--- a/lib/MusicBrainz/Server/Controller/WS/2/Tag.pm
+++ b/lib/MusicBrainz/Server/Controller/WS/2/Tag.pm
@@ -11,8 +11,6 @@ use MusicBrainz::Server::Data::Utils qw( non_empty trim type_to_model );
use MusicBrainz::Server::Validation qw( is_guid );
use MusicBrainz::Server::WebService::XML::XPath;
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
my $ws_defs = Data::OptList::mkopt([
tag => {
method => 'GET',
@@ -109,7 +107,7 @@ sub tag_submit : Private
$has_votes = 1;
$vote = $xp->find('@mb:vote', $_)->string_value;
- unless ($vote ~~ [qw(upvote downvote withdraw)]) {
+ unless ($vote =~ /^(upvote|downvote|withdraw)$/) {
$self->_error($c, 'Unrecognized vote type: ' . $vote);
}
}
diff --git a/lib/MusicBrainz/Server/Controller/WS/js/Edit.pm b/lib/MusicBrainz/Server/Controller/WS/js/Edit.pm
index b0b11d85bd1..105a4df4a42 100644
--- a/lib/MusicBrainz/Server/Controller/WS/js/Edit.pm
+++ b/lib/MusicBrainz/Server/Controller/WS/js/Edit.pm
@@ -31,6 +31,7 @@ use MusicBrainz::Server::Constants qw(
use MusicBrainz::Server::ControllerUtils::Relationship qw( merge_link_attributes );
use MusicBrainz::Server::Data::Utils qw(
boolean_from_json
+ contains_number
type_to_model
model_to_type
partial_date_to_hash
@@ -62,8 +63,6 @@ use aliased 'MusicBrainz::Server::Entity::Track';
use aliased 'MusicBrainz::Server::WebService::JSONSerializer';
BEGIN { extends 'MusicBrainz::Server::Controller' }
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
Readonly our $ERROR_NOT_LOGGED_IN => 1;
Readonly our $ERROR_NON_EXISTENT_ENTITIES => 2;
@@ -506,7 +505,7 @@ sub process_edits {
for my $edit (@$edits) {
my $edit_type = $edit->{edit_type};
- if ($edit_type ~~ $RELATIONSHIP_EDIT_TYPES) {
+ if (contains_number($RELATIONSHIP_EDIT_TYPES, $edit_type)) {
push @link_types_to_load, $edit->{linkTypeID};
push @relationship_edits, $edit;
}
@@ -530,11 +529,16 @@ sub process_edits {
$edit->{link_type} = $link_type;
- if ($edit->{edit_type} ~~ [$EDIT_RELATIONSHIP_EDIT, $EDIT_RELATIONSHIP_DELETE]) {
+ my $edit_type = $edit->{edit_type};
+
+ if (
+ $edit_type == $EDIT_RELATIONSHIP_EDIT ||
+ $edit_type == $EDIT_RELATIONSHIP_DELETE
+ ) {
my $id = $edit->{id} or
$c->forward('/ws/js/detach_with_error', ['missing relationship id']);
$add_relationship_to_load->($link_type, $id, $edit);
- } elsif ($edit->{edit_type} == $EDIT_RELATIONSHIPS_REORDER) {
+ } elsif ($edit_type == $EDIT_RELATIONSHIPS_REORDER) {
my $relationship_order = $edit->{relationship_order};
if (ref $relationship_order eq 'ARRAY') {
for my $ordering (@$relationship_order) {
@@ -709,6 +713,9 @@ sub edit : Chained('/') PathPart('ws/js/edit') CaptureArgs(0) Edit {
if ($c->user->is_editing_disabled) {
$c->forward('/ws/js/detach_with_error', ['you are not allowed to enter edits']);
}
+ if ($c->is_cross_origin && !$c->user->is_bot) {
+ $c->forward('/ws/js/detach_with_error', ['cross-origin requests are allowed only for bot accounts', 403]);
+ }
}
sub create : Chained('edit') PathPart('create') Edit {
@@ -736,7 +743,7 @@ sub submit_edits {
$c->forward('/ws/js/detach_with_error', ['editNote invalid']);
}
- unless ($edit_type ~~ $ALLOWED_EDIT_TYPES) {
+ unless (contains_number($ALLOWED_EDIT_TYPES, $edit_type)) {
$c->forward('/ws/js/detach_with_error', ["edit_type $edit_type is not supported"]);
}
}
diff --git a/lib/MusicBrainz/Server/Data/Artist.pm b/lib/MusicBrainz/Server/Data/Artist.pm
index 095c8765003..3bfa6562dce 100644
--- a/lib/MusicBrainz/Server/Data/Artist.pm
+++ b/lib/MusicBrainz/Server/Data/Artist.pm
@@ -13,6 +13,7 @@ use MusicBrainz::Server::Data::Utils qw(
is_special_artist
add_partial_date_to_row
conditional_merge_column_query
+ contains_string
hash_to_row
load_subobjects
merge_table_attributes
@@ -397,12 +398,12 @@ sub merge
my $merged_type_is_group =
defined $merged_type &&
- any { $merged_type eq $_ } @$group_types;
+ contains_string($group_types, $merged_type);
if ($merged_type_is_group && $merged_gender) {
my $target_type_is_group =
defined $target_type &&
- any { $target_type eq $_ } @$group_types;
+ contains_string($group_types, $target_type);
if ($target_type_is_group) {
$dropped_columns{gender} = $merged_gender;
diff --git a/lib/MusicBrainz/Server/Data/Edit.pm b/lib/MusicBrainz/Server/Data/Edit.pm
index 44c52100945..c0bdaabcf51 100644
--- a/lib/MusicBrainz/Server/Data/Edit.pm
+++ b/lib/MusicBrainz/Server/Data/Edit.pm
@@ -14,7 +14,11 @@ use Encode qw( decode );
use Try::Tiny;
use List::AllUtils qw( any uniq zip );
use MusicBrainz::Server::Data::Editor;
-use MusicBrainz::Server::Data::Utils qw( non_empty type_to_model );
+use MusicBrainz::Server::Data::Utils qw(
+ contains_string
+ non_empty
+ type_to_model
+);
use MusicBrainz::Server::EditRegistry;
use MusicBrainz::Server::Edit::Exceptions;
use MusicBrainz::Server::Constants qw(
@@ -649,7 +653,10 @@ sub load_all
} else {
for my $extra_model (@$extra_models) {
push @{ $post_load_models->{$model}->{$object_id} }, $extra_model
- unless (any { $_ eq $extra_model } @{ $post_load_models->{$model}->{$object_id} });
+ unless (contains_string(
+ $post_load_models->{$model}->{$object_id},
+ $extra_model,
+ ));
}
}
}
diff --git a/lib/MusicBrainz/Server/Data/Editor.pm b/lib/MusicBrainz/Server/Data/Editor.pm
index b4aa1f5045b..7e837a07c70 100644
--- a/lib/MusicBrainz/Server/Data/Editor.pm
+++ b/lib/MusicBrainz/Server/Data/Editor.pm
@@ -182,7 +182,12 @@ around '_get_by_keys' => sub {
sub find_by_email
{
my ($self, $email) = @_;
- return $self->_get_by_keys('email', $email);
+
+ my $query = 'SELECT ' . $self->_columns .
+ ' FROM ' . $self->_table .
+ ' WHERE lower(email) = lower(?)';
+
+ $self->query_to_list($query, [$email]);
}
sub find_by_ip {
diff --git a/lib/MusicBrainz/Server/Data/Relationship.pm b/lib/MusicBrainz/Server/Data/Relationship.pm
index 97547c31e08..067a401f931 100644
--- a/lib/MusicBrainz/Server/Data/Relationship.pm
+++ b/lib/MusicBrainz/Server/Data/Relationship.pm
@@ -35,8 +35,6 @@ use List::AllUtils qw( any nsort_by part partition_by uniq );
use aliased 'MusicBrainz::Server::Entity::RelationshipTargetTypeGroup';
use aliased 'MusicBrainz::Server::Entity::RelationshipLinkTypeGroup';
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Data::Entity';
my %TYPES = map { $_ => 1} @RELATABLE_ENTITIES;
diff --git a/lib/MusicBrainz/Server/Data/Search.pm b/lib/MusicBrainz/Server/Data/Search.pm
index 21f08387df9..7d9e2e3296d 100644
--- a/lib/MusicBrainz/Server/Data/Search.pm
+++ b/lib/MusicBrainz/Server/Data/Search.pm
@@ -56,15 +56,13 @@ use MusicBrainz::Server::Data::Release;
use MusicBrainz::Server::Data::ReleaseGroup;
use MusicBrainz::Server::Data::Series;
use MusicBrainz::Server::Data::Tag;
-use MusicBrainz::Server::Data::Utils qw( ref_to_type );
+use MusicBrainz::Server::Data::Utils qw( contains_string ref_to_type );
use MusicBrainz::Server::Data::Work;
use MusicBrainz::Server::Constants qw( entities_with $DARTIST_ID $DLABEL_ID );
use MusicBrainz::Server::Data::Utils qw( type_to_model );
use MusicBrainz::Server::ExternalUtils qw( get_chunked_with_retry );
use DateTime::Format::ISO8601;
-use feature 'switch';
-
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
+use Readonly;
extends 'MusicBrainz::Server::Data::Entity';
@@ -134,7 +132,7 @@ sub search
SQL
$hard_search_limit = $offset * 2;
- } elsif ($type ~~ [qw(recording release release_group)]) {
+ } elsif ($type =~ /^(recording|release|release_group)$/) {
if ($type eq 'release_group') {
$extra_columns = 'entity.type AS primary_type_id,';
} elsif ($type eq 'recording') {
@@ -201,7 +199,7 @@ sub search
SQL
$hard_search_limit = int($offset * 1.2);
- } elsif ($type ~~ [qw(area event instrument label place series work)]) {
+ } elsif ($type =~ /^(area|event|instrument|label|place|series|work)$/) {
my $where_deleted = 'WHERE entity.id != ?';
if ($type eq 'label') {
$deleted_entity = $DLABEL_ID;
@@ -319,11 +317,17 @@ sub search
SQL
$use_hard_search_limit = 0;
- } elsif ($type eq 'tag') {
+ }
+
+ elsif ($type eq 'tag') {
$query = <<~'SQL';
- SELECT tag.id, tag.name, genre.id AS genre_id,
+ SELECT tag.id,
+ tag.name,
+ coalesce(genre.id, genre_alias.genre) AS genre_id,
ts_rank_cd(mb_simple_tsvector(tag.name), query, 2) AS rank
- FROM tag LEFT JOIN genre USING (name), plainto_tsquery('mb_simple', mb_lower(?)) AS query
+ FROM tag
+ LEFT JOIN genre USING (name)
+ LEFT JOIN genre_alias USING (name), plainto_tsquery('mb_simple', mb_lower(?)) AS query
WHERE mb_simple_tsvector(tag.name) @@ query
ORDER BY rank DESC, tag.name
OFFSET ?
@@ -398,9 +402,11 @@ my %mapping = (
'label-code' => 'label_code',
);
+Readonly our @ENTITIES_WITH_SIMPLE_TYPES => entities_with(['type', 'simple']);
+
sub schema_fixup_type {
my ($self, $data, $type) = @_;
- if (defined $data->{type} && $type ~~ [ entities_with(['type', 'simple']) ]) {
+ if (defined $data->{type} && contains_string(\@ENTITIES_WITH_SIMPLE_TYPES, $type)) {
my $model = 'MusicBrainz::Server::Entity::' . type_to_model($type) . 'Type';
$data->{type} = $model->new( name => $data->{type} );
}
@@ -438,7 +444,7 @@ sub schema_fixup
{
$data->{coordinates} = MusicBrainz::Server::Entity::Coordinates->new( $data->{coordinates} );
}
- if (($type ~~ [qw(artist event label area place)]) && defined $data->{'life-span'})
+ if (($type =~ /^(artist|event|label|area|place)$/) && defined $data->{'life-span'})
{
$data->{begin_date} = MusicBrainz::Server::Entity::PartialDate->new($data->{'life-span'}->{begin})
if (defined $data->{'life-span'}->{begin});
@@ -893,7 +899,7 @@ sub external_search
undef;
# Use types as provided by jsonnew format
- if ($type ~~ [qw(area artist event instrument label place recording release release-group work annotation cdstub editor)]) {
+ if ($type =~ /^(area|artist|event|instrument|label|place|recording|release|release-group|work|annotation|cdstub|editor)$/) {
$xmltype .= 's';
}
diff --git a/lib/MusicBrainz/Server/Data/Statistics.pm b/lib/MusicBrainz/Server/Data/Statistics.pm
index 42a60310984..a725c39f8bb 100644
--- a/lib/MusicBrainz/Server/Data/Statistics.pm
+++ b/lib/MusicBrainz/Server/Data/Statistics.pm
@@ -337,6 +337,45 @@ my %stats = (
DESC => 'Count of all events',
SQL => 'SELECT COUNT(*) FROM event',
},
+ 'count.event.country' => {
+ DESC => 'Distribution of events per country',
+ CALC => sub {
+ my ($self, $sql) = @_;
+
+ my $area_containment_join = get_area_containment_join($sql);
+
+ my $data = $sql->select_list_of_lists(qq{
+ SELECT COALESCE(iso.code::text, 'null'), COUNT(e.id)
+ FROM event e
+ JOIN (
+ SELECT lae.entity1 AS event, lae.entity0 AS area
+ FROM l_area_event lae
+ UNION
+ SELECT lep.entity0 AS event, p.area
+ FROM l_event_place lep
+ JOIN place p ON lep.entity1 = p.id
+ ) event_area ON event_area.event = e.id
+ LEFT JOIN $area_containment_join ac
+ ON event_area.area = ac.descendant
+ AND ac.parent IN (SELECT area FROM country_area)
+ FULL OUTER JOIN iso_3166_1 iso
+ ON iso.area = COALESCE(
+ (SELECT area FROM country_area WHERE area = ac.descendant),
+ ac.parent,
+ event_area.area
+ )
+ GROUP BY iso.code
+ });
+
+ my %dist = map { @$_ } @$data;
+
+ +{
+ map {
+ 'count.event.country.'.$_ => $dist{$_}
+ } keys %dist
+ };
+ },
+ },
'count.event.type' => {
DESC => 'Distribution of events by type',
CALC => sub {
@@ -393,6 +432,37 @@ my %stats = (
DESC => 'Count of all places',
SQL => 'SELECT COUNT(*) FROM place',
},
+ 'count.place.country' => {
+ DESC => 'Distribution of places per country',
+ CALC => sub {
+ my ($self, $sql) = @_;
+
+ my $area_containment_join = get_area_containment_join($sql);
+
+ my $data = $sql->select_list_of_lists(qq{
+ SELECT COALESCE(iso.code::text, 'null'), COUNT(p.id)
+ FROM place p
+ LEFT JOIN $area_containment_join ac
+ ON p.area = ac.descendant
+ AND ac.parent IN (SELECT area FROM country_area)
+ FULL OUTER JOIN iso_3166_1 iso
+ ON iso.area = COALESCE(
+ (SELECT area FROM country_area WHERE area = ac.descendant),
+ ac.parent,
+ p.area
+ )
+ GROUP BY iso.code
+ });
+
+ my %dist = map { @$_ } @$data;
+
+ +{
+ map {
+ 'count.place.country.'.$_ => $dist{$_}
+ } keys %dist
+ };
+ },
+ },
'count.place.type' => {
DESC => 'Distribution of places by type',
CALC => sub {
@@ -941,7 +1011,7 @@ my %stats = (
FROM release r
LEFT JOIN release_country rc ON r.id = rc.release
FULL OUTER JOIN country_area c ON rc.country = c.area
- LEFT JOIN iso_3166_1 iso ON c.area = iso.area
+ FULL OUTER JOIN iso_3166_1 iso ON c.area = iso.area
GROUP BY iso.code},
);
diff --git a/lib/MusicBrainz/Server/Data/Tag.pm b/lib/MusicBrainz/Server/Data/Tag.pm
index f59f0408d10..2ac339d6b15 100644
--- a/lib/MusicBrainz/Server/Data/Tag.pm
+++ b/lib/MusicBrainz/Server/Data/Tag.pm
@@ -16,7 +16,9 @@ sub _type { 'tag' }
sub _table
{
- return 'tag LEFT JOIN genre USING (name)';
+ return 'tag
+ LEFT JOIN genre USING (name)
+ LEFT JOIN genre_alias USING (name)';
}
sub _id_column
@@ -26,7 +28,9 @@ sub _id_column
sub _columns
{
- return 'tag.id, tag.name, genre.id as genre_id';
+ return 'tag.id,
+ tag.name,
+ coalesce(genre.id, genre_alias.genre) as genre_id';
}
sub _column_mapping
diff --git a/lib/MusicBrainz/Server/Data/URL.pm b/lib/MusicBrainz/Server/Data/URL.pm
index 601d285e9cc..85f437560e5 100644
--- a/lib/MusicBrainz/Server/Data/URL.pm
+++ b/lib/MusicBrainz/Server/Data/URL.pm
@@ -103,7 +103,6 @@ my %URL_SPECIALIZATIONS = (
'JunoDownload' => qr{^https?://(?:www\.)?junodownload\.com/}i,
'Kashinavi' => qr{^https?://(?:www\.)?kashinavi\.com/}i,
'KBR' => qr{^https?://opac\.kbr\.be/}i,
- 'Kget' => qr{^https?://(?:www\.)?kget\.jp/}i,
'Kickstarter' => qr{^https?://(?:www\.)?kickstarter\.com/}i,
'Kofi' => qr{^https?://(?:www\.)?ko-fi\.com/}i,
'LaBoiteAuxParoles' => qr{^https?://(?:www\.)?laboiteauxparoles\.com/}i,
diff --git a/lib/MusicBrainz/Server/Data/Utils.pm b/lib/MusicBrainz/Server/Data/Utils.pm
index 80937577672..083ec59c90e 100644
--- a/lib/MusicBrainz/Server/Data/Utils.pm
+++ b/lib/MusicBrainz/Server/Data/Utils.pm
@@ -14,7 +14,7 @@ use Data::UUID::MT;
use Math::Random::Secure qw( irand );
use MIME::Base64 qw( encode_base64url );
use JSON::XS;
-use List::AllUtils qw( natatime sort_by );
+use List::AllUtils qw( any natatime sort_by );
use MusicBrainz::Server::Constants qw(
$DARTIST_ID
$VARTIST_ID
@@ -39,6 +39,8 @@ our @EXPORT_OK = qw(
boolean_to_json
check_data
conditional_merge_column_query
+ contains_number
+ contains_string
copy_escape
coordinates_to_hash
datetime_to_iso8601
@@ -752,6 +754,20 @@ sub localized_note {
});
}
+sub contains_number {
+ my ($array_ref, $number) = @_;
+
+ return 0 unless defined $array_ref;
+ return any { $_ == $number } @$array_ref;
+}
+
+sub contains_string {
+ my ($array_ref, $string) = @_;
+
+ return 0 unless defined $array_ref;
+ return any { $_ eq $string } @$array_ref;
+}
+
1;
=head1 COPYRIGHT AND LICENSE
diff --git a/lib/MusicBrainz/Server/Edit/Alias/Edit.pm b/lib/MusicBrainz/Server/Edit/Alias/Edit.pm
index 7e9d0ae8773..552c8b0ad6a 100644
--- a/lib/MusicBrainz/Server/Edit/Alias/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Alias/Edit.pm
@@ -17,8 +17,6 @@ use MusicBrainz::Server::Entity::Util::JSON qw( to_json_object );
use aliased 'MusicBrainz::Server::Entity::PartialDate';
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::WithDifferences';
with 'MusicBrainz::Server::Edit::Alias';
with 'MusicBrainz::Server::Edit::CheckForConflicts';
@@ -133,18 +131,14 @@ sub _mapping
around extract_property => sub {
my ($orig, $self) = splice(@_, 0, 2);
my ($property, $ancestor, $current, $new) = @_;
- given ($property) {
- when ('begin_date') {
- return merge_partial_date('begin_date' => $ancestor, $current, $new);
- }
-
- when ('end_date') {
- return merge_partial_date('end_date' => $ancestor, $current, $new);
- }
-
- default {
- return ($self->$orig(@_));
- }
+ if ($property eq 'begin_date') {
+ return merge_partial_date('begin_date' => $ancestor, $current, $new);
+ }
+ elsif ($property eq 'end_date') {
+ return merge_partial_date('end_date' => $ancestor, $current, $new);
+ }
+ else {
+ return ($self->$orig(@_));
}
};
diff --git a/lib/MusicBrainz/Server/Edit/Annotation/Edit.pm b/lib/MusicBrainz/Server/Edit/Annotation/Edit.pm
index 69df71947b0..1168724f5cd 100644
--- a/lib/MusicBrainz/Server/Edit/Annotation/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Annotation/Edit.pm
@@ -116,7 +116,7 @@ role {
if (!$self->c->model($model)->get_by_id($self->data->{entity}{id})) {
MusicBrainz::Server::Edit::Exceptions::FailedDependency->throw(
- 'The relevant entity has been removed since this edit was created.'
+ 'The relevant entity has been removed since this edit was entered.'
);
}
diff --git a/lib/MusicBrainz/Server/Edit/Area/Edit.pm b/lib/MusicBrainz/Server/Edit/Area/Edit.pm
index 0083e36e338..30a102eb9f2 100644
--- a/lib/MusicBrainz/Server/Edit/Area/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Area/Edit.pm
@@ -22,8 +22,6 @@ use MooseX::Types::Structured qw( Dict Optional );
use aliased 'MusicBrainz::Server::Entity::Area';
use aliased 'MusicBrainz::Server::Entity::PartialDate';
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::Generic::Edit';
with 'MusicBrainz::Server::Edit::CheckForConflicts';
with 'MusicBrainz::Server::Edit::Area';
@@ -157,17 +155,14 @@ sub _edit_hash {
around extract_property => sub {
my ($orig, $self) = splice(@_, 0, 2);
my ($property, $ancestor, $current, $new) = @_;
- given ($property) {
- when ('begin_date') {
- return merge_partial_date('begin_date' => $ancestor, $current, $new);
- }
-
- when ('end_date') {
- return merge_partial_date('end_date' => $ancestor, $current, $new);
- }
- default {
- return ($self->$orig(@_));
- }
+ if ($property eq 'begin_date') {
+ return merge_partial_date('begin_date' => $ancestor, $current, $new);
+ }
+ elsif ($property eq 'end_date') {
+ return merge_partial_date('end_date' => $ancestor, $current, $new);
+ }
+ else {
+ return ($self->$orig(@_));
}
};
diff --git a/lib/MusicBrainz/Server/Edit/Artist/Edit.pm b/lib/MusicBrainz/Server/Edit/Artist/Edit.pm
index f6cad09b712..df463da71a7 100644
--- a/lib/MusicBrainz/Server/Edit/Artist/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Artist/Edit.pm
@@ -27,8 +27,6 @@ use aliased 'MusicBrainz::Server::Entity::Artist';
use aliased 'MusicBrainz::Server::Entity::Area';
use aliased 'MusicBrainz::Server::Entity::PartialDate';
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::Generic::Edit';
with 'MusicBrainz::Server::Edit::Artist';
with 'MusicBrainz::Server::Edit::CheckForConflicts';
@@ -250,17 +248,14 @@ sub _edit_hash {
around extract_property => sub {
my ($orig, $self) = splice(@_, 0, 2);
my ($property, $ancestor, $current, $new) = @_;
- given ($property) {
- when ('begin_date') {
- return merge_partial_date('begin_date' => $ancestor, $current, $new);
- }
-
- when ('end_date') {
- return merge_partial_date('end_date' => $ancestor, $current, $new);
- }
- default {
- return ($self->$orig(@_));
- }
+ if ($property eq 'begin_date') {
+ return merge_partial_date('begin_date' => $ancestor, $current, $new);
+ }
+ elsif ($property eq 'end_date') {
+ return merge_partial_date('end_date' => $ancestor, $current, $new);
+ }
+ else {
+ return ($self->$orig(@_));
}
};
diff --git a/lib/MusicBrainz/Server/Edit/CheckForConflicts.pm b/lib/MusicBrainz/Server/Edit/CheckForConflicts.pm
index df70c162677..d063bb69ad9 100644
--- a/lib/MusicBrainz/Server/Edit/CheckForConflicts.pm
+++ b/lib/MusicBrainz/Server/Edit/CheckForConflicts.pm
@@ -144,7 +144,7 @@ sub merge_changes {
catch {
if (eval { $_->isa('Conflict') }) {
MusicBrainz::Server::Edit::Exceptions::FailedDependency
- ->throw('Data has changed since this edit was created, and now conflicts ' .
+ ->throw('Data has changed since this edit was entered, and now conflicts ' .
'with changes made in this edit.');
}
else {
diff --git a/lib/MusicBrainz/Server/Edit/Event/Edit.pm b/lib/MusicBrainz/Server/Edit/Event/Edit.pm
index 10788396d75..069380232b0 100644
--- a/lib/MusicBrainz/Server/Edit/Event/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Event/Edit.pm
@@ -28,8 +28,6 @@ use MooseX::Types::Structured qw( Dict Optional );
use aliased 'MusicBrainz::Server::Entity::Event';
use aliased 'MusicBrainz::Server::Entity::PartialDate';
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::Generic::Edit';
with 'MusicBrainz::Server::Edit::CheckForConflicts';
with 'MusicBrainz::Server::Edit::Event';
@@ -167,22 +165,17 @@ sub _edit_hash {
around extract_property => sub {
my ($orig, $self) = splice(@_, 0, 2);
my ($property, $ancestor, $current, $new) = @_;
- given ($property) {
- when ('begin_date') {
- return merge_partial_date('begin_date' => $ancestor, $current, $new);
- }
-
- when ('end_date') {
- return merge_partial_date('end_date' => $ancestor, $current, $new);
- }
-
- when ('time') {
- return merge_time('time' => $ancestor, $current, $new);
- }
-
- default {
- return ($self->$orig(@_));
- }
+ if ($property eq 'begin_date') {
+ return merge_partial_date('begin_date' => $ancestor, $current, $new);
+ }
+ elsif ($property eq 'end_date') {
+ return merge_partial_date('end_date' => $ancestor, $current, $new);
+ }
+ elsif ($property eq 'time') {
+ return merge_time('time' => $ancestor, $current, $new);
+ }
+ else {
+ return ($self->$orig(@_));
}
};
diff --git a/lib/MusicBrainz/Server/Edit/Generic/Merge.pm b/lib/MusicBrainz/Server/Edit/Generic/Merge.pm
index b0ada0eacbc..eeb7885aed9 100644
--- a/lib/MusicBrainz/Server/Edit/Generic/Merge.pm
+++ b/lib/MusicBrainz/Server/Edit/Generic/Merge.pm
@@ -122,7 +122,7 @@ sub accept
my $model = $self->c->model( $self->_merge_model );
if (!$model->get_by_id($self->new_entity->{id})) {
MusicBrainz::Server::Edit::Exceptions::FailedDependency->throw(
- 'The target has been removed since this edit was created'
+ 'The target has been removed since this edit was entered'
);
}
if (!values %{ $model->get_by_ids($self->_old_ids) }) {
diff --git a/lib/MusicBrainz/Server/Edit/Genre/Edit.pm b/lib/MusicBrainz/Server/Edit/Genre/Edit.pm
index 28e181e0f97..d89eb88b0ca 100644
--- a/lib/MusicBrainz/Server/Edit/Genre/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Genre/Edit.pm
@@ -14,8 +14,6 @@ use MooseX::Types::Structured qw( Dict Optional );
use aliased 'MusicBrainz::Server::Entity::Genre';
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::Generic::Edit';
with 'MusicBrainz::Server::Edit::CheckForConflicts';
with 'MusicBrainz::Server::Edit::Genre';
diff --git a/lib/MusicBrainz/Server/Edit/Label/Edit.pm b/lib/MusicBrainz/Server/Edit/Label/Edit.pm
index 64f50e396e3..39256c25415 100644
--- a/lib/MusicBrainz/Server/Edit/Label/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Label/Edit.pm
@@ -26,8 +26,6 @@ use MooseX::Types::Structured qw( Dict Optional );
use aliased 'MusicBrainz::Server::Entity::Label';
use aliased 'MusicBrainz::Server::Entity::Area';
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::Generic::Edit';
with 'MusicBrainz::Server::Edit::Label';
with 'MusicBrainz::Server::Edit::CheckForConflicts';
@@ -223,18 +221,14 @@ sub _edit_hash {
around extract_property => sub {
my ($orig, $self) = splice(@_, 0, 2);
my ($property, $ancestor, $current, $new) = @_;
- given ($property) {
- when ('begin_date') {
- return merge_partial_date('begin_date' => $ancestor, $current, $new);
- }
-
- when ('end_date') {
- return merge_partial_date('end_date' => $ancestor, $current, $new);
- }
-
- default {
- return ($self->$orig(@_));
- }
+ if ($property eq 'begin_date') {
+ return merge_partial_date('begin_date' => $ancestor, $current, $new);
+ }
+ elsif ($property eq 'end_date') {
+ return merge_partial_date('end_date' => $ancestor, $current, $new);
+ }
+ else {
+ return ($self->$orig(@_));
}
};
diff --git a/lib/MusicBrainz/Server/Edit/Medium/Edit.pm b/lib/MusicBrainz/Server/Edit/Medium/Edit.pm
index 13d25c6294c..ba5785167f7 100644
--- a/lib/MusicBrainz/Server/Edit/Medium/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Medium/Edit.pm
@@ -453,7 +453,7 @@ sub accept {
}
catch {
MusicBrainz::Server::Edit::Exceptions::FailedDependency
- ->throw('The tracklist has changed since this edit was created, and conflicts ' .
+ ->throw('The tracklist has changed since this edit was entered, and conflicts ' .
'with changes made in this edit');
};
diff --git a/lib/MusicBrainz/Server/Edit/Place/Edit.pm b/lib/MusicBrainz/Server/Edit/Place/Edit.pm
index 4083c3ce9ce..f154951c461 100644
--- a/lib/MusicBrainz/Server/Edit/Place/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Place/Edit.pm
@@ -30,8 +30,6 @@ use aliased 'MusicBrainz::Server::Entity::Area';
use aliased 'MusicBrainz::Server::Entity::PartialDate';
use aliased 'MusicBrainz::Server::Entity::Coordinates';
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::Generic::Edit';
with 'MusicBrainz::Server::Edit::CheckForConflicts';
with 'MusicBrainz::Server::Edit::Place';
@@ -191,22 +189,17 @@ sub edit_template { 'EditPlace' }
around extract_property => sub {
my ($orig, $self) = splice(@_, 0, 2);
my ($property, $ancestor, $current, $new) = @_;
- given ($property) {
- when ('begin_date') {
- return merge_partial_date('begin_date' => $ancestor, $current, $new);
- }
-
- when ('end_date') {
- return merge_partial_date('end_date' => $ancestor, $current, $new);
- }
-
- when ('coordinates') {
- return merge_coordinates('coordinates' => $ancestor, $current, $new);
- }
-
- default {
- return ($self->$orig(@_));
- }
+ if ($property eq 'begin_date') {
+ return merge_partial_date('begin_date' => $ancestor, $current, $new);
+ }
+ elsif ($property eq 'end_date') {
+ return merge_partial_date('end_date' => $ancestor, $current, $new);
+ }
+ elsif ($property eq 'coordinates') {
+ return merge_coordinates('coordinates' => $ancestor, $current, $new);
+ }
+ else {
+ return ($self->$orig(@_));
}
};
diff --git a/lib/MusicBrainz/Server/Edit/Recording/Edit.pm b/lib/MusicBrainz/Server/Edit/Recording/Edit.pm
index cc82e4e66c0..eed72e657a8 100644
--- a/lib/MusicBrainz/Server/Edit/Recording/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Recording/Edit.pm
@@ -26,8 +26,6 @@ use MusicBrainz::Server::Entity::Util::JSON qw( to_json_object );
use MusicBrainz::Server::Track;
use MusicBrainz::Server::Translation qw( N_l );
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::Generic::Edit';
with 'MusicBrainz::Server::Edit::Recording::RelatedEntities';
with 'MusicBrainz::Server::Edit::Recording';
@@ -206,14 +204,11 @@ before accept => sub {
around extract_property => sub {
my ($orig, $self) = splice(@_, 0, 2);
my ($property, $ancestor, $current, $new) = @_;
- given ($property) {
- when ('artist_credit') {
- return merge_artist_credit($self->c, $ancestor, $current, $new);
- }
-
- default {
- return ($self->$orig(@_));
- }
+ if ($property eq 'artist_credit') {
+ return merge_artist_credit($self->c, $ancestor, $current, $new);
+ }
+ else {
+ return ($self->$orig(@_));
}
};
diff --git a/lib/MusicBrainz/Server/Edit/Relationship.pm b/lib/MusicBrainz/Server/Edit/Relationship.pm
index de4bf78c32c..aa51aea9fce 100644
--- a/lib/MusicBrainz/Server/Edit/Relationship.pm
+++ b/lib/MusicBrainz/Server/Edit/Relationship.pm
@@ -13,8 +13,6 @@ use namespace::autoclean;
use MusicBrainz::Server::Translation qw ( l );
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
sub edit_category { l('Relationship') }
sub check_attributes {
@@ -101,9 +99,9 @@ sub editor_may_edit_types {
my ($self, $type0, $type1) = @_;
my $types = join '_', sort($type0, $type1);
- if ($types ~~ [qw(area_area area_url)]) {
+ if ($types =~ /^area_(area|url)$/) {
return $self->editor->is_location_editor;
- } elsif ($types ~~ [qw(area_instrument instrument_instrument instrument_url)]) {
+ } elsif ($types =~ /^(area_instrument|instrument_instrument|instrument_url)$/) {
return $self->editor->is_relationship_editor;
} else {
return 1;
diff --git a/lib/MusicBrainz/Server/Edit/Release/Edit.pm b/lib/MusicBrainz/Server/Edit/Release/Edit.pm
index fb809e39099..ecff698a95d 100644
--- a/lib/MusicBrainz/Server/Edit/Release/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Release/Edit.pm
@@ -30,8 +30,6 @@ use MusicBrainz::Server::Entity::PartialDate;
use MusicBrainz::Server::Entity::Util::JSON qw( to_json_array to_json_object );
use MusicBrainz::Server::Translation qw( N_l );
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::Generic::Edit';
with 'MusicBrainz::Server::Edit::Role::EditArtistCredit';
with 'MusicBrainz::Server::Edit::Role::Preview';
@@ -254,18 +252,14 @@ around 'initialize' => sub
around extract_property => sub {
my ($orig, $self) = splice(@_, 0, 2);
my ($property, $ancestor, $current, $new) = @_;
- given ($property) {
- when ('artist_credit') {
- return merge_artist_credit($self->c, $ancestor, $current, $new);
- }
-
- when ('barcode') {
- return merge_barcode($ancestor, $current, $new);
- }
-
- default {
- return ($self->$orig(@_));
- }
+ if ($property eq 'artist_credit') {
+ return merge_artist_credit($self->c, $ancestor, $current, $new);
+ }
+ elsif ($property eq 'barcode') {
+ return merge_barcode($ancestor, $current, $new);
+ }
+ else {
+ return ($self->$orig(@_));
}
};
diff --git a/lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm b/lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm
index adaf2ce232b..665a8a1fd6e 100644
--- a/lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm
+++ b/lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm
@@ -17,8 +17,6 @@ use MusicBrainz::Server::Translation qw( N_l lp );
use MusicBrainz::Server::Entity::Util::MediumFormat qw( combined_medium_format_name );
use Scalar::Util qw( looks_like_number );
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::WithDifferences';
with 'MusicBrainz::Server::Edit::Role::Preview';
with 'MusicBrainz::Server::Edit::Release::RelatedEntities';
@@ -334,18 +332,15 @@ sub current_instance {
around extract_property => sub {
my ($orig, $self) = splice(@_, 0, 2);
my ($property, $ancestor, $current, $new) = @_;
- given ($property) {
- when ('label') {
- return (
- merge_value($ancestor->{label}),
- merge_value(_serialize_label($current->label)),
- merge_value($new->{label}),
- );
- }
-
- default {
- return ($self->$orig(@_));
- }
+ if ($property eq 'label') {
+ return (
+ merge_value($ancestor->{label}),
+ merge_value(_serialize_label($current->label)),
+ merge_value($new->{label}),
+ );
+ }
+ else {
+ return ($self->$orig(@_));
}
};
diff --git a/lib/MusicBrainz/Server/Edit/Release/ReorderCoverArt.pm b/lib/MusicBrainz/Server/Edit/Release/ReorderCoverArt.pm
index 51f6ff37d5a..870804055a3 100644
--- a/lib/MusicBrainz/Server/Edit/Release/ReorderCoverArt.pm
+++ b/lib/MusicBrainz/Server/Edit/Release/ReorderCoverArt.pm
@@ -80,7 +80,7 @@ sub accept {
if (join(q(,), @current_ids) ne join (q(,), @edit_ids))
{
MusicBrainz::Server::Edit::Exceptions::FailedDependency
- ->throw('Cover art has been added or removed since this edit was created, which conflicts ' .
+ ->throw('Cover art has been added or removed since this edit was entered, which conflicts ' .
'with changes made in this edit.');
}
diff --git a/lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm b/lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm
index 78eddf1a800..ba5747cbd52 100644
--- a/lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm
@@ -27,8 +27,6 @@ use Scalar::Util qw( looks_like_number );
use aliased 'MusicBrainz::Server::Entity::ReleaseGroup';
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::Generic::Edit';
with 'MusicBrainz::Server::Edit::ReleaseGroup::RelatedEntities';
with 'MusicBrainz::Server::Edit::ReleaseGroup';
@@ -180,31 +178,29 @@ around initialize => sub
around extract_property => sub {
my ($orig, $self) = splice(@_, 0, 2);
my ($property, $ancestor, $current, $new) = @_;
- given ($property) {
- when ('artist_credit') {
- return merge_artist_credit($self->c, $ancestor, $current, $new);
- }
- when ('type_id') {
- return (
- merge_value($ancestor->{type_id}),
- merge_value($current->primary_type_id),
- merge_value($new->{type_id})
- )
- }
- when ('secondary_type_ids') {
- my $type_list_gen = sub {
- my $type = shift;
- return [ join(q(,), sort @$type), $type ];
- };
- return (
- $type_list_gen->( $ancestor->{secondary_type_ids} ),
- $type_list_gen->( [ map { $_->id } $current->all_secondary_types ] ),
- $type_list_gen->( $new->{secondary_type_ids} ),
- )
- }
- default {
- return $self->$orig(@_);
- }
+ if ($property eq 'artist_credit') {
+ return merge_artist_credit($self->c, $ancestor, $current, $new);
+ }
+ elsif ($property eq 'type_id') {
+ return (
+ merge_value($ancestor->{type_id}),
+ merge_value($current->primary_type_id),
+ merge_value($new->{type_id})
+ )
+ }
+ elsif ($property eq 'secondary_type_ids') {
+ my $type_list_gen = sub {
+ my $type = shift;
+ return [ join(q(,), sort @$type), $type ];
+ };
+ return (
+ $type_list_gen->( $ancestor->{secondary_type_ids} ),
+ $type_list_gen->( [ map { $_->id } $current->all_secondary_types ] ),
+ $type_list_gen->( $new->{secondary_type_ids} ),
+ )
+ }
+ else {
+ return $self->$orig(@_);
}
};
diff --git a/lib/MusicBrainz/Server/Edit/Series/Edit.pm b/lib/MusicBrainz/Server/Edit/Series/Edit.pm
index 7c3bf3dc5a7..e06bb55028b 100644
--- a/lib/MusicBrainz/Server/Edit/Series/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Series/Edit.pm
@@ -17,8 +17,6 @@ use MooseX::Types::Structured qw( Dict Optional );
use aliased 'MusicBrainz::Server::Entity::Series';
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::Generic::Edit';
with 'MusicBrainz::Server::Edit::Series';
with 'MusicBrainz::Server::Edit::CheckForConflicts';
diff --git a/lib/MusicBrainz/Server/Edit/URL/Edit.pm b/lib/MusicBrainz/Server/Edit/URL/Edit.pm
index 066afeb02b3..6bf640e8ba1 100644
--- a/lib/MusicBrainz/Server/Edit/URL/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/URL/Edit.pm
@@ -16,8 +16,6 @@ use MusicBrainz::Server::Edit::Utils qw( changed_display_data );
use MusicBrainz::Server::Entity::Util::JSON qw( to_json_object );
use MusicBrainz::Server::Translation qw( N_l );
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Edit::Generic::Edit';
with 'MusicBrainz::Server::Edit::URL';
with 'MusicBrainz::Server::Edit::URL::RelatedEntities';
@@ -147,18 +145,15 @@ sub current_instance {
around extract_property => sub {
my ($orig, $self) = splice(@_, 0, 2);
my ($property, $ancestor, $current, $new) = @_;
- given ($property) {
- when ('url') {
- return (
- [ $ancestor->{url}, $ancestor->{url} ],
- [ $current->url->as_string, $current->url->as_string ],
- [ $new->{url}, $new->{url} ]
- );
- }
-
- default {
- return ($self->$orig(@_));
- }
+ if ($property eq 'url') {
+ return (
+ [ $ancestor->{url}, $ancestor->{url} ],
+ [ $current->url->as_string, $current->url->as_string ],
+ [ $new->{url}, $new->{url} ]
+ );
+ }
+ else {
+ return ($self->$orig(@_));
}
};
diff --git a/lib/MusicBrainz/Server/Edit/Utils.pm b/lib/MusicBrainz/Server/Edit/Utils.pm
index a18ef476b15..7a9d2d36a74 100644
--- a/lib/MusicBrainz/Server/Edit/Utils.pm
+++ b/lib/MusicBrainz/Server/Edit/Utils.pm
@@ -10,7 +10,7 @@ use MusicBrainz::Server::Data::Utils qw( artist_credit_to_ref coordinates_to_has
use MusicBrainz::Server::Edit::Exceptions;
use MusicBrainz::Server::Entity::ArtistCredit;
use MusicBrainz::Server::Entity::ArtistCreditName;
-use MusicBrainz::Server::Translation qw( N_l );
+use MusicBrainz::Server::Translation qw( N_l N_lp );
use Scalar::Util qw( blessed );
use Set::Scalar;
@@ -275,7 +275,7 @@ our @STATUS_MAP = (
[ $STATUS_ERROR => N_l('Error') ],
[ $STATUS_FAILEDPREREQ => N_l('Failed prerequisite') ],
[ $STATUS_NOVOTES => N_l('No votes') ],
- [ $STATUS_DELETED => N_l('Cancelled') ],
+ [ $STATUS_DELETED => N_lp('Cancelled', 'edit') ],
);
our %STATUS_NAMES = map { @$_ } @STATUS_MAP;
diff --git a/lib/MusicBrainz/Server/Edit/Work/Edit.pm b/lib/MusicBrainz/Server/Edit/Work/Edit.pm
index ad89d26eca1..7e73b31cdfa 100644
--- a/lib/MusicBrainz/Server/Edit/Work/Edit.pm
+++ b/lib/MusicBrainz/Server/Edit/Work/Edit.pm
@@ -264,7 +264,7 @@ after accept => sub {
}
else {
MusicBrainz::Server::Edit::Exceptions::FailedDependency
- ->throw('Data has changed since this edit was created, and now conflicts ' .
+ ->throw('Data has changed since this edit was entered, and now conflicts ' .
'with changes made in this edit.');
}
}
diff --git a/lib/MusicBrainz/Server/EditSearch/Predicate.pm b/lib/MusicBrainz/Server/EditSearch/Predicate.pm
index 2ceceec20c9..8fd8ed6a038 100644
--- a/lib/MusicBrainz/Server/EditSearch/Predicate.pm
+++ b/lib/MusicBrainz/Server/EditSearch/Predicate.pm
@@ -98,4 +98,6 @@ sub valid {
return 1;
}
+sub disable_limit_for_edit_listing { 0 }
+
1;
diff --git a/lib/MusicBrainz/Server/EditSearch/Predicate/AppliedEdits.pm b/lib/MusicBrainz/Server/EditSearch/Predicate/AppliedEdits.pm
index 98e144d8f80..d4eb5ce3dfe 100644
--- a/lib/MusicBrainz/Server/EditSearch/Predicate/AppliedEdits.pm
+++ b/lib/MusicBrainz/Server/EditSearch/Predicate/AppliedEdits.pm
@@ -1,12 +1,9 @@
package MusicBrainz::Server::EditSearch::Predicate::AppliedEdits;
use Moose;
use namespace::autoclean;
-use feature 'switch';
use MusicBrainz::Server::Constants qw( :edit_status );
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::EditSearch::Predicate::ID';
sub combine_with_query {
@@ -15,13 +12,12 @@ sub combine_with_query {
my $subquery = '(SELECT COUNT(*) FROM edit H WHERE H.editor = edit.editor AND H.status = ?)';
my $sql;
- given ($self->operator) {
- when ('BETWEEN') {
- $sql = $subquery . ' BETWEEN SYMMETRIC ? AND ?';
- }
- default {
- $sql = join(' ', $subquery, $self->operator, '?');
- }
+ my $operator = $self->operator;
+ if ($operator eq 'BETWEEN') {
+ $sql = $subquery . ' BETWEEN SYMMETRIC ? AND ?';
+ }
+ else {
+ $sql = join(' ', $subquery, $operator, '?');
}
$query->add_where([ $sql, [ $STATUS_APPLIED, @{ $self->sql_arguments } ] ]);
diff --git a/lib/MusicBrainz/Server/EditSearch/Predicate/ID.pm b/lib/MusicBrainz/Server/EditSearch/Predicate/ID.pm
index 416df4896fc..22efa3a4ff9 100644
--- a/lib/MusicBrainz/Server/EditSearch/Predicate/ID.pm
+++ b/lib/MusicBrainz/Server/EditSearch/Predicate/ID.pm
@@ -2,9 +2,6 @@ package MusicBrainz::Server::EditSearch::Predicate::ID;
use Moose;
use MusicBrainz::Server::Validation qw( is_database_row_id is_integer );
use namespace::autoclean;
-use feature 'switch';
-
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
with 'MusicBrainz::Server::EditSearch::Predicate';
@@ -19,13 +16,12 @@ sub combine_with_query {
my ($self, $query) = @_;
my $sql;
- given ($self->operator) {
- when ('BETWEEN') {
- $sql = 'edit.' . $self->field_name . ' BETWEEN SYMMETRIC ? AND ?';
- }
- default {
- $sql = join(' ', 'edit.'.$self->field_name, $self->operator, '?')
- }
+ my $operator = $self->operator;
+ if ($operator eq 'BETWEEN') {
+ $sql = 'edit.' . $self->field_name . ' BETWEEN SYMMETRIC ? AND ?';
+ }
+ else {
+ $sql = join(' ', 'edit.'.$self->field_name, $operator, '?')
}
$query->add_where([ $sql, $self->sql_arguments ]);
diff --git a/lib/MusicBrainz/Server/EditSearch/Predicate/RelationshipType.pm b/lib/MusicBrainz/Server/EditSearch/Predicate/RelationshipType.pm
index 12689aedbae..ab31c06a3b9 100644
--- a/lib/MusicBrainz/Server/EditSearch/Predicate/RelationshipType.pm
+++ b/lib/MusicBrainz/Server/EditSearch/Predicate/RelationshipType.pm
@@ -35,4 +35,7 @@ sub combine_with_query {
]);
}
+# MBS-13347
+sub disable_limit_for_edit_listing { 1 }
+
1;
diff --git a/lib/MusicBrainz/Server/EditSearch/Predicate/Role/Subscribed.pm b/lib/MusicBrainz/Server/EditSearch/Predicate/Role/Subscribed.pm
index 9cc2935585b..1360195c790 100644
--- a/lib/MusicBrainz/Server/EditSearch/Predicate/Role/Subscribed.pm
+++ b/lib/MusicBrainz/Server/EditSearch/Predicate/Role/Subscribed.pm
@@ -3,8 +3,6 @@ use 5.10.0;
use MooseX::Role::Parameterized;
use namespace::autoclean;
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
parameter type => (
isa => 'Str',
required => 1
@@ -44,37 +42,33 @@ role {
around combine_with_query => sub {
my ($orig, $self) = splice(@_, 0, 2);
my ($query) = @_;
+ my $operator = $self->operator;
+ if ($operator eq 'subscribed') {
+ my $subscribed_clause = "IN (
+ SELECT $subscribed_column
+ FROM editor_subscribe_$type
+ WHERE editor = ?
+ )";
- given ($self->operator) {
- when ('subscribed') {
- my $subscribed_clause = "IN (
- SELECT $subscribed_column
- FROM editor_subscribe_$type
- WHERE editor = ?
- )";
-
- $query->add_where([
- $template_clause =~ s/ROLE_CLAUSE\(([^)]*)\)/$1 $subscribed_clause/r,
- [ $self->user->id ]
- ]);
- }
-
- when ('not_subscribed') {
- my $subscribed_clause = "NOT IN (
- SELECT $subscribed_column
- FROM editor_subscribe_$type
- WHERE editor = ?
- )";
-
- $query->add_where([
- $template_clause =~ s/ROLE_CLAUSE\(([^)]*)\)/$1 $subscribed_clause/r,
- [ $self->user->id ]
- ]);
- }
+ $query->add_where([
+ $template_clause =~ s/ROLE_CLAUSE\(([^)]*)\)/$1 $subscribed_clause/r,
+ [ $self->user->id ]
+ ]);
+ }
+ elsif ($operator eq 'not_subscribed') {
+ my $subscribed_clause = "NOT IN (
+ SELECT $subscribed_column
+ FROM editor_subscribe_$type
+ WHERE editor = ?
+ )";
- default {
- $self->$orig(@_);
- }
+ $query->add_where([
+ $template_clause =~ s/ROLE_CLAUSE\(([^)]*)\)/$1 $subscribed_clause/r,
+ [ $self->user->id ]
+ ]);
+ }
+ else {
+ $self->$orig(@_);
}
};
diff --git a/lib/MusicBrainz/Server/EditSearch/Query.pm b/lib/MusicBrainz/Server/EditSearch/Query.pm
index c112a235b46..c4b598eef5a 100644
--- a/lib/MusicBrainz/Server/EditSearch/Query.pm
+++ b/lib/MusicBrainz/Server/EditSearch/Query.pm
@@ -149,7 +149,14 @@ sub valid {
sub as_string {
my $self = shift;
- $_->combine_with_query($self) for $self->fields;
+
+ my $disable_limit_for_edit_listing = 0;
+ for my $field ($self->fields) {
+ $field->combine_with_query($self);
+ $disable_limit_for_edit_listing ||=
+ $field->disable_limit_for_edit_listing;
+ }
+
my $comb = $self->combinator;
my $ae_predicate = defined $self->auto_edit_filter ?
'autoedit = ? AND ' : '';
@@ -190,8 +197,10 @@ sub as_string {
join(" $comb ", map { '(' . $_->[0] . ')' } $self->where) .
")
$extra_conditions
- $order
- LIMIT $LIMIT_FOR_EDIT_LISTING";
+ $order" .
+ ($disable_limit_for_edit_listing
+ ? ''
+ : " LIMIT $LIMIT_FOR_EDIT_LISTING");
}
sub arguments {
diff --git a/lib/MusicBrainz/Server/Entity/Series.pm b/lib/MusicBrainz/Server/Entity/Series.pm
index 831e095d2a2..cac5d770e48 100644
--- a/lib/MusicBrainz/Server/Entity/Series.pm
+++ b/lib/MusicBrainz/Server/Entity/Series.pm
@@ -3,8 +3,6 @@ package MusicBrainz::Server::Entity::Series;
use Moose;
use MusicBrainz::Server::Entity::Types;
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
extends 'MusicBrainz::Server::Entity';
with 'MusicBrainz::Server::Entity::Role::Relatable';
with 'MusicBrainz::Server::Entity::Role::Taggable';
diff --git a/lib/MusicBrainz/Server/Entity/URL/Kget.pm b/lib/MusicBrainz/Server/Entity/URL/Kget.pm
deleted file mode 100644
index 6627a92560a..00000000000
--- a/lib/MusicBrainz/Server/Entity/URL/Kget.pm
+++ /dev/null
@@ -1,23 +0,0 @@
-package MusicBrainz::Server::Entity::URL::Kget;
-
-use Moose;
-use utf8;
-
-extends 'MusicBrainz::Server::Entity::URL';
-with 'MusicBrainz::Server::Entity::URL::Sidebar';
-
-sub sidebar_name { '歌詞GET' }
-
-__PACKAGE__->meta->make_immutable;
-no Moose;
-1;
-
-=head1 COPYRIGHT AND LICENSE
-
-Copyright (C) 2019 MetaBrainz Foundation
-
-This file is part of MusicBrainz, the open internet music database,
-and is licensed under the GPL version 2, or (at your option) any
-later version: http://www.gnu.org/licenses/gpl-2.0.txt
-
-=cut
diff --git a/lib/MusicBrainz/Server/Form/Field/URL.pm b/lib/MusicBrainz/Server/Form/Field/URL.pm
index 7fb4340d43f..7c0080a832f 100644
--- a/lib/MusicBrainz/Server/Form/Field/URL.pm
+++ b/lib/MusicBrainz/Server/Form/Field/URL.pm
@@ -2,6 +2,7 @@ package MusicBrainz::Server::Form::Field::URL;
use URI;
use Moose;
use namespace::autoclean;
+use utf8;
use MusicBrainz::Server::Translation qw( l );
use MusicBrainz::Server::Validation qw( is_valid_url );
@@ -23,7 +24,7 @@ sub validate
my $url = $self->value;
$url = URI->new($url)->canonical;
- return $self->add_error(l('Enter a valid url e.g. "http://google.com/"'))
+ return $self->add_error(l('Enter a valid URL, such as “http://google.com/”'))
unless is_valid_url($url->as_string);
return $self->add_error(l('URL protocol must be HTTP, HTTPS or FTP'))
diff --git a/lib/MusicBrainz/Server/Plugin/Diff.pm b/lib/MusicBrainz/Server/Plugin/Diff.pm
index bb76828ffcb..aafdcaa081d 100644
--- a/lib/MusicBrainz/Server/Plugin/Diff.pm
+++ b/lib/MusicBrainz/Server/Plugin/Diff.pm
@@ -3,8 +3,6 @@ package MusicBrainz::Server::Plugin::Diff;
use strict;
use warnings;
-use feature 'switch';
-
use base 'Template::Plugin';
use Algorithm::Diff qw( sdiff traverse_sequences );
@@ -14,8 +12,6 @@ use HTML::Entities qw( decode_entities );
use Scalar::Util qw( blessed );
use MusicBrainz::Server::Validation qw( encode_entities trim_in_place );
-no if $] >= 5.018, warnings => 'experimental::smartmatch';
-
sub new {
my ($class, $context) = @_;
return bless { c => $context }, $class;
@@ -146,42 +142,37 @@ sub diff_artist_credits {
for my $diff (@diffs) {
my ($change_type, $old_name, $new_name) = @$diff;
- given ($change_type) {
- when ('u') {
- my $html = $self->_link_joined($old_name);
- $sides{old} .= $html;
- $sides{new} .= $html;
- };
-
- when ('c') {
- # Diff the credited names
- $sides{old} .= $self->_link_artist_credit_name(
- $old_name,
- $self->diff_side(encode_entities($old_name->name), encode_entities($new_name->name), '-','\s+')
- );
- $sides{new} .= $self->_link_artist_credit_name(
- $new_name,
- $self->diff_side(encode_entities($old_name->name), encode_entities($new_name->name), '+', '\s+')
- );
-
- # Diff the join phrases
- $sides{old} .= $self->diff_side(encode_entities($old_name->join_phrase), encode_entities($new_name->join_phrase), '-', '\s+');
- $sides{new} .= $self->diff_side(encode_entities($old_name->join_phrase), encode_entities($new_name->join_phrase), '+', '\s+');
- }
-
- when ('-') {
- $sides{old} .= $h->span(
- { class => $class_map{'-'} },
- $self->_link_joined($old_name)
- );
- }
-
- when ('+') {
- $sides{new} .= $h->span(
- { class => $class_map{'+'} },
- $self->_link_joined($new_name)
- );
- }
+ if ($change_type eq 'u') {
+ my $html = $self->_link_joined($old_name);
+ $sides{old} .= $html;
+ $sides{new} .= $html;
+ }
+ elsif ($change_type eq 'c') {
+ # Diff the credited names
+ $sides{old} .= $self->_link_artist_credit_name(
+ $old_name,
+ $self->diff_side(encode_entities($old_name->name), encode_entities($new_name->name), '-','\s+')
+ );
+ $sides{new} .= $self->_link_artist_credit_name(
+ $new_name,
+ $self->diff_side(encode_entities($old_name->name), encode_entities($new_name->name), '+', '\s+')
+ );
+
+ # Diff the join phrases
+ $sides{old} .= $self->diff_side(encode_entities($old_name->join_phrase), encode_entities($new_name->join_phrase), '-', '\s+');
+ $sides{new} .= $self->diff_side(encode_entities($old_name->join_phrase), encode_entities($new_name->join_phrase), '+', '\s+');
+ }
+ elsif ($change_type eq '-') {
+ $sides{old} .= $h->span(
+ { class => $class_map{'-'} },
+ $self->_link_joined($old_name)
+ );
+ }
+ elsif ($change_type eq '+') {
+ $sides{new} .= $h->span(
+ { class => $class_map{'+'} },
+ $self->_link_joined($new_name)
+ );
}
}
diff --git a/lib/MusicBrainz/Server/Sitemap/Builder.pm b/lib/MusicBrainz/Server/Sitemap/Builder.pm
index fc7e89ffc1e..b3eca226670 100644
--- a/lib/MusicBrainz/Server/Sitemap/Builder.pm
+++ b/lib/MusicBrainz/Server/Sitemap/Builder.pm
@@ -13,6 +13,7 @@ use List::AllUtils qw( any natatime );
use Moose;
use MusicBrainz::Server::Constants qw( %ENTITIES );
use MusicBrainz::Server::Context;
+use MusicBrainz::Server::Data::Utils qw( contains_string );
use MusicBrainz::Server::Log qw( log_info );
use MusicBrainz::Server::Sitemap::Constants qw( $MAX_SITEMAP_SIZE );
use MusicBrainz::Server::Sitemap::Utils qw(
@@ -131,7 +132,6 @@ has sitemap_files => (
traits => ['Array', 'NoGetopt'],
handles => {
add_sitemap_file => 'push',
- all_sitemap_files => 'elements',
},
);
@@ -432,7 +432,7 @@ cleanup, after writing the index file.
sub do_not_delete {
my ($self, $file) = @_;
- any { $_ eq $file } $self->all_sitemap_files;
+ contains_string($self->sitemap_files, $file);
}
__PACKAGE__->meta->make_immutable;
diff --git a/lib/MusicBrainz/Server/Translation.pm b/lib/MusicBrainz/Server/Translation.pm
index 87e44155687..d9a6e80e9d2 100644
--- a/lib/MusicBrainz/Server/Translation.pm
+++ b/lib/MusicBrainz/Server/Translation.pm
@@ -13,6 +13,7 @@ use POSIX qw( setlocale );
use Text::Balanced qw( extract_bracketed );
use Unicode::ICU::Collator qw( UCOL_NUMERIC_COLLATION UCOL_ON );
+use MusicBrainz::Server::Data::Utils qw( contains_string );
use MusicBrainz::Server::Validation qw( encode_entities );
with 'MusicBrainz::Server::Role::Translation' => { domain => 'mb_server' };
@@ -141,7 +142,7 @@ sub set_language
return $set_lang;
}
# Check if the language without country code is in MB_LANGUAGES
- elsif (any { $set_lang_nocountry eq $_ } DBDefs->MB_LANGUAGES) {
+ elsif (contains_string([ DBDefs->MB_LANGUAGES ], $set_lang_nocountry)) {
return $set_lang_nocountry;
}
# Give up, return the full language even though it looks wrong
@@ -176,7 +177,7 @@ sub language_from_cookie
any { $cookie->value eq $_ || $cookie_munge eq $_ } DBDefs->MB_LANGUAGES) {
return $cookie->value;
} elsif (defined $cookie &&
- any { $cookie_nocountry eq $_ } DBDefs->MB_LANGUAGES) {
+ contains_string([ DBDefs->MB_LANGUAGES ], $cookie_nocountry)) {
return $cookie_nocountry;
} else {
return undef;
diff --git a/lib/MusicBrainz/Server/Validation.pm b/lib/MusicBrainz/Server/Validation.pm
index e8a14038533..12d76c27267 100644
--- a/lib/MusicBrainz/Server/Validation.pm
+++ b/lib/MusicBrainz/Server/Validation.pm
@@ -4,6 +4,7 @@ use warnings;
use Date::Calc;
use List::AllUtils qw( any );
+use Readonly;
require Exporter;
{
@@ -52,6 +53,7 @@ use Encode qw( decode encode );
use Scalar::Util qw( looks_like_number );
use Text::Unaccent::PurePerl qw( unac_string_utf16 );
use MusicBrainz::Server::Constants qw( $MAX_POSTGRES_INT $MAX_POSTGRES_BIGINT );
+use MusicBrainz::Server::Data::Utils qw( contains_number );
use utf8;
sub unaccent_utf16 ($)
@@ -260,6 +262,8 @@ sub is_valid_iso_3166_3
return $iso_3166_3 =~ /^[A-Z]{4}$/;
}
+Readonly my @MONTHS_WITH_30_DAYS => (4, 6, 9, 11);
+
sub is_valid_partial_date
{
my ($year, $month, $day) = @_;
@@ -274,7 +278,8 @@ sub is_valid_partial_date
if (defined $month && $day) {
return 0 if $day > 29 && $month == 2;
- return 0 if $day > 30 && any { $_ == $month } (4, 6, 9, 11);
+ return 0 if $day > 30 &&
+ contains_number(\@MONTHS_WITH_30_DAYS, $month);
}
if (defined $year) {
diff --git a/package.json b/package.json
index 55c74f8a3fd..49705a721aa 100644
--- a/package.json
+++ b/package.json
@@ -8,20 +8,20 @@
},
"license": "GPL-2.0-or-later",
"dependencies": {
- "@babel/core": "7.20.2",
+ "@babel/core": "7.22.10",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
- "@babel/plugin-proposal-optional-chaining": "7.18.9",
+ "@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
- "@babel/plugin-transform-flow-strip-types": "7.19.0",
- "@babel/plugin-transform-react-constant-elements": "7.20.2",
- "@babel/plugin-transform-react-inline-elements": "7.18.6",
- "@babel/plugin-transform-react-jsx": "7.19.0",
- "@babel/plugin-transform-runtime": "7.19.6",
- "@babel/preset-env": "7.20.2",
- "@babel/preset-flow": "7.18.6",
- "@babel/register": "7.18.9",
- "@babel/runtime": "7.20.1",
+ "@babel/plugin-transform-flow-strip-types": "7.22.5",
+ "@babel/plugin-transform-react-constant-elements": "7.22.5",
+ "@babel/plugin-transform-react-inline-elements": "7.22.5",
+ "@babel/plugin-transform-react-jsx": "7.22.5",
+ "@babel/plugin-transform-runtime": "7.22.10",
+ "@babel/preset-env": "7.22.10",
+ "@babel/preset-flow": "7.22.5",
+ "@babel/register": "7.22.5",
+ "@babel/runtime": "7.22.10",
"@popperjs/core": "2.5.3",
"@sentry/browser": "5.10.2",
"@sentry/node": "5.10.2",
@@ -32,16 +32,15 @@
"core-js": "3.6.5",
"deep-freeze-strict": "1.1.1",
"detect-node": "2.0.3",
- "eslint-plugin-simple-import-sort": "^7.0.0",
"fast-diff": "1.2.0",
"filesize": "2.0.4",
"generic-diff": "1.0.1",
"he": "1.1.1",
"imports-loader": "3.0.0",
- "jed": "https://github.com/mwiencek/Jed.git#cd3f71b",
+ "jed": "https://github.com/mwiencek/Jed.git#cd3f71b7479b9c587990a0fa27ae9fdafbd9d9d9",
"jquery": "1.11.2",
- "knockout": "https://github.com/mwiencek/knockout.git#a09f077",
- "knockout-arraytransforms": "https://github.com/mwiencek/knockout-arraytransforms.git#9673e91",
+ "knockout": "https://github.com/mwiencek/knockout.git#a09f0778844130a89af438971ad6229ab81e26b3",
+ "knockout-arraytransforms": "https://github.com/mwiencek/knockout-arraytransforms.git#9673e91a4755b92ba4eea5ca03067790dbbd997b",
"leaflet": "1.6.0",
"leaflet.markercluster": "1.4.1",
"less": "4.1.1",
@@ -72,20 +71,22 @@
"yargs": "3.10.0"
},
"devDependencies": {
- "@babel/cli": "7.19.3",
- "@babel/eslint-parser": "7.19.1",
+ "@babel/cli": "7.22.10",
"babel-plugin-istanbul": "5.2.0",
+ "babel-plugin-syntax-hermes-parser": "0.15.1",
"buffer": "6.0.3",
"chrome-remote-interface": "0.33.0",
- "eslint": "7.9.0",
- "eslint-plugin-fb-flow": "0.0.2",
- "eslint-plugin-flowtype": "5.2.0",
- "eslint-plugin-import": "2.22.0",
- "eslint-plugin-react": "7.20.6",
- "eslint-plugin-react-hooks": "4.1.2",
+ "eslint": "8.46.0",
+ "eslint-plugin-fb-flow": "0.0.4",
+ "eslint-plugin-ft-flow": "3.0.1",
+ "eslint-plugin-import": "2.29.0",
+ "eslint-plugin-react": "7.33.1",
+ "eslint-plugin-react-hooks": "4.6.0",
+ "eslint-plugin-simple-import-sort": "^7.0.0",
"file-url": "2.0.2",
- "flow-bin": "0.201.0",
+ "flow-bin": "0.220.0",
"gettext-parser": "3.1.0",
+ "hermes-eslint": "0.17.1",
"http-proxy": "1.18.1",
"json5": "2.1.3",
"nyc": "14.1.1",
@@ -97,7 +98,8 @@
"tap-junit": "3.1.0",
"tape": "4.7.0",
"utf8": "2.1.2",
- "xgettext-js": "3.0.0"
+ "xgettext-js": "https://github.com/metabrainz/xgettext-js#0301681a479c1796ff6850c9bd2a169074386d92"
},
- "private": true
+ "private": true,
+ "packageManager": "yarn@4.0.1"
}
diff --git a/po/README b/po/README
index d77e476de24..5aad6a7bfaf 100644
--- a/po/README
+++ b/po/README
@@ -18,7 +18,7 @@ To accomplish that we'd need a two step solution:
1. Prepare the code base for localization.
This means writing localization routines and bringing our strings into
-shape for translation (i.e. marking them appropriately). No
+shape for translation (that is, marking them appropriately). No
translations would be prepared at this step, the system would still
work in English, but introducing translations would be a matter of
including some .po files. This is currently implemented as
@@ -84,7 +84,7 @@ Plurals are done with an ln()-function:
(proper syntax: ln(english_singular, english_plural, number, parameter_hash))
-**Warning**: Plural forms only apply to enumerable entities, i.e. "I
+**Warning**: Plural forms only apply to enumerable entities, that is, "I
have X apples" should be localized with ln(), but "I have apples"
should use l().
diff --git a/po/attributes.bg.po b/po/attributes.bg.po
index d5e15b30fc3..b556be6e322 100644
--- a/po/attributes.bg.po
+++ b/po/attributes.bg.po
@@ -28,6 +28,11 @@ msgid ""
"or solo + keyboard) instrumental works, initially in baroque music."
msgstr ""
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -38,6 +43,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr ""
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -63,6 +73,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr ""
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -374,9 +389,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -829,6 +844,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.bn.po b/po/attributes.bn.po
index fcf80d54814..f2bdac35933 100644
--- a/po/attributes.bn.po
+++ b/po/attributes.bn.po
@@ -30,6 +30,11 @@ msgid ""
"or solo + keyboard) instrumental works, initially in baroque music."
msgstr ""
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -40,6 +45,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr "১০\" ভিনি"
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -65,6 +75,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr "৫.২৫\" ফ্লপি ডিস্ক "
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -376,9 +391,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -831,6 +846,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.ca.po b/po/attributes.ca.po
index f10f1053b21..dc7233a4ef9 100644
--- a/po/attributes.ca.po
+++ b/po/attributes.ca.po
@@ -35,6 +35,11 @@ msgstr ""
"a petita escala (sovint solista o solista + teclat), inicialment en música "
"barroca."
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -45,6 +50,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr "10\" Vilin"
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -70,6 +80,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr ""
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -383,9 +398,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -838,6 +853,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.cs.po b/po/attributes.cs.po
index fdb93fdaf3e..d972087b401 100644
--- a/po/attributes.cs.po
+++ b/po/attributes.cs.po
@@ -37,6 +37,11 @@ msgstr ""
"rozsahu (nejčastěji pro sólový nástroj nebo nástroj za doprovodu klavíru) s "
"počátky v hudbě období baroko."
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -47,6 +52,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr "10\" Vinyl"
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -72,6 +82,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr ""
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -387,9 +402,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -842,6 +857,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.cy.po b/po/attributes.cy.po
index 023ba8c1d5d..53f6e040583 100644
--- a/po/attributes.cy.po
+++ b/po/attributes.cy.po
@@ -29,6 +29,11 @@ msgid ""
"or solo + keyboard) instrumental works, initially in baroque music."
msgstr ""
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -39,6 +44,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr ""
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -64,6 +74,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr ""
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -375,9 +390,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -830,6 +845,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.da.po b/po/attributes.da.po
index dfea1b556b9..5d0e3641789 100644
--- a/po/attributes.da.po
+++ b/po/attributes.da.po
@@ -31,6 +31,11 @@ msgid ""
"or solo + keyboard) instrumental works, initially in baroque music."
msgstr ""
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -41,6 +46,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr "10\" vinyl"
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -66,6 +76,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr ""
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -377,9 +392,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -832,6 +847,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr "Acemtarab"
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.de.po b/po/attributes.de.po
index d08ea694be4..19948efe1a2 100644
--- a/po/attributes.de.po
+++ b/po/attributes.de.po
@@ -82,6 +82,11 @@ msgstr ""
"„Sonate“ ist ein allgemeiner Begriff für Instrumentalstücke in kleiner "
"Besetzung (meist Solo oder Solo + Tasten), ursprünglich in der Barockmusik."
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -92,6 +97,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr "10″-Vinyl"
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -117,6 +127,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr "5,25″-Diskette"
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -462,9 +477,9 @@ msgstr "Ein gebundes Buch mit einem Umschlag am Ende der eine CD beherbergt"
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
"Eine Aufführung eines oder mehrerer Theaterstücke, Musicals, Opern, Ballette "
"oder anderer ähnlicher Werke für die Bühne in ihrer inszenierten Form (im "
@@ -990,6 +1005,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.el.po b/po/attributes.el.po
index 6a2d7d7991e..ee6aeab54d2 100644
--- a/po/attributes.el.po
+++ b/po/attributes.el.po
@@ -34,6 +34,11 @@ msgid ""
"or solo + keyboard) instrumental works, initially in baroque music."
msgstr ""
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -44,6 +49,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr "βινύλιο 10\" "
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -69,6 +79,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr ""
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -384,9 +399,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -839,6 +854,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.eo.po b/po/attributes.eo.po
index 6624d55ef24..3fcf1271c54 100644
--- a/po/attributes.eo.po
+++ b/po/attributes.eo.po
@@ -37,6 +37,11 @@ msgstr ""
"(tre ofte solajn aŭ solajn + klavarajn) instrumentajn verkojn, komence en "
"baroka muziko."
+#: DB:medium_format/name:205
+msgctxt "medium_format"
+msgid "10\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:54
msgctxt "medium_format"
msgid "10\" Shellac"
@@ -47,6 +52,11 @@ msgctxt "medium_format"
msgid "10\" Vinyl"
msgstr "10″ vinildisko"
+#: DB:medium_format/name:206
+msgctxt "medium_format"
+msgid "12\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:72
msgctxt "medium_format"
msgid "12\" LaserDisc"
@@ -72,6 +82,11 @@ msgctxt "medium_format"
msgid "5.25\" Floppy Disk"
msgstr "5.25″ disketo"
+#: DB:medium_format/name:204
+msgctxt "medium_format"
+msgid "7\" Acetate"
+msgstr ""
+
#: DB:medium_format/name:52
msgctxt "medium_format"
msgid "7\" Flexi-disc"
@@ -396,9 +411,9 @@ msgstr ""
msgctxt "event_type"
msgid ""
"A performance of one or more plays, musicals, operas, ballets or other "
-"similar works for the stage in their staged form (as opposed to a concert performance"
-"a> without staging)."
+"similar works for the stage in their staged form (as opposed to a concert "
+"performance without staging)."
msgstr ""
#: DB:place_type/description:8
@@ -851,6 +866,11 @@ msgctxt "work_attribute_type_allowed_value"
msgid "Acemtarab"
msgstr ""
+#: DB:medium_format/name:203
+msgctxt "medium_format"
+msgid "Acetate"
+msgstr ""
+
#: DB:work_attribute_type_allowed_value/value:848
msgctxt "work_attribute_type_allowed_value"
msgid "Adānā"
diff --git a/po/attributes.es.po b/po/attributes.es.po
index 34dbd801e4a..61f9ad1bf18 100644
--- a/po/attributes.es.po
+++ b/po/attributes.es.po
@@ -42,19 +42,21 @@
# Philipp Wolfer \n"
+"
\n"
+"\n"
+"\n"
+"
\n"
+"\n"
+"\n"
+"
\n"
+"\n"
+"\n"
+"
\n"
+"\n"
+"\n"
+"
\n"
+"\n"
+"\n"
+"
\n"
+"\n"
+"\n"
+"
\n"
+"\n"
+"\n"
+"
\n"
+"\n"
+"
单曲根据发行市场的不同有不同的定义。
\n" +"\n" +"这首单曲还有其他的变体,称为“分裂单曲”,即由两个不同的艺术家的歌曲在一张唱" +"片中发布,通常是黑胶唱片。
" #: DB:medium_format/description:95 msgctxt "medium_format" @@ -188,13 +251,15 @@ msgid "" "connected to a phone via Bluetooth or headphone jack and unlocks the release " "for listening in a companion app for a limited period of time." msgstr "" +"这是一种“数字收藏”设备,主要用于韩国流行音乐,通过蓝牙或耳机接口连接到手机," +"并在有限的时间内解锁,可以在配套的应用程序中收听。" #: DB:place_type/description:9 msgctxt "place_type" msgid "" "A (usually green) space kept available for recreation in an otherwise built " "and populated area." -msgstr "" +msgstr "一种(通常是绿色的)可供娱乐的空间,在其他建筑和人口稠密的地区。" #: DB:medium_format/description:129 msgctxt "medium_format" @@ -203,6 +268,8 @@ msgid "" "often in the first track, that will have to be skipped in many audio " "players. Relatively common in old video game CDs." msgstr "" +"在同一个会话中同时包含音频和数据的CD。数据通常位于首音轨中,这在许多音频播放" +"器中必须跳过。在老式的电子游戏光盘中比较常见。" #: DB:medium_format/description:42 msgctxt "medium_format" @@ -211,6 +278,8 @@ msgid "" "they are properly separated, audio players will not try to play the data " "session and it won't be part of the disc ID for the CD." msgstr "" +"包含两个会话的CD,一个是音频会话,一个是数据会话。因为它们被正确地分开了,音" +"频播放机不会尝试播放数据会话,它也不会成为CD光盘ID的一部分。" #: DB:release_group_secondary_type/description:8 msgctxt "release_group_secondary_type" @@ -221,6 +290,9 @@ msgid "" "manner, and the DJ who does this modification is usually (although not " "always) credited in a fairly prominent way." msgstr "" +"dj混音是一个接一个播放的一系列录音,每一个都经过修改,使它们融合在一起成为连" +"续的音乐流。一个DJ的混音版本要求以某种方式修改录音,而做这种修改的DJ通常(尽管" +"不是总是)以一种相当显著的方式被记录下来。" #: DB:work_attribute_type_allowed_value/value:794 msgctxt "work_attribute_type_allowed_value" @@ -237,12 +309,12 @@ msgctxt "work_type" msgid "" "A ballet is music composed to be used, together with a choreography, for a " "ballet dance production." -msgstr "" +msgstr "芭蕾舞剧是为芭蕾舞剧创作的音乐,与舞蹈编排一起使用。" #: DB:release_packaging/description:19 msgctxt "release_packaging" msgid "A box usually containing multiple discs as part of a boxed set." -msgstr "" +msgstr "盒装碟通常装有多张碟片,作为盒装套装的一部分。" #: DB:work_type/description:3 msgctxt "work_type" @@ -250,6 +322,7 @@ msgid "" "A cantata is a vocal (often choral) composition with an instrumental " "(usually orchestral) accompaniment, typically in several movements." msgstr "" +"康塔塔是一种声乐(通常是合唱)与器乐(通常是管弦乐)伴奏的作品,通常有几个乐章。" #: DB:medium_format/description:46 msgctxt "medium_format" @@ -259,19 +332,21 @@ msgid "" "with physical releases but sometimes sold as a standalone item (especially " "in Asia)." msgstr "" +"一张卡片(或其他类似的物理支持),它不直接包含音乐本身,但提供了一个数字下载的" +"代码。通常与实体发行捆绑销售,但有时单独出售(特别是在亚洲)。" #: DB:label_type/description:10 msgctxt "label_type" msgid "" "A company that manufactures physical releases (such as pressing CDs or vinyl " "records)." -msgstr "" +msgstr "生产实体发行(如压制cd或黑胶唱片)的公司。" #: DB:work_type/description:4 msgctxt "work_type" msgid "" "A concerto is a musical work for soloist(s) accompanied by an orchestra." -msgstr "" +msgstr "协奏曲是在管弦乐队伴奏下为独奏者演奏的音乐作品。" #: DB:event_type/description:4 msgctxt "event_type" @@ -280,6 +355,8 @@ msgid "" "orientated around music performances, but can include them as side " "activities." msgstr "" +"会议、博览会或贸易博览会是一种通常不以音乐表演为中心的活动,但可以将其作为附" +"带活动。" #: DB:release_status/description:2 msgctxt "release_status" @@ -288,6 +365,8 @@ msgid "" "release (e.g. pre-release versions, releases included with a magazine, " "versions supplied to radio DJs for air-play)." msgstr "" +"免费发行或为宣传即将发布的正式版本而发行的版本(例如,预发行版本,杂志中包含的" +"版本,提供给电台dj播放的版本)。" #: DB:artist_type/description:2 msgctxt "artist_type" @@ -295,18 +374,20 @@ msgid "" "A grouping of multiple musicians who perform together (in some cases, some " "or all of the members might differ in different performances or recordings)." msgstr "" +"一个由多名音乐家组成的团体,他们一起表演(在某些情况下,一些或所有的成员可能在" +"不同的表演或录音中有所不同)。" #: DB:instrument_type/description:7 msgctxt "instrument_type" msgid "" "A grouping of related but different instruments, like the different violin-" "like instruments" -msgstr "" +msgstr "一组相关但不同的乐器,就像类似小提琴的不同的乐器" #: DB:label_type/description:5 msgctxt "label_type" msgid "A label that primarily puts out unsanctioned (bootleg) releases." -msgstr "" +msgstr "主要发行未经授权(盗版)作品的唱片公司。" #: DB:release_packaging/description:55 msgctxt "release_packaging" @@ -314,16 +395,18 @@ msgid "" "A large cardboard box often used until the mid-1990s to sell CDs in North " "America, so that they would fit existing vinyl racks in stores." msgstr "" +"一种大型纸板箱,直到20世纪90年代中期,常用于在北美销售cd,以便它们能装进商店" +"里现有的黑胶货架。" #: DB:place_type/description:43 msgctxt "place_type" msgid "A large, permanent outdoor stage, typically with a fixed seating area." -msgstr "" +msgstr "一个大型的、永久性的户外舞台,通常有固定的座位区。" #: DB:work_attribute_type_allowed_value/value:28 msgctxt "work_attribute_type_allowed_value" msgid "A major" -msgstr "" +msgstr "主要的" #: DB:work_type/description:8 msgctxt "work_type" @@ -332,6 +415,8 @@ msgid "" "Christian Eucharistic liturgy (Kyrie - Gloria - Credo - Sanctus - Benedictus " "- Agnus Dei, with other portions sometimes added) to music." msgstr "" +"mass是一种合唱作品,它将基督教圣体礼拜仪式的不变部分(Kyrie - Gloria - Credo " +"- Sanctus - Benedictus - Agnus Dei,有时添加其他部分)设置为音乐。" #: DB:event_type/description:5 msgctxt "event_type" @@ -340,6 +425,8 @@ msgid "" "medium-sized audience and instructs them individually and/or takes questions " "intended to improve the audience members' playing skills." msgstr "" +"大师班或诊所是艺术家与中小观众见面并单独指导他们和/或回答旨在提高观众演奏技巧" +"的问题的活动。" #: DB:release_packaging/description:56 msgctxt "release_packaging" @@ -347,11 +434,12 @@ msgid "" "A minimalistic plastic case where the back and front are kept together by a " "small hinge. Most commonly used for cheap promotion / DIY releases." msgstr "" +"一个极简的塑料盒子,前后由一个小铰链保持在一起。最常用的廉价促销/ DIY版本。" #: DB:work_attribute_type_allowed_value/value:29 msgctxt "work_attribute_type_allowed_value" msgid "A minor" -msgstr "" +msgstr "A小调" #: DB:work_type/description:13 msgctxt "work_type" @@ -359,32 +447,36 @@ msgid "" "A partita is an instrumental piece composed of a series of variations, and " "it's by its current definition very similar to a suite." msgstr "" +"partita是由一系列变奏曲组成的器乐作品,按照目前的定义,它与组曲非常相似。" #: DB:event_type/description:3 msgctxt "event_type" msgid "" "A party, reception or other event held specifically for the launch of a " "release." -msgstr "" +msgstr "发布会:为发布某一产品而举行的聚会、招待会或其他活动。" #: DB:release_packaging/description:17 msgctxt "release_packaging" msgid "A perfect bound book with a sleeve at the end to hold a CD" -msgstr "" +msgstr "一本精装的书,尾部有一个套筒,可以装一张CD" #: DB:event_type/description:6 msgctxt "event_type" msgid "" "A performance of one or more plays, musicals, operas, ballets or other " -"similar works for the stage in their staged form (as opposed to a concert performance" -"a> without staging)." +"similar works for the stage in their staged form (as opposed to a concert " +"performance without staging)." msgstr "" +"以舞台形式在舞台上演出一部或多部戏剧、音乐剧、歌剧、芭蕾或其他类似作品(与不演" +"出的音乐会演出" +"相反)。" #: DB:place_type/description:8 msgctxt "place_type" msgid "A place (generally a factory) at which physical media are manufactured." -msgstr "" +msgstr "制造物理介质的地方(通常是工厂)。" #: DB:place_type/description:5 msgctxt "place_type" @@ -393,20 +485,22 @@ msgid "" "surrounded by tiered seating for spectators, which can be used for indoor " "sports, concerts and other entertainment events." msgstr "" +"一个由大型封闭区域组成的中心活动空间,周围环绕着观众的阶梯座位,可以用于室内" +"运动、音乐会和其他娱乐活动。" #: DB:place_type/description:1 msgctxt "place_type" msgid "" "A place designed for non-live production of music, typically a recording " "studio." -msgstr "" +msgstr "为非现场音乐表演而设置的场所,一般指录音室。" #: DB:place_type/description:2 msgctxt "place_type" msgid "" "A place that has live artistic performances as one of its primary functions, " "such as a concert hall." -msgstr "" +msgstr "主要功能为现场艺术表演的场所,如音乐厅。" #: DB:place_type/description:6 msgctxt "place_type" @@ -415,6 +509,8 @@ msgid "" "Religious buildings often host concerts and serve as recording locations, " "especially for classical music." msgstr "" +"以礼拜或宗教修习为主要功能的场所。宗教建筑可用于举办音乐会及用作录音场所,尤" +"其用于古典音乐。" #: DB:place_type/description:4 msgctxt "place_type" @@ -423,6 +519,8 @@ msgid "" "consisting of a pitch surrounded by a structure for spectators with no roof, " "or a roof which can be retracted." msgstr "" +"主要功能为举办室外体育运动的场所,一般包含由看台包围的场地,没有屋顶或者具有" +"可收回屋顶。" #: DB:release_status/description:6 msgctxt "release_status" @@ -430,7 +528,7 @@ msgid "" "A planned official release that was cancelled before being released, but for " "which enough info is known to still confidently list it (e.g. it was " "available for preorder)." -msgstr "" +msgstr "在正式发行前取消发行,但收录证据充足(如曾开放预购)的专辑。" #: DB:work_type/description:28 msgctxt "work_type" @@ -439,13 +537,14 @@ msgid "" "between characters, and intended for theatrical performance rather than just " "reading." msgstr "" +"话剧是一种通常由角色间对话脚本构成的文学体裁,一般用于戏剧表演而非阅读。" #: DB:work_type/description:21 msgctxt "work_type" msgid "" "A poem is a literary piece, generally short and in verse, where words are " "usually chosen for their sound and for the images and ideas they suggest." -msgstr "" +msgstr "诗歌是通常较短并成行的文学作品,其语言押韵并用于表达意象及思想。" #: DB:release_status/description:5 msgctxt "release_status" @@ -455,6 +554,8 @@ msgid "" "replace it with a new version with some changes or to just retire it " "altogether (e.g. because of legal issues)." msgstr "" +"被艺术家和/或唱片公司在发行后中止流通的正式专辑,不管是改为新版本还是彻底绝版" +"(如因为法律诉讼问题)。" #: DB:release_group_secondary_type/description:10 msgctxt "release_group_secondary_type" @@ -463,17 +564,19 @@ msgid "" "demonstrate the sound of an artist to record labels, publishers and other " "artists." msgstr "" +"推广专辑更多意味着有限流通,用于向厂牌,词曲版权方以及其他艺术家演示某艺术家" +"的声音。" #: DB:work_type/description:14 msgctxt "work_type" msgid "" "A quartet is a musical composition scored for four voices or instruments." -msgstr "" +msgstr "四重奏或四重唱指由四个人声或乐器声部组成的音乐作品。" #: DB:series_type/description:8 msgctxt "series_type" msgid "A recurring festival, usually happening annually in the same location." -msgstr "" +msgstr "重复举办的音乐节,通常每年在同一地点举办。" #: DB:release_group_secondary_type/description:12 msgctxt "release_group_secondary_type" @@ -485,7 +588,7 @@ msgstr "" #: DB:release_group_secondary_type/description:7 msgctxt "release_group_secondary_type" msgid "A release that primarily contains remixed material." -msgstr "" +msgstr "主要含重混音素材的专辑。" #: DB:release_group_secondary_type/description:6 msgctxt "release_group_secondary_type" @@ -493,28 +596,30 @@ msgid "" "A release that was recorded live. Generally this means \"with an audience\", " "be it in person, through the radio or in another similar way." msgstr "" +"现场录制专辑。一般上这代表“有收听者”,可以是亲自,使用广播或其他类似手段收" +"听。" #: DB:place_type/description:7 msgctxt "place_type" msgid "" "A school, university or other similar educational institution (especially, " "but not only, one where music is taught)" -msgstr "" +msgstr "中小学,大学或其他类似的教育机构(尤指但不局限于音乐教育机构)" #: DB:series_type/description:14 msgctxt "series_type" msgid "A series of artists honoured by the same award." -msgstr "" +msgstr "一系列获同一奖项的艺术家。" #: DB:series_type/description:13 msgctxt "series_type" msgid "A series of artists." -msgstr "" +msgstr "一系列艺术家。" #: DB:series_type/description:15 msgctxt "series_type" msgid "A series of award ceremonies, usually one per year." -msgstr "" +msgstr "一系列颁奖典礼,通常为一年一度。" #: DB:series_type/description:6 msgctxt "series_type" @@ -529,7 +634,7 @@ msgstr "同一节目在同一个场馆的一系列演出。" #: DB:series_type/description:48 msgctxt "series_type" msgid "A series of recordings honoured by the same award." -msgstr "" +msgstr "一系列录音荣获同一个奖项。" #: DB:series_type/description:3 msgctxt "series_type" @@ -544,7 +649,7 @@ msgstr "同一位艺术家在不同地点的一系列相关的音乐会。" #: DB:series_type/description:12 msgctxt "series_type" msgid "A series of related concerts by an artist in the same location." -msgstr "" +msgstr "同一位艺术家在不同地点的一系列相关的音乐会。" #: DB:series_type/description:80 msgctxt "series_type" @@ -555,7 +660,7 @@ msgstr "" #: DB:series_type/description:47 msgctxt "series_type" msgid "A series of release groups honoured by the same award." -msgstr "" +msgstr "一系列专辑组荣获同一个奖项。" #: DB:series_type/description:1 msgctxt "series_type" @@ -570,7 +675,7 @@ msgstr "一系列专辑。" #: DB:series_type/description:46 msgctxt "series_type" msgid "A series of works honoured by the same award." -msgstr "" +msgstr "一系列作品荣获同一个奖项。" #: DB:series_type/description:5 msgctxt "series_type" @@ -596,6 +701,8 @@ msgid "" "single entity. In most cases, all of the songs are by the same composer, and " "often use words from the same poet or lyricist." msgstr "" +"声乐套曲是一系列用于按一定次序演唱作为统一体的歌曲。多数情况下所有歌曲由同一" +"作曲家谱曲,同一诗人或作词家填词。" #: DB:work_type/description:17 msgctxt "work_type" @@ -605,13 +712,15 @@ msgid "" "form by far in folk and popular music, but also fairly common in a classical " "context (\"art songs\")." msgstr "" +"歌曲最初(多数情况下仍然)指用于演唱的声乐作品,可带或不带伴奏。这是流行音乐" +"和民间音乐的最广泛形式,但也广泛用于古典乐领域(艺术歌曲)。" #: DB:work_type/description:22 msgctxt "work_type" msgid "" "A soundtrack is the music that accompanies a film, TV program, videogame, or " "even book." -msgstr "" +msgstr "原声音乐是指电影、电视节目、游戏或书籍的配乐。" #: DB:release_group_secondary_type/description:2 msgctxt "release_group_secondary_type" @@ -621,13 +730,16 @@ msgid "" "as soundtracks because the musical properties of the CDs are more " "interesting to MusicBrainz than their data properties." msgstr "" +"原声音乐指的是电影,电视剧,舞台剧,电子游戏或其他媒体作品的音乐部分。带有音" +"轨的游戏CD应视为原声音乐,因为这些CD的音乐性对MusicBrainz来说比数据性更有意" +"义。" #: DB:instrument_type/description:6 msgctxt "instrument_type" msgid "" "A standard grouping of instruments often played together, like a string " "quartet" -msgstr "" +msgstr "指经常搭配在一起演奏的标准化乐队,例如演奏弦乐四重奏的乐队" #: DB:medium_format/description:165 msgctxt "medium_format" @@ -650,6 +762,8 @@ msgid "" "performed in a concert setting. They may be extracts from a ballet or opera, " "or entirely original movements." msgstr "" +"组曲指按一定顺序编排的通常在音乐会演奏的一系列器乐或管弦乐曲。它们可能由芭蕾" +"舞曲或歌剧的选段,或者完全原创的乐章构成。" #: DB:work_type/description:18 msgctxt "work_type" @@ -658,13 +772,15 @@ msgid "" "single movement, that evokes a painting, a landscape, the content of a poem, " "a story or novel, or other non-musical source." msgstr "" +"交响诗是一个程式化的管弦乐作品,通常为单一乐章,令人联想起绘画,风光,诗歌内" +"容,小说情节或其他非音乐素材。" #: DB:work_type/description:16 msgctxt "work_type" msgid "" "A symphony is an extended composition, almost always scored for orchestra " "without soloists." -msgstr "" +msgstr "交响曲是大型音乐作品,几乎总是由不伴随独奏家的管弦乐队演奏。" #: DB:place_type/description:45 msgctxt "place_type" @@ -676,7 +792,7 @@ msgstr "" #: DB:release_packaging/description:2 msgctxt "release_packaging" msgid "A thinner jewel case, commonly used for CD singles." -msgstr "" +msgstr "更薄的珍宝盒,通常用于单曲CD。" #: DB:medium_format/description:128 msgctxt "medium_format" @@ -685,13 +801,15 @@ msgid "" "portable listening. It did not find commercial success, but a few albums " "were released in the format in the early 00s." msgstr "" +"原本用于移动聆听的带保护壳的超小型光碟。商业上不成功,但是00年代早期少数专辑" +"以此格式发行。" #: DB:medium_format/description:131 msgctxt "medium_format" msgid "" "A video format used in the 1980s and 90s for professional work, including " "television and video archival." -msgstr "" +msgstr "一个用于1980年代到1990年代专业作品的格式,包括电视台和视频档案。" #: DB:work_type/description:19 msgctxt "work_type" @@ -700,56 +818,58 @@ msgid "" "and sung scenes, the latter incorporating operatic and popular song, as well " "as dance." msgstr "" +"查瑞拉歌剧是对白和演唱穿插演出的西班牙音乐戏剧作品,演唱场景包括歌剧音乐和通" +"俗音乐,以及舞蹈。" #: DB:work_attribute_type_allowed_value/value:26 msgctxt "work_attribute_type_allowed_value" msgid "A-flat major" -msgstr "" +msgstr "降A大调" #: DB:work_attribute_type_allowed_value/value:27 msgctxt "work_attribute_type_allowed_value" msgid "A-flat minor" -msgstr "" +msgstr "降A小调" #: DB:work_attribute_type_allowed_value/value:817 msgctxt "work_attribute_type_allowed_value" msgid "A-sharp major" -msgstr "" +msgstr "升A大调" #: DB:work_attribute_type_allowed_value/value:30 msgctxt "work_attribute_type_allowed_value" msgid "A-sharp minor" -msgstr "" +msgstr "升A小调" #: DB:work_attribute_type/name:57 msgctxt "work_attribute_type" msgid "AACIMH ID" -msgstr "" +msgstr "AACIMH ID" #: DB:work_attribute_type/name:44 msgctxt "work_attribute_type" msgid "ACAM ID" -msgstr "" +msgstr "ACAM ID" #: DB:work_attribute_type/name:47 msgctxt "work_attribute_type" msgid "ACDAM ID" -msgstr "" +msgstr "ACDAM ID" #: DB:work_attribute_type/name:58 msgctxt "work_attribute_type" msgid "AEI ID" -msgstr "" +msgstr "AEI ID" #: DB:work_attribute_type/name:43 msgctxt "work_attribute_type" msgid "AGADU ID" -msgstr "" +msgstr "AGADU ID" #: DB:work_attribute_type/name:63 msgctxt "work_attribute_type" msgid "AKKA/LAA ID" -msgstr "" +msgstr "AKKA/LAA ID" #: DB:work_attribute_type/name:23 msgctxt "work_attribute_type" @@ -759,17 +879,17 @@ msgstr "AKM ID" #: DB:work_attribute_type/name:38 msgctxt "work_attribute_type" msgid "AMRA ID" -msgstr "" +msgstr "AMRA ID" #: DB:work_attribute_type/name:46 msgctxt "work_attribute_type" msgid "APA ID" -msgstr "" +msgstr "APA ID" #: DB:work_attribute_type/name:41 msgctxt "work_attribute_type" msgid "APDAYC ID" -msgstr "" +msgstr "APDAYC ID" #: DB:work_attribute_type/name:13 msgctxt "work_attribute_type" @@ -779,7 +899,7 @@ msgstr "APRA ID" #: DB:work_attribute_type/name:48 msgctxt "work_attribute_type" msgid "ARTISJUS ID" -msgstr "" +msgstr "ARTISJUS ID" #: DB:work_attribute_type/name:6 msgctxt "work_attribute_type" @@ -831,6 +951,11 @@ msgctxt "work_attribute_type_allowed_value" msgid "Acemtarab" msgstr "Acemtarab" +#: DB:medium_format/name:203 +msgctxt "medium_format" +msgid "Acetate" +msgstr "" + #: DB:work_attribute_type_allowed_value/value:848 msgctxt "work_attribute_type_allowed_value" msgid "Adānā" @@ -894,7 +1019,7 @@ msgstr "专辑" #: DB:series_ordering_type/description:2 msgctxt "series_ordering_type" msgid "Allows for manually setting the position of each item in the series." -msgstr "" +msgstr "用于手动调节每一项目在系列中位置。" #: DB:work_attribute_type_allowed_value/value:854 msgctxt "work_attribute_type_allowed_value" @@ -931,6 +1056,9 @@ msgid "" "EP is fairly difficult to define; usually it should only be assumed that a " "release is an EP if the artist defines it as such." msgstr "" +"EP,即迷你专辑,在标题中常有“EP”字样。一般而言EP比全长专辑(常规专辑或LP)要" +"短,而音轨则为EP专属,意味着不会来自过往专辑。EP相当难以定义;一般只会在艺术" +"家将专辑定义为EP时才是EP。" #: DB:release_group_primary_type/description:1 msgctxt "release_group_primary_type" @@ -939,6 +1067,8 @@ msgid "" "consists of previously unreleased material (unless this type is combined " "with secondary types which change that, such as \"Compilation\")." msgstr "" +"专辑,更确切的称呼是常规专辑(LP),一般包含从未发布的素材(除非此类型与会改变性" +"质的此类并用,如\"合辑\")。" #: DB:release_status/description:4 msgctxt "release_status" @@ -947,6 +1077,8 @@ msgid "" "don't correspond to any real release and should be linked to the original " "release using the transl(iter)ation relationship." msgstr "" +"某专辑变更标题后的版本。它们并不对应任何正式专辑,与原专辑间关联为翻译(转" +"写)。" #: DB:work_type/description:1 msgctxt "work_type" @@ -955,6 +1087,8 @@ msgid "" "accompaniment. They are most common inside operas, but also appear in " "cantatas, oratorios and even on their own (concert arias)." msgstr "" +"咏叹调是通常具有管弦乐队伴奏的单一人声作品。在歌剧中最常见,但也在康塔塔中," +"清唱剧中出现,甚至单独出现(音乐会咏叹调)。" #: DB:work_type/description:25 msgctxt "work_type" @@ -962,6 +1096,7 @@ msgid "" "An audio drama is a dramatized, purely acoustic performance, broadcast on " "radio or published on an audio medium (tape, CD, etc.)." msgstr "" +"音频剧是戏剧化的纯声音表演,通过电台广播或者以音频媒介(磁带,CD等)出版。" #: DB:release_group_secondary_type/description:11 msgctxt "release_group_secondary_type" @@ -970,11 +1105,13 @@ msgid "" "always, meant for radio). Unlike audiobooks, it usually has multiple " "performers rather than a main narrator." msgstr "" +"音频剧是只有音频的话剧(通常,但不总是,在广播上播出)。与有声读物不同,它常有" +"多位表演者而非单一叙述者。" #: DB:release_group_secondary_type/description:5 msgctxt "release_group_secondary_type" msgid "An audiobook is a book read by a narrator without music." -msgstr "" +msgstr "有声读物是由叙述者阅读而没有音乐的书。" #: DB:event_type/description:7 msgctxt "event_type" @@ -983,20 +1120,22 @@ msgid "" "but often includes musical performances in between the awarding of said " "prizes, especially for musical awards." msgstr "" +"颁奖典礼是主要进行颁奖流程的活动,但在奖项之间常包括音乐表演,尤其是音乐类奖" +"项。" #: DB:release_group_primary_type/description:12 msgctxt "release_group_primary_type" msgid "" "An episodic release that was originally broadcast via radio, television, or " "the Internet, including podcasts." -msgstr "" +msgstr "分集专辑原本是通过广播,电视或包含播客在内的互联网手段发布的。" #: DB:event_type/description:2 msgctxt "event_type" msgid "" "An event where a number of different acts perform across the course of the " "day. Larger festivals may be spread across multiple days." -msgstr "" +msgstr "数位不同音乐家在同一天内表演的活动。大型音乐节可能持续数天。" #: DB:event_type/description:1 msgctxt "event_type" @@ -1004,6 +1143,7 @@ msgid "" "An individual concert by a single artist or collaboration, often with " "supporting artists who perform before the main act." msgstr "" +"由单一艺术家或协作团体举办的独立音乐会,通常在主要演出前有协助艺术家表演。" #: DB:place_type/description:44 msgctxt "place_type" @@ -1015,12 +1155,12 @@ msgstr "" #: DB:release_group_secondary_type/description:4 msgctxt "release_group_secondary_type" msgid "An interview release contains an interview, generally with an artist." -msgstr "" +msgstr "采访专辑包含一段采访,一般含有一位艺术家。" #: DB:release_packaging/description:54 msgctxt "release_packaging" msgid "An often decorated metal tin containing one or more CDs." -msgstr "" +msgstr "装有一张或多张CD的金属罐,通常带有装饰。" #: DB:work_type/description:10 msgctxt "work_type" @@ -1029,6 +1169,8 @@ msgid "" "orchestra/ensemble. In true operas all dialog is sung, through arias and " "recitatives, but some styles of opera include spoken dialogue." msgstr "" +"歌剧是由歌唱家和管弦乐队/歌舞团表演的戏剧作品(文本+音乐部分)。真正的歌剧所" +"有对话由咏叹调和宣叙调演唱,但部分体裁的歌剧包含口白。" #: DB:work_type/description:11 msgctxt "work_type" @@ -1038,6 +1180,8 @@ msgid "" "usually not performed theatrically (it lacks costumes, props and strong " "character interaction)." msgstr "" +"清唱剧是由管弦乐队,合唱团和独奏家表演的大型(通常神圣)的音乐作品。尽管有角" +"色和情节,它通常不以戏剧化形式演出(缺乏戏服,道具,强烈的角色互动)。" #: DB:label_type/description:8 msgctxt "label_type" @@ -1051,6 +1195,8 @@ msgid "" "Independent (\"concert\") overtures also exist, which are generally " "programmatic works shorter than a symphonic poem." msgstr "" +"序曲通常指歌剧开场时的器乐曲。也存在独立(音乐会)序曲,一般是比交响诗短的程" +"式化作品。" #: DB:release_status/description:3 msgctxt "release_status" @@ -1059,6 +1205,8 @@ msgid "" "or the record company. This includes unofficial live recordings and pirated " "releases." msgstr "" +"非官方/地下专辑是未经艺术家和/或唱片公司许可的专辑。它包括非官方现场表演录音" +"和盗版专辑。" #: DB:work_type/description:20 msgctxt "work_type" @@ -1067,6 +1215,7 @@ msgid "" "considerable difficulty, usually designed to provide practice material for " "perfecting a particular technical skill." msgstr "" +"练习曲是一种器乐曲,常有可观的难度,一般用作某种特定演奏技巧的练习素材。" #: DB:work_attribute_type_allowed_value/value:310 msgctxt "work_attribute_type_allowed_value" @@ -1078,14 +1227,14 @@ msgctxt "release_status" msgid "" "Any release officially sanctioned by the artist and/or their record company. " "Most releases will fit into this category." -msgstr "" +msgstr "任何经艺术家和/或其唱片公司许可的专辑。多数专辑符合此分类。" #: DB:release_group_primary_type/description:11 msgctxt "release_group_primary_type" msgid "" "Any release that does not fit or can't decisively be placed in any of the " "other categories." -msgstr "" +msgstr "不属于或无法精确认定为其他门类的专辑。" #: DB:work_attribute_type_allowed_value/value:311 msgctxt "work_attribute_type_allowed_value" @@ -1140,7 +1289,7 @@ msgstr "Arazbarek" #: DB:editor_collection_type/name:7 msgctxt "collection_type" msgid "Area collection" -msgstr "" +msgstr "地区收藏" #: DB:area_alias_type/name:1 msgctxt "alias_type" @@ -1150,17 +1299,17 @@ msgstr "地区名称" #: DB:work_type/name:1 msgctxt "work_type" msgid "Aria" -msgstr "" +msgstr "咏叹调" #: DB:series_type/name:14 msgctxt "series_type" msgid "Artist award" -msgstr "" +msgstr "艺术家奖项" #: DB:editor_collection_type/name:8 msgctxt "collection_type" msgid "Artist collection" -msgstr "" +msgstr "艺术家收藏" #: DB:artist_alias_type/name:1 msgctxt "alias_type" @@ -1170,7 +1319,7 @@ msgstr "艺名" #: DB:series_type/name:13 msgctxt "series_type" msgid "Artist series" -msgstr "" +msgstr "艺术家系列" #: DB:work_attribute_type_allowed_value/value:693 msgctxt "work_attribute_type_allowed_value" @@ -1190,7 +1339,7 @@ msgstr "Asāvēri" #: DB:editor_collection_type/name:5 msgctxt "collection_type" msgid "Attending" -msgstr "" +msgstr "参加" #: DB:release_group_secondary_type/name:11 msgctxt "release_group_secondary_type" @@ -1215,12 +1364,12 @@ msgstr "自动" #: DB:event_type/name:7 msgctxt "event_type" msgid "Award ceremony" -msgstr "" +msgstr "颁奖典礼" #: DB:series_type/name:15 msgctxt "series_type" msgid "Award ceremony" -msgstr "" +msgstr "颁奖典礼" #: DB:work_attribute_type_allowed_value/value:694 msgctxt "work_attribute_type_allowed_value" @@ -1320,42 +1469,42 @@ msgstr "Aṭṭa" #: DB:work_attribute_type_allowed_value/value:795 msgctxt "work_attribute_type_allowed_value" msgid "B Dorian" -msgstr "" +msgstr "多利安B调式" #: DB:work_attribute_type_allowed_value/value:807 msgctxt "work_attribute_type_allowed_value" msgid "B Mixolydian" -msgstr "" +msgstr "混合吕底安B调式" #: DB:work_attribute_type_allowed_value/value:33 msgctxt "work_attribute_type_allowed_value" msgid "B major" -msgstr "" +msgstr "B大调" #: DB:work_attribute_type_allowed_value/value:34 msgctxt "work_attribute_type_allowed_value" msgid "B minor" -msgstr "" +msgstr "B小调" #: DB:work_attribute_type_allowed_value/value:31 msgctxt "work_attribute_type_allowed_value" msgid "B-flat major" -msgstr "" +msgstr "降B大调" #: DB:work_attribute_type_allowed_value/value:32 msgctxt "work_attribute_type_allowed_value" msgid "B-flat minor" -msgstr "" +msgstr "降B小调" #: DB:work_attribute_type_allowed_value/value:818 msgctxt "work_attribute_type_allowed_value" msgid "B-sharp major" -msgstr "" +msgstr "升B大调" #: DB:work_attribute_type_allowed_value/value:819 msgctxt "work_attribute_type_allowed_value" msgid "B-sharp minor" -msgstr "" +msgstr "升B小调" #: DB:work_attribute_type/name:7 msgctxt "work_attribute_type" @@ -1512,7 +1661,7 @@ msgstr "Bestenigar" #: DB:medium_format/name:131 msgctxt "medium_format" msgid "Betacam SP" -msgstr "" +msgstr "Betacam SP磁带" #: DB:medium_format/name:24 msgctxt "medium_format" @@ -1678,32 +1827,32 @@ msgstr "Blu-spec CD" #: DB:release_packaging/name:9 msgctxt "release_packaging" msgid "Book" -msgstr "" +msgstr "书目" #: DB:cover_art_archive.art_type/name:3 msgctxt "cover_art_type" msgid "Booklet" -msgstr "" +msgstr "小册子" #: DB:release_status/name:3 msgctxt "release_status" msgid "Bootleg" -msgstr "" +msgstr "非法制作" #: DB:label_type/name:5 msgctxt "label_type" msgid "Bootleg Production" -msgstr "" +msgstr "非法制作的产品" #: DB:cover_art_archive.art_type/name:49 msgctxt "cover_art_type" msgid "Bottom" -msgstr "" +msgstr "底面" #: DB:release_packaging/name:19 msgctxt "release_packaging" msgid "Box" -msgstr "" +msgstr "盒装" #: DB:work_attribute_type_allowed_value/value:607 msgctxt "work_attribute_type_allowed_value" @@ -1784,12 +1933,12 @@ msgstr "Bṛndāvani" #: DB:work_attribute_type_allowed_value/value:789 msgctxt "work_attribute_type_allowed_value" msgid "C Dorian" -msgstr "" +msgstr "多利安C调式" #: DB:work_attribute_type_allowed_value/value:801 msgctxt "work_attribute_type_allowed_value" msgid "C Mixolydian" -msgstr "" +msgstr "混合吕底安C调式" #: DB:work_attribute_type_allowed_value/value:2 msgctxt "work_attribute_type_allowed_value" @@ -1799,27 +1948,27 @@ msgstr "C 大调" #: DB:work_attribute_type_allowed_value/value:3 msgctxt "work_attribute_type_allowed_value" msgid "C minor" -msgstr "" +msgstr "C小调" #: DB:work_attribute_type_allowed_value/value:1 msgctxt "work_attribute_type_allowed_value" msgid "C-flat major" -msgstr "" +msgstr "降C大调" #: DB:work_attribute_type_allowed_value/value:812 msgctxt "work_attribute_type_allowed_value" msgid "C-flat minor" -msgstr "" +msgstr "降C小调" #: DB:work_attribute_type_allowed_value/value:4 msgctxt "work_attribute_type_allowed_value" msgid "C-sharp major" -msgstr "" +msgstr "升C大调" #: DB:work_attribute_type_allowed_value/value:5 msgctxt "work_attribute_type_allowed_value" msgid "C-sharp minor" -msgstr "" +msgstr "升C小调" #: DB:work_attribute_type/name:19 msgctxt "work_attribute_type" @@ -1859,17 +2008,17 @@ msgstr "CED" #: DB:work_attribute_type/name:45 msgctxt "work_attribute_type" msgid "COMPASS ID" -msgstr "" +msgstr "COMPASS ID" #: DB:work_attribute_type/name:73 msgctxt "work_attribute_type" msgid "COSCAP ID" -msgstr "" +msgstr "COSCAP ID" #: DB:work_attribute_type/name:65 msgctxt "work_attribute_type" msgid "COTT ID" -msgstr "" +msgstr "COTT ID" #: DB:work_attribute_type_allowed_value/value:63 msgctxt "work_attribute_type_allowed_value" @@ -1889,7 +2038,7 @@ msgstr "Campākali" #: DB:release_status/name:6 msgctxt "release_status" msgid "Cancelled" -msgstr "" +msgstr "已取消" #: DB:work_attribute_type_allowed_value/value:64 msgctxt "work_attribute_type_allowed_value" @@ -1915,17 +2064,17 @@ msgstr "Canfeza" #: DB:work_type/name:3 msgctxt "work_type" msgid "Cantata" -msgstr "" +msgstr "康塔塔" #: DB:release_packaging/name:4 msgctxt "release_packaging" msgid "Cardboard/Paper Sleeve" -msgstr "" +msgstr "光盘纸袋" #: DB:medium_format/name:9 msgctxt "medium_format" msgid "Cartridge" -msgstr "" +msgstr "盒带" #: DB:work_attribute_type_allowed_value/value:66 msgctxt "work_attribute_type_allowed_value" @@ -1935,17 +2084,17 @@ msgstr "Carturdaśa rāgamālika" #: DB:medium_format/name:8 msgctxt "medium_format" msgid "Cassette" -msgstr "" +msgstr "卡带" #: DB:release_packaging/name:8 msgctxt "release_packaging" msgid "Cassette Case" -msgstr "" +msgstr "卡带包装" #: DB:series_type/name:5 msgctxt "series_type" msgid "Catalogue" -msgstr "" +msgstr "目录" #: DB:work_attribute_type_allowed_value/value:291 msgctxt "work_attribute_type_allowed_value" @@ -1970,12 +2119,12 @@ msgstr "Cevher" #: DB:artist_type/name:4 msgctxt "artist_type" msgid "Character" -msgstr "" +msgstr "特性" #: DB:artist_type/name:6 msgctxt "artist_type" msgid "Choir" -msgstr "" +msgstr "合唱" #: DB:work_attribute_type_allowed_value/value:892 msgctxt "work_attribute_type_allowed_value" @@ -2000,17 +2149,17 @@ msgstr "Cittaranjani" #: DB:area_type/name:3 msgctxt "area_type" msgid "City" -msgstr "" +msgstr "城市" #: DB:area_type/description:3 msgctxt "area_type" msgid "City is used for settlements of any size, including towns and villages." -msgstr "" +msgstr "城市指代任何规模的居民点,包括城镇和村庄。" #: DB:release_packaging/name:56 msgctxt "release_packaging" msgid "Clamshell Case" -msgstr "" +msgstr "贝壳型碟片盒" #: DB:place_type/name:42 msgctxt "place_type" @@ -2025,7 +2174,7 @@ msgstr "汇编" #: DB:event_type/name:1 msgctxt "event_type" msgid "Concert" -msgstr "" +msgstr "音乐会" #: DB:place_type/name:44 msgctxt "place_type" @@ -2035,17 +2184,17 @@ msgstr "" #: DB:work_type/name:4 msgctxt "work_type" msgid "Concerto" -msgstr "" +msgstr "协奏曲" #: DB:event_type/name:4 msgctxt "event_type" msgid "Convention/Expo" -msgstr "" +msgstr "展览会" #: DB:medium_format/name:61 msgctxt "medium_format" msgid "Copy Control CD" -msgstr "" +msgstr "Copy Control光盘" #: DB:medium_format/description:61 msgctxt "medium_format" @@ -2055,6 +2204,9 @@ msgid "" "ripped. There are a number of software variants: the most well-known are " "Macrovision's Cactus Data Shield (CDS) and SunnComm's MediaMax." msgstr "" +"Copy Control光盘(CCCD)是用于指代2001至2006年间发行的含有表面上用于防止音频" +"抽取的软件的CD的雨伞术语。有数个软件变体:最为人所知者为Macrovision的Cactus " +"Data Shield (CDS)和SunnComm的MediaMax。" #: DB:area_type/name:1 msgctxt "area_type" @@ -2066,12 +2218,12 @@ msgctxt "area_type" msgid "" "Country is used for areas included (or previously included) in ISO 3166-1, e." "g. United States." -msgstr "" +msgstr "国家和地区指列于(或曾经列于)ISO 3166-1的区域,如美国。" #: DB:area_type/name:7 msgctxt "area_type" msgid "County" -msgstr "" +msgstr "县" #: DB:area_type/description:7 msgctxt "area_type" @@ -2081,6 +2233,8 @@ msgid "" "counties in the USA. These are not considered when displaying the parent " "areas for a given area." msgstr "" +"县指一国内更小的不是一级行政区也不是地方自治体的行政区划,如美国的县。在显示" +"某区域的上级区域时不考虑。" #: DB:work_attribute_type_allowed_value/value:608 msgctxt "work_attribute_type_allowed_value" @@ -2126,42 +2280,42 @@ msgstr "Cāyātarangiṇi" #: DB:work_attribute_type_allowed_value/value:790 msgctxt "work_attribute_type_allowed_value" msgid "D Dorian" -msgstr "" +msgstr "多利安D调式" #: DB:work_attribute_type_allowed_value/value:802 msgctxt "work_attribute_type_allowed_value" msgid "D Mixolydian" -msgstr "" +msgstr "混合吕底安D调式" #: DB:work_attribute_type_allowed_value/value:8 msgctxt "work_attribute_type_allowed_value" msgid "D major" -msgstr "" +msgstr "D大调" #: DB:work_attribute_type_allowed_value/value:9 msgctxt "work_attribute_type_allowed_value" msgid "D minor" -msgstr "" +msgstr "D小调" #: DB:work_attribute_type_allowed_value/value:6 msgctxt "work_attribute_type_allowed_value" msgid "D-flat major" -msgstr "" +msgstr "降D大调" #: DB:work_attribute_type_allowed_value/value:7 msgctxt "work_attribute_type_allowed_value" msgid "D-flat minor" -msgstr "" +msgstr "降D小调" #: DB:work_attribute_type_allowed_value/value:813 msgctxt "work_attribute_type_allowed_value" msgid "D-sharp major" -msgstr "" +msgstr "升D大调" #: DB:work_attribute_type_allowed_value/value:10 msgctxt "work_attribute_type_allowed_value" msgid "D-sharp minor" -msgstr "" +msgstr "升D小调" #: DB:medium_format/name:11 msgctxt "medium_format" @@ -2196,7 +2350,7 @@ msgstr "DVD 音频" #: DB:medium_format/name:92 msgctxt "medium_format" msgid "DVD-R Video" -msgstr "" +msgstr "DVD-R Video" #: DB:medium_format/name:19 msgctxt "medium_format" @@ -2286,17 +2440,17 @@ msgstr "数据 CD" #: DB:medium_format/name:94 msgctxt "medium_format" msgid "Data DVD" -msgstr "" +msgstr "数据 DVD" #: DB:medium_format/name:93 msgctxt "medium_format" msgid "Data DVD-R" -msgstr "" +msgstr "数据 DVD-R" #: DB:medium_format/name:128 msgctxt "medium_format" msgid "DataPlay" -msgstr "" +msgstr "DataPlay" #: DB:release_group_secondary_type/name:10 msgctxt "release_group_secondary_type" @@ -2407,7 +2561,7 @@ msgstr "Digibook" #: DB:release_packaging/name:89 msgctxt "release_packaging" msgid "Digifile" -msgstr "" +msgstr "Digifile" #: DB:release_packaging/name:3 msgctxt "release_packaging" @@ -2467,7 +2621,7 @@ msgstr "Din kī puriyā" #: DB:release_packaging/name:13 msgctxt "release_packaging" msgid "Discbox Slider" -msgstr "" +msgstr "抽取式碟片盒" #: DB:label_type/name:1 msgctxt "label_type" @@ -2477,27 +2631,27 @@ msgstr "发行商" #: DB:area_type/name:5 msgctxt "area_type" msgid "District" -msgstr "" +msgstr "市辖区" #: DB:area_type/description:5 msgctxt "area_type" msgid "District is used for a division of a large city, e.g. Queens." -msgstr "" +msgstr "市辖区指大城市的区划,如昆斯区。" #: DB:work_attribute_type_allowed_value/value:611 msgctxt "work_attribute_type_allowed_value" msgid "Divan" -msgstr "" +msgstr "Divan" #: DB:work_attribute_type_allowed_value/value:725 msgctxt "work_attribute_type_allowed_value" msgid "Dolap" -msgstr "" +msgstr "Dolap" #: DB:medium_format/name:46 msgctxt "medium_format" msgid "Download Card" -msgstr "" +msgstr "下载卡片" #: DB:medium_format/name:4 msgctxt "medium_format" @@ -2512,7 +2666,7 @@ msgstr "DualDisc (CD 面)" #: DB:medium_format/name:130 msgctxt "medium_format" msgid "DualDisc (DVD side)" -msgstr "" +msgstr "双面光盘(DVD)" #: DB:medium_format/name:65 msgctxt "medium_format" @@ -2653,47 +2807,47 @@ msgstr "Dīpāḷi" #: DB:work_attribute_type_allowed_value/value:791 msgctxt "work_attribute_type_allowed_value" msgid "E Dorian" -msgstr "" +msgstr "多利安E调式" #: DB:work_attribute_type_allowed_value/value:803 msgctxt "work_attribute_type_allowed_value" msgid "E Mixolydian" -msgstr "" +msgstr "混合吕底安E调式" #: DB:work_attribute_type_allowed_value/value:13 msgctxt "work_attribute_type_allowed_value" msgid "E major" -msgstr "" +msgstr "E大调" #: DB:work_attribute_type_allowed_value/value:14 msgctxt "work_attribute_type_allowed_value" msgid "E minor" -msgstr "" +msgstr "E小调" #: DB:work_attribute_type_allowed_value/value:11 msgctxt "work_attribute_type_allowed_value" msgid "E-flat major" -msgstr "" +msgstr "降E大调" #: DB:work_attribute_type_allowed_value/value:12 msgctxt "work_attribute_type_allowed_value" msgid "E-flat minor" -msgstr "" +msgstr "降E小调" #: DB:work_attribute_type_allowed_value/value:814 msgctxt "work_attribute_type_allowed_value" msgid "E-sharp major" -msgstr "" +msgstr "升A大调" #: DB:work_attribute_type_allowed_value/value:15 msgctxt "work_attribute_type_allowed_value" msgid "E-sharp minor" -msgstr "" +msgstr "升E小调" #: DB:work_attribute_type/name:37 msgctxt "work_attribute_type" msgid "ECAD ID" -msgstr "" +msgstr "ECAD ID" #: DB:release_group_primary_type/name:3 msgctxt "release_group_primary_type" @@ -2703,47 +2857,47 @@ msgstr "EP" #: DB:medium_format/name:50 msgctxt "medium_format" msgid "Edison Diamond Disc" -msgstr "" +msgstr "爱迪生钻石碟" #: DB:place_type/name:7 msgctxt "place_type" msgid "Educational institution" -msgstr "" +msgstr "教育机构" #: DB:instrument_type/name:4 msgctxt "instrument_type" msgid "Electronic instrument" -msgstr "" +msgstr "电子乐器" #: DB:medium_format/name:42 msgctxt "medium_format" msgid "Enhanced CD" -msgstr "" +msgstr "增强CD" #: DB:instrument_type/name:6 msgctxt "instrument_type" msgid "Ensemble" -msgstr "" +msgstr "乐团" #: DB:work_attribute_type_allowed_value/value:356 msgctxt "work_attribute_type_allowed_value" msgid "Eski Sipihr" -msgstr "" +msgstr "Eski Sipihr" #: DB:work_attribute_type_allowed_value/value:613 msgctxt "work_attribute_type_allowed_value" msgid "Etüd" -msgstr "" +msgstr "Etüd" #: DB:work_attribute_type_allowed_value/value:357 msgctxt "work_attribute_type_allowed_value" msgid "Evcara" -msgstr "" +msgstr "Evcara" #: DB:editor_collection_type/name:4 msgctxt "collection_type" msgid "Event collection" -msgstr "" +msgstr "活动收藏" #: DB:event_alias_type/name:1 msgctxt "alias_type" @@ -2818,12 +2972,12 @@ msgstr "Ezan" #: DB:work_attribute_type_allowed_value/value:792 msgctxt "work_attribute_type_allowed_value" msgid "F Dorian" -msgstr "" +msgstr "多利安F调式" #: DB:work_attribute_type_allowed_value/value:804 msgctxt "work_attribute_type_allowed_value" msgid "F Mixolydian" -msgstr "" +msgstr "混合吕底安F调式" #: DB:work_attribute_type_allowed_value/value:17 msgctxt "work_attribute_type_allowed_value" @@ -2833,37 +2987,37 @@ msgstr "F 大调" #: DB:work_attribute_type_allowed_value/value:18 msgctxt "work_attribute_type_allowed_value" msgid "F minor" -msgstr "" +msgstr "F 小调" #: DB:work_attribute_type_allowed_value/value:16 msgctxt "work_attribute_type_allowed_value" msgid "F-flat major" -msgstr "" +msgstr "降 F 大调" #: DB:work_attribute_type_allowed_value/value:815 msgctxt "work_attribute_type_allowed_value" msgid "F-flat minor" -msgstr "" +msgstr "降F小调" #: DB:work_attribute_type_allowed_value/value:19 msgctxt "work_attribute_type_allowed_value" msgid "F-sharp major" -msgstr "" +msgstr "升 F 大调" #: DB:work_attribute_type_allowed_value/value:20 msgctxt "work_attribute_type_allowed_value" msgid "F-sharp minor" -msgstr "" +msgstr "升 F 小调" #: DB:work_attribute_type_allowed_value/value:731 msgctxt "work_attribute_type_allowed_value" msgid "Fahte" -msgstr "" +msgstr "Fahte" #: DB:instrument_type/name:7 msgctxt "instrument_type" msgid "Family" -msgstr "" +msgstr "族" #: DB:work_attribute_type_allowed_value/value:615 msgctxt "work_attribute_type_allowed_value" @@ -2873,12 +3027,12 @@ msgstr "Fantezi" #: DB:release_packaging/name:10 msgctxt "release_packaging" msgid "Fatbox" -msgstr "" +msgstr "Fatbox" #: DB:gender/name:2 msgctxt "gender" msgid "Female" -msgstr "" +msgstr "女性" #: DB:work_attribute_type_allowed_value/value:732 msgctxt "work_attribute_type_allowed_value" @@ -2965,12 +3119,12 @@ msgctxt "medium_format" msgid "" "Flat discs with grooves used in phonographs/gramophones. For shellac and " "vinyl records, use that specifically" -msgstr "" +msgstr "留声机里使用的带沟槽的碟片,专门用于胶木和黑胶唱片的录制" #: DB:medium_format/name:51 msgctxt "medium_format" msgid "Flexi-disc" -msgstr "" +msgstr "软唱片" #: DB:medium_format/description:51 msgctxt "medium_format" @@ -2978,6 +3132,8 @@ msgid "" "Flexi-discs are phonograph records made of a thin, flexible vinyl sheet with " "a molded-in groove, designed to be playable on a normal phonograph turntable." msgstr "" +"软唱片是由较薄,可弯曲塑胶片通过模压刻上音轨的留声机唱片,可使用常规留声机播" +"放。" #: DB:medium_format/name:76 msgctxt "medium_format" @@ -2989,12 +3145,12 @@ msgctxt "gender" msgid "" "For cases where gender just doesn't apply at all (like companies entered as " "artists)." -msgstr "" +msgstr "在区分性别无用的情况下。(就像大公司以艺术家的身份加入一样)" #: DB:work_attribute_type/name:16 msgctxt "work_attribute_type" msgid "Form (Ottoman, Turkish)" -msgstr "" +msgstr "形式(奥斯曼,土耳其)" #: DB:area_alias_type/name:2 msgctxt "alias_type" @@ -3014,42 +3170,42 @@ msgstr "正面" #: DB:work_attribute_type_allowed_value/value:793 msgctxt "work_attribute_type_allowed_value" msgid "G Dorian" -msgstr "" +msgstr "多利安G调式" #: DB:work_attribute_type_allowed_value/value:805 msgctxt "work_attribute_type_allowed_value" msgid "G Mixolydian" -msgstr "" +msgstr "混合吕底安G调式" #: DB:work_attribute_type_allowed_value/value:22 msgctxt "work_attribute_type_allowed_value" msgid "G major" -msgstr "" +msgstr "G 大调" #: DB:work_attribute_type_allowed_value/value:23 msgctxt "work_attribute_type_allowed_value" msgid "G minor" -msgstr "" +msgstr "G 小调" #: DB:work_attribute_type_allowed_value/value:21 msgctxt "work_attribute_type_allowed_value" msgid "G-flat major" -msgstr "" +msgstr "降 G 大调" #: DB:work_attribute_type_allowed_value/value:816 msgctxt "work_attribute_type_allowed_value" msgid "G-flat minor" -msgstr "" +msgstr "降G小调" #: DB:work_attribute_type_allowed_value/value:24 msgctxt "work_attribute_type_allowed_value" msgid "G-sharp major" -msgstr "" +msgstr "升 G 大调" #: DB:work_attribute_type_allowed_value/value:25 msgctxt "work_attribute_type_allowed_value" msgid "G-sharp minor" -msgstr "" +msgstr "升 G 小调" #: DB:work_attribute_type/name:9 msgctxt "work_attribute_type" @@ -3059,7 +3215,7 @@ msgstr "GEMA ID" #: DB:work_attribute_type/name:106 msgctxt "work_attribute_type" msgid "GMR ID" -msgstr "" +msgstr "GMR ID" #: DB:work_attribute_type_allowed_value/value:88 msgctxt "work_attribute_type_allowed_value" @@ -3079,7 +3235,7 @@ msgstr "Garuḍadhvani" #: DB:release_packaging/name:12 msgctxt "release_packaging" msgid "Gatefold Cover" -msgstr "" +msgstr "书本式包装" #: DB:work_attribute_type_allowed_value/value:911 msgctxt "work_attribute_type_allowed_value" @@ -3160,7 +3316,7 @@ msgstr "Gerdaniyekürdi" msgctxt "medium_format" msgid "" "German tape cartridge format, using grooved tape rather than magnetic tape." -msgstr "" +msgstr "德国的一种卡带格式,使用机械音轨而非磁带。" #: DB:work_attribute_type_allowed_value/value:380 msgctxt "work_attribute_type_allowed_value" @@ -3285,7 +3441,7 @@ msgstr "HDCD" #: DB:work_attribute_type/name:64 msgctxt "work_attribute_type" msgid "HFA ID" -msgstr "" +msgstr "HFA ID" #: DB:medium_format/name:37 msgctxt "medium_format" @@ -3570,12 +3726,12 @@ msgstr "混合 SACD (SACD 层)" #: DB:medium_format/name:87 msgctxt "medium_format" msgid "Hybrid SACD (SACD layer, 2 channels)" -msgstr "" +msgstr "混合 SACD (SACD 层,双通道)" #: DB:medium_format/name:86 msgctxt "medium_format" msgid "Hybrid SACD (SACD layer, multichannel)" -msgstr "" +msgstr "混合 SACD (SACD 层,多通道)" #: DB:work_attribute_type_allowed_value/value:418 msgctxt "work_attribute_type_allowed_value" @@ -3655,52 +3811,52 @@ msgstr "ICE ID" #: DB:work_attribute_type/description:24 msgctxt "work_attribute_type" msgid "ID for the Argentinean rights society SADAIC" -msgstr "" +msgstr "阿根廷著作权协会SADAIC ID" #: DB:work_attribute_type/description:13 msgctxt "work_attribute_type" msgid "ID for the Australasian rights society APRA" -msgstr "" +msgstr "澳大利亚著作权协会APRA ID" #: DB:work_attribute_type/description:23 msgctxt "work_attribute_type" msgid "ID for the Austrian rights society AKM" -msgstr "" +msgstr "奥地利著作权协会AKM ID" #: DB:work_attribute_type/description:73 msgctxt "work_attribute_type" msgid "ID for the Barbadian rights society COSCAP" -msgstr "" +msgstr "巴巴多斯著作权协会COSCAP ID" #: DB:work_attribute_type/description:28 msgctxt "work_attribute_type" msgid "ID for the Belgian rights society SABAM" -msgstr "" +msgstr "比利时著作权协会SABAM ID" #: DB:work_attribute_type/description:61 msgctxt "work_attribute_type" msgid "ID for the Bolivian rights society SOBODAYCOM" -msgstr "" +msgstr "玻利维亚著作权协会 SOBODAYCOM ID" #: DB:work_attribute_type/description:37 msgctxt "work_attribute_type" msgid "ID for the Brazilian rights society ECAD" -msgstr "" +msgstr "巴西著作权协会ECAD ID" #: DB:work_attribute_type/description:34 msgctxt "work_attribute_type" msgid "ID for the British rights society PRS for Music" -msgstr "" +msgstr "英国音乐著作权协会PRS ID" #: DB:work_attribute_type/description:10 msgctxt "work_attribute_type" msgid "ID for the Canadian rights society SOCAN" -msgstr "" +msgstr "加拿大著作权协会SOCAN ID" #: DB:work_attribute_type/description:53 msgctxt "work_attribute_type" msgid "ID for the Canadian rights society SODRAC" -msgstr "" +msgstr "加拿大著作权协会SODRAC ID" #: DB:work_attribute_type/description:173 msgctxt "work_attribute_type" @@ -3710,187 +3866,187 @@ msgstr "" #: DB:work_attribute_type/description:71 msgctxt "work_attribute_type" msgid "ID for the Chinese rights society MCSC" -msgstr "" +msgstr "中国大陆著作权协会MCSC(中国音乐著作权协会) ID" #: DB:work_attribute_type/description:39 msgctxt "work_attribute_type" msgid "ID for the Colombian rights society SAYCO" -msgstr "" +msgstr "哥伦比亚著作权协会SAYCO ID" #: DB:work_attribute_type/description:44 msgctxt "work_attribute_type" msgid "ID for the Costa Rican rights society ACAM" -msgstr "" +msgstr "哥斯达黎加著作权协会ACAM ID" #: DB:work_attribute_type/description:47 msgctxt "work_attribute_type" msgid "ID for the Cuban rights society ACDAM" -msgstr "" +msgstr "古巴著作权协会ACDAM ID" #: DB:work_attribute_type/description:25 msgctxt "work_attribute_type" msgid "ID for the Czech rights society OSA" -msgstr "" +msgstr "捷克著作权协会OSA ID" #: DB:work_attribute_type/description:51 msgctxt "work_attribute_type" msgid "ID for the Danish rights society KODA" -msgstr "" +msgstr "丹麦著作权协会KODA ID" #: DB:work_attribute_type/description:60 msgctxt "work_attribute_type" msgid "ID for the Dominican rights society SGACEDOM" -msgstr "" +msgstr "多米尼加共和国著作权协会SGACEDOM ID" #: DB:work_attribute_type/description:26 msgctxt "work_attribute_type" msgid "ID for the Dutch rights society BUMA/STEMRA" -msgstr "" +msgstr "荷兰著作权协会BUMA/STEMRA ID" #: DB:work_attribute_type/description:40 msgctxt "work_attribute_type" msgid "ID for the Ecuadorian rights society SAYCE" -msgstr "" +msgstr "厄瓜多尔著作权协会SAYCE ID" #: DB:work_attribute_type/description:66 msgctxt "work_attribute_type" msgid "ID for the Finnish rights society TEOSTO" -msgstr "" +msgstr "芬兰著作权协会TEOSTO ID" #: DB:work_attribute_type/description:21 msgctxt "work_attribute_type" msgid "ID for the French rights society Sacem" -msgstr "" +msgstr "法国著作权协会Sacem ID" #: DB:work_attribute_type/description:9 msgctxt "work_attribute_type" msgid "ID for the German rights society GEMA" -msgstr "" +msgstr "德国著作权协会GEMA ID" #: DB:work_attribute_type/description:58 msgctxt "work_attribute_type" msgid "ID for the Guatemalan rights society AEI" -msgstr "" +msgstr "危地马拉著作权协会AEI ID" #: DB:work_attribute_type/description:57 msgctxt "work_attribute_type" msgid "ID for the Honduran rights society AACIMH" -msgstr "" +msgstr "洪都拉斯著作权协会AACIMH ID" #: DB:work_attribute_type/description:19 msgctxt "work_attribute_type" msgid "ID for the Hong Kong rights society CASH" -msgstr "" +msgstr "香港著作权协会CASH(香港作曲家及作词家协会) ID" #: DB:work_attribute_type/description:48 msgctxt "work_attribute_type" msgid "ID for the Hungarian rights society ARTISJUS" -msgstr "" +msgstr "匈牙利著作权协会ARTISJUS ID" #: DB:work_attribute_type/description:54 msgctxt "work_attribute_type" msgid "ID for the Icelandic rights society STEF" -msgstr "" +msgstr "冰岛著作权协会 STEF 的 ID" #: DB:work_attribute_type/description:70 msgctxt "work_attribute_type" msgid "ID for the Indian rights society IPRS" -msgstr "" +msgstr "印度著作权协会IPRS ID" #: DB:work_attribute_type/description:29 msgctxt "work_attribute_type" msgid "ID for the International Copyright Enterprise" -msgstr "" +msgstr "国际著作权企业ID" #: DB:work_attribute_type/description:52 msgctxt "work_attribute_type" msgid "ID for the Irish rights society IMRO" -msgstr "" +msgstr "爱尔兰著作权协会IMRO ID" #: DB:work_attribute_type/description:36 msgctxt "work_attribute_type" msgid "ID for the Italian rights society SIAE" -msgstr "" +msgstr "意大利著作权协会SIAE ID" #: DB:work_attribute_type/description:69 msgctxt "work_attribute_type" msgid "ID for the Jamaican rights society JACAP" -msgstr "" +msgstr "牙买加著作权协会JACAP ID" #: DB:work_attribute_type/description:3 msgctxt "work_attribute_type" msgid "ID for the Japanese rights society JASRAC" -msgstr "" +msgstr "日本著作权协会JASRAC(社团法人日本音乐著作权协会) ID" #: DB:work_attribute_type/description:33 msgctxt "work_attribute_type" msgid "ID for the Japanese rights society NexTone" -msgstr "" +msgstr "日本著作权协会Nextone ID" #: DB:work_attribute_type/description:11 msgctxt "work_attribute_type" msgid "ID for the Korean rights society KOMCA" -msgstr "" +msgstr "韩国著作权协会KOMCA(韩国音乐著作权协会) ID" #: DB:work_attribute_type/description:63 msgctxt "work_attribute_type" msgid "ID for the Latvian rights society AKKA/LAA" -msgstr "" +msgstr "拉脱维亚著作权协会AKKA/LAA ID" #: DB:work_attribute_type/description:49 msgctxt "work_attribute_type" msgid "ID for the Malaysian rights society MACP" -msgstr "" +msgstr "马来西亚著作权协会MACP ID" #: DB:work_attribute_type/description:27 msgctxt "work_attribute_type" msgid "ID for the Mexican rights society SACM" -msgstr "" +msgstr "墨西哥著作权协会SACM ID" #: DB:work_attribute_type/description:59 msgctxt "work_attribute_type" msgid "ID for the Nicaraguan rights society NICAUTOR" -msgstr "" +msgstr "尼加拉瓜著作权协会NICAUTOR ID" #: DB:work_attribute_type/description:67 msgctxt "work_attribute_type" msgid "ID for the Norwegian rights society TONO" -msgstr "" +msgstr "挪威著作权协会TONO ID" #: DB:work_attribute_type/description:62 msgctxt "work_attribute_type" msgid "ID for the Panamanian rights society SPAC" -msgstr "" +msgstr "巴拿马著作权协会SPAC ID" #: DB:work_attribute_type/description:46 msgctxt "work_attribute_type" msgid "ID for the Paraguayan rights society APA" -msgstr "" +msgstr "巴拉圭著作权协会APA ID" #: DB:work_attribute_type/description:41 msgctxt "work_attribute_type" msgid "ID for the Peruvian rights society APDAYC" -msgstr "" +msgstr "秘鲁著作权协会APDAYC ID" #: DB:work_attribute_type/description:30 msgctxt "work_attribute_type" msgid "ID for the Polish rights society ZAiKS" -msgstr "" +msgstr "波兰著作权协会ZAiKS ID" #: DB:work_attribute_type/description:35 msgctxt "work_attribute_type" msgid "ID for the Portuguese rights society SPA" -msgstr "" +msgstr "葡萄牙著作权协会SPA ID" #: DB:work_attribute_type/description:56 msgctxt "work_attribute_type" msgid "ID for the Salvadoran rights society SACIM" -msgstr "" +msgstr "萨尔瓦多著作权协会SACIM ID" #: DB:work_attribute_type/description:45 msgctxt "work_attribute_type" msgid "ID for the Singaporean rights society COMPASS" -msgstr "" +msgstr "新加坡著作权协会COMPASS ID" #: DB:work_attribute_type/description:140 msgctxt "work_attribute_type" @@ -3900,107 +4056,107 @@ msgstr "" #: DB:work_attribute_type/description:68 msgctxt "work_attribute_type" msgid "ID for the South African rights society SAMRO" -msgstr "" +msgstr "南非著作权协会SAMRO ID" #: DB:work_attribute_type/description:20 msgctxt "work_attribute_type" msgid "ID for the Spanish rights society SGAE" -msgstr "" +msgstr "西班牙著作权协会SGAE ID" #: DB:work_attribute_type/description:50 msgctxt "work_attribute_type" msgid "ID for the Swedish rights society STIM" -msgstr "" +msgstr "瑞典著作权协会STIM ID" #: DB:work_attribute_type/description:18 msgctxt "work_attribute_type" msgid "ID for the Swiss rights society SUISA" -msgstr "" +msgstr "瑞士著作权协会SUISA ID" #: DB:work_attribute_type/description:12 msgctxt "work_attribute_type" msgid "ID for the Taiwanese rights society MÜST" -msgstr "" +msgstr "台湾著作权协会MÜST(社团法人中华音乐著作权协会) ID" #: DB:work_attribute_type/description:72 msgctxt "work_attribute_type" msgid "ID for the Thai rights society MCT" -msgstr "" +msgstr "泰国著作权协会MCT ID" #: DB:work_attribute_type/description:65 msgctxt "work_attribute_type" msgid "ID for the Trinidadian and Tobagonian rights society COTT" -msgstr "" +msgstr "特立尼达和多巴哥著作权协会COTT ID" #: DB:work_attribute_type/description:6 msgctxt "work_attribute_type" msgid "ID for the US rights society ASCAP" -msgstr "" +msgstr "美国著作权协会ASCAP ID" #: DB:work_attribute_type/description:7 msgctxt "work_attribute_type" msgid "ID for the US rights society BMI" -msgstr "" +msgstr "美国著作权协会BMI ID" #: DB:work_attribute_type/description:106 msgctxt "work_attribute_type" msgid "ID for the US rights society GMR" -msgstr "" +msgstr "美国版权协会GMR ID" #: DB:work_attribute_type/description:8 msgctxt "work_attribute_type" msgid "ID for the US rights society SESAC" -msgstr "" +msgstr "美国著作权协会SESAC ID" #: DB:work_attribute_type/description:43 msgctxt "work_attribute_type" msgid "ID for the Uruguayan rights society AGADU" -msgstr "" +msgstr "乌拉圭著作权协会AGADU ID" #: DB:work_attribute_type/description:42 msgctxt "work_attribute_type" msgid "ID for the Venezuelan rights society SACVEN" -msgstr "" +msgstr "委内瑞拉著作权协会SACVEN ID" #: DB:work_attribute_type/description:107 msgctxt "work_attribute_type" msgid "ID for the Vietnamese rights society VCPMC" -msgstr "" +msgstr "越南著作权协会ID VCPMC" #: DB:work_attribute_type/description:38 msgctxt "work_attribute_type" msgid "ID for the international (formerly US) rights society AMRA" -msgstr "" +msgstr "国际(以前为美国)版权协会AMRA ID" #: DB:work_attribute_type/description:55 msgctxt "work_attribute_type" msgid "ID for the international rights society consortium LatinNet" -msgstr "" +msgstr "国际著作权协会联合会 LatinNet ID" #: DB:work_attribute_type/description:22 msgctxt "work_attribute_type" msgid "ID for the private licensing company CCLI" -msgstr "" +msgstr "私人许可公司CCLI ID" #: DB:work_attribute_type/description:64 msgctxt "work_attribute_type" msgid "ID for the private licensing company HFA (Harry Fox Agency)" -msgstr "" +msgstr "私人许可公司HFA (Harry Fox Agency) ID" #: DB:work_attribute_type/name:52 msgctxt "work_attribute_type" msgid "IMRO ID" -msgstr "" +msgstr "IMRO ID" #: DB:work_attribute_type/name:70 msgctxt "work_attribute_type" msgid "IPRS ID" -msgstr "" +msgstr "IPRS ID" #: DB:work_attribute_type/name:14 msgctxt "work_attribute_type" msgid "Identifiers" -msgstr "" +msgstr "标识符" #: DB:work_attribute_type_allowed_value/value:832 msgctxt "work_attribute_type_allowed_value" @@ -4015,33 +4171,33 @@ msgstr "品牌" #: DB:work_type/name:30 msgctxt "work_type" msgid "Incidental music" -msgstr "" +msgstr "配乐" #: DB:work_type/description:30 msgctxt "work_type" msgid "" "Incidental music is music written as background for (usually) a theatre play." -msgstr "" +msgstr "配乐指(通常)为戏剧演出伴奏创作的音乐。" #: DB:area_type/name:9 msgctxt "area_type" msgid "Indigenous territory / reserve" -msgstr "" +msgstr "土著领地/保护区" #: DB:place_type/name:5 msgctxt "place_type" msgid "Indoor arena" -msgstr "" +msgstr "室内竞技场" #: DB:editor_collection_type/name:9 msgctxt "collection_type" msgid "Instrument collection" -msgstr "" +msgstr "乐器收藏" #: DB:instrument_alias_type/name:1 msgctxt "alias_type" msgid "Instrument name" -msgstr "" +msgstr "乐器名" #: DB:release_group_secondary_type/name:4 msgctxt "release_group_secondary_type" @@ -4101,7 +4257,7 @@ msgstr "Isfahani" #: DB:area_type/name:6 msgctxt "area_type" msgid "Island" -msgstr "" +msgstr "岛屿" #: DB:area_type/description:6 msgctxt "area_type" @@ -4110,11 +4266,13 @@ msgid "" "own, e.g. Skye. These are not considered when displaying the parent areas " "for a given area." msgstr "" +"岛屿指不下辖任何行政区划的岛屿和环礁,如斯凯岛。在显示某区域的上级区域时不考" +"虑。" #: DB:work_attribute_type/name:69 msgctxt "work_attribute_type" msgid "JACAP ID" -msgstr "" +msgstr "JACAP ID" #: DB:work_attribute_type/name:3 msgctxt "work_attribute_type" @@ -4146,7 +4304,7 @@ msgctxt "release_packaging" msgid "" "Japanese case that holds an 8cm CD. It is rectangular but can be snapped to " "make it more compact (hence the name)." -msgstr "" +msgstr "日本的8厘米CD盒。正方形,但可以闭合后使其更紧凑(由此得名)。" #: DB:work_attribute_type_allowed_value/value:929 msgctxt "work_attribute_type_allowed_value" @@ -4181,7 +4339,7 @@ msgstr "Jaṭ" #: DB:release_packaging/name:1 msgctxt "release_packaging" msgid "Jewel Case" -msgstr "" +msgstr "珍宝盒" #: DB:work_attribute_type_allowed_value/value:119 msgctxt "work_attribute_type_allowed_value" @@ -4252,7 +4410,7 @@ msgstr "Jōnpuri" #: DB:work_attribute_type/name:51 msgctxt "work_attribute_type" msgid "KODA ID" -msgstr "" +msgstr "KODA ID" #: DB:work_attribute_type/name:11 msgctxt "work_attribute_type" @@ -4439,7 +4597,7 @@ msgstr "Kedāraṁ" #: DB:release_packaging/name:6 msgctxt "release_packaging" msgid "Keep Case" -msgstr "" +msgstr "全塑料外壳" #: DB:work_attribute_type/name:1 msgctxt "work_attribute_type" @@ -4494,7 +4652,7 @@ msgstr "Khēmtāl" #: DB:medium_format/name:95 msgctxt "medium_format" msgid "KiT Album" -msgstr "" +msgstr "K版专辑" #: DB:work_attribute_type_allowed_value/value:630 msgctxt "work_attribute_type_allowed_value" @@ -4670,7 +4828,7 @@ msgstr "Kōmal riṣabh asāvēri" #: DB:editor_collection_type/name:10 msgctxt "collection_type" msgid "Label collection" -msgstr "" +msgstr "厂牌收藏" #: DB:label_alias_type/name:1 msgctxt "alias_type" @@ -4730,7 +4888,7 @@ msgstr "LaserDisc" #: DB:work_attribute_type/name:55 msgctxt "work_attribute_type" msgid "LatinNet ID" -msgstr "" +msgstr "LatinNet ID" #: DB:work_attribute_type_allowed_value/value:159 msgctxt "work_attribute_type_allowed_value" @@ -4740,7 +4898,7 @@ msgstr "Latāngi" #: DB:event_type/name:3 msgctxt "event_type" msgid "Launch event" -msgstr "" +msgstr "发起活动" #: DB:work_attribute_type_allowed_value/value:160 msgctxt "work_attribute_type_allowed_value" @@ -4765,12 +4923,12 @@ msgstr "Lenk Fahte" #: DB:cover_art_archive.art_type/name:12 msgctxt "cover_art_type" msgid "Liner" -msgstr "" +msgstr "线性" #: DB:release_group_secondary_type/name:6 msgctxt "release_group_secondary_type" msgid "Live" -msgstr "" +msgstr "现场的" #: DB:work_attribute_type_allowed_value/value:636 msgctxt "work_attribute_type_allowed_value" @@ -4780,22 +4938,22 @@ msgstr "Longa" #: DB:release_packaging/name:55 msgctxt "release_packaging" msgid "Longbox" -msgstr "" +msgstr "长盒" #: DB:work_attribute_type/name:49 msgctxt "work_attribute_type" msgid "MACP ID" -msgstr "" +msgstr "MACP ID" #: DB:work_attribute_type/name:71 msgctxt "work_attribute_type" msgid "MCSC ID" -msgstr "" +msgstr "MCSC ID" #: DB:work_attribute_type/name:72 msgctxt "work_attribute_type" msgid "MCT ID" -msgstr "" +msgstr "MCT ID" #: DB:work_attribute_type_allowed_value/value:963 msgctxt "work_attribute_type_allowed_value" @@ -4830,7 +4988,7 @@ msgstr "Madhyādi" #: DB:work_type/name:7 msgctxt "work_type" msgid "Madrigal" -msgstr "" +msgstr "小曲" #: DB:work_attribute_type_allowed_value/value:163 msgctxt "work_attribute_type_allowed_value" @@ -4865,7 +5023,7 @@ msgstr "Mahālakṣmi" #: DB:work_attribute_type/name:15 msgctxt "work_attribute_type" msgid "Makam (Ottoman, Turkish)" -msgstr "" +msgstr "木卡姆(奥斯曼,土耳其)" #: DB:work_attribute_type_allowed_value/value:164 msgctxt "work_attribute_type_allowed_value" @@ -4880,7 +5038,7 @@ msgstr "Malayamārutaṁ" #: DB:gender/name:1 msgctxt "gender" msgid "Male" -msgstr "" +msgstr "男性" #: DB:work_attribute_type_allowed_value/value:638 msgctxt "work_attribute_type_allowed_value" @@ -4895,12 +5053,12 @@ msgstr "Mandāri" #: DB:series_ordering_type/name:2 msgctxt "series_ordering_type" msgid "Manual" -msgstr "" +msgstr "手册" #: DB:label_type/name:10 msgctxt "label_type" msgid "Manufacturer" -msgstr "" +msgstr "制造商" #: DB:work_attribute_type_allowed_value/value:172 msgctxt "work_attribute_type_allowed_value" @@ -4915,17 +5073,17 @@ msgstr "Marş" #: DB:work_type/name:8 msgctxt "work_type" msgid "Mass" -msgstr "" +msgstr "弥撒" #: DB:event_type/name:5 msgctxt "event_type" msgid "Masterclass/Clinic" -msgstr "" +msgstr "大师课程/诊断" #: DB:cover_art_archive.art_type/name:15 msgctxt "cover_art_type" msgid "Matrix/Runout" -msgstr "" +msgstr "原版号/序列号" #: DB:work_attribute_type_allowed_value/value:449 msgctxt "work_attribute_type_allowed_value" @@ -4945,7 +5103,7 @@ msgstr "Maveraünnehir" #: DB:editor_collection_type/name:6 msgctxt "collection_type" msgid "Maybe attending" -msgstr "" +msgstr "可能参加" #: DB:work_attribute_type_allowed_value/value:452 msgctxt "work_attribute_type_allowed_value" @@ -4990,7 +5148,7 @@ msgstr "Medhal" #: DB:cover_art_archive.art_type/name:4 msgctxt "cover_art_type" msgid "Medium" -msgstr "" +msgstr "媒介" #: DB:work_attribute_type_allowed_value/value:176 msgctxt "work_attribute_type_allowed_value" @@ -5010,7 +5168,7 @@ msgstr "Mersiye" #: DB:release_packaging/name:54 msgctxt "release_packaging" msgid "Metal Tin" -msgstr "" +msgstr "金属罐" #: DB:work_attribute_type_allowed_value/value:745 msgctxt "work_attribute_type_allowed_value" @@ -5025,12 +5183,12 @@ msgstr "Mevlidişerif" #: DB:medium_format/name:83 msgctxt "medium_format" msgid "Microcassette" -msgstr "" +msgstr "微型卡式录音带" #: DB:area_type/name:8 msgctxt "area_type" msgid "Military base" -msgstr "" +msgstr "军事基地" #: DB:medium_format/name:166 msgctxt "medium_format" @@ -5080,12 +5238,12 @@ msgstr "Miraciye" #: DB:medium_format/name:129 msgctxt "medium_format" msgid "Mixed Mode CD" -msgstr "" +msgstr "混合模式CD" #: DB:release_group_secondary_type/name:9 msgctxt "release_group_secondary_type" msgid "Mixtape/Street" -msgstr "" +msgstr "混音带/街头" #: DB:work_attribute_type_allowed_value/value:981 msgctxt "work_attribute_type_allowed_value" @@ -5155,7 +5313,7 @@ msgstr "Miśra-jāti rūpaka" #: DB:work_type/name:9 msgctxt "work_type" msgid "Motet" -msgstr "" +msgstr "赞美诗" #: DB:work_attribute_type_allowed_value/value:746 msgctxt "work_attribute_type_allowed_value" @@ -5225,7 +5383,7 @@ msgstr "Multāni" #: DB:area_type/name:4 msgctxt "area_type" msgid "Municipality" -msgstr "" +msgstr "自治体" #: DB:area_type/description:4 msgctxt "area_type" @@ -5234,6 +5392,8 @@ msgid "" "municipalities, often contain a single city and a few surrounding villages. " "Rural municipalities typically group several villages together." msgstr "" +"自治体指较小的行政区划,城镇自治体包含一座城市和附近的村庄。农村自治体一般有" +"多个村庄组合而成。" #: DB:work_attribute_type_allowed_value/value:645 msgctxt "work_attribute_type_allowed_value" @@ -5248,14 +5408,14 @@ msgstr "Murabba Beste " #: DB:work_type/name:29 msgctxt "work_type" msgid "Musical" -msgstr "" +msgstr "音乐剧" #: DB:work_type/description:29 msgctxt "work_type" msgid "" "Musical theatre is a form of theatrical performance that combines songs, " "spoken dialogue, acting, and dance." -msgstr "" +msgstr "音乐剧是一种包含歌唱,口白,表演,和舞蹈的戏剧形式。" #: DB:work_attribute_type_allowed_value/value:748 msgctxt "work_attribute_type_allowed_value" @@ -5415,7 +5575,7 @@ msgstr "Mōhanaṁ" #: DB:work_attribute_type/name:59 msgctxt "work_attribute_type" msgid "NICAUTOR ID" -msgstr "" +msgstr "NICAUTOR ID" #: DB:work_attribute_type_allowed_value/value:647 msgctxt "work_attribute_type_allowed_value" @@ -5690,12 +5850,12 @@ msgstr "Nişabureyn" #: DB:gender/name:5 msgctxt "gender" msgid "Non-binary" -msgstr "" +msgstr "非二进制" #: DB:release_group_secondary_type/description:3 msgctxt "release_group_secondary_type" msgid "Non-music spoken word releases." -msgstr "" +msgstr "非音乐口头表达专辑。" #: DB:release_packaging/name:7 msgctxt "release_packaging" @@ -5785,7 +5945,7 @@ msgstr "OSA ID" #: DB:cover_art_archive.art_type/name:5 msgctxt "cover_art_type" msgid "Obi" -msgstr "" +msgstr "Obi商店" #: DB:release_status/name:1 msgctxt "release_status" @@ -5795,27 +5955,27 @@ msgstr "官方" #: DB:work_type/name:10 msgctxt "work_type" msgid "Opera" -msgstr "" +msgstr "歌剧" #: DB:work_type/name:24 msgctxt "work_type" msgid "Operetta" -msgstr "" +msgstr "轻歌剧" #: DB:work_type/name:11 msgctxt "work_type" msgid "Oratorio" -msgstr "" +msgstr "清唱剧" #: DB:artist_type/name:5 msgctxt "artist_type" msgid "Orchestra" -msgstr "" +msgstr "交响乐" #: DB:label_type/name:4 msgctxt "label_type" msgid "Original Production" -msgstr "" +msgstr "初版" #: DB:artist_type/name:3 msgctxt "artist_type" @@ -5860,17 +6020,17 @@ msgstr "其他乐器" #: DB:work_type/name:12 msgctxt "work_type" msgid "Overture" -msgstr "" +msgstr "序曲" #: DB:editor_collection_type/name:2 msgctxt "collection_type" msgid "Owned music" -msgstr "" +msgstr "私有音乐" #: DB:editor_collection_type/name:17 msgctxt "collection_type" msgid "Owned recordings" -msgstr "" +msgstr "已拥有的录音" #: DB:work_attribute_type_allowed_value/value:762 msgctxt "work_attribute_type_allowed_value" @@ -5885,7 +6045,7 @@ msgstr "Oyunhavası" #: DB:work_attribute_type/name:34 msgctxt "work_attribute_type" msgid "PRS tune code" -msgstr "" +msgstr "PRS旋律代号" #: DB:work_attribute_type_allowed_value/value:993 msgctxt "work_attribute_type_allowed_value" @@ -5915,17 +6075,17 @@ msgstr "Paras" #: DB:place_type/name:9 msgctxt "place_type" msgid "Park" -msgstr "" +msgstr "公园" #: DB:work_type/name:13 msgctxt "work_type" msgid "Partita" -msgstr "" +msgstr "组曲" #: DB:medium_format/name:58 msgctxt "medium_format" msgid "Pathé disc" -msgstr "" +msgstr "百代碟片" #: DB:work_attribute_type_allowed_value/value:995 msgctxt "work_attribute_type_allowed_value" @@ -5961,7 +6121,7 @@ msgstr "Pençgah-ı Zaid" #: DB:instrument_type/name:3 msgctxt "instrument_type" msgid "Percussion instrument" -msgstr "" +msgstr "打击乐" #: DB:work_attribute_type_allowed_value/value:496 msgctxt "work_attribute_type_allowed_value" @@ -5996,32 +6156,32 @@ msgstr "Peşrev" #: DB:medium_format/name:73 msgctxt "medium_format" msgid "Phonograph record" -msgstr "" +msgstr "留声机唱片" #: DB:medium_format/name:15 msgctxt "medium_format" msgid "Piano Roll" -msgstr "" +msgstr "自动钢琴打孔纸卷" #: DB:editor_collection_type/name:11 msgctxt "collection_type" msgid "Place collection" -msgstr "" +msgstr "地点收藏" #: DB:place_alias_type/name:1 msgctxt "alias_type" msgid "Place name" -msgstr "" +msgstr "地名" #: DB:release_packaging/description:20 msgctxt "release_packaging" msgid "Plastic CD tray inside a cardboard slipcover" -msgstr "" +msgstr "硬板套内的塑料 CD 托盘" #: DB:release_packaging/name:18 msgctxt "release_packaging" msgid "Plastic Sleeve" -msgstr "" +msgstr "塑料唱片套" #: DB:work_type/name:28 msgctxt "work_type" @@ -6031,12 +6191,12 @@ msgstr "播放" #: DB:medium_format/name:74 msgctxt "medium_format" msgid "PlayTape" -msgstr "" +msgstr "PlayTape磁带" #: DB:medium_format/name:45 msgctxt "medium_format" msgid "Playbutton" -msgstr "" +msgstr "播放键" #: DB:series_type/name:80 msgctxt "series_type" @@ -6046,7 +6206,7 @@ msgstr "" #: DB:work_type/name:21 msgctxt "work_type" msgid "Poem" -msgstr "" +msgstr "诗歌" #: DB:work_attribute_type_allowed_value/value:655 msgctxt "work_attribute_type_allowed_value" @@ -6056,7 +6216,7 @@ msgstr "Pop şarkısı" #: DB:cover_art_archive.art_type/name:11 msgctxt "cover_art_type" msgid "Poster" -msgstr "" +msgstr "海报" #: DB:work_attribute_type_allowed_value/value:998 msgctxt "work_attribute_type_allowed_value" @@ -6071,7 +6231,7 @@ msgstr "压片厂" #: DB:label_type/name:3 msgctxt "label_type" msgid "Production" -msgstr "" +msgstr "产品" #: DB:release_status/name:2 msgctxt "release_status" @@ -6094,11 +6254,17 @@ msgid "" "are distinct from demos in that they are designed for release directly to " "the public and fans; not to labels." msgstr "" +"本质上属于推广品(尽管不一定免费),混音带和街头专辑通常由艺术家发行,用于推广" +"新人艺术家或者知名艺术家的新录音室专辑。有时也用于在录音室专辑发行间歇期保持" +"粉丝注意力,在嘻哈流派中较为常见。通常它们未经厂牌核准,所用采样或歌曲未经许" +"可,且制作和录音质量差异较大。尽管混音带一般由DJ混制,它们独立于商业DJ混音(常" +"视为合辑),其定义为含有大量新素材,包括原创制作或附加于其他艺术家伴奏上的原创" +"人声。与样带的区别在于它们是为了直接向公众和粉丝而非厂牌方发行而制作的。" #: DB:work_type/name:23 msgctxt "work_type" msgid "Prose" -msgstr "" +msgstr "单调" #: DB:release_status/name:4 msgctxt "release_status" @@ -6164,7 +6330,7 @@ msgstr "Pūrṇacandrika" #: DB:work_type/name:14 msgctxt "work_type" msgid "Quartet" -msgstr "" +msgstr "四重奏" #: DB:work_attribute_type_allowed_value/value:500 msgctxt "work_attribute_type_allowed_value" @@ -6274,17 +6440,17 @@ msgstr "Ravicandrika" #: DB:cover_art_archive.art_type/name:14 msgctxt "cover_art_type" msgid "Raw/Unedited" -msgstr "" +msgstr "原始/未编辑" #: DB:series_type/name:48 msgctxt "series_type" msgid "Recording award" -msgstr "" +msgstr "录音奖项" #: DB:editor_collection_type/name:12 msgctxt "collection_type" msgid "Recording collection" -msgstr "" +msgstr "录音收藏" #: DB:recording_alias_type/name:1 msgctxt "alias_type" @@ -6299,7 +6465,7 @@ msgstr "录音系列" #: DB:medium_format/name:10 msgctxt "medium_format" msgid "Reel-to-reel" -msgstr "" +msgstr "卷至卷方式" #: DB:work_attribute_type_allowed_value/value:514 msgctxt "work_attribute_type_allowed_value" @@ -6309,7 +6475,7 @@ msgstr "Rehavi" #: DB:label_type/name:6 msgctxt "label_type" msgid "Reissue Production" -msgstr "" +msgstr "重新发行的产品" #: DB:work_attribute_type_allowed_value/value:515 msgctxt "work_attribute_type_allowed_value" @@ -6319,17 +6485,17 @@ msgstr "Rekb-i Zavil" #: DB:editor_collection_type/name:1 msgctxt "collection_type" msgid "Release collection" -msgstr "" +msgstr "专辑收藏" #: DB:series_type/name:47 msgctxt "series_type" msgid "Release group award" -msgstr "" +msgstr "专辑组奖项" #: DB:editor_collection_type/name:13 msgctxt "collection_type" msgid "Release group collection" -msgstr "" +msgstr "专辑组收藏" #: DB:release_group_alias_type/name:1 msgctxt "alias_type" @@ -6354,7 +6520,7 @@ msgstr "专辑系列" #: DB:place_type/name:6 msgctxt "place_type" msgid "Religious building" -msgstr "" +msgstr "宗教建筑物" #: DB:work_attribute_type_allowed_value/value:765 msgctxt "work_attribute_type_allowed_value" @@ -6364,7 +6530,7 @@ msgstr "Remel" #: DB:release_group_secondary_type/name:7 msgctxt "release_group_secondary_type" msgid "Remix" -msgstr "" +msgstr "重混音" #: DB:work_attribute_type_allowed_value/value:516 msgctxt "work_attribute_type_allowed_value" @@ -6374,7 +6540,7 @@ msgstr "Reng-i Dil" #: DB:series_type/name:12 msgctxt "series_type" msgid "Residency" -msgstr "" +msgstr "居住地" #: DB:work_attribute_type_allowed_value/value:517 msgctxt "work_attribute_type_allowed_value" @@ -6389,7 +6555,7 @@ msgstr "Reyya" #: DB:label_type/name:8 msgctxt "label_type" msgid "Rights Society" -msgstr "" +msgstr "版权协会" #: DB:work_attribute_type_allowed_value/value:222 msgctxt "work_attribute_type_allowed_value" @@ -6409,7 +6575,7 @@ msgstr "Rumeli Türküsü" #: DB:series_type/name:9 msgctxt "series_type" msgid "Run" -msgstr "" +msgstr "运行" #: DB:work_attribute_type_allowed_value/value:521 msgctxt "work_attribute_type_allowed_value" @@ -6429,12 +6595,12 @@ msgstr "Ruy-i Neva" #: DB:work_attribute_type/name:4 msgctxt "work_attribute_type" msgid "Rāga (Carnatic)" -msgstr "" +msgstr "拉格(卡纳提克)" #: DB:work_attribute_type/name:32 msgctxt "work_attribute_type" msgid "Rāga (Hindustani)" -msgstr "" +msgstr "拉格(印度斯坦)" #: DB:work_attribute_type_allowed_value/value:1003 msgctxt "work_attribute_type_allowed_value" @@ -6520,12 +6686,12 @@ msgstr "SACD" #: DB:medium_format/name:84 msgctxt "medium_format" msgid "SACD (2 channels)" -msgstr "" +msgstr "SACD (双通道)" #: DB:medium_format/name:85 msgctxt "medium_format" msgid "SACD (multichannel)" -msgstr "" +msgstr "SACD (多通道)" #: DB:work_attribute_type/name:21 msgctxt "work_attribute_type" @@ -6535,7 +6701,7 @@ msgstr "SACEM ID" #: DB:work_attribute_type/name:56 msgctxt "work_attribute_type" msgid "SACIM ID" -msgstr "" +msgstr "SACIM ID" #: DB:work_attribute_type/name:27 msgctxt "work_attribute_type" @@ -6545,7 +6711,7 @@ msgstr "SACM ID" #: DB:work_attribute_type/name:42 msgctxt "work_attribute_type" msgid "SACVEN ID" -msgstr "" +msgstr "SACVEN ID" #: DB:work_attribute_type/name:24 msgctxt "work_attribute_type" @@ -6555,17 +6721,17 @@ msgstr "SADAIC ID" #: DB:work_attribute_type/name:68 msgctxt "work_attribute_type" msgid "SAMRO ID" -msgstr "" +msgstr "SAMRO ID" #: DB:work_attribute_type/name:40 msgctxt "work_attribute_type" msgid "SAYCE ID" -msgstr "" +msgstr "SAYCE ID" #: DB:work_attribute_type/name:39 msgctxt "work_attribute_type" msgid "SAYCO ID" -msgstr "" +msgstr "SAYCO ID" #: DB:work_attribute_type/name:140 msgctxt "work_attribute_type" @@ -6590,7 +6756,7 @@ msgstr "SESAC ID" #: DB:work_attribute_type/name:60 msgctxt "work_attribute_type" msgid "SGACEDOM ID" -msgstr "" +msgstr "SGACEDOM ID" #: DB:work_attribute_type/name:20 msgctxt "work_attribute_type" @@ -6610,22 +6776,22 @@ msgstr "SHM-SACD" #: DB:medium_format/name:89 msgctxt "medium_format" msgid "SHM-SACD (2 channels)" -msgstr "" +msgstr "SHM-SACD (双通道)" #: DB:medium_format/name:88 msgctxt "medium_format" msgid "SHM-SACD (multichannel)" -msgstr "" +msgstr "SHM-SACD (多通道)" #: DB:work_attribute_type/name:36 msgctxt "work_attribute_type" msgid "SIAE ID" -msgstr "" +msgstr "SIAE ID" #: DB:work_attribute_type/name:61 msgctxt "work_attribute_type" msgid "SOBODAYCOM ID" -msgstr "" +msgstr "SOBODAYCOM ID" #: DB:work_attribute_type/name:10 msgctxt "work_attribute_type" @@ -6635,27 +6801,27 @@ msgstr "SOCAN ID" #: DB:work_attribute_type/name:53 msgctxt "work_attribute_type" msgid "SODRAC ID" -msgstr "" +msgstr "SODRAC ID" #: DB:work_attribute_type/name:35 msgctxt "work_attribute_type" msgid "SPA ID" -msgstr "" +msgstr "SPA ID" #: DB:work_attribute_type/name:62 msgctxt "work_attribute_type" msgid "SPAC ID" -msgstr "" +msgstr "SPAC ID" #: DB:work_attribute_type/name:54 msgctxt "work_attribute_type" msgid "STEF ID" -msgstr "" +msgstr "STEF ID" #: DB:work_attribute_type/name:50 msgctxt "work_attribute_type" msgid "STIM ID" -msgstr "" +msgstr "STIM ID" #: DB:work_attribute_type/name:18 msgctxt "work_attribute_type" @@ -6846,7 +7012,7 @@ msgstr "Serbest" #: DB:editor_collection_type/name:14 msgctxt "collection_type" msgid "Series collection" -msgstr "" +msgstr "系列收藏" #: DB:series_alias_type/name:1 msgctxt "alias_type" @@ -6861,14 +7027,14 @@ msgstr "Seyir" #: DB:medium_format/name:53 msgctxt "medium_format" msgid "Shellac" -msgstr "" +msgstr "胶木唱片" #: DB:medium_format/description:53 msgctxt "medium_format" msgid "" "Shellac records were the most predominant type of gramophone record during " "the first half of the 20th century." -msgstr "" +msgstr "胶木唱片是20世纪早期最盛行的留声机唱片形式。" #: DB:work_attribute_type_allowed_value/value:236 msgctxt "work_attribute_type_allowed_value" @@ -6924,32 +7090,32 @@ msgstr "Sitārkhānī" #: DB:release_packaging/name:20 msgctxt "release_packaging" msgid "Slidepack" -msgstr "" +msgstr "Slidepack" #: DB:release_packaging/name:2 msgctxt "release_packaging" msgid "Slim Jewel Case" -msgstr "" +msgstr "薄珍宝盒" #: DB:release_packaging/name:11 msgctxt "release_packaging" msgid "Snap Case" -msgstr "" +msgstr "简易碟片套" #: DB:release_packaging/name:21 msgctxt "release_packaging" msgid "SnapPack" -msgstr "" +msgstr "SnapPack" #: DB:work_attribute_type_allowed_value/value:771 msgctxt "work_attribute_type_allowed_value" msgid "Sofyan" -msgstr "" +msgstr "Sofyan" #: DB:work_type/name:5 msgctxt "work_type" msgid "Sonata" -msgstr "" +msgstr "奏鸣曲" #: DB:work_type/name:17 msgctxt "work_type" @@ -6959,14 +7125,14 @@ msgstr "歌曲" #: DB:work_type/name:15 msgctxt "work_type" msgid "Song-cycle" -msgstr "" +msgstr "组歌" #: DB:series_ordering_type/description:1 msgctxt "series_ordering_type" msgid "" "Sorts the items in the series automatically by their number attributes, " "using a natural sort order." -msgstr "" +msgstr "按各项目自身属性为系列排序,使用自然顺序。" #: DB:release_group_secondary_type/name:2 msgctxt "release_group_secondary_type" @@ -6981,32 +7147,32 @@ msgstr "原声带" #: DB:cover_art_archive.art_type/name:6 msgctxt "cover_art_type" msgid "Spine" -msgstr "" +msgstr "主干" #: DB:release_group_secondary_type/name:3 msgctxt "release_group_secondary_type" msgid "Spokenword" -msgstr "" +msgstr "演讲" #: DB:place_type/name:4 msgctxt "place_type" msgid "Stadium" -msgstr "" +msgstr "体育场" #: DB:event_type/name:6 msgctxt "event_type" msgid "Stage performance" -msgstr "" +msgstr "舞台表演" #: DB:cover_art_archive.art_type/name:10 msgctxt "cover_art_type" msgid "Sticker" -msgstr "" +msgstr "贴纸" #: DB:instrument_type/name:2 msgctxt "instrument_type" msgid "String instrument" -msgstr "" +msgstr "弦乐器" #: DB:place_type/name:1 msgctxt "place_type" @@ -7016,7 +7182,7 @@ msgstr "工作室" #: DB:area_type/name:2 msgctxt "area_type" msgid "Subdivision" -msgstr "" +msgstr "行政区" #: DB:area_type/description:2 msgctxt "area_type" @@ -7025,6 +7191,8 @@ msgid "" "California, Ontario, Okinawa. These are considered when displaying the " "parent areas for a given area." msgstr "" +"行政区指一个国家的主要行政区划,如加利福尼亚州,安大略省,冲绳县。在显示某区" +"域上级区域时会考虑到。" #: DB:work_attribute_type_allowed_value/value:244 msgctxt "work_attribute_type_allowed_value" @@ -7044,7 +7212,7 @@ msgstr "Suhā" #: DB:work_type/name:6 msgctxt "work_type" msgid "Suite" -msgstr "" +msgstr "组曲" #: DB:work_attribute_type_allowed_value/value:534 msgctxt "work_attribute_type_allowed_value" @@ -7099,7 +7267,7 @@ msgstr "Sunādavinōdini" #: DB:release_packaging/name:16 msgctxt "release_packaging" msgid "Super Jewel Box" -msgstr "" +msgstr "超级珍宝盒" #: DB:work_attribute_type_allowed_value/value:1037 msgctxt "work_attribute_type_allowed_value" @@ -7149,12 +7317,12 @@ msgstr "Svararanjani" #: DB:work_type/name:18 msgctxt "work_type" msgid "Symphonic poem" -msgstr "" +msgstr "交响诗" #: DB:work_type/name:16 msgctxt "work_type" msgid "Symphony" -msgstr "" +msgstr "交响曲" #: DB:work_attribute_type_allowed_value/value:547 msgctxt "work_attribute_type_allowed_value" @@ -7239,12 +7407,12 @@ msgstr "Sūltāl" #: DB:work_attribute_type/name:66 msgctxt "work_attribute_type" msgid "TEOSTO ID" -msgstr "" +msgstr "TEOSTO ID" #: DB:work_attribute_type/name:67 msgctxt "work_attribute_type" msgid "TONO ID" -msgstr "" +msgstr "TONO ID" #: DB:work_attribute_type_allowed_value/value:573 msgctxt "work_attribute_type_allowed_value" @@ -7304,7 +7472,7 @@ msgstr "Tebriz" #: DB:medium_format/name:90 msgctxt "medium_format" msgid "Tefifon" -msgstr "" +msgstr "Tefifon" #: DB:work_attribute_type_allowed_value/value:774 msgctxt "work_attribute_type_allowed_value" @@ -7351,28 +7519,28 @@ msgctxt "medium_format" msgid "" "The CD layer of a DVDplus. The DVD layer should be added as a separate " "medium." -msgstr "" +msgstr "DVDplus的CD面。DVD面应视为独立媒介。" #: DB:medium_format/description:67 msgctxt "medium_format" msgid "" "The CD layer of a DualDisc. The DVD layer should be added as a separate " "medium." -msgstr "" +msgstr "DualDisc的CD面。DVD面应视为独立媒介。" #: DB:medium_format/description:63 msgctxt "medium_format" msgid "" "The CD layer of a hybrid SACD. The SACD layer should be added as a separate " "medium." -msgstr "" +msgstr "复合SACD的CD面。SACD面应视为独立媒介。" #: DB:medium_format/description:82 msgctxt "medium_format" msgid "" "The CD side of a vinyl + CD VinylDisc. The vinyl side should be added as a " "separate medium." -msgstr "" +msgstr "VinylDisc的CD面。黑胶面材料为单独添加的介质。" #: DB:medium_format/description:60 msgctxt "medium_format" @@ -7382,34 +7550,36 @@ msgid "" "TV set using a special needle and high-density groove system similar to " "phonograph records." msgstr "" +"高容量电子碟片(CED)是一种由RCA公司研发的影碟重放系统,使用特殊的唱针和类似" +"于留声机的高密度音轨在电视机重放音视频信号。" #: DB:medium_format/description:68 msgctxt "medium_format" msgid "" "The DVD (audio) layer of a DVDplus. The CD layer should be added as a " "separate medium." -msgstr "" +msgstr "DVDplus的DVD音频面。CD面应视为独立媒介。" #: DB:medium_format/description:65 msgctxt "medium_format" msgid "" "The DVD (audio) layer of a DualDisc. The CD layer should be added as a " "separate medium." -msgstr "" +msgstr "DualDisc的DVD音频面。CD面应视为独立媒介。" #: DB:medium_format/description:69 msgctxt "medium_format" msgid "" "The DVD (video) layer of a DVDplus. The CD layer should be added as a " "separate medium." -msgstr "" +msgstr "DVD+的一个DVD(视频)层。CD层应该作为单独的的媒介添加。" #: DB:medium_format/description:66 msgctxt "medium_format" msgid "" "The DVD (video) layer of a DualDisc. The CD layer should be added as a " "separate medium." -msgstr "" +msgstr "DualDisc的DVD视频面。CD面应视为独立媒介。" #: DB:medium_format/description:130 msgctxt "medium_format" @@ -7418,20 +7588,22 @@ msgid "" "Audio or DVD-Video (or it includes both). The CD layer should be added as a " "separate medium." msgstr "" +"双面光盘的DVD层,当不清楚它应该是DVD-音频还是DVD-视频(或者两者都有)时。CD层" +"应该作为单独的媒介添加。" #: DB:medium_format/description:80 msgctxt "medium_format" msgid "" "The DVD side of a vinyl + DVD VinylDisc. The vinyl side should be added as a " "separate medium." -msgstr "" +msgstr "VinylDisc的DVD面。黑胶面应视为独立媒介。" #: DB:medium_format/description:64 msgctxt "medium_format" msgid "" "The SACD layer of a hybrid SACD. The CD layer should be added as a separate " "medium." -msgstr "" +msgstr "复合SACD的SACD面。CD面应视为独立媒介。" #: DB:cover_art_archive.art_type/description:49 msgctxt "cover_art_type" @@ -7440,6 +7612,8 @@ msgid "" "packaging options, the one perpendicular to and below front, back and " "spines)." msgstr "" +"盒子或类似包装的底面(对于最常见的六面体包装选项而言,指垂直于正面,背面和侧面" +"且位于下方的面)。" #: DB:work_type/description:7 msgctxt "work_type" @@ -7448,6 +7622,7 @@ msgid "" "form, it had no instrumental accompaniment, although accompaniment is much " "more common in later madrigals." msgstr "" +"牧歌是一种世俗声乐体裁。最初没有器乐伴奏,然而后期牧歌更多地有器乐伴奏。" #: DB:work_type/description:24 msgctxt "work_type" @@ -7455,6 +7630,7 @@ msgid "" "The operetta is a genre of light opera, in terms both of music and subject " "matter. Operettas are generally short and include spoken parts." msgstr "" +"轻歌剧是一种轻型歌剧,在音乐和主题方面都是如此。轻歌剧一般较短且包括口白。" #: DB:cover_art_archive.art_type/description:15 msgctxt "cover_art_type" @@ -7463,6 +7639,8 @@ msgid "" "numbers. Usually found in the hub of a CD or the dead wax area of a vinyl " "record." msgstr "" +"CD,唱片或其他媒介含有原版号的部分。通常可以在CD的内圈或黑胶唱片的蜡封区找" +"到。" #: DB:cover_art_archive.art_type/description:48 msgctxt "cover_art_type" @@ -7471,18 +7649,20 @@ msgid "" "packaging options, the one perpendicular to and above front, back and " "spines)." msgstr "" +"盒子或类似包装的顶面(对于最常见的六面体包装选项而言,指垂直于正面,背面和侧面" +"且位于上方的面)。" #: DB:release_packaging/description:1 msgctxt "release_packaging" msgid "The traditional CD case, made of hard, brittle plastic." -msgstr "" +msgstr "传统 CD 盒由硬脆塑料制成。" #: DB:medium_format/description:81 msgctxt "medium_format" msgid "" "The vinyl side of a VinylDisc. The CD or DVD side should be added as a " "separate medium." -msgstr "" +msgstr "VinylDisc的黑胶面。CD/DVD面应视为独立媒介。" #: DB:artist_type/description:6 msgctxt "artist_type" @@ -7491,20 +7671,22 @@ msgid "" "singers). Smaller vocal ensembles and groupings that do not generally call " "themselves choirs are better entered as “Group”." msgstr "" +"这表示合唱团/合唱团(一种有组织的、通常人数很多的歌手组织)。 较小的声乐乐团" +"和通常不自称为合唱团的团队最好输入“Group”。" #: DB:artist_type/description:4 msgctxt "artist_type" msgid "" "This indicates an individual fictional character (whether a fictional " "person, animal or any other kind of character)." -msgstr "" +msgstr "这表示一个虚构人物(无论是虚构人物,动物还是任何其他种类的生物)。" #: DB:artist_type/description:1 msgctxt "artist_type" msgid "" "This indicates an individual person, be it under its legal name (“John " "Lennon”), or a performance name (“Sting”)." -msgstr "" +msgstr "这表示一个人,无论是其法定姓名(“ John Lennon”)还是艺名(“ Sting”)。" #: DB:artist_type/description:5 msgctxt "artist_type" @@ -7514,6 +7696,8 @@ msgid "" "groupings that do not generally call themselves orchestras are better " "entered as “Group”." msgstr "" +"这表示一个乐团(一种有组织的、通常人数很多的乐器演奏者组织)。 较小的乐团(如" +"三重奏和四重奏)和通常不称自己为乐团的乐队最好输入“ Group”。" #: DB:work_type/description:23 msgctxt "work_type" @@ -7521,43 +7705,43 @@ msgid "" "This represents literary works written in prose, that is, written in " "relatively ordinary language without metrical structure (e.g. novels, short " "stories, essays...)." -msgstr "" +msgstr "这指代散体文学作品,即相对更常规无格律的语言(如小说,随笔...)。" #: DB:medium_format/description:84 msgctxt "medium_format" msgid "" "This represents the 2 channel (stereo/mono) table of contents on a SACD." -msgstr "" +msgstr "这指的是SACD内容的双通道(立体声/单声道)列表。" #: DB:medium_format/description:89 msgctxt "medium_format" msgid "" "This represents the 2 channel (stereo/mono) table of contents on a SHM-SACD." -msgstr "" +msgstr "这指的是SHM-SACD内容的双通道(立体声/单声道)列表。" #: DB:medium_format/description:87 msgctxt "medium_format" msgid "" "This represents the 2 channel (stereo/mono) table of contents on a hybrid " "SACD's SACD layer." -msgstr "" +msgstr "这指的是复合SACD的SACD面的双通道(立体声/单声道)列表。" #: DB:medium_format/description:85 msgctxt "medium_format" msgid "This represents the multichannel table of contents on a SACD." -msgstr "" +msgstr "这指的是SACD内容的多通道列表。" #: DB:medium_format/description:88 msgctxt "medium_format" msgid "This represents the multichannel table of contents on a SHM-SACD." -msgstr "" +msgstr "这指的是SHM-SACD内容的多通道列表。" #: DB:medium_format/description:86 msgctxt "medium_format" msgid "" "This represents the multichannel table of contents on a hybrid SACD's SACD " "layer." -msgstr "" +msgstr "这指的是复合SACD的SACD面的多通道列表。" #: DB:work_attribute_type_allowed_value/value:1041 msgctxt "work_attribute_type_allowed_value" @@ -7602,12 +7786,12 @@ msgstr "Tiśra-jāti ēka" #: DB:cover_art_archive.art_type/name:48 msgctxt "cover_art_type" msgid "Top" -msgstr "" +msgstr "顶面" #: DB:series_type/name:7 msgctxt "series_type" msgid "Tour" -msgstr "" +msgstr "巡回" #: DB:cover_art_archive.art_type/name:7 msgctxt "cover_art_type" @@ -7617,7 +7801,7 @@ msgstr "音轨" #: DB:cover_art_archive.art_type/name:9 msgctxt "cover_art_type" msgid "Tray" -msgstr "" +msgstr "托盘" #: DB:work_attribute_type_allowed_value/value:1046 msgctxt "work_attribute_type_allowed_value" @@ -7657,12 +7841,12 @@ msgstr "Tüvanger" #: DB:work_attribute_type/name:5 msgctxt "work_attribute_type" msgid "Tāla (Carnatic)" -msgstr "" +msgstr "塔拉 (卡纳提克)" #: DB:work_attribute_type/name:31 msgctxt "work_attribute_type" msgid "Tāla (Hindustani)" -msgstr "" +msgstr "塔拉(印度斯坦)" #: DB:work_attribute_type_allowed_value/value:846 msgctxt "work_attribute_type_allowed_value" @@ -7704,14 +7888,14 @@ msgctxt "cover_art_type" msgid "" "Use for images that need work to be used for tagging (but can possibly " "already be used for reference)" -msgstr "" +msgstr "用于不适合直接供标签使用的图像 (但可能已经足以参考)" #: DB:area_type/description:8 msgctxt "area_type" msgid "" "Used for any military bases that are large enough to be considered an area, " "not just a place." -msgstr "" +msgstr "用于任何足够大的军事基地,可以被视为一个区域,而不仅仅是一个场所。" #: DB:area_type/description:9 msgctxt "area_type" @@ -7720,11 +7904,13 @@ msgid "" "Indian reserves/reservations in North America and indigenous territories in " "Central and South America." msgstr "" +"用于原住民统治的半自治领土,如北美洲的印第安人保留地/保护区以及中美洲和南美洲" +"的土著领地。" #: DB:work_attribute_type/name:17 msgctxt "work_attribute_type" msgid "Usul (Ottoman, Turkish)" -msgstr "" +msgstr "乌苏尔(奥斯曼,土耳其)" #: DB:work_attribute_type_allowed_value/value:676 msgctxt "work_attribute_type_allowed_value" @@ -7759,7 +7945,7 @@ msgstr "VCD" #: DB:work_attribute_type/name:107 msgctxt "work_attribute_type" msgid "VCPMC ID" -msgstr "" +msgstr "VCPMC ID" #: DB:medium_format/name:59 msgctxt "medium_format" @@ -7846,7 +8032,7 @@ msgctxt "medium_format" msgid "" "Video High Density (VHD) was a videodisc format which was marketed " "predominantly in Japan by JVC." -msgstr "" +msgstr "高密度影碟(VHD)是一种主要在日本由JVC公司销售的影碟格式。" #: DB:work_attribute_type_allowed_value/value:273 msgctxt "work_attribute_type_allowed_value" @@ -7927,12 +8113,12 @@ msgstr "水印" #: DB:medium_format/name:14 msgctxt "medium_format" msgid "Wax Cylinder" -msgstr "" +msgstr "蜡筒" #: DB:instrument_type/name:1 msgctxt "instrument_type" msgid "Wind instrument" -msgstr "" +msgstr "管乐器" #: DB:editor_collection_type/name:3 msgctxt "collection_type" @@ -7942,17 +8128,17 @@ msgstr "愿望清单" #: DB:release_status/name:5 msgctxt "release_status" msgid "Withdrawn" -msgstr "" +msgstr "已取消" #: DB:series_type/name:46 msgctxt "series_type" msgid "Work award" -msgstr "" +msgstr "作品奖项" #: DB:editor_collection_type/name:15 msgctxt "collection_type" msgid "Work collection" -msgstr "" +msgstr "作品收藏" #: DB:work_alias_type/name:1 msgctxt "alias_type" @@ -8023,7 +8209,7 @@ msgstr "Zafer" #: DB:work_type/name:19 msgctxt "work_type" msgid "Zarzuela" -msgstr "" +msgstr "说唱剧" #: DB:work_attribute_type_allowed_value/value:591 msgctxt "work_attribute_type_allowed_value" @@ -8160,7 +8346,7 @@ msgstr "Çocuk şarkısı" #: DB:work_type/name:20 msgctxt "work_type" msgid "Étude" -msgstr "" +msgstr "练习曲" #: DB:work_attribute_type_allowed_value/value:653 msgctxt "work_attribute_type_allowed_value" diff --git a/po/attributes.zh_Hant.po b/po/attributes.zh_Hant.po new file mode 100644 index 00000000000..de49c42e47c --- /dev/null +++ b/po/attributes.zh_Hant.po @@ -0,0 +1,8550 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_Hant\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: DB:work_type/description:9 +msgctxt "work_type" +msgid "" +"\"Motet\" is a term that applies to different types of (usually " +"unaccompanied) choral works. What exactly is a motet depends quite a bit on " +"the period." +msgstr "" + +#: DB:work_type/description:5 +msgctxt "work_type" +msgid "" +"\"Sonata\" is a general term used to describe small scale (very often solo " +"or solo + keyboard) instrumental works, initially in baroque music." +msgstr "" + +#: DB:medium_format/name:205 +msgctxt "medium_format" +msgid "10\" Acetate" +msgstr "" + +#: DB:medium_format/name:54 +msgctxt "medium_format" +msgid "10\" Shellac" +msgstr "" + +#: DB:medium_format/name:30 +msgctxt "medium_format" +msgid "10\" Vinyl" +msgstr "" + +#: DB:medium_format/name:206 +msgctxt "medium_format" +msgid "12\" Acetate" +msgstr "" + +#: DB:medium_format/name:72 +msgctxt "medium_format" +msgid "12\" LaserDisc" +msgstr "" + +#: DB:medium_format/name:55 +msgctxt "medium_format" +msgid "12\" Shellac" +msgstr "" + +#: DB:medium_format/name:31 +msgctxt "medium_format" +msgid "12\" Vinyl" +msgstr "" + +#: DB:medium_format/name:49 +msgctxt "medium_format" +msgid "3.5\" Floppy Disk" +msgstr "" + +#: DB:medium_format/name:91 +msgctxt "medium_format" +msgid "5.25\" Floppy Disk" +msgstr "" + +#: DB:medium_format/name:204 +msgctxt "medium_format" +msgid "7\" Acetate" +msgstr "" + +#: DB:medium_format/name:52 +msgctxt "medium_format" +msgid "7\" Flexi-disc" +msgstr "" + +#: DB:medium_format/name:56 +msgctxt "medium_format" +msgid "7\" Shellac" +msgstr "" + +#: DB:medium_format/name:29 +msgctxt "medium_format" +msgid "7\" Vinyl" +msgstr "" + +#: DB:medium_format/name:71 +msgctxt "medium_format" +msgid "8\" LaserDisc" +msgstr "" + +#: DB:medium_format/name:78 +msgctxt "medium_format" +msgid "8-Track Cartridge" +msgstr "" + +#: DB:medium_format/name:34 +msgctxt "medium_format" +msgid "8cm CD" +msgstr "" + +#: DB:medium_format/name:40 +msgctxt "medium_format" +msgid "8cm CD+G" +msgstr "" + +#: DB:medium_format/description:166 +msgctxt "medium_format" +msgid "8cm DVD disc, often used for video singles." +msgstr "" + +#: DB:medium_format/description:58 +msgctxt "medium_format" +msgid "" +"90 rpm, vertical-cut shellac discs, produced by the Pathé label from 1906 to " +"1932." +msgstr "" + +#: DB:release_group_secondary_type/description:1 +msgctxt "release_group_secondary_type" +msgid "" +"A compilation, for the purposes of the MusicBrainz database, covers the " +"following types of releases:
\n" +"\n" +"The MusicBrainz project does not generally consider the following to be " +"compilations:
\n" +"\n" +"Compilation should be used in addition to, not instead of, other types: " +"for example, a various artists soundtrack using pre-released music should be " +"marked as both a soundtrack and a compilation.
" +msgstr "" + +#: DB:release_group_primary_type/description:2 +msgctxt "release_group_primary_type" +msgid "" +"A single has different definitions depending on the market it is released " +"for.
\n" +"\n" +"There are other variations of the single called a \"split single\" where " +"songs by two different artists are released on the one disc, typically vinyl." +"
" +msgstr "" + +#: DB:medium_format/description:95 +msgctxt "medium_format" +msgid "" +"A \"digital collectible\" device, mostly used for k-pop music, that is " +"connected to a phone via Bluetooth or headphone jack and unlocks the release " +"for listening in a companion app for a limited period of time." +msgstr "" + +#: DB:place_type/description:9 +msgctxt "place_type" +msgid "" +"A (usually green) space kept available for recreation in an otherwise built " +"and populated area." +msgstr "" + +#: DB:medium_format/description:129 +msgctxt "medium_format" +msgid "" +"A CD that contains both audio and data in the same session. The data is " +"often in the first track, that will have to be skipped in many audio " +"players. Relatively common in old video game CDs." +msgstr "" + +#: DB:medium_format/description:42 +msgctxt "medium_format" +msgid "" +"A CD that contains two sessions, one with audio and one with data. Since " +"they are properly separated, audio players will not try to play the data " +"session and it won't be part of the disc ID for the CD." +msgstr "" + +#: DB:release_group_secondary_type/description:8 +msgctxt "release_group_secondary_type" +msgid "" +"A DJ-mix is a sequence of several recordings played one after the other, " +"each one modified so that they blend together into a continuous flow of " +"music. A DJ-mix release requires that the recordings be modified in some " +"manner, and the DJ who does this modification is usually (although not " +"always) credited in a fairly prominent way." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:794 +msgctxt "work_attribute_type_allowed_value" +msgid "A Dorian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:806 +msgctxt "work_attribute_type_allowed_value" +msgid "A Mixolydian" +msgstr "" + +#: DB:work_type/description:2 +msgctxt "work_type" +msgid "" +"A ballet is music composed to be used, together with a choreography, for a " +"ballet dance production." +msgstr "" + +#: DB:release_packaging/description:19 +msgctxt "release_packaging" +msgid "A box usually containing multiple discs as part of a boxed set." +msgstr "" + +#: DB:work_type/description:3 +msgctxt "work_type" +msgid "" +"A cantata is a vocal (often choral) composition with an instrumental " +"(usually orchestral) accompaniment, typically in several movements." +msgstr "" + +#: DB:medium_format/description:46 +msgctxt "medium_format" +msgid "" +"A card (or other similar physical support) that doesn't contain the music " +"itself directly, but provides a code to download it digitally. Often bundled " +"with physical releases but sometimes sold as a standalone item (especially " +"in Asia)." +msgstr "" + +#: DB:label_type/description:10 +msgctxt "label_type" +msgid "" +"A company that manufactures physical releases (such as pressing CDs or vinyl " +"records)." +msgstr "" + +#: DB:work_type/description:4 +msgctxt "work_type" +msgid "" +"A concerto is a musical work for soloist(s) accompanied by an orchestra." +msgstr "" + +#: DB:event_type/description:4 +msgctxt "event_type" +msgid "" +"A convention, expo or trade fair is an event which is not typically " +"orientated around music performances, but can include them as side " +"activities." +msgstr "" + +#: DB:release_status/description:2 +msgctxt "release_status" +msgid "" +"A give-away release or a release intended to promote an upcoming official " +"release (e.g. pre-release versions, releases included with a magazine, " +"versions supplied to radio DJs for air-play)." +msgstr "" + +#: DB:artist_type/description:2 +msgctxt "artist_type" +msgid "" +"A grouping of multiple musicians who perform together (in some cases, some " +"or all of the members might differ in different performances or recordings)." +msgstr "" + +#: DB:instrument_type/description:7 +msgctxt "instrument_type" +msgid "" +"A grouping of related but different instruments, like the different violin-" +"like instruments" +msgstr "" + +#: DB:label_type/description:5 +msgctxt "label_type" +msgid "A label that primarily puts out unsanctioned (bootleg) releases." +msgstr "" + +#: DB:release_packaging/description:55 +msgctxt "release_packaging" +msgid "" +"A large cardboard box often used until the mid-1990s to sell CDs in North " +"America, so that they would fit existing vinyl racks in stores." +msgstr "" + +#: DB:place_type/description:43 +msgctxt "place_type" +msgid "A large, permanent outdoor stage, typically with a fixed seating area." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:28 +msgctxt "work_attribute_type_allowed_value" +msgid "A major" +msgstr "" + +#: DB:work_type/description:8 +msgctxt "work_type" +msgid "" +"A mass is a choral composition that sets the invariable portions of the " +"Christian Eucharistic liturgy (Kyrie - Gloria - Credo - Sanctus - Benedictus " +"- Agnus Dei, with other portions sometimes added) to music." +msgstr "" + +#: DB:event_type/description:5 +msgctxt "event_type" +msgid "" +"A masterclass or clinic is an event where an artist meets with a small to " +"medium-sized audience and instructs them individually and/or takes questions " +"intended to improve the audience members' playing skills." +msgstr "" + +#: DB:release_packaging/description:56 +msgctxt "release_packaging" +msgid "" +"A minimalistic plastic case where the back and front are kept together by a " +"small hinge. Most commonly used for cheap promotion / DIY releases." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:29 +msgctxt "work_attribute_type_allowed_value" +msgid "A minor" +msgstr "" + +#: DB:work_type/description:13 +msgctxt "work_type" +msgid "" +"A partita is an instrumental piece composed of a series of variations, and " +"it's by its current definition very similar to a suite." +msgstr "" + +#: DB:event_type/description:3 +msgctxt "event_type" +msgid "" +"A party, reception or other event held specifically for the launch of a " +"release." +msgstr "" + +#: DB:release_packaging/description:17 +msgctxt "release_packaging" +msgid "A perfect bound book with a sleeve at the end to hold a CD" +msgstr "" + +#: DB:event_type/description:6 +msgctxt "event_type" +msgid "" +"A performance of one or more plays, musicals, operas, ballets or other " +"similar works for the stage in their staged form (as opposed to a concert " +"performance without staging)." +msgstr "" + +#: DB:place_type/description:8 +msgctxt "place_type" +msgid "A place (generally a factory) at which physical media are manufactured." +msgstr "" + +#: DB:place_type/description:5 +msgctxt "place_type" +msgid "" +"A place consisting of a large enclosed area with a central event space " +"surrounded by tiered seating for spectators, which can be used for indoor " +"sports, concerts and other entertainment events." +msgstr "" + +#: DB:place_type/description:1 +msgctxt "place_type" +msgid "" +"A place designed for non-live production of music, typically a recording " +"studio." +msgstr "" + +#: DB:place_type/description:2 +msgctxt "place_type" +msgid "" +"A place that has live artistic performances as one of its primary functions, " +"such as a concert hall." +msgstr "" + +#: DB:place_type/description:6 +msgctxt "place_type" +msgid "" +"A place that has worship or religious studies as its main function. " +"Religious buildings often host concerts and serve as recording locations, " +"especially for classical music." +msgstr "" + +#: DB:place_type/description:4 +msgctxt "place_type" +msgid "" +"A place whose main purpose is to host outdoor sport events, typically " +"consisting of a pitch surrounded by a structure for spectators with no roof, " +"or a roof which can be retracted." +msgstr "" + +#: DB:release_status/description:6 +msgctxt "release_status" +msgid "" +"A planned official release that was cancelled before being released, but for " +"which enough info is known to still confidently list it (e.g. it was " +"available for preorder)." +msgstr "" + +#: DB:work_type/description:28 +msgctxt "work_type" +msgid "" +"A play is a form of literature usually consisting of scripted dialogue " +"between characters, and intended for theatrical performance rather than just " +"reading." +msgstr "" + +#: DB:work_type/description:21 +msgctxt "work_type" +msgid "" +"A poem is a literary piece, generally short and in verse, where words are " +"usually chosen for their sound and for the images and ideas they suggest." +msgstr "" + +#: DB:release_status/description:5 +msgctxt "release_status" +msgid "" +"A previously official release that was actively withdrawn from circulation " +"by the artist and/or their record company after being released, whether to " +"replace it with a new version with some changes or to just retire it " +"altogether (e.g. because of legal issues)." +msgstr "" + +#: DB:release_group_secondary_type/description:10 +msgctxt "release_group_secondary_type" +msgid "" +"A promotional release mostly meant to have limited circulation and " +"demonstrate the sound of an artist to record labels, publishers and other " +"artists." +msgstr "" + +#: DB:work_type/description:14 +msgctxt "work_type" +msgid "" +"A quartet is a musical composition scored for four voices or instruments." +msgstr "" + +#: DB:series_type/description:8 +msgctxt "series_type" +msgid "A recurring festival, usually happening annually in the same location." +msgstr "" + +#: DB:release_group_secondary_type/description:12 +msgctxt "release_group_secondary_type" +msgid "" +"A release mostly consisting of field recordings (such as nature sounds or " +"city/industrial noise)." +msgstr "" + +#: DB:release_group_secondary_type/description:7 +msgctxt "release_group_secondary_type" +msgid "A release that primarily contains remixed material." +msgstr "" + +#: DB:release_group_secondary_type/description:6 +msgctxt "release_group_secondary_type" +msgid "" +"A release that was recorded live. Generally this means \"with an audience\", " +"be it in person, through the radio or in another similar way." +msgstr "" + +#: DB:place_type/description:7 +msgctxt "place_type" +msgid "" +"A school, university or other similar educational institution (especially, " +"but not only, one where music is taught)" +msgstr "" + +#: DB:series_type/description:14 +msgctxt "series_type" +msgid "A series of artists honoured by the same award." +msgstr "" + +#: DB:series_type/description:13 +msgctxt "series_type" +msgid "A series of artists." +msgstr "" + +#: DB:series_type/description:15 +msgctxt "series_type" +msgid "A series of award ceremonies, usually one per year." +msgstr "" + +#: DB:series_type/description:6 +msgctxt "series_type" +msgid "A series of events." +msgstr "" + +#: DB:series_type/description:9 +msgctxt "series_type" +msgid "A series of performances of the same show at the same venue." +msgstr "" + +#: DB:series_type/description:48 +msgctxt "series_type" +msgid "A series of recordings honoured by the same award." +msgstr "" + +#: DB:series_type/description:3 +msgctxt "series_type" +msgid "A series of recordings." +msgstr "" + +#: DB:series_type/description:7 +msgctxt "series_type" +msgid "A series of related concerts by an artist in different locations." +msgstr "" + +#: DB:series_type/description:12 +msgctxt "series_type" +msgid "A series of related concerts by an artist in the same location." +msgstr "" + +#: DB:series_type/description:80 +msgctxt "series_type" +msgid "" +"A series of release groups containing episodes of the same podcast series." +msgstr "" + +#: DB:series_type/description:47 +msgctxt "series_type" +msgid "A series of release groups honoured by the same award." +msgstr "" + +#: DB:series_type/description:1 +msgctxt "series_type" +msgid "A series of release groups." +msgstr "" + +#: DB:series_type/description:2 +msgctxt "series_type" +msgid "A series of releases." +msgstr "" + +#: DB:series_type/description:46 +msgctxt "series_type" +msgid "A series of works honoured by the same award." +msgstr "" + +#: DB:series_type/description:5 +msgctxt "series_type" +msgid "A series of works which form a catalogue of classical compositions." +msgstr "" + +#: DB:series_type/description:4 +msgctxt "series_type" +msgid "A series of works." +msgstr "" + +#: DB:place_type/description:42 +msgctxt "place_type" +msgid "" +"A small venue (such as a jazz club, nightclub or pub) that hosts concerts " +"and social events. May or may not have a dedicated stage or seating." +msgstr "" + +#: DB:work_type/description:15 +msgctxt "work_type" +msgid "" +"A song cycle is a group of songs designed to be performed in a sequence as a " +"single entity. In most cases, all of the songs are by the same composer, and " +"often use words from the same poet or lyricist." +msgstr "" + +#: DB:work_type/description:17 +msgctxt "work_type" +msgid "" +"A song is in its origin (and still in most cases) a composition for voice, " +"with or without instruments, performed by singing. This is the most common " +"form by far in folk and popular music, but also fairly common in a classical " +"context (\"art songs\")." +msgstr "" + +#: DB:work_type/description:22 +msgctxt "work_type" +msgid "" +"A soundtrack is the music that accompanies a film, TV program, videogame, or " +"even book." +msgstr "" + +#: DB:release_group_secondary_type/description:2 +msgctxt "release_group_secondary_type" +msgid "" +"A soundtrack is the musical score to a movie, TV series, stage show, video " +"game, or other medium. Video game CDs with audio tracks should be classified " +"as soundtracks because the musical properties of the CDs are more " +"interesting to MusicBrainz than their data properties." +msgstr "" + +#: DB:instrument_type/description:6 +msgctxt "instrument_type" +msgid "" +"A standard grouping of instruments often played together, like a string " +"quartet" +msgstr "" + +#: DB:medium_format/description:165 +msgctxt "medium_format" +msgid "" +"A standard size CD with the playing/data area of a 8cm CD; the remaining " +"area is empty clear/translucent plastic, sometimes printed." +msgstr "" + +#: DB:medium_format/description:167 +msgctxt "medium_format" +msgid "" +"A standard size DVD with the playing/data area of a 8cm MiniDVD; the " +"remaining area is empty clear/translucent plastic, sometimes printed." +msgstr "" + +#: DB:work_type/description:6 +msgctxt "work_type" +msgid "" +"A suite is an ordered set of instrumental or orchestral pieces normally " +"performed in a concert setting. They may be extracts from a ballet or opera, " +"or entirely original movements." +msgstr "" + +#: DB:work_type/description:18 +msgctxt "work_type" +msgid "" +"A symphonic poem is a piece of programmatic orchestral music, usually in a " +"single movement, that evokes a painting, a landscape, the content of a poem, " +"a story or novel, or other non-musical source." +msgstr "" + +#: DB:work_type/description:16 +msgctxt "work_type" +msgid "" +"A symphony is an extended composition, almost always scored for orchestra " +"without soloists." +msgstr "" + +#: DB:place_type/description:45 +msgctxt "place_type" +msgid "" +"A temporary outdoor stage erected for a music festival or other similar " +"event." +msgstr "" + +#: DB:release_packaging/description:2 +msgctxt "release_packaging" +msgid "A thinner jewel case, commonly used for CD singles." +msgstr "" + +#: DB:medium_format/description:128 +msgctxt "medium_format" +msgid "" +"A very small optical disc in a protective case that was intended for " +"portable listening. It did not find commercial success, but a few albums " +"were released in the format in the early 00s." +msgstr "" + +#: DB:medium_format/description:131 +msgctxt "medium_format" +msgid "" +"A video format used in the 1980s and 90s for professional work, including " +"television and video archival." +msgstr "" + +#: DB:work_type/description:19 +msgctxt "work_type" +msgid "" +"A zarzuela is a Spanish lyric-dramatic work that alternates between spoken " +"and sung scenes, the latter incorporating operatic and popular song, as well " +"as dance." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:26 +msgctxt "work_attribute_type_allowed_value" +msgid "A-flat major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:27 +msgctxt "work_attribute_type_allowed_value" +msgid "A-flat minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:817 +msgctxt "work_attribute_type_allowed_value" +msgid "A-sharp major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:30 +msgctxt "work_attribute_type_allowed_value" +msgid "A-sharp minor" +msgstr "" + +#: DB:work_attribute_type/name:57 +msgctxt "work_attribute_type" +msgid "AACIMH ID" +msgstr "" + +#: DB:work_attribute_type/name:44 +msgctxt "work_attribute_type" +msgid "ACAM ID" +msgstr "" + +#: DB:work_attribute_type/name:47 +msgctxt "work_attribute_type" +msgid "ACDAM ID" +msgstr "" + +#: DB:work_attribute_type/name:58 +msgctxt "work_attribute_type" +msgid "AEI ID" +msgstr "" + +#: DB:work_attribute_type/name:43 +msgctxt "work_attribute_type" +msgid "AGADU ID" +msgstr "" + +#: DB:work_attribute_type/name:63 +msgctxt "work_attribute_type" +msgid "AKKA/LAA ID" +msgstr "" + +#: DB:work_attribute_type/name:23 +msgctxt "work_attribute_type" +msgid "AKM ID" +msgstr "" + +#: DB:work_attribute_type/name:38 +msgctxt "work_attribute_type" +msgid "AMRA ID" +msgstr "" + +#: DB:work_attribute_type/name:46 +msgctxt "work_attribute_type" +msgid "APA ID" +msgstr "" + +#: DB:work_attribute_type/name:41 +msgctxt "work_attribute_type" +msgid "APDAYC ID" +msgstr "" + +#: DB:work_attribute_type/name:13 +msgctxt "work_attribute_type" +msgid "APRA ID" +msgstr "" + +#: DB:work_attribute_type/name:48 +msgctxt "work_attribute_type" +msgid "ARTISJUS ID" +msgstr "" + +#: DB:work_attribute_type/name:6 +msgctxt "work_attribute_type" +msgid "ASCAP ID" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:299 +msgctxt "work_attribute_type_allowed_value" +msgid "Acem" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:305 +msgctxt "work_attribute_type_allowed_value" +msgid "Acem Nevruz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:306 +msgctxt "work_attribute_type_allowed_value" +msgid "Acem Rast" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:300 +msgctxt "work_attribute_type_allowed_value" +msgid "Acem Zemzeme" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:301 +msgctxt "work_attribute_type_allowed_value" +msgid "Acemaşiran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:302 +msgctxt "work_attribute_type_allowed_value" +msgid "Acembuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:303 +msgctxt "work_attribute_type_allowed_value" +msgid "Acemkürdi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:304 +msgctxt "work_attribute_type_allowed_value" +msgid "Acemli Yegah" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:307 +msgctxt "work_attribute_type_allowed_value" +msgid "Acemtarab" +msgstr "" + +#: DB:medium_format/name:203 +msgctxt "medium_format" +msgid "Acetate" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:848 +msgctxt "work_attribute_type_allowed_value" +msgid "Adānā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:849 +msgctxt "work_attribute_type_allowed_value" +msgid "Adānā malhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:308 +msgctxt "work_attribute_type_allowed_value" +msgid "Aheng-i Tarab" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:850 +msgctxt "work_attribute_type_allowed_value" +msgid "Ahir lalit" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:851 +msgctxt "work_attribute_type_allowed_value" +msgid "Ahira bhairav" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:852 +msgctxt "work_attribute_type_allowed_value" +msgid "Ahiri tōḍī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:309 +msgctxt "work_attribute_type_allowed_value" +msgid "Ak Dügah" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:690 +msgctxt "work_attribute_type_allowed_value" +msgid "Aksak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:691 +msgctxt "work_attribute_type_allowed_value" +msgid "Aksaksemai" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:692 +msgctxt "work_attribute_type_allowed_value" +msgid "Aksaksemai Evferi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:853 +msgctxt "work_attribute_type_allowed_value" +msgid "Alahaiyā bilāval" +msgstr "" + +#: DB:release_group_primary_type/name:1 +msgctxt "release_group_primary_type" +msgid "Album" +msgstr "" + +#: DB:series_ordering_type/description:2 +msgctxt "series_ordering_type" +msgid "Allows for manually setting the position of each item in the series." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:854 +msgctxt "work_attribute_type_allowed_value" +msgid "Ambikā" +msgstr "" + +#: DB:place_type/name:43 +msgctxt "place_type" +msgid "Amphitheatre" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:855 +msgctxt "work_attribute_type_allowed_value" +msgid "Amr̥t varṣiṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:40 +msgctxt "work_attribute_type_allowed_value" +msgid "Amṛtavarṣiṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:39 +msgctxt "work_attribute_type_allowed_value" +msgid "Amṛtavāhiṇi" +msgstr "" + +#: DB:release_group_primary_type/description:3 +msgctxt "release_group_primary_type" +msgid "" +"An EP is a so-called \"Extended Play\" release and often contains the " +"letters EP in the title. Generally an EP will be shorter than a full length " +"release (an LP or \"Long Play\") and the tracks are usually exclusive to the " +"EP, in other words the tracks don't come from a previously issued release. " +"EP is fairly difficult to define; usually it should only be assumed that a " +"release is an EP if the artist defines it as such." +msgstr "" + +#: DB:release_group_primary_type/description:1 +msgctxt "release_group_primary_type" +msgid "" +"An album, perhaps better defined as a \"Long Play\" (LP) release, generally " +"consists of previously unreleased material (unless this type is combined " +"with secondary types which change that, such as \"Compilation\")." +msgstr "" + +#: DB:release_status/description:4 +msgctxt "release_status" +msgid "" +"An alternate version of a release where the titles have been changed. These " +"don't correspond to any real release and should be linked to the original " +"release using the transl(iter)ation relationship." +msgstr "" + +#: DB:work_type/description:1 +msgctxt "work_type" +msgid "" +"An aria is a self-contained piece for one voice usually with orchestral " +"accompaniment. They are most common inside operas, but also appear in " +"cantatas, oratorios and even on their own (concert arias)." +msgstr "" + +#: DB:work_type/description:25 +msgctxt "work_type" +msgid "" +"An audio drama is a dramatized, purely acoustic performance, broadcast on " +"radio or published on an audio medium (tape, CD, etc.)." +msgstr "" + +#: DB:release_group_secondary_type/description:11 +msgctxt "release_group_secondary_type" +msgid "" +"An audio drama is an audio-only performance of a play (often, but not " +"always, meant for radio). Unlike audiobooks, it usually has multiple " +"performers rather than a main narrator." +msgstr "" + +#: DB:release_group_secondary_type/description:5 +msgctxt "release_group_secondary_type" +msgid "An audiobook is a book read by a narrator without music." +msgstr "" + +#: DB:event_type/description:7 +msgctxt "event_type" +msgid "" +"An award ceremony is an event which is focused on the granting of prizes, " +"but often includes musical performances in between the awarding of said " +"prizes, especially for musical awards." +msgstr "" + +#: DB:release_group_primary_type/description:12 +msgctxt "release_group_primary_type" +msgid "" +"An episodic release that was originally broadcast via radio, television, or " +"the Internet, including podcasts." +msgstr "" + +#: DB:event_type/description:2 +msgctxt "event_type" +msgid "" +"An event where a number of different acts perform across the course of the " +"day. Larger festivals may be spread across multiple days." +msgstr "" + +#: DB:event_type/description:1 +msgctxt "event_type" +msgid "" +"An individual concert by a single artist or collaboration, often with " +"supporting artists who perform before the main act." +msgstr "" + +#: DB:place_type/description:44 +msgctxt "place_type" +msgid "" +"An indoor performance facility with fixed seating, whether for music " +"(usually, but not always, classical music) or theatre." +msgstr "" + +#: DB:release_group_secondary_type/description:4 +msgctxt "release_group_secondary_type" +msgid "An interview release contains an interview, generally with an artist." +msgstr "" + +#: DB:release_packaging/description:54 +msgctxt "release_packaging" +msgid "An often decorated metal tin containing one or more CDs." +msgstr "" + +#: DB:work_type/description:10 +msgctxt "work_type" +msgid "" +"An opera is a dramatised work (text + musical score) for singers and " +"orchestra/ensemble. In true operas all dialog is sung, through arias and " +"recitatives, but some styles of opera include spoken dialogue." +msgstr "" + +#: DB:work_type/description:11 +msgctxt "work_type" +msgid "" +"An oratorio is a large (usually sacred) musical composition including an " +"orchestra, a choir, and soloists. While it has characters and a plot, it is " +"usually not performed theatrically (it lacks costumes, props and strong " +"character interaction)." +msgstr "" + +#: DB:label_type/description:8 +msgctxt "label_type" +msgid "An organization which collects royalties on behalf of artists." +msgstr "" + +#: DB:work_type/description:12 +msgctxt "work_type" +msgid "" +"An overture is, generally, the instrumental introduction to an opera. " +"Independent (\"concert\") overtures also exist, which are generally " +"programmatic works shorter than a symphonic poem." +msgstr "" + +#: DB:release_status/description:3 +msgctxt "release_status" +msgid "" +"An unofficial/underground release that was not sanctioned by the artist and/" +"or the record company. This includes unofficial live recordings and pirated " +"releases." +msgstr "" + +#: DB:work_type/description:20 +msgctxt "work_type" +msgid "" +"An étude is an instrumental musical composition, most commonly of " +"considerable difficulty, usually designed to provide practice material for " +"perfecting a particular technical skill." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:310 +msgctxt "work_attribute_type_allowed_value" +msgid "Anberefşan" +msgstr "" + +#: DB:release_status/description:1 +msgctxt "release_status" +msgid "" +"Any release officially sanctioned by the artist and/or their record company. " +"Most releases will fit into this category." +msgstr "" + +#: DB:release_group_primary_type/description:11 +msgctxt "release_group_primary_type" +msgid "" +"Any release that does not fit or can't decisively be placed in any of the " +"other categories." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:311 +msgctxt "work_attribute_type_allowed_value" +msgid "Araban" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:312 +msgctxt "work_attribute_type_allowed_value" +msgid "Arabanbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:313 +msgctxt "work_attribute_type_allowed_value" +msgid "Arabankurdi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:314 +msgctxt "work_attribute_type_allowed_value" +msgid "Aram-ı Can" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:315 +msgctxt "work_attribute_type_allowed_value" +msgid "Aram-ı Dil" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:604 +msgctxt "work_attribute_type_allowed_value" +msgid "Aranağme" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:316 +msgctxt "work_attribute_type_allowed_value" +msgid "Arazbar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:317 +msgctxt "work_attribute_type_allowed_value" +msgid "Arazbar Zemzeme" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:318 +msgctxt "work_attribute_type_allowed_value" +msgid "Arazbarbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:319 +msgctxt "work_attribute_type_allowed_value" +msgid "Arazbarek" +msgstr "" + +#: DB:editor_collection_type/name:7 +msgctxt "collection_type" +msgid "Area collection" +msgstr "" + +#: DB:area_alias_type/name:1 +msgctxt "alias_type" +msgid "Area name" +msgstr "" + +#: DB:work_type/name:1 +msgctxt "work_type" +msgid "Aria" +msgstr "" + +#: DB:series_type/name:14 +msgctxt "series_type" +msgid "Artist award" +msgstr "" + +#: DB:editor_collection_type/name:8 +msgctxt "collection_type" +msgid "Artist collection" +msgstr "" + +#: DB:artist_alias_type/name:1 +msgctxt "alias_type" +msgid "Artist name" +msgstr "" + +#: DB:series_type/name:13 +msgctxt "series_type" +msgid "Artist series" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:693 +msgctxt "work_attribute_type_allowed_value" +msgid "Artık Aksaksemai" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:856 +msgctxt "work_attribute_type_allowed_value" +msgid "Asā māṇḍ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:44 +msgctxt "work_attribute_type_allowed_value" +msgid "Asāvēri" +msgstr "" + +#: DB:editor_collection_type/name:5 +msgctxt "collection_type" +msgid "Attending" +msgstr "" + +#: DB:release_group_secondary_type/name:11 +msgctxt "release_group_secondary_type" +msgid "Audio drama" +msgstr "" + +#: DB:work_type/name:25 +msgctxt "work_type" +msgid "Audio drama" +msgstr "" + +#: DB:release_group_secondary_type/name:5 +msgctxt "release_group_secondary_type" +msgid "Audiobook" +msgstr "" + +#: DB:series_ordering_type/name:1 +msgctxt "series_ordering_type" +msgid "Automatic" +msgstr "" + +#: DB:event_type/name:7 +msgctxt "event_type" +msgid "Award ceremony" +msgstr "" + +#: DB:series_type/name:15 +msgctxt "series_type" +msgid "Award ceremony" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:694 +msgctxt "work_attribute_type_allowed_value" +msgid "Aydın" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:695 +msgctxt "work_attribute_type_allowed_value" +msgid "Ayin Devr-i Revanı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:605 +msgctxt "work_attribute_type_allowed_value" +msgid "Ayin-i Şerif" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:696 +msgctxt "work_attribute_type_allowed_value" +msgid "Azeri Yürüksemai" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:682 +msgctxt "work_attribute_type_allowed_value" +msgid "Ağır Aksaksemai" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:683 +msgctxt "work_attribute_type_allowed_value" +msgid "Ağıraksak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:684 +msgctxt "work_attribute_type_allowed_value" +msgid "Ağıraydın" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:686 +msgctxt "work_attribute_type_allowed_value" +msgid "Ağırdarbıfetih" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:687 +msgctxt "work_attribute_type_allowed_value" +msgid "Ağırdüyek" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:688 +msgctxt "work_attribute_type_allowed_value" +msgid "Ağırevfer" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:603 +msgctxt "work_attribute_type_allowed_value" +msgid "Ağırsemai" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:689 +msgctxt "work_attribute_type_allowed_value" +msgid "Ağırsenginsemai" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:685 +msgctxt "work_attribute_type_allowed_value" +msgid "Ağırçenber" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:321 +msgctxt "work_attribute_type_allowed_value" +msgid "Aşiran Maye" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:320 +msgctxt "work_attribute_type_allowed_value" +msgid "Aşiran Zemzeme" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:322 +msgctxt "work_attribute_type_allowed_value" +msgid "Aşkefza" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:857 +msgctxt "work_attribute_type_allowed_value" +msgid "Aṣṭa rāg mālikā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:45 +msgctxt "work_attribute_type_allowed_value" +msgid "Aṭāna" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:289 +msgctxt "work_attribute_type_allowed_value" +msgid "Aṭṭa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:795 +msgctxt "work_attribute_type_allowed_value" +msgid "B Dorian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:807 +msgctxt "work_attribute_type_allowed_value" +msgid "B Mixolydian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:33 +msgctxt "work_attribute_type_allowed_value" +msgid "B major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:34 +msgctxt "work_attribute_type_allowed_value" +msgid "B minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:31 +msgctxt "work_attribute_type_allowed_value" +msgid "B-flat major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:32 +msgctxt "work_attribute_type_allowed_value" +msgid "B-flat minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:818 +msgctxt "work_attribute_type_allowed_value" +msgid "B-sharp major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:819 +msgctxt "work_attribute_type_allowed_value" +msgid "B-sharp minor" +msgstr "" + +#: DB:work_attribute_type/name:7 +msgctxt "work_attribute_type" +msgid "BMI ID" +msgstr "" + +#: DB:work_attribute_type/name:26 +msgctxt "work_attribute_type" +msgid "BUMA/STEMRA ID" +msgstr "" + +#: DB:cover_art_archive.art_type/name:2 +msgctxt "cover_art_type" +msgid "Back" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:323 +msgctxt "work_attribute_type_allowed_value" +msgid "Bahr-ı Nazik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:47 +msgctxt "work_attribute_type_allowed_value" +msgid "Bahudāri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:862 +msgctxt "work_attribute_type_allowed_value" +msgid "Bahādurī tōḍī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:863 +msgctxt "work_attribute_type_allowed_value" +msgid "Bahār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:864 +msgctxt "work_attribute_type_allowed_value" +msgid "Bairāgi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:48 +msgctxt "work_attribute_type_allowed_value" +msgid "Balahaṁsa" +msgstr "" + +#: DB:work_type/name:2 +msgctxt "work_type" +msgid "Ballet" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:866 +msgctxt "work_attribute_type_allowed_value" +msgid "Basant" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:867 +msgctxt "work_attribute_type_allowed_value" +msgid "Basant bahār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:868 +msgctxt "work_attribute_type_allowed_value" +msgid "Basant mukhāri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:869 +msgctxt "work_attribute_type_allowed_value" +msgid "Basantī kēdār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:49 +msgctxt "work_attribute_type_allowed_value" +msgid "Bauḷi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:51 +msgctxt "work_attribute_type_allowed_value" +msgid "Behāg" +msgstr "" + +#: DB:work_type/name:26 +msgctxt "work_type" +msgid "Beijing opera" +msgstr "" + +#: DB:work_type/description:26 +msgctxt "work_type" +msgid "" +"Beijing opera is a form of traditional Chinese theatre which combines music, " +"vocal performance, mime, dance, and acrobatics." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:697 +msgctxt "work_attribute_type_allowed_value" +msgid "Bektaşi Devr-i Revanı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:698 +msgctxt "work_attribute_type_allowed_value" +msgid "Bektaşi Raksanı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:699 +msgctxt "work_attribute_type_allowed_value" +msgid "Bektaşi Raksı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:700 +msgctxt "work_attribute_type_allowed_value" +msgid "Bektaşi Raksı Evferi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:324 +msgctxt "work_attribute_type_allowed_value" +msgid "Bend-i Hisar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:701 +msgctxt "work_attribute_type_allowed_value" +msgid "Berefşan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:606 +msgctxt "work_attribute_type_allowed_value" +msgid "Beste" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:702 +msgctxt "work_attribute_type_allowed_value" +msgid "Beste Devr-i Revanı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:325 +msgctxt "work_attribute_type_allowed_value" +msgid "Beste Hicaz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:326 +msgctxt "work_attribute_type_allowed_value" +msgid "Beste Hisar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:327 +msgctxt "work_attribute_type_allowed_value" +msgid "Beste Isfahan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:328 +msgctxt "work_attribute_type_allowed_value" +msgid "Bestenigar" +msgstr "" + +#: DB:medium_format/name:131 +msgctxt "medium_format" +msgid "Betacam SP" +msgstr "" + +#: DB:medium_format/name:24 +msgctxt "medium_format" +msgid "Betamax" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:329 +msgctxt "work_attribute_type_allowed_value" +msgid "Beyati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:331 +msgctxt "work_attribute_type_allowed_value" +msgid "Beyati Araban" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:332 +msgctxt "work_attribute_type_allowed_value" +msgid "Beyati Arabanbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:333 +msgctxt "work_attribute_type_allowed_value" +msgid "Beyati Arabankurdi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:330 +msgctxt "work_attribute_type_allowed_value" +msgid "Beyati Ruy-i Acem" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:334 +msgctxt "work_attribute_type_allowed_value" +msgid "Beyatibuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:335 +msgctxt "work_attribute_type_allowed_value" +msgid "Bezm-i Tarab" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:870 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhairav" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:871 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhairav bahār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:52 +#: DB:work_attribute_type_allowed_value/value:872 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhairavi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:874 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhavamat bhairav" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:53 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhavāni" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:876 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhimapalās" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:877 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhinna ṣaḍja" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:54 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhāvapriya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:873 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhāṭiyār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:875 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhīm" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:55 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhīmpalāsi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:56 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhōga sāvēri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:878 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhōpālī tōḍī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:879 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhūp" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:57 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhūpāḷaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:58 +msgctxt "work_attribute_type_allowed_value" +msgid "Bhūṣāvaḷi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:880 +msgctxt "work_attribute_type_allowed_value" +msgid "Bibhās" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:882 +msgctxt "work_attribute_type_allowed_value" +msgid "Bihāg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:883 +msgctxt "work_attribute_type_allowed_value" +msgid "Bihāgdā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:59 +msgctxt "work_attribute_type_allowed_value" +msgid "Bilahari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:884 +msgctxt "work_attribute_type_allowed_value" +msgid "Bilāsakhānī tōḍī" +msgstr "" + +#: DB:medium_format/name:20 +msgctxt "medium_format" +msgid "Blu-ray" +msgstr "" + +#: DB:medium_format/name:79 +msgctxt "medium_format" +msgid "Blu-ray-R" +msgstr "" + +#: DB:medium_format/name:35 +msgctxt "medium_format" +msgid "Blu-spec CD" +msgstr "" + +#: DB:release_packaging/name:9 +msgctxt "release_packaging" +msgid "Book" +msgstr "" + +#: DB:cover_art_archive.art_type/name:3 +msgctxt "cover_art_type" +msgid "Booklet" +msgstr "" + +#: DB:release_status/name:3 +msgctxt "release_status" +msgid "Bootleg" +msgstr "" + +#: DB:label_type/name:5 +msgctxt "label_type" +msgid "Bootleg Production" +msgstr "" + +#: DB:cover_art_archive.art_type/name:49 +msgctxt "cover_art_type" +msgid "Bottom" +msgstr "" + +#: DB:release_packaging/name:19 +msgctxt "release_packaging" +msgid "Box" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:607 +msgctxt "work_attribute_type_allowed_value" +msgid "Bozlak" +msgstr "" + +#: DB:instrument_alias_type/name:3 +msgctxt "alias_type" +msgid "Brand name" +msgstr "" + +#: DB:release_group_primary_type/name:12 +msgctxt "release_group_primary_type" +msgid "Broadcast" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:885 +msgctxt "work_attribute_type_allowed_value" +msgid "Br̥ndāvanī sāraṅg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:62 +msgctxt "work_attribute_type_allowed_value" +msgid "Budamanōhari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:703 +msgctxt "work_attribute_type_allowed_value" +msgid "Bulgar Darbı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:336 +msgctxt "work_attribute_type_allowed_value" +msgid "Buselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:337 +msgctxt "work_attribute_type_allowed_value" +msgid "Buselikaşiran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:338 +msgctxt "work_attribute_type_allowed_value" +msgid "Büzürk" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:46 +#: DB:work_attribute_type_allowed_value/value:861 +msgctxt "work_attribute_type_allowed_value" +msgid "Bāgēśrī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:865 +msgctxt "work_attribute_type_allowed_value" +msgid "Bārvā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:50 +msgctxt "work_attribute_type_allowed_value" +msgid "Bēgaḍa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:881 +msgctxt "work_attribute_type_allowed_value" +msgid "Bīhād bhairav" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:60 +msgctxt "work_attribute_type_allowed_value" +msgid "Bṛndāvana sāranga" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:61 +msgctxt "work_attribute_type_allowed_value" +msgid "Bṛndāvani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:789 +msgctxt "work_attribute_type_allowed_value" +msgid "C Dorian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:801 +msgctxt "work_attribute_type_allowed_value" +msgid "C Mixolydian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:2 +msgctxt "work_attribute_type_allowed_value" +msgid "C major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:3 +msgctxt "work_attribute_type_allowed_value" +msgid "C minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1 +msgctxt "work_attribute_type_allowed_value" +msgid "C-flat major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:812 +msgctxt "work_attribute_type_allowed_value" +msgid "C-flat minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:4 +msgctxt "work_attribute_type_allowed_value" +msgid "C-sharp major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:5 +msgctxt "work_attribute_type_allowed_value" +msgid "C-sharp minor" +msgstr "" + +#: DB:work_attribute_type/name:19 +msgctxt "work_attribute_type" +msgid "CASH ID" +msgstr "" + +#: DB:work_attribute_type/name:22 +msgctxt "work_attribute_type" +msgid "CCLI ID" +msgstr "" + +#: DB:medium_format/name:1 +msgctxt "medium_format" +msgid "CD" +msgstr "" + +#: DB:medium_format/name:39 +msgctxt "medium_format" +msgid "CD+G" +msgstr "" + +#: DB:medium_format/name:33 +msgctxt "medium_format" +msgid "CD-R" +msgstr "" + +#: DB:medium_format/name:41 +msgctxt "medium_format" +msgid "CDV" +msgstr "" + +#: DB:medium_format/name:60 +msgctxt "medium_format" +msgid "CED" +msgstr "" + +#: DB:work_attribute_type/name:45 +msgctxt "work_attribute_type" +msgid "COMPASS ID" +msgstr "" + +#: DB:work_attribute_type/name:73 +msgctxt "work_attribute_type" +msgid "COSCAP ID" +msgstr "" + +#: DB:work_attribute_type/name:65 +msgctxt "work_attribute_type" +msgid "COTT ID" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:63 +msgctxt "work_attribute_type_allowed_value" +msgid "Cakravākaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:886 +msgctxt "work_attribute_type_allowed_value" +msgid "Campak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:887 +msgctxt "work_attribute_type_allowed_value" +msgid "Campākali" +msgstr "" + +#: DB:release_status/name:6 +msgctxt "release_status" +msgid "Cancelled" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:64 +msgctxt "work_attribute_type_allowed_value" +msgid "Candrajyōti" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:65 +#: DB:work_attribute_type_allowed_value/value:888 +msgctxt "work_attribute_type_allowed_value" +msgid "Candrakauns" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:889 +msgctxt "work_attribute_type_allowed_value" +msgid "Candramauli" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:339 +msgctxt "work_attribute_type_allowed_value" +msgid "Canfeza" +msgstr "" + +#: DB:work_type/name:3 +msgctxt "work_type" +msgid "Cantata" +msgstr "" + +#: DB:release_packaging/name:4 +msgctxt "release_packaging" +msgid "Cardboard/Paper Sleeve" +msgstr "" + +#: DB:medium_format/name:9 +msgctxt "medium_format" +msgid "Cartridge" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:66 +msgctxt "work_attribute_type_allowed_value" +msgid "Carturdaśa rāgamālika" +msgstr "" + +#: DB:medium_format/name:8 +msgctxt "medium_format" +msgid "Cassette" +msgstr "" + +#: DB:release_packaging/name:8 +msgctxt "release_packaging" +msgid "Cassette Case" +msgstr "" + +#: DB:series_type/name:5 +msgctxt "series_type" +msgid "Catalogue" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:291 +msgctxt "work_attribute_type_allowed_value" +msgid "Caturaśra-jāti jhaṁpe" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:827 +msgctxt "work_attribute_type_allowed_value" +msgid "Cautāl" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:70 +msgctxt "work_attribute_type_allowed_value" +msgid "Cencu kāmbhōji" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:704 +msgctxt "work_attribute_type_allowed_value" +msgid "Cevher" +msgstr "" + +#: DB:artist_type/name:4 +msgctxt "artist_type" +msgid "Character" +msgstr "" + +#: DB:artist_type/name:6 +msgctxt "artist_type" +msgid "Choir" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:892 +msgctxt "work_attribute_type_allowed_value" +msgid "Chāyā malhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:893 +msgctxt "work_attribute_type_allowed_value" +msgid "Chāyānāt" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:71 +msgctxt "work_attribute_type_allowed_value" +msgid "Cintāmaṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:72 +msgctxt "work_attribute_type_allowed_value" +msgid "Cittaranjani" +msgstr "" + +#: DB:area_type/name:3 +msgctxt "area_type" +msgid "City" +msgstr "" + +#: DB:area_type/description:3 +msgctxt "area_type" +msgid "City is used for settlements of any size, including towns and villages." +msgstr "" + +#: DB:release_packaging/name:56 +msgctxt "release_packaging" +msgid "Clamshell Case" +msgstr "" + +#: DB:place_type/name:42 +msgctxt "place_type" +msgid "Club" +msgstr "" + +#: DB:release_group_secondary_type/name:1 +msgctxt "release_group_secondary_type" +msgid "Compilation" +msgstr "" + +#: DB:event_type/name:1 +msgctxt "event_type" +msgid "Concert" +msgstr "" + +#: DB:place_type/name:44 +msgctxt "place_type" +msgid "Concert hall / Theatre" +msgstr "" + +#: DB:work_type/name:4 +msgctxt "work_type" +msgid "Concerto" +msgstr "" + +#: DB:event_type/name:4 +msgctxt "event_type" +msgid "Convention/Expo" +msgstr "" + +#: DB:medium_format/name:61 +msgctxt "medium_format" +msgid "Copy Control CD" +msgstr "" + +#: DB:medium_format/description:61 +msgctxt "medium_format" +msgid "" +"Copy Control CD (CCCD) is an umbrella term for CDs released circa 2001-2006 " +"containing software that is ostensibly designed to prevent the CD from being " +"ripped. There are a number of software variants: the most well-known are " +"Macrovision's Cactus Data Shield (CDS) and SunnComm's MediaMax." +msgstr "" + +#: DB:area_type/name:1 +msgctxt "area_type" +msgid "Country" +msgstr "" + +#: DB:area_type/description:1 +msgctxt "area_type" +msgid "" +"Country is used for areas included (or previously included) in ISO 3166-1, e." +"g. United States." +msgstr "" + +#: DB:area_type/name:7 +msgctxt "area_type" +msgid "County" +msgstr "" + +#: DB:area_type/description:7 +msgctxt "area_type" +msgid "" +"County is used for smaller administrative divisions of a country which are " +"not the main administrative divisions but are also not municipalities, e.g. " +"counties in the USA. These are not considered when displaying the parent " +"areas for a given area." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:608 +msgctxt "work_attribute_type_allowed_value" +msgid "Cumhurilahi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:705 +msgctxt "work_attribute_type_allowed_value" +msgid "Curcuna" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:890 +msgctxt "work_attribute_type_allowed_value" +msgid "Cāndanī kēdār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:825 +msgctxt "work_attribute_type_allowed_value" +msgid "Cār tāl" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:826 +msgctxt "work_attribute_type_allowed_value" +msgid "Cārtāl kī savārī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:67 +#: DB:work_attribute_type_allowed_value/value:891 +msgctxt "work_attribute_type_allowed_value" +msgid "Cārukēśi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:68 +msgctxt "work_attribute_type_allowed_value" +msgid "Cāyānāṭa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:69 +msgctxt "work_attribute_type_allowed_value" +msgid "Cāyātarangiṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:790 +msgctxt "work_attribute_type_allowed_value" +msgid "D Dorian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:802 +msgctxt "work_attribute_type_allowed_value" +msgid "D Mixolydian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:8 +msgctxt "work_attribute_type_allowed_value" +msgid "D major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:9 +msgctxt "work_attribute_type_allowed_value" +msgid "D minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:6 +msgctxt "work_attribute_type_allowed_value" +msgid "D-flat major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:7 +msgctxt "work_attribute_type_allowed_value" +msgid "D-flat minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:813 +msgctxt "work_attribute_type_allowed_value" +msgid "D-sharp major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:10 +msgctxt "work_attribute_type_allowed_value" +msgid "D-sharp minor" +msgstr "" + +#: DB:medium_format/name:11 +msgctxt "medium_format" +msgid "DAT" +msgstr "" + +#: DB:medium_format/name:16 +msgctxt "medium_format" +msgid "DCC" +msgstr "" + +#: DB:release_group_secondary_type/name:8 +msgctxt "release_group_secondary_type" +msgid "DJ-mix" +msgstr "" + +#: DB:medium_format/name:44 +msgctxt "medium_format" +msgid "DTS CD" +msgstr "" + +#: DB:medium_format/name:2 +msgctxt "medium_format" +msgid "DVD" +msgstr "" + +#: DB:medium_format/name:18 +msgctxt "medium_format" +msgid "DVD-Audio" +msgstr "" + +#: DB:medium_format/name:92 +msgctxt "medium_format" +msgid "DVD-R Video" +msgstr "" + +#: DB:medium_format/name:19 +msgctxt "medium_format" +msgid "DVD-Video" +msgstr "" + +#: DB:medium_format/name:47 +msgctxt "medium_format" +msgid "DVDplus" +msgstr "" + +#: DB:medium_format/name:70 +msgctxt "medium_format" +msgid "DVDplus (CD side)" +msgstr "" + +#: DB:medium_format/name:68 +msgctxt "medium_format" +msgid "DVDplus (DVD-Audio side)" +msgstr "" + +#: DB:medium_format/name:69 +msgctxt "medium_format" +msgid "DVDplus (DVD-Video side)" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:343 +msgctxt "work_attribute_type_allowed_value" +msgid "Danişveran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:711 +msgctxt "work_attribute_type_allowed_value" +msgid "Darb" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:712 +msgctxt "work_attribute_type_allowed_value" +msgid "Darb-ı Fetih" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:713 +msgctxt "work_attribute_type_allowed_value" +msgid "Darb-ı Hüner" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:714 +msgctxt "work_attribute_type_allowed_value" +msgid "Darb-ı Kürdi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:715 +msgctxt "work_attribute_type_allowed_value" +msgid "Darb-ı Türki" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:796 +msgctxt "work_attribute_type_allowed_value" +msgid "Darbeyn" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:73 +msgctxt "work_attribute_type_allowed_value" +msgid "Darbār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:895 +msgctxt "work_attribute_type_allowed_value" +msgid "Darbāri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:74 +msgctxt "work_attribute_type_allowed_value" +msgid "Darbārī kānaḍa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:896 +msgctxt "work_attribute_type_allowed_value" +msgid "Darbārī tōḍī" +msgstr "" + +#: DB:medium_format/name:43 +msgctxt "medium_format" +msgid "Data CD" +msgstr "" + +#: DB:medium_format/name:94 +msgctxt "medium_format" +msgid "Data DVD" +msgstr "" + +#: DB:medium_format/name:93 +msgctxt "medium_format" +msgid "Data DVD-R" +msgstr "" + +#: DB:medium_format/name:128 +msgctxt "medium_format" +msgid "DataPlay" +msgstr "" + +#: DB:release_group_secondary_type/name:10 +msgctxt "release_group_secondary_type" +msgid "Demo" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:610 +msgctxt "work_attribute_type_allowed_value" +msgid "Destan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:716 +msgctxt "work_attribute_type_allowed_value" +msgid "Devr-i Aryan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:717 +msgctxt "work_attribute_type_allowed_value" +msgid "Devr-i Hindi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:718 +msgctxt "work_attribute_type_allowed_value" +msgid "Devr-i Hindi II" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:719 +msgctxt "work_attribute_type_allowed_value" +msgid "Devr-i Kebir" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:720 +msgctxt "work_attribute_type_allowed_value" +msgid "Devr-i Revan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:721 +msgctxt "work_attribute_type_allowed_value" +msgid "Devr-i Revan-ı Hindi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:722 +msgctxt "work_attribute_type_allowed_value" +msgid "Devr-i Süreyya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:723 +msgctxt "work_attribute_type_allowed_value" +msgid "Devr-i Süreyya Sofyanı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:724 +msgctxt "work_attribute_type_allowed_value" +msgid "Devr-i Turan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:797 +msgctxt "work_attribute_type_allowed_value" +msgid "Devr-i Turan II" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:79 +msgctxt "work_attribute_type_allowed_value" +msgid "Devāmṛtavarṣiṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:829 +msgctxt "work_attribute_type_allowed_value" +msgid "Dhamar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:80 +#: DB:work_attribute_type_allowed_value/value:902 +msgctxt "work_attribute_type_allowed_value" +msgid "Dhanaśrī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:81 +msgctxt "work_attribute_type_allowed_value" +msgid "Dhanyāsi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:903 +msgctxt "work_attribute_type_allowed_value" +msgid "Dhanī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:82 +msgctxt "work_attribute_type_allowed_value" +msgid "Dharmāvati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:285 +msgctxt "work_attribute_type_allowed_value" +msgid "Dhr̥va" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:83 +msgctxt "work_attribute_type_allowed_value" +msgid "Dhēnuka" +msgstr "" + +#: DB:release_packaging/name:17 +msgctxt "release_packaging" +msgid "Digibook" +msgstr "" + +#: DB:release_packaging/name:89 +msgctxt "release_packaging" +msgid "Digifile" +msgstr "" + +#: DB:release_packaging/name:3 +msgctxt "release_packaging" +msgid "Digipak" +msgstr "" + +#: DB:medium_format/name:12 +msgctxt "medium_format" +msgid "Digital Media" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:345 +msgctxt "work_attribute_type_allowed_value" +msgid "Dil Efruz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:344 +msgctxt "work_attribute_type_allowed_value" +msgid "Dildar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:348 +msgctxt "work_attribute_type_allowed_value" +msgid "Dilkeside" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:346 +msgctxt "work_attribute_type_allowed_value" +msgid "Dilkeş" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:347 +msgctxt "work_attribute_type_allowed_value" +msgid "Dilkeşhaveran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:349 +msgctxt "work_attribute_type_allowed_value" +msgid "Dilküşa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:350 +msgctxt "work_attribute_type_allowed_value" +msgid "Dilnevaz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:351 +msgctxt "work_attribute_type_allowed_value" +msgid "Dilnişin" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:904 +msgctxt "work_attribute_type_allowed_value" +msgid "Din kī puriyā" +msgstr "" + +#: DB:release_packaging/name:13 +msgctxt "release_packaging" +msgid "Discbox Slider" +msgstr "" + +#: DB:label_type/name:1 +msgctxt "label_type" +msgid "Distributor" +msgstr "" + +#: DB:area_type/name:5 +msgctxt "area_type" +msgid "District" +msgstr "" + +#: DB:area_type/description:5 +msgctxt "area_type" +msgid "District is used for a division of a large city, e.g. Queens." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:611 +msgctxt "work_attribute_type_allowed_value" +msgid "Divan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:725 +msgctxt "work_attribute_type_allowed_value" +msgid "Dolap" +msgstr "" + +#: DB:medium_format/name:46 +msgctxt "medium_format" +msgid "Download Card" +msgstr "" + +#: DB:medium_format/name:4 +msgctxt "medium_format" +msgid "DualDisc" +msgstr "" + +#: DB:medium_format/name:67 +msgctxt "medium_format" +msgid "DualDisc (CD side)" +msgstr "" + +#: DB:medium_format/name:130 +msgctxt "medium_format" +msgid "DualDisc (DVD side)" +msgstr "" + +#: DB:medium_format/name:65 +msgctxt "medium_format" +msgid "DualDisc (DVD-Audio side)" +msgstr "" + +#: DB:medium_format/name:66 +msgctxt "medium_format" +msgid "DualDisc (DVD-Video side)" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:612 +msgctxt "work_attribute_type_allowed_value" +msgid "Durak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:726 +msgctxt "work_attribute_type_allowed_value" +msgid "Durak Evferi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:86 +msgctxt "work_attribute_type_allowed_value" +msgid "Durga" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:906 +msgctxt "work_attribute_type_allowed_value" +msgid "Durgā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:87 +msgctxt "work_attribute_type_allowed_value" +msgid "Dvijāvanti" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:352 +msgctxt "work_attribute_type_allowed_value" +msgid "Dügah" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:354 +msgctxt "work_attribute_type_allowed_value" +msgid "Dügah Maye" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:353 +msgctxt "work_attribute_type_allowed_value" +msgid "Dügahbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:727 +msgctxt "work_attribute_type_allowed_value" +msgid "Dümen" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:728 +msgctxt "work_attribute_type_allowed_value" +msgid "Düyek" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:355 +msgctxt "work_attribute_type_allowed_value" +msgid "Düşems" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:828 +msgctxt "work_attribute_type_allowed_value" +msgid "Dādrā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:899 +msgctxt "work_attribute_type_allowed_value" +msgid "Dēsi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:900 +msgctxt "work_attribute_type_allowed_value" +msgid "Dēv gāndhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:76 +msgctxt "work_attribute_type_allowed_value" +msgid "Dēvagāndhāri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:77 +msgctxt "work_attribute_type_allowed_value" +msgid "Dēvakriya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:78 +msgctxt "work_attribute_type_allowed_value" +msgid "Dēvamanōhari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:901 +msgctxt "work_attribute_type_allowed_value" +msgid "Dēvgirī bilāval" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:75 +#: DB:work_attribute_type_allowed_value/value:897 +msgctxt "work_attribute_type_allowed_value" +msgid "Dēś" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:898 +msgctxt "work_attribute_type_allowed_value" +msgid "Dēśakār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:292 +msgctxt "work_attribute_type_allowed_value" +msgid "Dēśādi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:830 +msgctxt "work_attribute_type_allowed_value" +msgid "Dīpacaṇḍī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:84 +msgctxt "work_attribute_type_allowed_value" +msgid "Dīpakaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:905 +msgctxt "work_attribute_type_allowed_value" +msgid "Dīpāvali" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:85 +msgctxt "work_attribute_type_allowed_value" +msgid "Dīpāḷi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:791 +msgctxt "work_attribute_type_allowed_value" +msgid "E Dorian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:803 +msgctxt "work_attribute_type_allowed_value" +msgid "E Mixolydian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:13 +msgctxt "work_attribute_type_allowed_value" +msgid "E major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:14 +msgctxt "work_attribute_type_allowed_value" +msgid "E minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:11 +msgctxt "work_attribute_type_allowed_value" +msgid "E-flat major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:12 +msgctxt "work_attribute_type_allowed_value" +msgid "E-flat minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:814 +msgctxt "work_attribute_type_allowed_value" +msgid "E-sharp major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:15 +msgctxt "work_attribute_type_allowed_value" +msgid "E-sharp minor" +msgstr "" + +#: DB:work_attribute_type/name:37 +msgctxt "work_attribute_type" +msgid "ECAD ID" +msgstr "" + +#: DB:release_group_primary_type/name:3 +msgctxt "release_group_primary_type" +msgid "EP" +msgstr "" + +#: DB:medium_format/name:50 +msgctxt "medium_format" +msgid "Edison Diamond Disc" +msgstr "" + +#: DB:place_type/name:7 +msgctxt "place_type" +msgid "Educational institution" +msgstr "" + +#: DB:instrument_type/name:4 +msgctxt "instrument_type" +msgid "Electronic instrument" +msgstr "" + +#: DB:medium_format/name:42 +msgctxt "medium_format" +msgid "Enhanced CD" +msgstr "" + +#: DB:instrument_type/name:6 +msgctxt "instrument_type" +msgid "Ensemble" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:356 +msgctxt "work_attribute_type_allowed_value" +msgid "Eski Sipihr" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:613 +msgctxt "work_attribute_type_allowed_value" +msgid "Etüd" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:357 +msgctxt "work_attribute_type_allowed_value" +msgid "Evcara" +msgstr "" + +#: DB:editor_collection_type/name:4 +msgctxt "collection_type" +msgid "Event collection" +msgstr "" + +#: DB:event_alias_type/name:1 +msgctxt "alias_type" +msgid "Event name" +msgstr "" + +#: DB:series_type/name:6 +msgctxt "series_type" +msgid "Event series" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:729 +msgctxt "work_attribute_type_allowed_value" +msgid "Evfer" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:358 +msgctxt "work_attribute_type_allowed_value" +msgid "Eviç" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:359 +msgctxt "work_attribute_type_allowed_value" +msgid "Eviç Bahr-i Nazik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:360 +msgctxt "work_attribute_type_allowed_value" +msgid "Eviç Huzi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:364 +msgctxt "work_attribute_type_allowed_value" +msgid "Eviç Maye" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:361 +msgctxt "work_attribute_type_allowed_value" +msgid "Eviç Ruy-i Neva" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:365 +msgctxt "work_attribute_type_allowed_value" +msgid "Eviç Saba" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:366 +msgctxt "work_attribute_type_allowed_value" +msgid "Eviç Şevk" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:362 +msgctxt "work_attribute_type_allowed_value" +msgid "Eviçbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:363 +msgctxt "work_attribute_type_allowed_value" +msgid "Eviçkürdi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:730 +msgctxt "work_attribute_type_allowed_value" +msgid "Evsat" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:614 +msgctxt "work_attribute_type_allowed_value" +msgid "Ezan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:792 +msgctxt "work_attribute_type_allowed_value" +msgid "F Dorian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:804 +msgctxt "work_attribute_type_allowed_value" +msgid "F Mixolydian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:17 +msgctxt "work_attribute_type_allowed_value" +msgid "F major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:18 +msgctxt "work_attribute_type_allowed_value" +msgid "F minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:16 +msgctxt "work_attribute_type_allowed_value" +msgid "F-flat major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:815 +msgctxt "work_attribute_type_allowed_value" +msgid "F-flat minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:19 +msgctxt "work_attribute_type_allowed_value" +msgid "F-sharp major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:20 +msgctxt "work_attribute_type_allowed_value" +msgid "F-sharp minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:731 +msgctxt "work_attribute_type_allowed_value" +msgid "Fahte" +msgstr "" + +#: DB:instrument_type/name:7 +msgctxt "instrument_type" +msgid "Family" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:615 +msgctxt "work_attribute_type_allowed_value" +msgid "Fantezi" +msgstr "" + +#: DB:release_packaging/name:10 +msgctxt "release_packaging" +msgid "Fatbox" +msgstr "" + +#: DB:gender/name:2 +msgctxt "gender" +msgid "Female" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:732 +msgctxt "work_attribute_type_allowed_value" +msgid "Fer" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:733 +msgctxt "work_attribute_type_allowed_value" +msgid "Fer'i Muhammes" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:367 +msgctxt "work_attribute_type_allowed_value" +msgid "Ferahfeza" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:368 +msgctxt "work_attribute_type_allowed_value" +msgid "Ferahnak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:369 +msgctxt "work_attribute_type_allowed_value" +msgid "Ferahnakaşiran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:370 +msgctxt "work_attribute_type_allowed_value" +msgid "Ferahnüma" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:371 +msgctxt "work_attribute_type_allowed_value" +msgid "Ferahzad" +msgstr "" + +#: DB:event_type/name:2 +msgctxt "event_type" +msgid "Festival" +msgstr "" + +#: DB:series_type/name:8 +msgctxt "series_type" +msgid "Festival" +msgstr "" + +#: DB:place_type/name:45 +msgctxt "place_type" +msgid "Festival stage" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:372 +msgctxt "work_attribute_type_allowed_value" +msgid "Feth-i Bağdad" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:373 +msgctxt "work_attribute_type_allowed_value" +msgid "Feth-i Belgrad" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:374 +msgctxt "work_attribute_type_allowed_value" +msgid "Feth-i Dil" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:375 +msgctxt "work_attribute_type_allowed_value" +msgid "Feth-i Hicaz" +msgstr "" + +#: DB:release_group_secondary_type/name:12 +msgctxt "release_group_secondary_type" +msgid "Field recording" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:734 +msgctxt "work_attribute_type_allowed_value" +msgid "Fireng-i Fer" +msgstr "" + +#: DB:medium_format/description:73 +msgctxt "medium_format" +msgid "" +"Flat discs with grooves used in phonographs/gramophones. For shellac and " +"vinyl records, use that specifically" +msgstr "" + +#: DB:medium_format/name:51 +msgctxt "medium_format" +msgid "Flexi-disc" +msgstr "" + +#: DB:medium_format/description:51 +msgctxt "medium_format" +msgid "" +"Flexi-discs are phonograph records made of a thin, flexible vinyl sheet with " +"a molded-in groove, designed to be playable on a normal phonograph turntable." +msgstr "" + +#: DB:medium_format/name:76 +msgctxt "medium_format" +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)" +msgstr "" + +#: DB:area_alias_type/name:2 +msgctxt "alias_type" +msgid "Formal name" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:735 +msgctxt "work_attribute_type_allowed_value" +msgid "Frengçin" +msgstr "" + +#: DB:cover_art_archive.art_type/name:1 +msgctxt "cover_art_type" +msgid "Front" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:793 +msgctxt "work_attribute_type_allowed_value" +msgid "G Dorian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:805 +msgctxt "work_attribute_type_allowed_value" +msgid "G Mixolydian" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:22 +msgctxt "work_attribute_type_allowed_value" +msgid "G major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:23 +msgctxt "work_attribute_type_allowed_value" +msgid "G minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:21 +msgctxt "work_attribute_type_allowed_value" +msgid "G-flat major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:816 +msgctxt "work_attribute_type_allowed_value" +msgid "G-flat minor" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:24 +msgctxt "work_attribute_type_allowed_value" +msgid "G-sharp major" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:25 +msgctxt "work_attribute_type_allowed_value" +msgid "G-sharp minor" +msgstr "" + +#: DB:work_attribute_type/name:9 +msgctxt "work_attribute_type" +msgid "GEMA ID" +msgstr "" + +#: DB:work_attribute_type/name:106 +msgctxt "work_attribute_type" +msgid "GMR ID" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:88 +msgctxt "work_attribute_type_allowed_value" +msgid "Gamakakriya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:89 +msgctxt "work_attribute_type_allowed_value" +msgid "Gamakakriya/Pūrvīkaḷyāṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:95 +msgctxt "work_attribute_type_allowed_value" +msgid "Garuḍadhvani" +msgstr "" + +#: DB:release_packaging/name:12 +msgctxt "release_packaging" +msgid "Gatefold Cover" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:911 +msgctxt "work_attribute_type_allowed_value" +msgid "Gaurī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:912 +msgctxt "work_attribute_type_allowed_value" +msgid "Gaurī basant" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:99 +msgctxt "work_attribute_type_allowed_value" +msgid "Gaurīmanōhari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:909 +msgctxt "work_attribute_type_allowed_value" +msgid "Gauḍ malhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:910 +msgctxt "work_attribute_type_allowed_value" +msgid "Gauḍ sāraṅg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:96 +msgctxt "work_attribute_type_allowed_value" +msgid "Gauḍa malhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:97 +msgctxt "work_attribute_type_allowed_value" +msgid "Gauḷa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:98 +msgctxt "work_attribute_type_allowed_value" +msgid "Gauḷipantu" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:913 +msgctxt "work_attribute_type_allowed_value" +msgid "Gavti" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:616 +msgctxt "work_attribute_type_allowed_value" +msgid "Gazel" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:90 +msgctxt "work_attribute_type_allowed_value" +msgid "Gaṁbhīra nāṭa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:91 +msgctxt "work_attribute_type_allowed_value" +msgid "Gaṁbhīra vāṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:376 +msgctxt "work_attribute_type_allowed_value" +msgid "Gerdaniye" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:377 +msgctxt "work_attribute_type_allowed_value" +msgid "Gerdaniyebuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:378 +msgctxt "work_attribute_type_allowed_value" +msgid "Gerdaniyekürdi" +msgstr "" + +#: DB:medium_format/description:90 +msgctxt "medium_format" +msgid "" +"German tape cartridge format, using grooved tape rather than magnetic tape." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:380 +msgctxt "work_attribute_type_allowed_value" +msgid "Geveşt" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:379 +msgctxt "work_attribute_type_allowed_value" +msgid "Geştü Güzar-ı Bahar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:100 +msgctxt "work_attribute_type_allowed_value" +msgid "Ghanṭa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:381 +msgctxt "work_attribute_type_allowed_value" +msgid "Gonca-i Rana" +msgstr "" + +#: DB:artist_type/name:2 +msgctxt "artist_type" +msgid "Group" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:916 +msgctxt "work_attribute_type_allowed_value" +msgid "Gurjarī tōḍī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:102 +msgctxt "work_attribute_type_allowed_value" +msgid "Gurjāri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:915 +msgctxt "work_attribute_type_allowed_value" +msgid "Guṇakārī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:382 +msgctxt "work_attribute_type_allowed_value" +msgid "Güldeste" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:384 +msgctxt "work_attribute_type_allowed_value" +msgid "Gülizar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:385 +msgctxt "work_attribute_type_allowed_value" +msgid "Gülizarbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:386 +msgctxt "work_attribute_type_allowed_value" +msgid "Gülnari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:387 +msgctxt "work_attribute_type_allowed_value" +msgid "Gülruh" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:383 +msgctxt "work_attribute_type_allowed_value" +msgid "Gülzar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:388 +msgctxt "work_attribute_type_allowed_value" +msgid "Gülşen-i Vefa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:617 +msgctxt "work_attribute_type_allowed_value" +msgid "Güvende" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:92 +msgctxt "work_attribute_type_allowed_value" +msgid "Gānamūrti" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:93 +msgctxt "work_attribute_type_allowed_value" +msgid "Gānavāridhi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:908 +msgctxt "work_attribute_type_allowed_value" +msgid "Gāndhī malhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:94 +msgctxt "work_attribute_type_allowed_value" +msgid "Gāngēyabhūṣaṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:101 +msgctxt "work_attribute_type_allowed_value" +msgid "Gōpikāvasantaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:914 +msgctxt "work_attribute_type_allowed_value" +msgid "Gōrākh kalyāṇ" +msgstr "" + +#: DB:medium_format/name:17 +msgctxt "medium_format" +msgid "HD-DVD" +msgstr "" + +#: DB:medium_format/name:25 +msgctxt "medium_format" +msgid "HDCD" +msgstr "" + +#: DB:work_attribute_type/name:64 +msgctxt "work_attribute_type" +msgid "HFA ID" +msgstr "" + +#: DB:medium_format/name:37 +msgctxt "medium_format" +msgid "HQCD" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:736 +msgctxt "work_attribute_type_allowed_value" +msgid "Hafif" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:618 +msgctxt "work_attribute_type_allowed_value" +msgid "Halk Türküsü" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:104 +msgctxt "work_attribute_type_allowed_value" +msgid "Hamsadhvani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:918 +msgctxt "work_attribute_type_allowed_value" +msgid "Hamsadhvāni" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:919 +msgctxt "work_attribute_type_allowed_value" +msgid "Hamsanārāyaṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:107 +msgctxt "work_attribute_type_allowed_value" +msgid "Hamsavinōdini" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:917 +msgctxt "work_attribute_type_allowed_value" +msgid "Hamīr" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:103 +msgctxt "work_attribute_type_allowed_value" +msgid "Hamīr kaḷyaṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:108 +msgctxt "work_attribute_type_allowed_value" +msgid "Harikāmbhōji" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:389 +msgctxt "work_attribute_type_allowed_value" +msgid "Haver" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:737 +msgctxt "work_attribute_type_allowed_value" +msgid "Havi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:105 +msgctxt "work_attribute_type_allowed_value" +msgid "Haṁsanādaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:106 +msgctxt "work_attribute_type_allowed_value" +msgid "Haṁsānandi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:390 +msgctxt "work_attribute_type_allowed_value" +msgid "Heftgah" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:738 +msgctxt "work_attribute_type_allowed_value" +msgid "Hezeç" +msgstr "" + +#: DB:medium_format/name:75 +msgctxt "medium_format" +msgid "HiPac" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:391 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicaz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:395 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicaz Büzürk" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:396 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicaz Dilkeş" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:398 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicaz Hümayun" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:409 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicaz Uzzal" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:392 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicaz Zemzeme" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:410 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicaz Zirgüle" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:393 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazaşiran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:394 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:397 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazeyn" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:399 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazi Acem" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:400 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazi Irak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:401 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazi Muhalif" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:402 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazi Rumi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:403 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazi Türki" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:404 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazi Uşşak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:405 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazkar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:408 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazkar-Kürdi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:407 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazkar-ı Kadim" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:406 +msgctxt "work_attribute_type_allowed_value" +msgid "Hicazkarbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:112 +msgctxt "work_attribute_type_allowed_value" +msgid "Hindustān gāndhāri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:924 +msgctxt "work_attribute_type_allowed_value" +msgid "Hindōl" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:925 +msgctxt "work_attribute_type_allowed_value" +msgid "Hindōl pañcam" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:110 +msgctxt "work_attribute_type_allowed_value" +msgid "Hindōḷa vasantaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:111 +msgctxt "work_attribute_type_allowed_value" +msgid "Hindōḷaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:411 +msgctxt "work_attribute_type_allowed_value" +msgid "Hisar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:412 +msgctxt "work_attribute_type_allowed_value" +msgid "Hisar Vech-i Şehnaz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:413 +msgctxt "work_attribute_type_allowed_value" +msgid "Hisarbuselik" +msgstr "" + +#: DB:label_type/name:2 +msgctxt "label_type" +msgid "Holding" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:414 +msgctxt "work_attribute_type_allowed_value" +msgid "Horasan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:415 +msgctxt "work_attribute_type_allowed_value" +msgid "Horosani Beyati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:416 +msgctxt "work_attribute_type_allowed_value" +msgid "Hoş Aver" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:926 +msgctxt "work_attribute_type_allowed_value" +msgid "Husaini" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:113 +msgctxt "work_attribute_type_allowed_value" +msgid "Hussēnī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:619 +msgctxt "work_attribute_type_allowed_value" +msgid "Hutbe" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:417 +msgctxt "work_attribute_type_allowed_value" +msgid "Huzi" +msgstr "" + +#: DB:medium_format/name:38 +msgctxt "medium_format" +msgid "Hybrid SACD" +msgstr "" + +#: DB:medium_format/name:63 +msgctxt "medium_format" +msgid "Hybrid SACD (CD layer)" +msgstr "" + +#: DB:medium_format/name:64 +msgctxt "medium_format" +msgid "Hybrid SACD (SACD layer)" +msgstr "" + +#: DB:medium_format/name:87 +msgctxt "medium_format" +msgid "Hybrid SACD (SACD layer, 2 channels)" +msgstr "" + +#: DB:medium_format/name:86 +msgctxt "medium_format" +msgid "Hybrid SACD (SACD layer, multichannel)" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:418 +msgctxt "work_attribute_type_allowed_value" +msgid "Hüdavendigar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:419 +msgctxt "work_attribute_type_allowed_value" +msgid "Hüseyni" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:422 +msgctxt "work_attribute_type_allowed_value" +msgid "Hüseyni Araban" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:420 +msgctxt "work_attribute_type_allowed_value" +msgid "Hüseyni Gülizar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:421 +msgctxt "work_attribute_type_allowed_value" +msgid "Hüseyni Zemzeme" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:423 +msgctxt "work_attribute_type_allowed_value" +msgid "Hüseyniaşiran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:424 +msgctxt "work_attribute_type_allowed_value" +msgid "Hüseynibuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:425 +msgctxt "work_attribute_type_allowed_value" +msgid "Hüzzam" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:426 +msgctxt "work_attribute_type_allowed_value" +msgid "Hüzzam-ı Cedid" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:920 +msgctxt "work_attribute_type_allowed_value" +msgid "Hēm bihāg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:921 +msgctxt "work_attribute_type_allowed_value" +msgid "Hēm lalit" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:922 +msgctxt "work_attribute_type_allowed_value" +msgid "Hēmant" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:109 +msgctxt "work_attribute_type_allowed_value" +msgid "Hēmavati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:923 +msgctxt "work_attribute_type_allowed_value" +msgid "Hēmāvānti" +msgstr "" + +#: DB:work_attribute_type/name:29 +msgctxt "work_attribute_type" +msgid "ICE ID" +msgstr "" + +#: DB:work_attribute_type/description:24 +msgctxt "work_attribute_type" +msgid "ID for the Argentinean rights society SADAIC" +msgstr "" + +#: DB:work_attribute_type/description:13 +msgctxt "work_attribute_type" +msgid "ID for the Australasian rights society APRA" +msgstr "" + +#: DB:work_attribute_type/description:23 +msgctxt "work_attribute_type" +msgid "ID for the Austrian rights society AKM" +msgstr "" + +#: DB:work_attribute_type/description:73 +msgctxt "work_attribute_type" +msgid "ID for the Barbadian rights society COSCAP" +msgstr "" + +#: DB:work_attribute_type/description:28 +msgctxt "work_attribute_type" +msgid "ID for the Belgian rights society SABAM" +msgstr "" + +#: DB:work_attribute_type/description:61 +msgctxt "work_attribute_type" +msgid "ID for the Bolivian rights society SOBODAYCOM" +msgstr "" + +#: DB:work_attribute_type/description:37 +msgctxt "work_attribute_type" +msgid "ID for the Brazilian rights society ECAD" +msgstr "" + +#: DB:work_attribute_type/description:34 +msgctxt "work_attribute_type" +msgid "ID for the British rights society PRS for Music" +msgstr "" + +#: DB:work_attribute_type/description:10 +msgctxt "work_attribute_type" +msgid "ID for the Canadian rights society SOCAN" +msgstr "" + +#: DB:work_attribute_type/description:53 +msgctxt "work_attribute_type" +msgid "ID for the Canadian rights society SODRAC" +msgstr "" + +#: DB:work_attribute_type/description:173 +msgctxt "work_attribute_type" +msgid "ID for the Chilean rights society SCD" +msgstr "" + +#: DB:work_attribute_type/description:71 +msgctxt "work_attribute_type" +msgid "ID for the Chinese rights society MCSC" +msgstr "" + +#: DB:work_attribute_type/description:39 +msgctxt "work_attribute_type" +msgid "ID for the Colombian rights society SAYCO" +msgstr "" + +#: DB:work_attribute_type/description:44 +msgctxt "work_attribute_type" +msgid "ID for the Costa Rican rights society ACAM" +msgstr "" + +#: DB:work_attribute_type/description:47 +msgctxt "work_attribute_type" +msgid "ID for the Cuban rights society ACDAM" +msgstr "" + +#: DB:work_attribute_type/description:25 +msgctxt "work_attribute_type" +msgid "ID for the Czech rights society OSA" +msgstr "" + +#: DB:work_attribute_type/description:51 +msgctxt "work_attribute_type" +msgid "ID for the Danish rights society KODA" +msgstr "" + +#: DB:work_attribute_type/description:60 +msgctxt "work_attribute_type" +msgid "ID for the Dominican rights society SGACEDOM" +msgstr "" + +#: DB:work_attribute_type/description:26 +msgctxt "work_attribute_type" +msgid "ID for the Dutch rights society BUMA/STEMRA" +msgstr "" + +#: DB:work_attribute_type/description:40 +msgctxt "work_attribute_type" +msgid "ID for the Ecuadorian rights society SAYCE" +msgstr "" + +#: DB:work_attribute_type/description:66 +msgctxt "work_attribute_type" +msgid "ID for the Finnish rights society TEOSTO" +msgstr "" + +#: DB:work_attribute_type/description:21 +msgctxt "work_attribute_type" +msgid "ID for the French rights society Sacem" +msgstr "" + +#: DB:work_attribute_type/description:9 +msgctxt "work_attribute_type" +msgid "ID for the German rights society GEMA" +msgstr "" + +#: DB:work_attribute_type/description:58 +msgctxt "work_attribute_type" +msgid "ID for the Guatemalan rights society AEI" +msgstr "" + +#: DB:work_attribute_type/description:57 +msgctxt "work_attribute_type" +msgid "ID for the Honduran rights society AACIMH" +msgstr "" + +#: DB:work_attribute_type/description:19 +msgctxt "work_attribute_type" +msgid "ID for the Hong Kong rights society CASH" +msgstr "" + +#: DB:work_attribute_type/description:48 +msgctxt "work_attribute_type" +msgid "ID for the Hungarian rights society ARTISJUS" +msgstr "" + +#: DB:work_attribute_type/description:54 +msgctxt "work_attribute_type" +msgid "ID for the Icelandic rights society STEF" +msgstr "" + +#: DB:work_attribute_type/description:70 +msgctxt "work_attribute_type" +msgid "ID for the Indian rights society IPRS" +msgstr "" + +#: DB:work_attribute_type/description:29 +msgctxt "work_attribute_type" +msgid "ID for the International Copyright Enterprise" +msgstr "" + +#: DB:work_attribute_type/description:52 +msgctxt "work_attribute_type" +msgid "ID for the Irish rights society IMRO" +msgstr "" + +#: DB:work_attribute_type/description:36 +msgctxt "work_attribute_type" +msgid "ID for the Italian rights society SIAE" +msgstr "" + +#: DB:work_attribute_type/description:69 +msgctxt "work_attribute_type" +msgid "ID for the Jamaican rights society JACAP" +msgstr "" + +#: DB:work_attribute_type/description:3 +msgctxt "work_attribute_type" +msgid "ID for the Japanese rights society JASRAC" +msgstr "" + +#: DB:work_attribute_type/description:33 +msgctxt "work_attribute_type" +msgid "ID for the Japanese rights society NexTone" +msgstr "" + +#: DB:work_attribute_type/description:11 +msgctxt "work_attribute_type" +msgid "ID for the Korean rights society KOMCA" +msgstr "" + +#: DB:work_attribute_type/description:63 +msgctxt "work_attribute_type" +msgid "ID for the Latvian rights society AKKA/LAA" +msgstr "" + +#: DB:work_attribute_type/description:49 +msgctxt "work_attribute_type" +msgid "ID for the Malaysian rights society MACP" +msgstr "" + +#: DB:work_attribute_type/description:27 +msgctxt "work_attribute_type" +msgid "ID for the Mexican rights society SACM" +msgstr "" + +#: DB:work_attribute_type/description:59 +msgctxt "work_attribute_type" +msgid "ID for the Nicaraguan rights society NICAUTOR" +msgstr "" + +#: DB:work_attribute_type/description:67 +msgctxt "work_attribute_type" +msgid "ID for the Norwegian rights society TONO" +msgstr "" + +#: DB:work_attribute_type/description:62 +msgctxt "work_attribute_type" +msgid "ID for the Panamanian rights society SPAC" +msgstr "" + +#: DB:work_attribute_type/description:46 +msgctxt "work_attribute_type" +msgid "ID for the Paraguayan rights society APA" +msgstr "" + +#: DB:work_attribute_type/description:41 +msgctxt "work_attribute_type" +msgid "ID for the Peruvian rights society APDAYC" +msgstr "" + +#: DB:work_attribute_type/description:30 +msgctxt "work_attribute_type" +msgid "ID for the Polish rights society ZAiKS" +msgstr "" + +#: DB:work_attribute_type/description:35 +msgctxt "work_attribute_type" +msgid "ID for the Portuguese rights society SPA" +msgstr "" + +#: DB:work_attribute_type/description:56 +msgctxt "work_attribute_type" +msgid "ID for the Salvadoran rights society SACIM" +msgstr "" + +#: DB:work_attribute_type/description:45 +msgctxt "work_attribute_type" +msgid "ID for the Singaporean rights society COMPASS" +msgstr "" + +#: DB:work_attribute_type/description:140 +msgctxt "work_attribute_type" +msgid "ID for the Slovenian rights society SAZAS" +msgstr "" + +#: DB:work_attribute_type/description:68 +msgctxt "work_attribute_type" +msgid "ID for the South African rights society SAMRO" +msgstr "" + +#: DB:work_attribute_type/description:20 +msgctxt "work_attribute_type" +msgid "ID for the Spanish rights society SGAE" +msgstr "" + +#: DB:work_attribute_type/description:50 +msgctxt "work_attribute_type" +msgid "ID for the Swedish rights society STIM" +msgstr "" + +#: DB:work_attribute_type/description:18 +msgctxt "work_attribute_type" +msgid "ID for the Swiss rights society SUISA" +msgstr "" + +#: DB:work_attribute_type/description:12 +msgctxt "work_attribute_type" +msgid "ID for the Taiwanese rights society MÜST" +msgstr "" + +#: DB:work_attribute_type/description:72 +msgctxt "work_attribute_type" +msgid "ID for the Thai rights society MCT" +msgstr "" + +#: DB:work_attribute_type/description:65 +msgctxt "work_attribute_type" +msgid "ID for the Trinidadian and Tobagonian rights society COTT" +msgstr "" + +#: DB:work_attribute_type/description:6 +msgctxt "work_attribute_type" +msgid "ID for the US rights society ASCAP" +msgstr "" + +#: DB:work_attribute_type/description:7 +msgctxt "work_attribute_type" +msgid "ID for the US rights society BMI" +msgstr "" + +#: DB:work_attribute_type/description:106 +msgctxt "work_attribute_type" +msgid "ID for the US rights society GMR" +msgstr "" + +#: DB:work_attribute_type/description:8 +msgctxt "work_attribute_type" +msgid "ID for the US rights society SESAC" +msgstr "" + +#: DB:work_attribute_type/description:43 +msgctxt "work_attribute_type" +msgid "ID for the Uruguayan rights society AGADU" +msgstr "" + +#: DB:work_attribute_type/description:42 +msgctxt "work_attribute_type" +msgid "ID for the Venezuelan rights society SACVEN" +msgstr "" + +#: DB:work_attribute_type/description:107 +msgctxt "work_attribute_type" +msgid "ID for the Vietnamese rights society VCPMC" +msgstr "" + +#: DB:work_attribute_type/description:38 +msgctxt "work_attribute_type" +msgid "ID for the international (formerly US) rights society AMRA" +msgstr "" + +#: DB:work_attribute_type/description:55 +msgctxt "work_attribute_type" +msgid "ID for the international rights society consortium LatinNet" +msgstr "" + +#: DB:work_attribute_type/description:22 +msgctxt "work_attribute_type" +msgid "ID for the private licensing company CCLI" +msgstr "" + +#: DB:work_attribute_type/description:64 +msgctxt "work_attribute_type" +msgid "ID for the private licensing company HFA (Harry Fox Agency)" +msgstr "" + +#: DB:work_attribute_type/name:52 +msgctxt "work_attribute_type" +msgid "IMRO ID" +msgstr "" + +#: DB:work_attribute_type/name:70 +msgctxt "work_attribute_type" +msgid "IPRS ID" +msgstr "" + +#: DB:work_attribute_type/name:14 +msgctxt "work_attribute_type" +msgid "Identifiers" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:832 +msgctxt "work_attribute_type_allowed_value" +msgid "Ikvāi" +msgstr "" + +#: DB:label_type/name:9 +msgctxt "label_type" +msgid "Imprint" +msgstr "" + +#: DB:work_type/name:30 +msgctxt "work_type" +msgid "Incidental music" +msgstr "" + +#: DB:work_type/description:30 +msgctxt "work_type" +msgid "" +"Incidental music is music written as background for (usually) a theatre play." +msgstr "" + +#: DB:area_type/name:9 +msgctxt "area_type" +msgid "Indigenous territory / reserve" +msgstr "" + +#: DB:place_type/name:5 +msgctxt "place_type" +msgid "Indoor arena" +msgstr "" + +#: DB:editor_collection_type/name:9 +msgctxt "collection_type" +msgid "Instrument collection" +msgstr "" + +#: DB:instrument_alias_type/name:1 +msgctxt "alias_type" +msgid "Instrument name" +msgstr "" + +#: DB:release_group_secondary_type/name:4 +msgctxt "release_group_secondary_type" +msgid "Interview" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:427 +msgctxt "work_attribute_type_allowed_value" +msgid "Irak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:428 +msgctxt "work_attribute_type_allowed_value" +msgid "Irakaşiran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:739 +msgctxt "work_attribute_type_allowed_value" +msgid "Iraksak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:429 +msgctxt "work_attribute_type_allowed_value" +msgid "Isfahan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:430 +msgctxt "work_attribute_type_allowed_value" +msgid "Isfahan Ruy-i Neva" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:431 +msgctxt "work_attribute_type_allowed_value" +msgid "Isfahan Zemzeme" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:434 +msgctxt "work_attribute_type_allowed_value" +msgid "Isfahan-ı Cedid" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:432 +msgctxt "work_attribute_type_allowed_value" +msgid "Isfahanbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:433 +msgctxt "work_attribute_type_allowed_value" +msgid "Isfahanek" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:435 +msgctxt "work_attribute_type_allowed_value" +msgid "Isfahani" +msgstr "" + +#: DB:area_type/name:6 +msgctxt "area_type" +msgid "Island" +msgstr "" + +#: DB:area_type/description:6 +msgctxt "area_type" +msgid "" +"Island is used for islands and atolls which don't form subdivisions of their " +"own, e.g. Skye. These are not considered when displaying the parent areas " +"for a given area." +msgstr "" + +#: DB:work_attribute_type/name:69 +msgctxt "work_attribute_type" +msgid "JACAP ID" +msgstr "" + +#: DB:work_attribute_type/name:3 +msgctxt "work_attribute_type" +msgid "JASRAC ID" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:114 +msgctxt "work_attribute_type_allowed_value" +msgid "Jaganmōhini" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:927 +msgctxt "work_attribute_type_allowed_value" +msgid "Jaijaivanti" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:928 +msgctxt "work_attribute_type_allowed_value" +msgid "Jait kalyāṇ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:115 +msgctxt "work_attribute_type_allowed_value" +msgid "Janaranjani" +msgstr "" + +#: DB:release_packaging/description:21 +msgctxt "release_packaging" +msgid "" +"Japanese case that holds an 8cm CD. It is rectangular but can be snapped to " +"make it more compact (hence the name)." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:929 +msgctxt "work_attribute_type_allowed_value" +msgid "Jaunpuri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:116 +msgctxt "work_attribute_type_allowed_value" +msgid "Jaya manōhari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:117 +msgctxt "work_attribute_type_allowed_value" +msgid "Jayantasēna" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:118 +msgctxt "work_attribute_type_allowed_value" +msgid "Jayantaśrī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:930 +msgctxt "work_attribute_type_allowed_value" +msgid "Jayavantī tōḍī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:833 +msgctxt "work_attribute_type_allowed_value" +msgid "Jaṭ" +msgstr "" + +#: DB:release_packaging/name:1 +msgctxt "release_packaging" +msgid "Jewel Case" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:119 +msgctxt "work_attribute_type_allowed_value" +msgid "Jhankāradhvani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:834 +msgctxt "work_attribute_type_allowed_value" +msgid "Jhaptāl" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:931 +msgctxt "work_attribute_type_allowed_value" +msgid "Jhinjhaṭ mān̄j" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:932 +msgctxt "work_attribute_type_allowed_value" +msgid "Jhinjhōṭi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:835 +msgctxt "work_attribute_type_allowed_value" +msgid "Jhūmrā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:120 +msgctxt "work_attribute_type_allowed_value" +msgid "Jingala" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:124 +msgctxt "work_attribute_type_allowed_value" +msgid "Jyōti svarūpiṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:121 +#: DB:work_attribute_type_allowed_value/value:933 +msgctxt "work_attribute_type_allowed_value" +msgid "Jōg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:122 +msgctxt "work_attribute_type_allowed_value" +msgid "Jōgiya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:934 +msgctxt "work_attribute_type_allowed_value" +msgid "Jōgiyā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:935 +msgctxt "work_attribute_type_allowed_value" +msgid "Jōgiyā asavāri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:936 +msgctxt "work_attribute_type_allowed_value" +msgid "Jōgkauns" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:123 +msgctxt "work_attribute_type_allowed_value" +msgid "Jōnpuri" +msgstr "" + +#: DB:work_attribute_type/name:51 +msgctxt "work_attribute_type" +msgid "KODA ID" +msgstr "" + +#: DB:work_attribute_type/name:11 +msgctxt "work_attribute_type" +msgid "KOMCA ID" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:621 +msgctxt "work_attribute_type_allowed_value" +msgid "Kalenderi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:128 +msgctxt "work_attribute_type_allowed_value" +msgid "Kalgaḍa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:939 +msgctxt "work_attribute_type_allowed_value" +msgid "Kalyāṇ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:130 +#: DB:work_attribute_type_allowed_value/value:940 +msgctxt "work_attribute_type_allowed_value" +msgid "Kalyāṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:127 +#: DB:work_attribute_type_allowed_value/value:937 +msgctxt "work_attribute_type_allowed_value" +msgid "Kalāvati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:938 +msgctxt "work_attribute_type_allowed_value" +msgid "Kalāśrī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:131 +msgctxt "work_attribute_type_allowed_value" +msgid "Kamalāmanōhari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:622 +msgctxt "work_attribute_type_allowed_value" +msgid "Kamet" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:133 +msgctxt "work_attribute_type_allowed_value" +msgid "Kamās" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:137 +msgctxt "work_attribute_type_allowed_value" +msgid "Kannaḍa gaula" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:623 +msgctxt "work_attribute_type_allowed_value" +msgid "Kanto" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:742 +msgctxt "work_attribute_type_allowed_value" +msgid "Kapalı Curcuna" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:624 +msgctxt "work_attribute_type_allowed_value" +msgid "Kar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:626 +msgctxt "work_attribute_type_allowed_value" +msgid "Kar-ı Natık" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:627 +msgctxt "work_attribute_type_allowed_value" +msgid "Kar-ı Nev" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:437 +msgctxt "work_attribute_type_allowed_value" +msgid "Karabağı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:141 +msgctxt "work_attribute_type_allowed_value" +msgid "Karaharapriya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:438 +msgctxt "work_attribute_type_allowed_value" +msgid "Karcığar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:625 +msgctxt "work_attribute_type_allowed_value" +msgid "Karçe" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:628 +msgctxt "work_attribute_type_allowed_value" +msgid "Karşılama" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:142 +msgctxt "work_attribute_type_allowed_value" +msgid "Karṇaranjani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:143 +msgctxt "work_attribute_type_allowed_value" +msgid "Karṇāṭaka behāg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:144 +msgctxt "work_attribute_type_allowed_value" +msgid "Karṇāṭaka dēvagāndhāri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:145 +msgctxt "work_attribute_type_allowed_value" +msgid "Karṇāṭaka kāpi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:146 +msgctxt "work_attribute_type_allowed_value" +msgid "Karṇāṭaka śudda sāvēri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:629 +msgctxt "work_attribute_type_allowed_value" +msgid "Kasaphavası" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:147 +msgctxt "work_attribute_type_allowed_value" +msgid "Kathanakutūhalaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:743 +msgctxt "work_attribute_type_allowed_value" +msgid "Katikofti" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:945 +msgctxt "work_attribute_type_allowed_value" +msgid "Kaunsī kānaḍā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:946 +msgctxt "work_attribute_type_allowed_value" +msgid "Kauśik dhvani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:129 +msgctxt "work_attribute_type_allowed_value" +msgid "Kaḷyāṇa vasantaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:125 +msgctxt "work_attribute_type_allowed_value" +msgid "Kaḷā sāvēri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:126 +msgctxt "work_attribute_type_allowed_value" +msgid "Kaḷānidhi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:439 +msgctxt "work_attribute_type_allowed_value" +msgid "Kebüter" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:150 +msgctxt "work_attribute_type_allowed_value" +msgid "Kedāraṁ" +msgstr "" + +#: DB:release_packaging/name:6 +msgctxt "release_packaging" +msgid "Keep Case" +msgstr "" + +#: DB:work_attribute_type/name:1 +msgctxt "work_attribute_type" +msgid "Key" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:950 +msgctxt "work_attribute_type_allowed_value" +msgid "Khambāvati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:948 +msgctxt "work_attribute_type_allowed_value" +msgid "Khamāj" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:949 +msgctxt "work_attribute_type_allowed_value" +msgid "Khamāj bahār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:282 +msgctxt "work_attribute_type_allowed_value" +msgid "Khaṇḍa chāpu" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:293 +msgctxt "work_attribute_type_allowed_value" +msgid "Khaṇḍa-jāti tripuṭa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:294 +msgctxt "work_attribute_type_allowed_value" +msgid "Khaṇḍa-jāti ēka" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:951 +msgctxt "work_attribute_type_allowed_value" +msgid "Khaṭa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:952 +msgctxt "work_attribute_type_allowed_value" +msgid "Khokar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:837 +msgctxt "work_attribute_type_allowed_value" +msgid "Khēmtāl" +msgstr "" + +#: DB:medium_format/name:95 +msgctxt "medium_format" +msgid "KiT Album" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:630 +msgctxt "work_attribute_type_allowed_value" +msgid "Koda" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:631 +msgctxt "work_attribute_type_allowed_value" +msgid "Koşma" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:155 +msgctxt "work_attribute_type_allowed_value" +msgid "Kuntalavarāḷi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:955 +msgctxt "work_attribute_type_allowed_value" +msgid "Kuntavarāli" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:633 +msgctxt "work_attribute_type_allowed_value" +msgid "Kur'an-ı Kerim" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:156 +msgctxt "work_attribute_type_allowed_value" +msgid "Kurinji" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:632 +msgctxt "work_attribute_type_allowed_value" +msgid "Köçekçe" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:634 +msgctxt "work_attribute_type_allowed_value" +msgid "Küpe" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:442 +msgctxt "work_attribute_type_allowed_value" +msgid "Kürdi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:443 +msgctxt "work_attribute_type_allowed_value" +msgid "Kürdi Gerdaniye" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:444 +msgctxt "work_attribute_type_allowed_value" +msgid "Kürdilihicazkar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:635 +msgctxt "work_attribute_type_allowed_value" +msgid "Kürthavası" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:440 +msgctxt "work_attribute_type_allowed_value" +msgid "Küçek" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:441 +msgctxt "work_attribute_type_allowed_value" +msgid "Küçekneva" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:132 +msgctxt "work_attribute_type_allowed_value" +msgid "Kāmaranjani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:134 +msgctxt "work_attribute_type_allowed_value" +msgid "Kāmavardani/Pantuvarāḷi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:941 +msgctxt "work_attribute_type_allowed_value" +msgid "Kāmbhōji" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:942 +msgctxt "work_attribute_type_allowed_value" +msgid "Kāmōdvanti" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:136 +msgctxt "work_attribute_type_allowed_value" +msgid "Kānaḍa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:943 +msgctxt "work_attribute_type_allowed_value" +msgid "Kānaḍā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:138 +msgctxt "work_attribute_type_allowed_value" +msgid "Kāntāmaṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:944 +msgctxt "work_attribute_type_allowed_value" +msgid "Kāphī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:139 +msgctxt "work_attribute_type_allowed_value" +msgid "Kāpi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:140 +msgctxt "work_attribute_type_allowed_value" +msgid "Kāpi nārāyaṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:148 +msgctxt "work_attribute_type_allowed_value" +msgid "Kāvaḍicindu" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:135 +msgctxt "work_attribute_type_allowed_value" +msgid "Kāṁbhōji" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:947 +msgctxt "work_attribute_type_allowed_value" +msgid "Kēdār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:149 +msgctxt "work_attribute_type_allowed_value" +msgid "Kēdāragauḷa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:836 +msgctxt "work_attribute_type_allowed_value" +msgid "Kēharvā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:152 +#: DB:work_attribute_type_allowed_value/value:953 +msgctxt "work_attribute_type_allowed_value" +msgid "Kīravāṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:151 +msgctxt "work_attribute_type_allowed_value" +msgid "Kīraṇāvaḷi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:153 +msgctxt "work_attribute_type_allowed_value" +msgid "Kōkiladhvani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:154 +msgctxt "work_attribute_type_allowed_value" +msgid "Kōkilapriya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:954 +msgctxt "work_attribute_type_allowed_value" +msgid "Kōmal riṣabh asāvēri" +msgstr "" + +#: DB:editor_collection_type/name:10 +msgctxt "collection_type" +msgid "Label collection" +msgstr "" + +#: DB:label_alias_type/name:1 +msgctxt "alias_type" +msgid "Label name" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:956 +msgctxt "work_attribute_type_allowed_value" +msgid "Lagan gāndhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:445 +msgctxt "work_attribute_type_allowed_value" +msgid "Lalegül" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:957 +msgctxt "work_attribute_type_allowed_value" +msgid "Lalit" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:958 +msgctxt "work_attribute_type_allowed_value" +msgid "Lalit bhaṭiyār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:959 +msgctxt "work_attribute_type_allowed_value" +msgid "Lalit bibhās" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:960 +msgctxt "work_attribute_type_allowed_value" +msgid "Lalit pañcam" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:961 +msgctxt "work_attribute_type_allowed_value" +msgid "Lalit Śuddh Dhaivat" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:157 +msgctxt "work_attribute_type_allowed_value" +msgid "Lalita" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:158 +msgctxt "work_attribute_type_allowed_value" +msgid "Lalita pancamaṁ" +msgstr "" + +#: DB:medium_format/name:5 +msgctxt "medium_format" +msgid "LaserDisc" +msgstr "" + +#: DB:work_attribute_type/name:55 +msgctxt "work_attribute_type" +msgid "LatinNet ID" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:159 +msgctxt "work_attribute_type_allowed_value" +msgid "Latāngi" +msgstr "" + +#: DB:event_type/name:3 +msgctxt "event_type" +msgid "Launch event" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:160 +msgctxt "work_attribute_type_allowed_value" +msgid "Lavāngi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:962 +msgctxt "work_attribute_type_allowed_value" +msgid "Laṅkēśrī" +msgstr "" + +#: DB:artist_alias_type/name:2 +msgctxt "alias_type" +msgid "Legal name" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:744 +msgctxt "work_attribute_type_allowed_value" +msgid "Lenk Fahte" +msgstr "" + +#: DB:cover_art_archive.art_type/name:12 +msgctxt "cover_art_type" +msgid "Liner" +msgstr "" + +#: DB:release_group_secondary_type/name:6 +msgctxt "release_group_secondary_type" +msgid "Live" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:636 +msgctxt "work_attribute_type_allowed_value" +msgid "Longa" +msgstr "" + +#: DB:release_packaging/name:55 +msgctxt "release_packaging" +msgid "Longbox" +msgstr "" + +#: DB:work_attribute_type/name:49 +msgctxt "work_attribute_type" +msgid "MACP ID" +msgstr "" + +#: DB:work_attribute_type/name:71 +msgctxt "work_attribute_type" +msgid "MCSC ID" +msgstr "" + +#: DB:work_attribute_type/name:72 +msgctxt "work_attribute_type" +msgid "MCT ID" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:963 +msgctxt "work_attribute_type_allowed_value" +msgid "Madhmad sāraṅg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:964 +msgctxt "work_attribute_type_allowed_value" +msgid "Madhukauns" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:965 +msgctxt "work_attribute_type_allowed_value" +msgid "Madhuvanti" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:161 +msgctxt "work_attribute_type_allowed_value" +msgid "Madhyamā varāḷi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:162 +msgctxt "work_attribute_type_allowed_value" +msgid "Madhyamāvati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:295 +msgctxt "work_attribute_type_allowed_value" +msgid "Madhyādi" +msgstr "" + +#: DB:work_type/name:7 +msgctxt "work_type" +msgid "Madrigal" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:163 +msgctxt "work_attribute_type_allowed_value" +msgid "Maduvanti" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:637 +msgctxt "work_attribute_type_allowed_value" +msgid "Mahfelsürmesi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:446 +msgctxt "work_attribute_type_allowed_value" +msgid "Mahur" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:447 +msgctxt "work_attribute_type_allowed_value" +msgid "Mahurbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:448 +msgctxt "work_attribute_type_allowed_value" +msgid "Mahurhan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:296 +msgctxt "work_attribute_type_allowed_value" +msgid "Mahālakṣmi" +msgstr "" + +#: DB:work_attribute_type/name:15 +msgctxt "work_attribute_type" +msgid "Makam (Ottoman, Turkish)" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:164 +msgctxt "work_attribute_type_allowed_value" +msgid "Malahari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:166 +msgctxt "work_attribute_type_allowed_value" +msgid "Malayamārutaṁ" +msgstr "" + +#: DB:gender/name:1 +msgctxt "gender" +msgid "Male" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:638 +msgctxt "work_attribute_type_allowed_value" +msgid "Mandra" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:168 +msgctxt "work_attribute_type_allowed_value" +msgid "Mandāri" +msgstr "" + +#: DB:series_ordering_type/name:2 +msgctxt "series_ordering_type" +msgid "Manual" +msgstr "" + +#: DB:label_type/name:10 +msgctxt "label_type" +msgid "Manufacturer" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:172 +msgctxt "work_attribute_type_allowed_value" +msgid "Manōranjani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:639 +msgctxt "work_attribute_type_allowed_value" +msgid "Marş" +msgstr "" + +#: DB:work_type/name:8 +msgctxt "work_type" +msgid "Mass" +msgstr "" + +#: DB:event_type/name:5 +msgctxt "event_type" +msgid "Masterclass/Clinic" +msgstr "" + +#: DB:cover_art_archive.art_type/name:15 +msgctxt "cover_art_type" +msgid "Matrix/Runout" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:449 +msgctxt "work_attribute_type_allowed_value" +msgid "Maver" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:450 +msgctxt "work_attribute_type_allowed_value" +msgid "Mavera" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:451 +msgctxt "work_attribute_type_allowed_value" +msgid "Maveraünnehir" +msgstr "" + +#: DB:editor_collection_type/name:6 +msgctxt "collection_type" +msgid "Maybe attending" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:452 +msgctxt "work_attribute_type_allowed_value" +msgid "Maye" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:175 +msgctxt "work_attribute_type_allowed_value" +msgid "Mayūra sāvēri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:970 +msgctxt "work_attribute_type_allowed_value" +msgid "Maṅgal bhairav" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:170 +msgctxt "work_attribute_type_allowed_value" +msgid "Maṇirangu" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:286 +msgctxt "work_attribute_type_allowed_value" +msgid "Maṭhya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:838 +msgctxt "work_attribute_type_allowed_value" +msgid "Maṭṭā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:453 +msgctxt "work_attribute_type_allowed_value" +msgid "Meclis Efruz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:640 +msgctxt "work_attribute_type_allowed_value" +msgid "Medhal" +msgstr "" + +#: DB:cover_art_archive.art_type/name:4 +msgctxt "cover_art_type" +msgid "Medium" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:176 +msgctxt "work_attribute_type_allowed_value" +msgid "Meghamalhar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:641 +msgctxt "work_attribute_type_allowed_value" +msgid "Mehter" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:642 +msgctxt "work_attribute_type_allowed_value" +msgid "Mersiye" +msgstr "" + +#: DB:release_packaging/name:54 +msgctxt "release_packaging" +msgid "Metal Tin" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:745 +msgctxt "work_attribute_type_allowed_value" +msgid "Mevlevi Evferi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:643 +msgctxt "work_attribute_type_allowed_value" +msgid "Mevlidişerif" +msgstr "" + +#: DB:medium_format/name:83 +msgctxt "medium_format" +msgid "Microcassette" +msgstr "" + +#: DB:area_type/name:8 +msgctxt "area_type" +msgid "Military base" +msgstr "" + +#: DB:medium_format/name:166 +msgctxt "medium_format" +msgid "MiniDVD" +msgstr "" + +#: DB:medium_format/name:168 +msgctxt "medium_format" +msgid "MiniDVD-Audio" +msgstr "" + +#: DB:medium_format/name:169 +msgctxt "medium_format" +msgid "MiniDVD-Video" +msgstr "" + +#: DB:medium_format/name:6 +msgctxt "medium_format" +msgid "MiniDisc" +msgstr "" + +#: DB:medium_format/name:165 +msgctxt "medium_format" +msgid "Minimax CD" +msgstr "" + +#: DB:medium_format/name:167 +msgctxt "medium_format" +msgid "Minimax DVD" +msgstr "" + +#: DB:medium_format/name:170 +msgctxt "medium_format" +msgid "Minimax DVD-Audio" +msgstr "" + +#: DB:medium_format/name:171 +msgctxt "medium_format" +msgid "Minimax DVD-Video" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:644 +msgctxt "work_attribute_type_allowed_value" +msgid "Miraciye" +msgstr "" + +#: DB:medium_format/name:129 +msgctxt "medium_format" +msgid "Mixed Mode CD" +msgstr "" + +#: DB:release_group_secondary_type/name:9 +msgctxt "release_group_secondary_type" +msgid "Mixtape/Street" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:981 +msgctxt "work_attribute_type_allowed_value" +msgid "Miyām̐ kī sāraṅg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:982 +msgctxt "work_attribute_type_allowed_value" +msgid "Miyām̐ malhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:281 +msgctxt "work_attribute_type_allowed_value" +msgid "Miśra chāpu" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:977 +msgctxt "work_attribute_type_allowed_value" +msgid "Miśra gārā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:978 +msgctxt "work_attribute_type_allowed_value" +msgid "Miśra kaliṅgaḍā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:177 +msgctxt "work_attribute_type_allowed_value" +msgid "Miśra khamāj" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:979 +msgctxt "work_attribute_type_allowed_value" +msgid "Miśra māṇḍ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:178 +msgctxt "work_attribute_type_allowed_value" +msgid "Miśra pahāḍi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:980 +msgctxt "work_attribute_type_allowed_value" +msgid "Miśra pīlū" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:180 +msgctxt "work_attribute_type_allowed_value" +msgid "Miśra yaman" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:179 +msgctxt "work_attribute_type_allowed_value" +msgid "Miśra śivaranjani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:287 +msgctxt "work_attribute_type_allowed_value" +msgid "Miśra-jāti jhaṁpe" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:297 +msgctxt "work_attribute_type_allowed_value" +msgid "Miśra-jāti rūpaka" +msgstr "" + +#: DB:work_type/name:9 +msgctxt "work_type" +msgid "Motet" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:746 +msgctxt "work_attribute_type_allowed_value" +msgid "Muaşşer" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:454 +msgctxt "work_attribute_type_allowed_value" +msgid "Muhalif" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:455 +msgctxt "work_attribute_type_allowed_value" +msgid "Muhalif-i Irak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:456 +msgctxt "work_attribute_type_allowed_value" +msgid "Muhalif-i Rast" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:457 +msgctxt "work_attribute_type_allowed_value" +msgid "Muhalif-i Uşşak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:747 +msgctxt "work_attribute_type_allowed_value" +msgid "Muhammes" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:458 +msgctxt "work_attribute_type_allowed_value" +msgid "Muhayyer" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:459 +msgctxt "work_attribute_type_allowed_value" +msgid "Muhayyer Sünbüle" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:462 +msgctxt "work_attribute_type_allowed_value" +msgid "Muhayyer Zengüle" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:460 +msgctxt "work_attribute_type_allowed_value" +msgid "Muhayyerbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:461 +msgctxt "work_attribute_type_allowed_value" +msgid "Muhayyerkürdi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:183 +msgctxt "work_attribute_type_allowed_value" +msgid "Mukhāri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:983 +msgctxt "work_attribute_type_allowed_value" +msgid "Multāni" +msgstr "" + +#: DB:area_type/name:4 +msgctxt "area_type" +msgid "Municipality" +msgstr "" + +#: DB:area_type/description:4 +msgctxt "area_type" +msgid "" +"Municipality is used for small administrative divisions which, for urban " +"municipalities, often contain a single city and a few surrounding villages. " +"Rural municipalities typically group several villages together." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:645 +msgctxt "work_attribute_type_allowed_value" +msgid "Murabba" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:811 +msgctxt "work_attribute_type_allowed_value" +msgid "Murabba Beste " +msgstr "" + +#: DB:work_type/name:29 +msgctxt "work_type" +msgid "Musical" +msgstr "" + +#: DB:work_type/description:29 +msgctxt "work_type" +msgid "" +"Musical theatre is a form of theatrical performance that combines songs, " +"spoken dialogue, acting, and dance." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:748 +msgctxt "work_attribute_type_allowed_value" +msgid "Muzaaf Devr-i Kebir" +msgstr "" + +#: DB:work_attribute_type/name:12 +msgctxt "work_attribute_type" +msgid "MÜST ID" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:463 +msgctxt "work_attribute_type_allowed_value" +msgid "Müberka" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:646 +msgctxt "work_attribute_type_allowed_value" +msgid "Münacaat" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:464 +msgctxt "work_attribute_type_allowed_value" +msgid "Mürekkep Isfahan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:749 +msgctxt "work_attribute_type_allowed_value" +msgid "Mürekkep Nimsofyan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:750 +msgctxt "work_attribute_type_allowed_value" +msgid "Mürekkep Semai/Üçleme" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:751 +msgctxt "work_attribute_type_allowed_value" +msgid "Mürekkep Sofyan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:465 +msgctxt "work_attribute_type_allowed_value" +msgid "Müselles" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:752 +msgctxt "work_attribute_type_allowed_value" +msgid "Müsemmen" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:753 +msgctxt "work_attribute_type_allowed_value" +msgid "Müsemmen II" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:466 +msgctxt "work_attribute_type_allowed_value" +msgid "Müstear" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:467 +msgctxt "work_attribute_type_allowed_value" +msgid "Müşküye" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:966 +msgctxt "work_attribute_type_allowed_value" +msgid "Mājh khamāj" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:967 +msgctxt "work_attribute_type_allowed_value" +msgid "Mālava" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:968 +msgctxt "work_attribute_type_allowed_value" +msgid "Mālkauns" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:969 +msgctxt "work_attribute_type_allowed_value" +msgid "Mālāvati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:167 +msgctxt "work_attribute_type_allowed_value" +msgid "Mānavati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:171 +msgctxt "work_attribute_type_allowed_value" +msgid "Mānji" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:169 +msgctxt "work_attribute_type_allowed_value" +msgid "Mānḍu" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:173 +msgctxt "work_attribute_type_allowed_value" +msgid "Mārgahindōḷaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:971 +msgctxt "work_attribute_type_allowed_value" +msgid "Mārvā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:972 +msgctxt "work_attribute_type_allowed_value" +msgid "Mārvāśrī mārvā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:973 +msgctxt "work_attribute_type_allowed_value" +msgid "Mārūbihāg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:174 +msgctxt "work_attribute_type_allowed_value" +msgid "Māyāmāḷavagauḷa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:165 +msgctxt "work_attribute_type_allowed_value" +msgid "Māḷavi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:974 +msgctxt "work_attribute_type_allowed_value" +msgid "Mēgh" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:975 +msgctxt "work_attribute_type_allowed_value" +msgid "Mēgh malahār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:976 +msgctxt "work_attribute_type_allowed_value" +msgid "Mīrā malhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:181 +msgctxt "work_attribute_type_allowed_value" +msgid "Mōhan kaḷyāṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:182 +msgctxt "work_attribute_type_allowed_value" +msgid "Mōhanaṁ" +msgstr "" + +#: DB:work_attribute_type/name:59 +msgctxt "work_attribute_type" +msgid "NICAUTOR ID" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:647 +msgctxt "work_attribute_type_allowed_value" +msgid "Naat" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:984 +msgctxt "work_attribute_type_allowed_value" +msgid "Nagaḍ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:648 +msgctxt "work_attribute_type_allowed_value" +msgid "Nakış" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:809 +msgctxt "work_attribute_type_allowed_value" +msgid "Nakış Ağırsemai" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:808 +msgctxt "work_attribute_type_allowed_value" +msgid "Nakış Beste" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:810 +msgctxt "work_attribute_type_allowed_value" +msgid "Nakış Yürüksemai" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:985 +msgctxt "work_attribute_type_allowed_value" +msgid "Nanād" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:468 +msgctxt "work_attribute_type_allowed_value" +msgid "Narefte" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:649 +msgctxt "work_attribute_type_allowed_value" +msgid "Natipeygamberi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:196 +msgctxt "work_attribute_type_allowed_value" +msgid "Navarasa kannaḍa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:195 +msgctxt "work_attribute_type_allowed_value" +msgid "Navarāgamālika" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:197 +msgctxt "work_attribute_type_allowed_value" +msgid "Navrōj" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:754 +msgctxt "work_attribute_type_allowed_value" +msgid "Nazlı Düyek" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:187 +msgctxt "work_attribute_type_allowed_value" +msgid "Naḷinakānti" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:986 +msgctxt "work_attribute_type_allowed_value" +msgid "Naṭ bhairav" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:987 +msgctxt "work_attribute_type_allowed_value" +msgid "Naṭ bihāg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:988 +msgctxt "work_attribute_type_allowed_value" +msgid "Naṭ kāmōd" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:989 +msgctxt "work_attribute_type_allowed_value" +msgid "Naṭ malhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:990 +msgctxt "work_attribute_type_allowed_value" +msgid "Naṭ nārāyaṇ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:191 +msgctxt "work_attribute_type_allowed_value" +msgid "Naṭabhairavi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:194 +msgctxt "work_attribute_type_allowed_value" +msgid "Naṭanārāyaṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:469 +msgctxt "work_attribute_type_allowed_value" +msgid "Necd-i Hüseyni" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:650 +msgctxt "work_attribute_type_allowed_value" +msgid "Nefes" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:470 +msgctxt "work_attribute_type_allowed_value" +msgid "Neresin" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:472 +msgctxt "work_attribute_type_allowed_value" +msgid "Neva" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:473 +msgctxt "work_attribute_type_allowed_value" +msgid "Neva Bağdat" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:474 +msgctxt "work_attribute_type_allowed_value" +msgid "Neva Dilkeş" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:475 +msgctxt "work_attribute_type_allowed_value" +msgid "Nevabuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:476 +msgctxt "work_attribute_type_allowed_value" +msgid "Nevakürdi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:477 +msgctxt "work_attribute_type_allowed_value" +msgid "Nevaziş" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:478 +msgctxt "work_attribute_type_allowed_value" +msgid "Neveda" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:479 +msgctxt "work_attribute_type_allowed_value" +msgid "Neveser" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:480 +msgctxt "work_attribute_type_allowed_value" +msgid "Nevkeş" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:481 +msgctxt "work_attribute_type_allowed_value" +msgid "Nevruz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:482 +msgctxt "work_attribute_type_allowed_value" +msgid "Nevruzi Rumi" +msgstr "" + +#: DB:work_attribute_type/name:33 +msgctxt "work_attribute_type" +msgid "NexTone ID" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:471 +msgctxt "work_attribute_type_allowed_value" +msgid "Neşataver" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:483 +msgctxt "work_attribute_type_allowed_value" +msgid "Nigar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:484 +msgctxt "work_attribute_type_allowed_value" +msgid "Nihavend-i Kebir" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:485 +msgctxt "work_attribute_type_allowed_value" +msgid "Nihavend-i Rumi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:486 +msgctxt "work_attribute_type_allowed_value" +msgid "Nihavent" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:487 +msgctxt "work_attribute_type_allowed_value" +msgid "Nikriz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:755 +msgctxt "work_attribute_type_allowed_value" +msgid "Nimberefşan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:757 +msgctxt "work_attribute_type_allowed_value" +msgid "Nimdevir" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:758 +msgctxt "work_attribute_type_allowed_value" +msgid "Nimevsat" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:759 +msgctxt "work_attribute_type_allowed_value" +msgid "Nimhafif" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:760 +msgctxt "work_attribute_type_allowed_value" +msgid "Nimsakil" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:761 +msgctxt "work_attribute_type_allowed_value" +msgid "Nimsofyan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:756 +msgctxt "work_attribute_type_allowed_value" +msgid "Nimçember" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:651 +msgctxt "work_attribute_type_allowed_value" +msgid "Ninni" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:200 +msgctxt "work_attribute_type_allowed_value" +msgid "Nirōṣita" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:488 +msgctxt "work_attribute_type_allowed_value" +msgid "Nişabur" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:489 +msgctxt "work_attribute_type_allowed_value" +msgid "Nişaburek" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:490 +msgctxt "work_attribute_type_allowed_value" +msgid "Nişabureyn" +msgstr "" + +#: DB:gender/name:5 +msgctxt "gender" +msgid "Non-binary" +msgstr "" + +#: DB:release_group_secondary_type/description:3 +msgctxt "release_group_secondary_type" +msgid "Non-music spoken word releases." +msgstr "" + +#: DB:release_packaging/name:7 +msgctxt "release_packaging" +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" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:492 +msgctxt "work_attribute_type_allowed_value" +msgid "Nühüft" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:184 +msgctxt "work_attribute_type_allowed_value" +msgid "Nādanāmakriya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:185 +msgctxt "work_attribute_type_allowed_value" +msgid "Nāga gāndhāri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:186 +msgctxt "work_attribute_type_allowed_value" +msgid "Nāgasvarāvaḷi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:188 +msgctxt "work_attribute_type_allowed_value" +msgid "Nārāyaṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:189 +msgctxt "work_attribute_type_allowed_value" +msgid "Nāsikabhūṣaṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:198 +msgctxt "work_attribute_type_allowed_value" +msgid "Nāyaki" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:991 +msgctxt "work_attribute_type_allowed_value" +msgid "Nāyakī kānaḍā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:190 +msgctxt "work_attribute_type_allowed_value" +msgid "Nāṭa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:192 +msgctxt "work_attribute_type_allowed_value" +msgid "Nāṭakapriya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:193 +msgctxt "work_attribute_type_allowed_value" +msgid "Nāṭakurinji" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:992 +msgctxt "work_attribute_type_allowed_value" +msgid "Nīlāmbari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:199 +msgctxt "work_attribute_type_allowed_value" +msgid "Nīlāṁbari" +msgstr "" + +#: DB:work_attribute_type/name:25 +msgctxt "work_attribute_type" +msgid "OSA ID" +msgstr "" + +#: DB:cover_art_archive.art_type/name:5 +msgctxt "cover_art_type" +msgid "Obi" +msgstr "" + +#: DB:release_status/name:1 +msgctxt "release_status" +msgid "Official" +msgstr "" + +#: DB:work_type/name:10 +msgctxt "work_type" +msgid "Opera" +msgstr "" + +#: DB:work_type/name:24 +msgctxt "work_type" +msgid "Operetta" +msgstr "" + +#: DB:work_type/name:11 +msgctxt "work_type" +msgid "Oratorio" +msgstr "" + +#: DB:artist_type/name:5 +msgctxt "artist_type" +msgid "Orchestra" +msgstr "" + +#: DB:label_type/name:4 +msgctxt "label_type" +msgid "Original Production" +msgstr "" + +#: DB:artist_type/name:3 +msgctxt "artist_type" +msgid "Other" +msgstr "" + +#: DB:cover_art_archive.art_type/name:8 +msgctxt "cover_art_type" +msgid "Other" +msgstr "" + +#: DB:gender/name:3 +msgctxt "gender" +msgid "Other" +msgstr "" + +#: DB:medium_format/name:13 +msgctxt "medium_format" +msgid "Other" +msgstr "" + +#: DB:place_type/name:3 +msgctxt "place_type" +msgid "Other" +msgstr "" + +#: DB:release_group_primary_type/name:11 +msgctxt "release_group_primary_type" +msgid "Other" +msgstr "" + +#: DB:release_packaging/name:5 +msgctxt "release_packaging" +msgid "Other" +msgstr "" + +#: DB:instrument_type/name:5 +msgctxt "instrument_type" +msgid "Other instrument" +msgstr "" + +#: DB:work_type/name:12 +msgctxt "work_type" +msgid "Overture" +msgstr "" + +#: DB:editor_collection_type/name:2 +msgctxt "collection_type" +msgid "Owned music" +msgstr "" + +#: DB:editor_collection_type/name:17 +msgctxt "collection_type" +msgid "Owned recordings" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:762 +msgctxt "work_attribute_type_allowed_value" +msgid "Oynak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:652 +msgctxt "work_attribute_type_allowed_value" +msgid "Oyunhavası" +msgstr "" + +#: DB:work_attribute_type/name:34 +msgctxt "work_attribute_type" +msgid "PRS tune code" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:993 +msgctxt "work_attribute_type_allowed_value" +msgid "Pahāḍi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:839 +msgctxt "work_attribute_type_allowed_value" +msgid "Pan̄cam savārī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:840 +msgctxt "work_attribute_type_allowed_value" +msgid "Pan̄jābī " +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:994 +msgctxt "work_attribute_type_allowed_value" +msgid "Paraj" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:203 +msgctxt "work_attribute_type_allowed_value" +msgid "Paras" +msgstr "" + +#: DB:place_type/name:9 +msgctxt "place_type" +msgid "Park" +msgstr "" + +#: DB:work_type/name:13 +msgctxt "work_type" +msgid "Partita" +msgstr "" + +#: DB:medium_format/name:58 +msgctxt "medium_format" +msgid "Pathé disc" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:995 +msgctxt "work_attribute_type_allowed_value" +msgid "Pañcam" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:996 +msgctxt "work_attribute_type_allowed_value" +msgid "Paṭaman̄jari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:204 +#: DB:work_attribute_type_allowed_value/value:997 +msgctxt "work_attribute_type_allowed_value" +msgid "Paṭdīp" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:493 +msgctxt "work_attribute_type_allowed_value" +msgid "Pençgah" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:494 +msgctxt "work_attribute_type_allowed_value" +msgid "Pençgah-ı Asl" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:495 +msgctxt "work_attribute_type_allowed_value" +msgid "Pençgah-ı Zaid" +msgstr "" + +#: DB:instrument_type/name:3 +msgctxt "instrument_type" +msgid "Percussion instrument" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:496 +msgctxt "work_attribute_type_allowed_value" +msgid "Perr-i Zerrin" +msgstr "" + +#: DB:artist_type/name:1 +msgctxt "artist_type" +msgid "Person" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:497 +msgctxt "work_attribute_type_allowed_value" +msgid "Pesendide" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:498 +msgctxt "work_attribute_type_allowed_value" +msgid "Peyk-i Neşat" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:499 +msgctxt "work_attribute_type_allowed_value" +msgid "Peyk-i Safa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:654 +msgctxt "work_attribute_type_allowed_value" +msgid "Peşrev" +msgstr "" + +#: DB:medium_format/name:73 +msgctxt "medium_format" +msgid "Phonograph record" +msgstr "" + +#: DB:medium_format/name:15 +msgctxt "medium_format" +msgid "Piano Roll" +msgstr "" + +#: DB:editor_collection_type/name:11 +msgctxt "collection_type" +msgid "Place collection" +msgstr "" + +#: DB:place_alias_type/name:1 +msgctxt "alias_type" +msgid "Place name" +msgstr "" + +#: DB:release_packaging/description:20 +msgctxt "release_packaging" +msgid "Plastic CD tray inside a cardboard slipcover" +msgstr "" + +#: DB:release_packaging/name:18 +msgctxt "release_packaging" +msgid "Plastic Sleeve" +msgstr "" + +#: DB:work_type/name:28 +msgctxt "work_type" +msgid "Play" +msgstr "" + +#: DB:medium_format/name:74 +msgctxt "medium_format" +msgid "PlayTape" +msgstr "" + +#: DB:medium_format/name:45 +msgctxt "medium_format" +msgid "Playbutton" +msgstr "" + +#: DB:series_type/name:80 +msgctxt "series_type" +msgid "Podcast" +msgstr "" + +#: DB:work_type/name:21 +msgctxt "work_type" +msgid "Poem" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:655 +msgctxt "work_attribute_type_allowed_value" +msgid "Pop şarkısı" +msgstr "" + +#: DB:cover_art_archive.art_type/name:11 +msgctxt "cover_art_type" +msgid "Poster" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:998 +msgctxt "work_attribute_type_allowed_value" +msgid "Pratāpavarāli" +msgstr "" + +#: DB:place_type/name:8 +msgctxt "place_type" +msgid "Pressing plant" +msgstr "" + +#: DB:label_type/name:3 +msgctxt "label_type" +msgid "Production" +msgstr "" + +#: DB:release_status/name:2 +msgctxt "release_status" +msgid "Promotion" +msgstr "" + +#: DB:release_group_secondary_type/description:9 +msgctxt "release_group_secondary_type" +msgid "" +"Promotional in nature (but not necessarily free), mixtapes and street albums " +"are often released by artists to promote new artists, or upcoming studio " +"albums by prominent artists. They are also sometimes used to keep fans' " +"attention between studio releases and are most common in rap & hip hop " +"genres. They are often not sanctioned by the artist's label, may lack proper " +"sample or song clearances and vary widely in production and recording " +"quality. While mixtapes are generally DJ-mixed, they are distinct from " +"commercial DJ-mixes (which are usually deemed compilations) and are defined " +"by having a significant proportion of new material, including original " +"production or original vocals over top of other artists' instrumentals. They " +"are distinct from demos in that they are designed for release directly to " +"the public and fans; not to labels." +msgstr "" + +#: DB:work_type/name:23 +msgctxt "work_type" +msgid "Prose" +msgstr "" + +#: DB:release_status/name:4 +msgctxt "release_status" +msgid "Pseudo-Release" +msgstr "" + +#: DB:label_type/name:7 +msgctxt "label_type" +msgid "Publisher" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:999 +msgctxt "work_attribute_type_allowed_value" +msgid "Puriyā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1000 +msgctxt "work_attribute_type_allowed_value" +msgid "Puriyā dhanaśrī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1001 +msgctxt "work_attribute_type_allowed_value" +msgid "Puriyā kalyāṇ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:205 +msgctxt "work_attribute_type_allowed_value" +msgid "Puṇṇāgavarāḷi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:209 +msgctxt "work_attribute_type_allowed_value" +msgid "Puṣpalatika" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:202 +msgctxt "work_attribute_type_allowed_value" +msgid "Pālamanjari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:201 +msgctxt "work_attribute_type_allowed_value" +msgid "Pāḍi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:208 +#: DB:work_attribute_type_allowed_value/value:1002 +msgctxt "work_attribute_type_allowed_value" +msgid "Pūrvi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:206 +msgctxt "work_attribute_type_allowed_value" +msgid "Pūrṇa ṣaḍjaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:207 +msgctxt "work_attribute_type_allowed_value" +msgid "Pūrṇacandrika" +msgstr "" + +#: DB:work_type/name:14 +msgctxt "work_type" +msgid "Quartet" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:500 +msgctxt "work_attribute_type_allowed_value" +msgid "Rahatfeza" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:501 +msgctxt "work_attribute_type_allowed_value" +msgid "Rahatülervah" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:763 +msgctxt "work_attribute_type_allowed_value" +msgid "Raksaksağı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:798 +msgctxt "work_attribute_type_allowed_value" +msgid "Raksaksağı II" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:764 +msgctxt "work_attribute_type_allowed_value" +msgid "Raksan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:502 +msgctxt "work_attribute_type_allowed_value" +msgid "Ramiş-i Can" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:215 +msgctxt "work_attribute_type_allowed_value" +msgid "Ranjani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:216 +msgctxt "work_attribute_type_allowed_value" +msgid "Rasikapriya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:503 +msgctxt "work_attribute_type_allowed_value" +msgid "Rast" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:506 +msgctxt "work_attribute_type_allowed_value" +msgid "Rast Haveran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:513 +msgctxt "work_attribute_type_allowed_value" +msgid "Rast-Maye" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:507 +msgctxt "work_attribute_type_allowed_value" +msgid "Rast-ı Atik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:508 +msgctxt "work_attribute_type_allowed_value" +msgid "Rast-ı Cedid" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:509 +msgctxt "work_attribute_type_allowed_value" +msgid "Rast-ı Rumi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:510 +msgctxt "work_attribute_type_allowed_value" +msgid "Rast-ı Sağır" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:511 +msgctxt "work_attribute_type_allowed_value" +msgid "Rast-ı Sultani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:504 +msgctxt "work_attribute_type_allowed_value" +msgid "Rastaşiran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:505 +msgctxt "work_attribute_type_allowed_value" +msgid "Rastdilara" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:512 +msgctxt "work_attribute_type_allowed_value" +msgid "Rastkürdi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:217 +msgctxt "work_attribute_type_allowed_value" +msgid "Ratipati priya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:218 +msgctxt "work_attribute_type_allowed_value" +msgid "Ravicandrika" +msgstr "" + +#: DB:cover_art_archive.art_type/name:14 +msgctxt "cover_art_type" +msgid "Raw/Unedited" +msgstr "" + +#: DB:series_type/name:48 +msgctxt "series_type" +msgid "Recording award" +msgstr "" + +#: DB:editor_collection_type/name:12 +msgctxt "collection_type" +msgid "Recording collection" +msgstr "" + +#: DB:recording_alias_type/name:1 +msgctxt "alias_type" +msgid "Recording name" +msgstr "" + +#: DB:series_type/name:3 +msgctxt "series_type" +msgid "Recording series" +msgstr "" + +#: DB:medium_format/name:10 +msgctxt "medium_format" +msgid "Reel-to-reel" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:514 +msgctxt "work_attribute_type_allowed_value" +msgid "Rehavi" +msgstr "" + +#: DB:label_type/name:6 +msgctxt "label_type" +msgid "Reissue Production" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:515 +msgctxt "work_attribute_type_allowed_value" +msgid "Rekb-i Zavil" +msgstr "" + +#: DB:editor_collection_type/name:1 +msgctxt "collection_type" +msgid "Release collection" +msgstr "" + +#: DB:series_type/name:47 +msgctxt "series_type" +msgid "Release group award" +msgstr "" + +#: DB:editor_collection_type/name:13 +msgctxt "collection_type" +msgid "Release group collection" +msgstr "" + +#: DB:release_group_alias_type/name:1 +msgctxt "alias_type" +msgid "Release group name" +msgstr "" + +#: DB:series_type/name:1 +msgctxt "series_type" +msgid "Release group series" +msgstr "" + +#: DB:release_alias_type/name:1 +msgctxt "alias_type" +msgid "Release name" +msgstr "" + +#: DB:series_type/name:2 +msgctxt "series_type" +msgid "Release series" +msgstr "" + +#: DB:place_type/name:6 +msgctxt "place_type" +msgid "Religious building" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:765 +msgctxt "work_attribute_type_allowed_value" +msgid "Remel" +msgstr "" + +#: DB:release_group_secondary_type/name:7 +msgctxt "release_group_secondary_type" +msgid "Remix" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:516 +msgctxt "work_attribute_type_allowed_value" +msgid "Reng-i Dil" +msgstr "" + +#: DB:series_type/name:12 +msgctxt "series_type" +msgid "Residency" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:517 +msgctxt "work_attribute_type_allowed_value" +msgid "Revnaknüma" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:518 +msgctxt "work_attribute_type_allowed_value" +msgid "Reyya" +msgstr "" + +#: DB:label_type/name:8 +msgctxt "label_type" +msgid "Rights Society" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:222 +msgctxt "work_attribute_type_allowed_value" +msgid "Rudrapriya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:519 +msgctxt "work_attribute_type_allowed_value" +msgid "Ruhnüvaz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:656 +msgctxt "work_attribute_type_allowed_value" +msgid "Rumeli Türküsü" +msgstr "" + +#: DB:series_type/name:9 +msgctxt "series_type" +msgid "Run" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:521 +msgctxt "work_attribute_type_allowed_value" +msgid "Ruy-i Dilara" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:520 +msgctxt "work_attribute_type_allowed_value" +msgid "Ruy-i Irak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:600 +msgctxt "work_attribute_type_allowed_value" +msgid "Ruy-i Neva" +msgstr "" + +#: DB:work_attribute_type/name:4 +msgctxt "work_attribute_type" +msgid "Rāga (Carnatic)" +msgstr "" + +#: DB:work_attribute_type/name:32 +msgctxt "work_attribute_type" +msgid "Rāga (Hindustani)" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1003 +msgctxt "work_attribute_type_allowed_value" +msgid "Rāgamalikā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:210 +msgctxt "work_attribute_type_allowed_value" +msgid "Rāgamālika" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:211 +msgctxt "work_attribute_type_allowed_value" +msgid "Rāgavinōdini" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:212 +#: DB:work_attribute_type_allowed_value/value:1004 +msgctxt "work_attribute_type_allowed_value" +msgid "Rāgēśrī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1005 +msgctxt "work_attribute_type_allowed_value" +msgid "Rāj kalyāṇ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:213 +msgctxt "work_attribute_type_allowed_value" +msgid "Rāma manōhari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1006 +msgctxt "work_attribute_type_allowed_value" +msgid "Rāmakali" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:214 +msgctxt "work_attribute_type_allowed_value" +msgid "Rāmapriya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1007 +msgctxt "work_attribute_type_allowed_value" +msgid "Rāmdāsī malhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:219 +msgctxt "work_attribute_type_allowed_value" +msgid "Rēvagupti" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:220 +msgctxt "work_attribute_type_allowed_value" +msgid "Rēvati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:221 +msgctxt "work_attribute_type_allowed_value" +msgid "Rītigauḷa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:841 +msgctxt "work_attribute_type_allowed_value" +msgid "Rūpak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:280 +msgctxt "work_attribute_type_allowed_value" +msgid "Rūpaka" +msgstr "" + +#: DB:work_attribute_type/name:28 +msgctxt "work_attribute_type" +msgid "SABAM ID" +msgstr "" + +#: DB:medium_format/name:3 +msgctxt "medium_format" +msgid "SACD" +msgstr "" + +#: DB:medium_format/name:84 +msgctxt "medium_format" +msgid "SACD (2 channels)" +msgstr "" + +#: DB:medium_format/name:85 +msgctxt "medium_format" +msgid "SACD (multichannel)" +msgstr "" + +#: DB:work_attribute_type/name:21 +msgctxt "work_attribute_type" +msgid "SACEM ID" +msgstr "" + +#: DB:work_attribute_type/name:56 +msgctxt "work_attribute_type" +msgid "SACIM ID" +msgstr "" + +#: DB:work_attribute_type/name:27 +msgctxt "work_attribute_type" +msgid "SACM ID" +msgstr "" + +#: DB:work_attribute_type/name:42 +msgctxt "work_attribute_type" +msgid "SACVEN ID" +msgstr "" + +#: DB:work_attribute_type/name:24 +msgctxt "work_attribute_type" +msgid "SADAIC ID" +msgstr "" + +#: DB:work_attribute_type/name:68 +msgctxt "work_attribute_type" +msgid "SAMRO ID" +msgstr "" + +#: DB:work_attribute_type/name:40 +msgctxt "work_attribute_type" +msgid "SAYCE ID" +msgstr "" + +#: DB:work_attribute_type/name:39 +msgctxt "work_attribute_type" +msgid "SAYCO ID" +msgstr "" + +#: DB:work_attribute_type/name:140 +msgctxt "work_attribute_type" +msgid "SAZAS ID" +msgstr "" + +#: DB:work_attribute_type/name:173 +msgctxt "work_attribute_type" +msgid "SCD ID" +msgstr "" + +#: DB:medium_format/name:62 +msgctxt "medium_format" +msgid "SD Card" +msgstr "" + +#: DB:work_attribute_type/name:8 +msgctxt "work_attribute_type" +msgid "SESAC ID" +msgstr "" + +#: DB:work_attribute_type/name:60 +msgctxt "work_attribute_type" +msgid "SGACEDOM ID" +msgstr "" + +#: DB:work_attribute_type/name:20 +msgctxt "work_attribute_type" +msgid "SGAE ID" +msgstr "" + +#: DB:medium_format/name:36 +msgctxt "medium_format" +msgid "SHM-CD" +msgstr "" + +#: DB:medium_format/name:57 +msgctxt "medium_format" +msgid "SHM-SACD" +msgstr "" + +#: DB:medium_format/name:89 +msgctxt "medium_format" +msgid "SHM-SACD (2 channels)" +msgstr "" + +#: DB:medium_format/name:88 +msgctxt "medium_format" +msgid "SHM-SACD (multichannel)" +msgstr "" + +#: DB:work_attribute_type/name:36 +msgctxt "work_attribute_type" +msgid "SIAE ID" +msgstr "" + +#: DB:work_attribute_type/name:61 +msgctxt "work_attribute_type" +msgid "SOBODAYCOM ID" +msgstr "" + +#: DB:work_attribute_type/name:10 +msgctxt "work_attribute_type" +msgid "SOCAN ID" +msgstr "" + +#: DB:work_attribute_type/name:53 +msgctxt "work_attribute_type" +msgid "SODRAC ID" +msgstr "" + +#: DB:work_attribute_type/name:35 +msgctxt "work_attribute_type" +msgid "SPA ID" +msgstr "" + +#: DB:work_attribute_type/name:62 +msgctxt "work_attribute_type" +msgid "SPAC ID" +msgstr "" + +#: DB:work_attribute_type/name:54 +msgctxt "work_attribute_type" +msgid "STEF ID" +msgstr "" + +#: DB:work_attribute_type/name:50 +msgctxt "work_attribute_type" +msgid "STIM ID" +msgstr "" + +#: DB:work_attribute_type/name:18 +msgctxt "work_attribute_type" +msgid "SUISA ID" +msgstr "" + +#: DB:medium_format/name:23 +msgctxt "medium_format" +msgid "SVCD" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:522 +msgctxt "work_attribute_type_allowed_value" +msgid "Saba" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:523 +msgctxt "work_attribute_type_allowed_value" +msgid "Saba Zemzeme" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:524 +msgctxt "work_attribute_type_allowed_value" +msgid "Sabaaşiran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:525 +msgctxt "work_attribute_type_allowed_value" +msgid "Sababuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:526 +msgctxt "work_attribute_type_allowed_value" +msgid "Sabakürdi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1008 +msgctxt "work_attribute_type_allowed_value" +msgid "Sahanā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:223 +msgctxt "work_attribute_type_allowed_value" +msgid "Sahānā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1009 +msgctxt "work_attribute_type_allowed_value" +msgid "Sahēlī tōḍī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:767 +msgctxt "work_attribute_type_allowed_value" +msgid "Sakil" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:658 +msgctxt "work_attribute_type_allowed_value" +msgid "Salatüselam" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:657 +msgctxt "work_attribute_type_allowed_value" +msgid "Salatıümmiye" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1010 +msgctxt "work_attribute_type_allowed_value" +msgid "Sampūrṇa mālkauns" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1011 +msgctxt "work_attribute_type_allowed_value" +msgid "San̄jari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:231 +#: DB:work_attribute_type_allowed_value/value:1014 +msgctxt "work_attribute_type_allowed_value" +msgid "Sarasvati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:232 +msgctxt "work_attribute_type_allowed_value" +msgid "Sarasvatī manōhari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:230 +msgctxt "work_attribute_type_allowed_value" +msgid "Sarasāngi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:233 +msgctxt "work_attribute_type_allowed_value" +msgid "Saurāṣtraṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1017 +msgctxt "work_attribute_type_allowed_value" +msgid "Saurāṣṭram" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:659 +msgctxt "work_attribute_type_allowed_value" +msgid "Savt" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:660 +msgctxt "work_attribute_type_allowed_value" +msgid "Sazeseri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:527 +msgctxt "work_attribute_type_allowed_value" +msgid "Sazkar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:661 +msgctxt "work_attribute_type_allowed_value" +msgid "Sazsemaisi" +msgstr "" + +#: DB:artist_alias_type/name:3 DB:label_alias_type/name:2 +#: DB:place_alias_type/name:2 DB:recording_alias_type/name:2 +#: DB:release_alias_type/name:2 DB:release_group_alias_type/name:2 +#: DB:work_alias_type/name:2 DB:area_alias_type/name:3 +#: DB:instrument_alias_type/name:2 DB:series_alias_type/name:2 +#: DB:event_alias_type/name:2 +msgctxt "alias_type" +msgid "Search hint" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:528 +msgctxt "work_attribute_type_allowed_value" +msgid "Segah" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:529 +msgctxt "work_attribute_type_allowed_value" +msgid "Segah Araban" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:530 +msgctxt "work_attribute_type_allowed_value" +msgid "Segah Maye" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:662 +msgctxt "work_attribute_type_allowed_value" +msgid "Selam" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:531 +msgctxt "work_attribute_type_allowed_value" +msgid "Selmek" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:768 +msgctxt "work_attribute_type_allowed_value" +msgid "Semai" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:235 +msgctxt "work_attribute_type_allowed_value" +msgid "Sencuruṭṭi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:532 +msgctxt "work_attribute_type_allowed_value" +msgid "Sengendaz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:766 +msgctxt "work_attribute_type_allowed_value" +msgid "Sengin Türkaksağı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:769 +msgctxt "work_attribute_type_allowed_value" +msgid "Senginsemai" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:770 +msgctxt "work_attribute_type_allowed_value" +msgid "Serbest" +msgstr "" + +#: DB:editor_collection_type/name:14 +msgctxt "collection_type" +msgid "Series collection" +msgstr "" + +#: DB:series_alias_type/name:1 +msgctxt "alias_type" +msgid "Series name" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:663 +msgctxt "work_attribute_type_allowed_value" +msgid "Seyir" +msgstr "" + +#: DB:medium_format/name:53 +msgctxt "medium_format" +msgid "Shellac" +msgstr "" + +#: DB:medium_format/description:53 +msgctxt "medium_format" +msgid "" +"Shellac records were the most predominant type of gramophone record during " +"the first half of the 20th century." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:236 +msgctxt "work_attribute_type_allowed_value" +msgid "Simhavāhini" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:237 +#: DB:work_attribute_type_allowed_value/value:1018 +msgctxt "work_attribute_type_allowed_value" +msgid "Simhēndra madhyamaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1019 +msgctxt "work_attribute_type_allowed_value" +msgid "Sindhu bhairavi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:238 +msgctxt "work_attribute_type_allowed_value" +msgid "Sindhubhairavi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:239 +msgctxt "work_attribute_type_allowed_value" +msgid "Sindhumandāri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1020 +msgctxt "work_attribute_type_allowed_value" +msgid "Sindhūra" +msgstr "" + +#: DB:release_group_primary_type/name:2 +msgctxt "release_group_primary_type" +msgid "Single" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:533 +msgctxt "work_attribute_type_allowed_value" +msgid "Sipihr" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:664 +msgctxt "work_attribute_type_allowed_value" +msgid "Sirto" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:843 +msgctxt "work_attribute_type_allowed_value" +msgid "Sitārkhānī" +msgstr "" + +#: DB:release_packaging/name:20 +msgctxt "release_packaging" +msgid "Slidepack" +msgstr "" + +#: DB:release_packaging/name:2 +msgctxt "release_packaging" +msgid "Slim Jewel Case" +msgstr "" + +#: DB:release_packaging/name:11 +msgctxt "release_packaging" +msgid "Snap Case" +msgstr "" + +#: DB:release_packaging/name:21 +msgctxt "release_packaging" +msgid "SnapPack" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:771 +msgctxt "work_attribute_type_allowed_value" +msgid "Sofyan" +msgstr "" + +#: DB:work_type/name:5 +msgctxt "work_type" +msgid "Sonata" +msgstr "" + +#: DB:work_type/name:17 +msgctxt "work_type" +msgid "Song" +msgstr "" + +#: DB:work_type/name:15 +msgctxt "work_type" +msgid "Song-cycle" +msgstr "" + +#: DB:series_ordering_type/description:1 +msgctxt "series_ordering_type" +msgid "" +"Sorts the items in the series automatically by their number attributes, " +"using a natural sort order." +msgstr "" + +#: DB:release_group_secondary_type/name:2 +msgctxt "release_group_secondary_type" +msgid "Soundtrack" +msgstr "" + +#: DB:work_type/name:22 +msgctxt "work_type" +msgid "Soundtrack" +msgstr "" + +#: DB:cover_art_archive.art_type/name:6 +msgctxt "cover_art_type" +msgid "Spine" +msgstr "" + +#: DB:release_group_secondary_type/name:3 +msgctxt "release_group_secondary_type" +msgid "Spokenword" +msgstr "" + +#: DB:place_type/name:4 +msgctxt "place_type" +msgid "Stadium" +msgstr "" + +#: DB:event_type/name:6 +msgctxt "event_type" +msgid "Stage performance" +msgstr "" + +#: DB:cover_art_archive.art_type/name:10 +msgctxt "cover_art_type" +msgid "Sticker" +msgstr "" + +#: DB:instrument_type/name:2 +msgctxt "instrument_type" +msgid "String instrument" +msgstr "" + +#: DB:place_type/name:1 +msgctxt "place_type" +msgid "Studio" +msgstr "" + +#: DB:area_type/name:2 +msgctxt "area_type" +msgid "Subdivision" +msgstr "" + +#: DB:area_type/description:2 +msgctxt "area_type" +msgid "" +"Subdivision is used for the main administrative divisions of a country, e.g. " +"California, Ontario, Okinawa. These are considered when displaying the " +"parent areas for a given area." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:244 +msgctxt "work_attribute_type_allowed_value" +msgid "Sucaritra" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1035 +msgctxt "work_attribute_type_allowed_value" +msgid "Sugharaī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1036 +msgctxt "work_attribute_type_allowed_value" +msgid "Suhā" +msgstr "" + +#: DB:work_type/name:6 +msgctxt "work_type" +msgid "Suite" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:534 +msgctxt "work_attribute_type_allowed_value" +msgid "Sultani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:535 +msgctxt "work_attribute_type_allowed_value" +msgid "Sultani Irak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:536 +msgctxt "work_attribute_type_allowed_value" +msgid "Sultanıbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:537 +msgctxt "work_attribute_type_allowed_value" +msgid "Sultanıcedid" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:538 +msgctxt "work_attribute_type_allowed_value" +msgid "Sultanıeviç" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:539 +msgctxt "work_attribute_type_allowed_value" +msgid "Sultanıhüzzam" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:540 +msgctxt "work_attribute_type_allowed_value" +msgid "Sultanısegah" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:541 +msgctxt "work_attribute_type_allowed_value" +msgid "Sultanıyegah" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:250 +msgctxt "work_attribute_type_allowed_value" +msgid "Sumanēśaranjani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:251 +msgctxt "work_attribute_type_allowed_value" +msgid "Sunādavinōdini" +msgstr "" + +#: DB:release_packaging/name:16 +msgctxt "release_packaging" +msgid "Super Jewel Box" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1037 +msgctxt "work_attribute_type_allowed_value" +msgid "Sur malhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1038 +msgctxt "work_attribute_type_allowed_value" +msgid "Sur sugharai" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:252 +msgctxt "work_attribute_type_allowed_value" +msgid "Suraṭi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:542 +msgctxt "work_attribute_type_allowed_value" +msgid "Suzidil" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:543 +msgctxt "work_attribute_type_allowed_value" +msgid "Suzidilara" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:544 +msgctxt "work_attribute_type_allowed_value" +msgid "Suzinak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:546 +msgctxt "work_attribute_type_allowed_value" +msgid "Suzinak Zirgüle" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:545 +msgctxt "work_attribute_type_allowed_value" +msgid "Suzinak-ı Nev" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:253 +msgctxt "work_attribute_type_allowed_value" +msgid "Svararanjani" +msgstr "" + +#: DB:work_type/name:18 +msgctxt "work_type" +msgid "Symphonic poem" +msgstr "" + +#: DB:work_type/name:16 +msgctxt "work_type" +msgid "Symphony" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:547 +msgctxt "work_attribute_type_allowed_value" +msgid "Sünbüle" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:772 +msgctxt "work_attribute_type_allowed_value" +msgid "Süreyya" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:548 +msgctxt "work_attribute_type_allowed_value" +msgid "Sürurefza" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:224 +msgctxt "work_attribute_type_allowed_value" +msgid "Sālaga bhairavi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:225 +msgctxt "work_attribute_type_allowed_value" +msgid "Sāma" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:229 +msgctxt "work_attribute_type_allowed_value" +msgid "Sāranga" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1013 +msgctxt "work_attribute_type_allowed_value" +msgid "Sāraṅg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:228 +msgctxt "work_attribute_type_allowed_value" +msgid "Sārāmati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1015 +msgctxt "work_attribute_type_allowed_value" +msgid "Sāvanī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1016 +msgctxt "work_attribute_type_allowed_value" +msgid "Sāvanī bihāg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:234 +msgctxt "work_attribute_type_allowed_value" +msgid "Sāvēri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1023 +msgctxt "work_attribute_type_allowed_value" +msgid "Sōhinī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1024 +msgctxt "work_attribute_type_allowed_value" +msgid "Sōhinī bahār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1025 +msgctxt "work_attribute_type_allowed_value" +msgid "Sōhōnī bhaṭiyār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1026 +msgctxt "work_attribute_type_allowed_value" +msgid "Sōrath" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:844 +msgctxt "work_attribute_type_allowed_value" +msgid "Sūltāl" +msgstr "" + +#: DB:work_attribute_type/name:66 +msgctxt "work_attribute_type" +msgid "TEOSTO ID" +msgstr "" + +#: DB:work_attribute_type/name:67 +msgctxt "work_attribute_type" +msgid "TONO ID" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:573 +msgctxt "work_attribute_type_allowed_value" +msgid "Tahir" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:574 +msgctxt "work_attribute_type_allowed_value" +msgid "Tahirbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:667 +msgctxt "work_attribute_type_allowed_value" +msgid "Taksim" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:255 +msgctxt "work_attribute_type_allowed_value" +msgid "Tanarūpi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:668 +msgctxt "work_attribute_type_allowed_value" +msgid "Tango" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1040 +msgctxt "work_attribute_type_allowed_value" +msgid "Tankēśrī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:575 +msgctxt "work_attribute_type_allowed_value" +msgid "Tarz-ı Cedid" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:576 +msgctxt "work_attribute_type_allowed_value" +msgid "Tarz-ı Cihan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:577 +msgctxt "work_attribute_type_allowed_value" +msgid "Tarz-ı Nevin" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:669 +msgctxt "work_attribute_type_allowed_value" +msgid "Tavşanca" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:578 +msgctxt "work_attribute_type_allowed_value" +msgid "Tebriz" +msgstr "" + +#: DB:medium_format/name:90 +msgctxt "medium_format" +msgid "Tefifon" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:774 +msgctxt "work_attribute_type_allowed_value" +msgid "Tek Vuruş" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:670 +msgctxt "work_attribute_type_allowed_value" +msgid "Tekbir" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:671 +msgctxt "work_attribute_type_allowed_value" +msgid "Temcidmünacatı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:579 +msgctxt "work_attribute_type_allowed_value" +msgid "Tereşşüd" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:672 +msgctxt "work_attribute_type_allowed_value" +msgid "Tesbih" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:673 +msgctxt "work_attribute_type_allowed_value" +msgid "Tesbihilahi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:680 +msgctxt "work_attribute_type_allowed_value" +msgid "Tevhid" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:674 +msgctxt "work_attribute_type_allowed_value" +msgid "Tevşihilahi" +msgstr "" + +#: DB:medium_format/description:70 +msgctxt "medium_format" +msgid "" +"The CD layer of a DVDplus. The DVD layer should be added as a separate " +"medium." +msgstr "" + +#: DB:medium_format/description:67 +msgctxt "medium_format" +msgid "" +"The CD layer of a DualDisc. The DVD layer should be added as a separate " +"medium." +msgstr "" + +#: DB:medium_format/description:63 +msgctxt "medium_format" +msgid "" +"The CD layer of a hybrid SACD. The SACD layer should be added as a separate " +"medium." +msgstr "" + +#: DB:medium_format/description:82 +msgctxt "medium_format" +msgid "" +"The CD side of a vinyl + CD VinylDisc. The vinyl side should be added as a " +"separate medium." +msgstr "" + +#: DB:medium_format/description:60 +msgctxt "medium_format" +msgid "" +"The Capacitance Electronic Disc (CED) is an analog video disc playback " +"system developed by RCA, in which video and audio could be played back on a " +"TV set using a special needle and high-density groove system similar to " +"phonograph records." +msgstr "" + +#: DB:medium_format/description:68 +msgctxt "medium_format" +msgid "" +"The DVD (audio) layer of a DVDplus. The CD layer should be added as a " +"separate medium." +msgstr "" + +#: DB:medium_format/description:65 +msgctxt "medium_format" +msgid "" +"The DVD (audio) layer of a DualDisc. The CD layer should be added as a " +"separate medium." +msgstr "" + +#: DB:medium_format/description:69 +msgctxt "medium_format" +msgid "" +"The DVD (video) layer of a DVDplus. The CD layer should be added as a " +"separate medium." +msgstr "" + +#: DB:medium_format/description:66 +msgctxt "medium_format" +msgid "" +"The DVD (video) layer of a DualDisc. The CD layer should be added as a " +"separate medium." +msgstr "" + +#: DB:medium_format/description:130 +msgctxt "medium_format" +msgid "" +"The DVD layer of a DualDisc, when it's unclear whether it should be DVD-" +"Audio or DVD-Video (or it includes both). The CD layer should be added as a " +"separate medium." +msgstr "" + +#: DB:medium_format/description:80 +msgctxt "medium_format" +msgid "" +"The DVD side of a vinyl + DVD VinylDisc. The vinyl side should be added as a " +"separate medium." +msgstr "" + +#: DB:medium_format/description:64 +msgctxt "medium_format" +msgid "" +"The SACD layer of a hybrid SACD. The CD layer should be added as a separate " +"medium." +msgstr "" + +#: DB:cover_art_archive.art_type/description:49 +msgctxt "cover_art_type" +msgid "" +"The bottom of a box or other similar packaging (for most common six sided " +"packaging options, the one perpendicular to and below front, back and " +"spines)." +msgstr "" + +#: DB:work_type/description:7 +msgctxt "work_type" +msgid "" +"The madrigal is a type of secular vocal music composition. In its original " +"form, it had no instrumental accompaniment, although accompaniment is much " +"more common in later madrigals." +msgstr "" + +#: DB:work_type/description:24 +msgctxt "work_type" +msgid "" +"The operetta is a genre of light opera, in terms both of music and subject " +"matter. Operettas are generally short and include spoken parts." +msgstr "" + +#: DB:cover_art_archive.art_type/description:15 +msgctxt "cover_art_type" +msgid "" +"The section on a CD, record or other media containing such data as matrix " +"numbers. Usually found in the hub of a CD or the dead wax area of a vinyl " +"record." +msgstr "" + +#: DB:cover_art_archive.art_type/description:48 +msgctxt "cover_art_type" +msgid "" +"The top of a box or other similar packaging (for most common six sided " +"packaging options, the one perpendicular to and above front, back and " +"spines)." +msgstr "" + +#: DB:release_packaging/description:1 +msgctxt "release_packaging" +msgid "The traditional CD case, made of hard, brittle plastic." +msgstr "" + +#: DB:medium_format/description:81 +msgctxt "medium_format" +msgid "" +"The vinyl side of a VinylDisc. The CD or DVD side should be added as a " +"separate medium." +msgstr "" + +#: DB:artist_type/description:6 +msgctxt "artist_type" +msgid "" +"This indicates a choir/chorus (an organized, usually large group of " +"singers). Smaller vocal ensembles and groupings that do not generally call " +"themselves choirs are better entered as “Group”." +msgstr "" + +#: DB:artist_type/description:4 +msgctxt "artist_type" +msgid "" +"This indicates an individual fictional character (whether a fictional " +"person, animal or any other kind of character)." +msgstr "" + +#: DB:artist_type/description:1 +msgctxt "artist_type" +msgid "" +"This indicates an individual person, be it under its legal name (“John " +"Lennon”), or a performance name (“Sting”)." +msgstr "" + +#: DB:artist_type/description:5 +msgctxt "artist_type" +msgid "" +"This indicates an orchestra (an organized, usually large group of " +"instrumentalists). Smaller ensembles (such as trios and quartets) and " +"groupings that do not generally call themselves orchestras are better " +"entered as “Group”." +msgstr "" + +#: DB:work_type/description:23 +msgctxt "work_type" +msgid "" +"This represents literary works written in prose, that is, written in " +"relatively ordinary language without metrical structure (e.g. novels, short " +"stories, essays...)." +msgstr "" + +#: DB:medium_format/description:84 +msgctxt "medium_format" +msgid "" +"This represents the 2 channel (stereo/mono) table of contents on a SACD." +msgstr "" + +#: DB:medium_format/description:89 +msgctxt "medium_format" +msgid "" +"This represents the 2 channel (stereo/mono) table of contents on a SHM-SACD." +msgstr "" + +#: DB:medium_format/description:87 +msgctxt "medium_format" +msgid "" +"This represents the 2 channel (stereo/mono) table of contents on a hybrid " +"SACD's SACD layer." +msgstr "" + +#: DB:medium_format/description:85 +msgctxt "medium_format" +msgid "This represents the multichannel table of contents on a SACD." +msgstr "" + +#: DB:medium_format/description:88 +msgctxt "medium_format" +msgid "This represents the multichannel table of contents on a SHM-SACD." +msgstr "" + +#: DB:medium_format/description:86 +msgctxt "medium_format" +msgid "" +"This represents the multichannel table of contents on a hybrid SACD's SACD " +"layer." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1041 +msgctxt "work_attribute_type_allowed_value" +msgid "Tilak bihārī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1042 +msgctxt "work_attribute_type_allowed_value" +msgid "Tilak kāmōd" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1043 +msgctxt "work_attribute_type_allowed_value" +msgid "Tilak naṭ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:845 +msgctxt "work_attribute_type_allowed_value" +msgid "Tilavāḍā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:256 +msgctxt "work_attribute_type_allowed_value" +msgid "Tillāng" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1044 +msgctxt "work_attribute_type_allowed_value" +msgid "Tilāṅg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:288 +msgctxt "work_attribute_type_allowed_value" +msgid "Tiśra-jāti tripuṭa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:284 +msgctxt "work_attribute_type_allowed_value" +msgid "Tiśra-jāti ēka" +msgstr "" + +#: DB:cover_art_archive.art_type/name:48 +msgctxt "cover_art_type" +msgid "Top" +msgstr "" + +#: DB:series_type/name:7 +msgctxt "series_type" +msgid "Tour" +msgstr "" + +#: DB:cover_art_archive.art_type/name:7 +msgctxt "cover_art_type" +msgid "Track" +msgstr "" + +#: DB:cover_art_archive.art_type/name:9 +msgctxt "cover_art_type" +msgid "Tray" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1046 +msgctxt "work_attribute_type_allowed_value" +msgid "Trivēṇī gauri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:775 +msgctxt "work_attribute_type_allowed_value" +msgid "Türk Darbı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:776 +msgctxt "work_attribute_type_allowed_value" +msgid "Türkaksağı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:580 +msgctxt "work_attribute_type_allowed_value" +msgid "Türki Hicaz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:799 +msgctxt "work_attribute_type_allowed_value" +msgid "Türkmen" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:675 +msgctxt "work_attribute_type_allowed_value" +msgid "Türkü" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:581 +msgctxt "work_attribute_type_allowed_value" +msgid "Tüvanger" +msgstr "" + +#: DB:work_attribute_type/name:5 +msgctxt "work_attribute_type" +msgid "Tāla (Carnatic)" +msgstr "" + +#: DB:work_attribute_type/name:31 +msgctxt "work_attribute_type" +msgid "Tāla (Hindustani)" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:846 +msgctxt "work_attribute_type_allowed_value" +msgid "Tīntāl" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:847 +msgctxt "work_attribute_type_allowed_value" +msgid "Tīntāl-sitārkhānī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:257 +msgctxt "work_attribute_type_allowed_value" +msgid "Tōḍi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1045 +msgctxt "work_attribute_type_allowed_value" +msgid "Tōḍī" +msgstr "" + +#: DB:medium_format/name:28 +msgctxt "medium_format" +msgid "UMD" +msgstr "" + +#: DB:medium_format/name:26 +msgctxt "medium_format" +msgid "USB Flash Drive" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:258 +msgctxt "work_attribute_type_allowed_value" +msgid "Udaya ravicandrika" +msgstr "" + +#: DB:cover_art_archive.art_type/description:14 +msgctxt "cover_art_type" +msgid "" +"Use for images that need work to be used for tagging (but can possibly " +"already be used for reference)" +msgstr "" + +#: DB:area_type/description:8 +msgctxt "area_type" +msgid "" +"Used for any military bases that are large enough to be considered an area, " +"not just a place." +msgstr "" + +#: DB:area_type/description:9 +msgctxt "area_type" +msgid "" +"Used for semi-autonomous territories governed by indigenous peoples, such as " +"Indian reserves/reservations in North America and indigenous territories in " +"Central and South America." +msgstr "" + +#: DB:work_attribute_type/name:17 +msgctxt "work_attribute_type" +msgid "Usul (Ottoman, Turkish)" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:676 +msgctxt "work_attribute_type_allowed_value" +msgid "Uzunhava" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:601 +msgctxt "work_attribute_type_allowed_value" +msgid "Uzzal" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:582 +msgctxt "work_attribute_type_allowed_value" +msgid "Uşşak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:583 +msgctxt "work_attribute_type_allowed_value" +msgid "Uşşak Ruy-i Nikriz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:584 +msgctxt "work_attribute_type_allowed_value" +msgid "Uşşakaşiran" +msgstr "" + +#: DB:medium_format/name:22 +msgctxt "medium_format" +msgid "VCD" +msgstr "" + +#: DB:work_attribute_type/name:107 +msgctxt "work_attribute_type" +msgid "VCPMC ID" +msgstr "" + +#: DB:medium_format/name:59 +msgctxt "medium_format" +msgid "VHD" +msgstr "" + +#: DB:medium_format/name:21 +msgctxt "medium_format" +msgid "VHS" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:261 +msgctxt "work_attribute_type_allowed_value" +msgid "Vakuḷābharaṇaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:262 +msgctxt "work_attribute_type_allowed_value" +msgid "Valaji" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:263 +msgctxt "work_attribute_type_allowed_value" +msgid "Vandanadhāriṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:265 +msgctxt "work_attribute_type_allowed_value" +msgid "Varamu" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:264 +msgctxt "work_attribute_type_allowed_value" +msgid "Varāḷi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:266 +msgctxt "work_attribute_type_allowed_value" +msgid "Varṇarūpini" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:267 +msgctxt "work_attribute_type_allowed_value" +msgid "Vasanta" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:268 +msgctxt "work_attribute_type_allowed_value" +msgid "Vasanta varāḷi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:269 +msgctxt "work_attribute_type_allowed_value" +msgid "Vasantabhairavi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:585 +msgctxt "work_attribute_type_allowed_value" +msgid "Vecd-i Dil" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:586 +msgctxt "work_attribute_type_allowed_value" +msgid "Vech-i Arazbar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:587 +msgctxt "work_attribute_type_allowed_value" +msgid "Vech-i Dil" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:588 +msgctxt "work_attribute_type_allowed_value" +msgid "Vech-i Şehnaz" +msgstr "" + +#: DB:place_type/name:2 +msgctxt "place_type" +msgid "Venue" +msgstr "" + +#: DB:medium_format/description:59 +msgctxt "medium_format" +msgid "" +"Video High Density (VHD) was a videodisc format which was marketed " +"predominantly in Japan by JVC." +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:273 +msgctxt "work_attribute_type_allowed_value" +msgid "Vijayanagari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:274 +msgctxt "work_attribute_type_allowed_value" +msgid "Vijayasarasvati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:275 +msgctxt "work_attribute_type_allowed_value" +msgid "Vijayaśrī" +msgstr "" + +#: DB:medium_format/name:7 +msgctxt "medium_format" +msgid "Vinyl" +msgstr "" + +#: DB:medium_format/name:48 +msgctxt "medium_format" +msgid "VinylDisc" +msgstr "" + +#: DB:medium_format/name:82 +msgctxt "medium_format" +msgid "VinylDisc (CD side)" +msgstr "" + +#: DB:medium_format/name:80 +msgctxt "medium_format" +msgid "VinylDisc (DVD side)" +msgstr "" + +#: DB:medium_format/name:81 +msgctxt "medium_format" +msgid "VinylDisc (Vinyl side)" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:259 +#: DB:work_attribute_type_allowed_value/value:1047 +msgctxt "work_attribute_type_allowed_value" +msgid "Vācaspati" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:260 +msgctxt "work_attribute_type_allowed_value" +msgid "Vāgadīśvari" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:270 +msgctxt "work_attribute_type_allowed_value" +msgid "Vāsanti" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:271 +msgctxt "work_attribute_type_allowed_value" +msgid "Vēgavāhiṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:272 +msgctxt "work_attribute_type_allowed_value" +msgid "Vēlāvali" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:276 +msgctxt "work_attribute_type_allowed_value" +msgid "Vīra vasantaṁ" +msgstr "" + +#: DB:cover_art_archive.art_type/name:13 +msgctxt "cover_art_type" +msgid "Watermark" +msgstr "" + +#: DB:medium_format/name:14 +msgctxt "medium_format" +msgid "Wax Cylinder" +msgstr "" + +#: DB:instrument_type/name:1 +msgctxt "instrument_type" +msgid "Wind instrument" +msgstr "" + +#: DB:editor_collection_type/name:3 +msgctxt "collection_type" +msgid "Wishlist" +msgstr "" + +#: DB:release_status/name:5 +msgctxt "release_status" +msgid "Withdrawn" +msgstr "" + +#: DB:series_type/name:46 +msgctxt "series_type" +msgid "Work award" +msgstr "" + +#: DB:editor_collection_type/name:15 +msgctxt "collection_type" +msgid "Work collection" +msgstr "" + +#: DB:work_alias_type/name:1 +msgctxt "alias_type" +msgid "Work name" +msgstr "" + +#: DB:series_type/name:4 +msgctxt "series_type" +msgid "Work series" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:277 +msgctxt "work_attribute_type_allowed_value" +msgid "Yadukula kāṁbōji" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1048 +msgctxt "work_attribute_type_allowed_value" +msgid "Yaman kalyāṇ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1049 +msgctxt "work_attribute_type_allowed_value" +msgid "Yamanī bilāval" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:278 +msgctxt "work_attribute_type_allowed_value" +msgid "Yamuna kalyāṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:589 +msgctxt "work_attribute_type_allowed_value" +msgid "Yegah" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:590 +msgctxt "work_attribute_type_allowed_value" +msgid "Yegah-ı Acemi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:677 +#: DB:work_attribute_type_allowed_value/value:777 +msgctxt "work_attribute_type_allowed_value" +msgid "Yürüksemai" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:778 +msgctxt "work_attribute_type_allowed_value" +msgid "Yürüksemai II" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:779 +msgctxt "work_attribute_type_allowed_value" +msgid "Yürüksofyan" +msgstr "" + +#: DB:work_attribute_type/name:30 +msgctxt "work_attribute_type" +msgid "ZAiKS ID" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:780 +msgctxt "work_attribute_type_allowed_value" +msgid "Zafer" +msgstr "" + +#: DB:work_type/name:19 +msgctxt "work_type" +msgid "Zarzuela" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:591 +msgctxt "work_attribute_type_allowed_value" +msgid "Zavil" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:592 +msgctxt "work_attribute_type_allowed_value" +msgid "Zavilaşiran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:781 +msgctxt "work_attribute_type_allowed_value" +msgid "Zencir" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:593 +msgctxt "work_attribute_type_allowed_value" +msgid "Zengule" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:594 +msgctxt "work_attribute_type_allowed_value" +msgid "Zengulebuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:595 +msgctxt "work_attribute_type_allowed_value" +msgid "Zenguleli Kürdi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:597 +msgctxt "work_attribute_type_allowed_value" +msgid "Zevk-ü Tarab" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:596 +msgctxt "work_attribute_type_allowed_value" +msgid "Zevk-ı Dil" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:678 +msgctxt "work_attribute_type_allowed_value" +msgid "Zeybek" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:598 +msgctxt "work_attribute_type_allowed_value" +msgid "Zilkeş" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1050 +msgctxt "work_attribute_type_allowed_value" +msgid "Zilāph" +msgstr "" + +#: DB:medium_format/name:77 +msgctxt "medium_format" +msgid "Zip Disk" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:599 +msgctxt "work_attribute_type_allowed_value" +msgid "Zirefkend" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:298 +#: DB:work_attribute_type_allowed_value/value:602 +#: DB:work_attribute_type_allowed_value/value:681 +msgctxt "work_attribute_type_allowed_value" +msgid "ambiguous" +msgstr "" + +#: DB:medium_format/name:164 +msgctxt "medium_format" +msgid "microSD" +msgstr "" + +#: DB:medium_format/name:27 +msgctxt "medium_format" +msgid "slotMusic" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:340 +msgctxt "work_attribute_type_allowed_value" +msgid "Çargah" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:341 +msgctxt "work_attribute_type_allowed_value" +msgid "Çargah (Yeni)" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:342 +msgctxt "work_attribute_type_allowed_value" +msgid "Çehar Agazin" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:706 +msgctxt "work_attribute_type_allowed_value" +msgid "Çenber" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:707 +msgctxt "work_attribute_type_allowed_value" +msgid "Çeng-i Harbi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:708 +msgctxt "work_attribute_type_allowed_value" +msgid "Çifteaksak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:709 +msgctxt "work_attribute_type_allowed_value" +msgid "Çiftedüyek" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:710 +msgctxt "work_attribute_type_allowed_value" +msgid "Çiftesofyan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:679 +msgctxt "work_attribute_type_allowed_value" +msgid "Çiftetelli" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:609 +msgctxt "work_attribute_type_allowed_value" +msgid "Çocuk şarkısı" +msgstr "" + +#: DB:work_type/name:20 +msgctxt "work_type" +msgid "Étude" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:653 +msgctxt "work_attribute_type_allowed_value" +msgid "Örnek Öz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:35 +msgctxt "work_attribute_type_allowed_value" +msgid "Ābhēri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:36 +msgctxt "work_attribute_type_allowed_value" +msgid "Ābhōgi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:858 +msgctxt "work_attribute_type_allowed_value" +msgid "Ābhōgī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:821 +msgctxt "work_attribute_type_allowed_value" +msgid "Ādhā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:822 +msgctxt "work_attribute_type_allowed_value" +msgid "Ādhā cautāl" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:823 +msgctxt "work_attribute_type_allowed_value" +msgid "Ādhā/jaṭ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:279 +#: DB:work_attribute_type_allowed_value/value:824 +msgctxt "work_attribute_type_allowed_value" +msgid "Ādi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:290 +msgctxt "work_attribute_type_allowed_value" +msgid "Ādi (Tiśra naḍe)" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:37 +msgctxt "work_attribute_type_allowed_value" +msgid "Āhir bhairav" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:38 +msgctxt "work_attribute_type_allowed_value" +msgid "Āhiri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:859 +msgctxt "work_attribute_type_allowed_value" +msgid "Ānand malhār" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:41 +msgctxt "work_attribute_type_allowed_value" +msgid "Ānandabhairavi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:42 +msgctxt "work_attribute_type_allowed_value" +msgid "Āndōḷika" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:43 +#: DB:work_attribute_type_allowed_value/value:860 +msgctxt "work_attribute_type_allowed_value" +msgid "Ārabhi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:907 +msgctxt "work_attribute_type_allowed_value" +msgid "Ēk niṣād bihāgḍā" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:283 +msgctxt "work_attribute_type_allowed_value" +msgid "Ēka" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:831 +msgctxt "work_attribute_type_allowed_value" +msgid "Ēktāl" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:436 +msgctxt "work_attribute_type_allowed_value" +msgid "İbrahimi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:740 +msgctxt "work_attribute_type_allowed_value" +msgid "İki Bir" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:741 +msgctxt "work_attribute_type_allowed_value" +msgid "İkiz Aksak" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:620 +msgctxt "work_attribute_type_allowed_value" +msgid "İlahi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:226 +msgctxt "work_attribute_type_allowed_value" +msgid "Śankarābharaṇaṁ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1012 +msgctxt "work_attribute_type_allowed_value" +msgid "Śaṅkara" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:842 +msgctxt "work_attribute_type_allowed_value" +msgid "Śikhar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1021 +msgctxt "work_attribute_type_allowed_value" +msgid "Śivamat bhairav" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:240 +msgctxt "work_attribute_type_allowed_value" +msgid "Śivaranjani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1022 +msgctxt "work_attribute_type_allowed_value" +msgid "Śivaran̄jani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:241 +#: DB:work_attribute_type_allowed_value/value:1027 +msgctxt "work_attribute_type_allowed_value" +msgid "Śrī" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:242 +msgctxt "work_attribute_type_allowed_value" +msgid "Śrīranjani" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1028 +msgctxt "work_attribute_type_allowed_value" +msgid "Śubhalakṣmi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:243 +msgctxt "work_attribute_type_allowed_value" +msgid "Śubhapantuvarāḷi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:245 +msgctxt "work_attribute_type_allowed_value" +msgid "Śudda sārang" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:246 +msgctxt "work_attribute_type_allowed_value" +msgid "Śudda sāvēri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:247 +msgctxt "work_attribute_type_allowed_value" +msgid "Śuddadhanyāsi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:248 +msgctxt "work_attribute_type_allowed_value" +msgid "Śuddasīmantini" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1029 +msgctxt "work_attribute_type_allowed_value" +msgid "Śuddh baradi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1030 +msgctxt "work_attribute_type_allowed_value" +msgid "Śuddh basant" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1031 +msgctxt "work_attribute_type_allowed_value" +msgid "Śuddh kalyāṇ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1032 +msgctxt "work_attribute_type_allowed_value" +msgid "Śuddh mārū" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1033 +msgctxt "work_attribute_type_allowed_value" +msgid "Śuddh naṭa" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1034 +msgctxt "work_attribute_type_allowed_value" +msgid "Śuddh sāraṅg" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:1039 +msgctxt "work_attribute_type_allowed_value" +msgid "Śyām kalyāṇ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:254 +msgctxt "work_attribute_type_allowed_value" +msgid "Śyāṁ kaḷyāṇ" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:249 +msgctxt "work_attribute_type_allowed_value" +msgid "Śūḷiṇi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:773 +msgctxt "work_attribute_type_allowed_value" +msgid "Şark Devr-i Revanı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:665 +msgctxt "work_attribute_type_allowed_value" +msgid "Şarkı" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:549 +msgctxt "work_attribute_type_allowed_value" +msgid "Şedaraban" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:550 +msgctxt "work_attribute_type_allowed_value" +msgid "Şedd-i Saba" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:551 +msgctxt "work_attribute_type_allowed_value" +msgid "Şehnaz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:554 +msgctxt "work_attribute_type_allowed_value" +msgid "Şehnaz Nişaburek" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:552 +msgctxt "work_attribute_type_allowed_value" +msgid "Şehnazbuselik" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:553 +msgctxt "work_attribute_type_allowed_value" +msgid "Şehnazhaveran" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:555 +msgctxt "work_attribute_type_allowed_value" +msgid "Şemsefruz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:556 +msgctxt "work_attribute_type_allowed_value" +msgid "Şeref-i Hamidi" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:557 +msgctxt "work_attribute_type_allowed_value" +msgid "Şerefnuma" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:558 +msgctxt "work_attribute_type_allowed_value" +msgid "Şevk" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:561 +msgctxt "work_attribute_type_allowed_value" +msgid "Şevk-i Cedid" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:563 +msgctxt "work_attribute_type_allowed_value" +msgid "Şevk-i Cihan" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:562 +msgctxt "work_attribute_type_allowed_value" +msgid "Şevk-i Dil" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:564 +msgctxt "work_attribute_type_allowed_value" +msgid "Şevk-i Serab" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:559 +msgctxt "work_attribute_type_allowed_value" +msgid "Şevkaver" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:560 +msgctxt "work_attribute_type_allowed_value" +msgid "Şevkefza" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:565 +msgctxt "work_attribute_type_allowed_value" +msgid "Şevknüma" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:566 +msgctxt "work_attribute_type_allowed_value" +msgid "Şevkutarab" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:567 +msgctxt "work_attribute_type_allowed_value" +msgid "Şinaver" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:568 +msgctxt "work_attribute_type_allowed_value" +msgid "Şiraz" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:569 +msgctxt "work_attribute_type_allowed_value" +msgid "Şivekar" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:570 +msgctxt "work_attribute_type_allowed_value" +msgid "Şivekeş" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:571 +msgctxt "work_attribute_type_allowed_value" +msgid "Şivenüma" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:572 +msgctxt "work_attribute_type_allowed_value" +msgid "Şuri" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:666 +msgctxt "work_attribute_type_allowed_value" +msgid "Şuğul" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:894 +msgctxt "work_attribute_type_allowed_value" +msgid "Ḍāgori" +msgstr "" + +#: DB:work_attribute_type_allowed_value/value:227 +msgctxt "work_attribute_type_allowed_value" +msgid "Ṣanmukhapriya" +msgstr "" diff --git a/po/countries.bn.po b/po/countries.bn.po index 1caed12a2ee..51e53b640d3 100644 --- a/po/countries.bn.po +++ b/po/countries.bn.po @@ -3,11 +3,12 @@ # জয়শ্রীরাম সরকার{discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7438,7 +7434,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7458,15 +7454,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7476,8 +7463,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7486,21 +7474,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7538,7 +7518,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7577,15 +7557,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7678,7 +7658,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7693,20 +7673,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7877,7 +7847,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7923,7 +7893,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8034,6 +8004,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8078,26 +8049,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8109,37 +8064,24 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
#: ../root/components/list/ReleaseList.js:95
-#: ../root/edit/details/MergeReleases.js:53
-#: ../root/release_group/ReleaseGroupIndex.js:89
-#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
-msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
+#: ../root/edit/details/MergeReleases.js:53
+#: ../root/release_group/ReleaseGroupIndex.js:89
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
msgstr ""
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8264,7 +8206,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8482,7 +8424,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8507,7 +8449,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8532,7 +8475,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8541,15 +8484,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8572,51 +8515,41 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8636,12 +8569,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8758,37 +8685,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8800,17 +8703,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8834,19 +8740,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8905,29 +8811,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8940,17 +8840,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8958,7 +8858,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -8999,14 +8899,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9031,11 +8923,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9061,25 +8948,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9101,6 +8973,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9113,7 +8986,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9226,7 +9100,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9245,8 +9119,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9288,20 +9162,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9312,11 +9172,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9326,8 +9181,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9343,17 +9198,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9392,28 +9255,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9421,11 +9280,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9442,47 +9303,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10166,7 +9999,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10318,7 +10151,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10485,39 +10318,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10633,11 +10460,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10690,10 +10517,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10706,7 +10529,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10737,27 +10560,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10765,21 +10588,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Оценка"
@@ -10918,7 +10733,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11017,13 +10832,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11157,7 +10966,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11371,7 +11180,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11379,11 +11188,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11395,6 +11199,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11428,16 +11233,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11457,7 +11258,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11531,7 +11332,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11550,7 +11351,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11659,8 +11460,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11866,8 +11667,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11877,10 +11678,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11914,7 +11715,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11923,7 +11724,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12203,7 +12004,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12283,7 +12084,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12410,8 +12211,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12582,13 +12383,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12766,7 +12567,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12790,8 +12591,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13010,20 +12810,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13102,9 +12888,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13113,9 +12899,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13270,6 +13056,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13279,7 +13069,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13290,7 +13080,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13300,9 +13090,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13338,7 +13129,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13422,7 +13213,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13443,42 +13234,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13529,15 +13321,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13590,10 +13382,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13641,7 +13435,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13665,33 +13459,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13709,7 +13503,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13718,32 +13512,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13753,7 +13542,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13791,11 +13586,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13896,15 +13691,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14015,7 +13810,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14310,31 +14105,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14355,7 +14150,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14412,8 +14208,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14503,113 +14299,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14656,53 +14452,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14724,11 +14520,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14763,11 +14559,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14829,10 +14625,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15167,8 +14960,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15374,14 +15167,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15390,7 +15183,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15442,34 +15235,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15496,15 +15289,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15745,10 +15534,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15810,23 +15595,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15928,7 +15713,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16155,10 +15941,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16200,191 +15982,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Collections"
+msgid "Restrictions"
+msgstr "Колекции"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16631,7 +16407,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16645,7 +16421,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
diff --git a/po/mb_server.bn.po b/po/mb_server.bn.po
index 9f00b149cff..040509b7e56 100644
--- a/po/mb_server.bn.po
+++ b/po/mb_server.bn.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-24 14:27+0000\n"
"Last-Translator: Philipp Wolfer {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7439,7 +7435,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7459,15 +7455,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7477,8 +7464,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7487,21 +7475,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7539,7 +7519,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7578,15 +7558,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7679,7 +7659,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7694,20 +7674,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7878,7 +7848,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7924,7 +7894,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8035,6 +8005,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8079,26 +8050,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8110,37 +8065,24 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
#: ../root/components/list/ReleaseList.js:95
-#: ../root/edit/details/MergeReleases.js:53
-#: ../root/release_group/ReleaseGroupIndex.js:89
-#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
-msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
+#: ../root/edit/details/MergeReleases.js:53
+#: ../root/release_group/ReleaseGroupIndex.js:89
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
msgstr ""
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8265,7 +8207,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8483,7 +8425,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8508,7 +8450,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8533,7 +8476,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8542,15 +8485,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8573,51 +8516,41 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8637,12 +8570,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8759,37 +8686,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8801,17 +8704,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8835,19 +8741,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8906,29 +8812,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8941,17 +8841,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8959,7 +8859,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9000,14 +8900,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9032,11 +8924,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9062,25 +8949,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9102,6 +8974,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9114,7 +8987,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9227,7 +9101,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9246,8 +9120,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9289,20 +9163,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9313,11 +9173,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9327,8 +9182,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9344,17 +9199,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9393,28 +9256,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9422,11 +9281,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9443,47 +9304,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10167,7 +10000,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10319,7 +10152,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10486,39 +10319,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10634,11 +10461,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10691,10 +10518,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10707,7 +10530,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10738,27 +10561,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10766,21 +10589,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "রেটিং"
@@ -10919,7 +10734,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11018,13 +10833,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11158,7 +10967,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11372,7 +11181,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11380,11 +11189,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11396,6 +11200,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11429,16 +11234,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11458,7 +11259,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11532,7 +11333,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11551,7 +11352,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11660,8 +11461,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11867,8 +11668,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11878,10 +11679,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11915,7 +11716,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11924,7 +11725,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12204,7 +12005,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12284,7 +12085,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12411,8 +12212,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12583,13 +12384,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12767,7 +12568,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12791,8 +12592,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13011,20 +12811,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13103,9 +12889,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13114,9 +12900,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13271,6 +13057,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13280,7 +13070,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13291,7 +13081,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13301,9 +13091,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13339,7 +13130,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13423,7 +13214,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13444,42 +13235,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13530,15 +13322,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13591,10 +13383,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13642,7 +13436,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13666,33 +13460,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13710,7 +13504,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13719,32 +13513,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13754,7 +13543,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13792,11 +13587,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13897,15 +13692,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14016,7 +13811,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14311,31 +14106,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14356,7 +14151,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14413,8 +14209,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14504,113 +14300,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14657,53 +14453,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14725,11 +14521,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14764,11 +14560,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14830,10 +14626,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15168,8 +14961,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15375,14 +15168,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15391,7 +15184,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15443,34 +15236,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15497,15 +15290,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15746,10 +15535,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15811,23 +15596,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15929,7 +15714,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16156,10 +15942,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16201,191 +15983,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Collections"
+msgid "Restrictions"
+msgstr "সংগ্রহ"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16632,7 +16408,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16646,7 +16422,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
diff --git a/po/mb_server.ca.po b/po/mb_server.ca.po
index e101f43d8d7..39bf30595bd 100644
--- a/po/mb_server.ca.po
+++ b/po/mb_server.ca.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:55+0000\n"
"Last-Translator: Anonymous {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7438,7 +7434,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7458,15 +7454,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7476,8 +7463,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7486,21 +7474,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7538,7 +7518,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7577,15 +7557,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7678,7 +7658,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7693,20 +7673,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7877,7 +7847,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7923,7 +7893,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8034,6 +8004,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8078,26 +8049,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8109,13 +8064,6 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8124,22 +8072,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr ""
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8264,7 +8206,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8482,7 +8424,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8507,7 +8449,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8532,7 +8475,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8541,15 +8484,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8572,51 +8515,41 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8636,12 +8569,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8758,37 +8685,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8800,17 +8703,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8834,19 +8740,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8905,29 +8811,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8940,17 +8840,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8958,7 +8858,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -8999,14 +8899,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9031,11 +8923,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9061,25 +8948,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9101,6 +8973,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9113,7 +8986,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9226,7 +9100,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9245,8 +9119,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9288,20 +9162,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9312,11 +9172,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9326,8 +9181,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9343,17 +9198,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9392,28 +9255,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9421,11 +9280,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9442,47 +9303,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10166,7 +9999,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10318,7 +10151,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10485,39 +10318,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10633,11 +10460,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10690,10 +10517,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10706,7 +10529,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10737,27 +10560,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10765,21 +10588,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Llicència"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -10918,7 +10733,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11017,13 +10832,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11157,7 +10966,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11371,7 +11180,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11379,11 +11188,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11395,6 +11199,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11428,16 +11233,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11457,7 +11258,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11531,7 +11332,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11550,7 +11351,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11659,8 +11460,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11866,8 +11667,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11877,10 +11678,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11914,7 +11715,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11923,7 +11724,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12203,7 +12004,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12283,7 +12084,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12410,8 +12211,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12582,13 +12383,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12766,7 +12567,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12790,8 +12591,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13010,20 +12810,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13102,9 +12888,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13113,9 +12899,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13270,6 +13056,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13279,7 +13069,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13290,7 +13080,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13300,9 +13090,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13338,7 +13129,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13422,7 +13213,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13443,42 +13234,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13529,15 +13321,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13590,10 +13382,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13641,7 +13435,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13665,33 +13459,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13709,7 +13503,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13718,32 +13512,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13753,7 +13542,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13791,11 +13586,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13896,15 +13691,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14015,7 +13810,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14310,31 +14105,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14355,7 +14150,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14412,8 +14208,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14503,113 +14299,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14656,53 +14452,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14724,11 +14520,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14763,11 +14559,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14829,10 +14625,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15167,8 +14960,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15374,14 +15167,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15390,7 +15183,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15442,34 +15235,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15496,15 +15289,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15745,10 +15534,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15810,23 +15595,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15928,7 +15713,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16155,10 +15941,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16200,191 +15982,183 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
msgstr ""
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16631,7 +16405,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16645,7 +16419,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16869,3 +16643,6 @@ msgid ""
"ISWCs. Please make sure they are indeed the same works and you wish to "
"continue with the merge."
msgstr ""
+
+#~ msgid "Artist:"
+#~ msgstr "Artista:"
diff --git a/po/mb_server.cs.po b/po/mb_server.cs.po
index 0df54a7f335..3f56262c868 100644
--- a/po/mb_server.cs.po
+++ b/po/mb_server.cs.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:55+0000\n"
"Last-Translator: Anonymous {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7483,7 +7479,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7503,15 +7499,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7521,8 +7508,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7531,21 +7519,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7583,7 +7563,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7622,15 +7602,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7723,7 +7703,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7738,20 +7718,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7924,7 +7894,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7970,7 +7940,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8099,6 +8069,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8149,26 +8120,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8180,13 +8135,6 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8194,23 +8142,17 @@ msgstr ""
#: ../root/components/list/ReleaseList.js:95
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
-#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
-msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
msgstr ""
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8335,7 +8277,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8553,7 +8495,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8582,7 +8524,8 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8607,7 +8550,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8616,15 +8559,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8647,24 +8590,15 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
@@ -8672,28 +8606,27 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8713,12 +8646,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8835,37 +8762,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8877,17 +8780,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8911,19 +8817,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8982,29 +8888,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -9017,17 +8917,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -9035,7 +8935,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9076,14 +8976,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9108,11 +9000,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9138,25 +9025,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9180,6 +9052,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9192,7 +9065,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9305,7 +9179,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9324,8 +9198,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9367,20 +9241,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9391,11 +9251,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9405,8 +9260,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9422,17 +9277,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9471,28 +9334,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9500,11 +9359,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9521,47 +9382,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10267,7 +10100,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10419,7 +10252,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10586,39 +10419,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10736,11 +10563,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10793,10 +10620,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10809,7 +10632,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10840,27 +10663,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10868,21 +10691,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Hodnocení"
@@ -11023,7 +10838,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11122,15 +10937,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11264,7 +11071,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11478,7 +11285,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11486,11 +11293,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11502,6 +11304,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11535,16 +11338,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11564,7 +11363,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11638,7 +11437,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11657,7 +11456,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11768,8 +11567,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11975,8 +11774,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11986,10 +11785,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12023,7 +11822,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12032,7 +11831,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12312,7 +12111,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12392,7 +12191,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12519,8 +12318,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12691,13 +12490,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12875,7 +12674,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12899,8 +12698,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13119,20 +12917,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13211,9 +12995,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13222,9 +13006,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13379,6 +13163,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13388,7 +13176,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13399,7 +13187,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13409,9 +13197,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13447,7 +13236,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13531,7 +13320,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13552,42 +13341,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13638,15 +13428,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13699,10 +13489,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13752,7 +13544,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13776,33 +13568,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13820,7 +13612,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13829,32 +13621,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13864,7 +13651,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13902,11 +13695,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14007,15 +13800,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14128,7 +13921,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14427,31 +14220,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14472,7 +14265,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14529,8 +14323,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14620,113 +14414,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14773,53 +14567,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14841,11 +14635,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14880,11 +14674,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14946,10 +14740,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15284,8 +15075,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15495,14 +15286,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15511,7 +15302,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15563,34 +15354,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15617,15 +15408,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15882,10 +15669,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15947,23 +15730,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -16065,7 +15848,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16292,10 +16076,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16337,191 +16117,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Collections"
+msgid "Restrictions"
+msgstr "Sbírky"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16794,7 +16568,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16808,7 +16582,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
diff --git a/po/mb_server.cy.po b/po/mb_server.cy.po
index 94fa1fe3f4a..e70c1bda28f 100644
--- a/po/mb_server.cy.po
+++ b/po/mb_server.cy.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:55+0000\n"
"Last-Translator: Anonymous {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7483,7 +7479,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7503,15 +7499,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7521,8 +7508,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Trac"
@@ -7531,21 +7519,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7583,7 +7563,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7622,15 +7602,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7723,7 +7703,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7738,20 +7718,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7924,7 +7894,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7970,7 +7940,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8099,6 +8069,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8149,26 +8120,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8180,13 +8135,6 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8195,22 +8143,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr ""
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8335,7 +8277,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8553,7 +8495,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8582,7 +8524,8 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8607,7 +8550,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8616,15 +8559,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8647,24 +8590,15 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
-msgid "Opened:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
+#: ../root/edit/components/EditSidebar.js:48
+msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
@@ -8672,28 +8606,27 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8713,12 +8646,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8835,37 +8762,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8877,17 +8780,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8911,19 +8817,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8982,29 +8888,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -9017,17 +8917,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -9035,7 +8935,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9076,14 +8976,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9108,11 +9000,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9138,25 +9025,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9180,6 +9052,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9192,7 +9065,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9305,7 +9179,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9324,8 +9198,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9367,20 +9241,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Rhif Catalog"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9391,11 +9251,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9405,8 +9260,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9422,17 +9277,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9471,28 +9334,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9500,11 +9359,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9521,47 +9382,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10267,7 +10100,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10419,7 +10252,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10586,39 +10419,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10736,11 +10563,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10793,10 +10620,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10809,7 +10632,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10840,27 +10663,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10868,21 +10691,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Trwydded"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Gradd"
@@ -11023,7 +10838,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11122,15 +10937,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11264,7 +11071,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11478,7 +11285,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11486,11 +11293,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11502,6 +11304,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11535,16 +11338,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11564,7 +11363,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11638,7 +11437,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11657,7 +11456,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11768,8 +11567,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11975,8 +11774,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11986,10 +11785,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12023,7 +11822,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12032,7 +11831,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12312,7 +12111,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12392,7 +12191,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12519,8 +12318,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12691,13 +12490,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12875,7 +12674,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12899,8 +12698,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13119,20 +12917,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13211,9 +12995,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13222,9 +13006,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13379,6 +13163,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Rhif Catalog"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13388,7 +13176,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13399,7 +13187,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13409,11 +13197,12 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Lleoliad"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13447,7 +13236,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13531,7 +13320,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13552,42 +13341,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13638,15 +13428,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13699,10 +13489,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13752,7 +13544,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13776,33 +13568,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13820,7 +13612,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13829,32 +13621,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13864,7 +13651,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13902,11 +13695,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14007,15 +13800,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14128,7 +13921,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14427,31 +14220,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14472,7 +14265,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14529,8 +14323,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14620,113 +14414,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14773,53 +14567,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14841,11 +14635,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14880,11 +14674,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14946,10 +14740,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15284,8 +15075,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15495,14 +15286,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15511,7 +15302,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15563,34 +15354,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15617,15 +15408,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15882,10 +15669,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15947,23 +15730,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -16065,7 +15848,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16292,10 +16076,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16337,191 +16117,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Collections"
+msgid "Restrictions"
+msgstr "Casgliadau"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16794,7 +16568,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16808,7 +16582,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -17033,5 +16807,20 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Artist:"
+#~ msgstr "Artist:"
+
+#~ msgid "Format:"
+#~ msgstr "Fformat:"
+
+#~ msgid "Length:"
+#~ msgstr "Hyd:"
+
+#~ msgid "Merge"
+#~ msgstr "Cyfuno"
+
+#~ msgid "Location"
+#~ msgstr "Lleoliad"
+
#~ msgid "Username:"
#~ msgstr "Enw defnyddiwr"
diff --git a/po/mb_server.da.po b/po/mb_server.da.po
index e6edbe1b8f3..3c8d72f1e3e 100644
--- a/po/mb_server.da.po
+++ b/po/mb_server.da.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:55+0000\n"
"Last-Translator: Anonymous {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7442,7 +7438,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7462,15 +7458,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7480,8 +7467,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Skæring"
@@ -7490,21 +7478,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7542,7 +7522,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7581,15 +7561,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7682,7 +7662,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7697,20 +7677,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7881,7 +7851,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7927,7 +7897,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8038,6 +8008,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8082,26 +8053,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8113,13 +8068,6 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8128,22 +8076,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
-msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
msgstr ""
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8268,7 +8210,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8486,7 +8428,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8511,7 +8453,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8536,7 +8479,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8545,15 +8488,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8576,51 +8519,41 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8640,12 +8573,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8762,37 +8689,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8804,17 +8707,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8838,19 +8744,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8909,29 +8815,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8944,17 +8844,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8962,7 +8862,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9003,14 +8903,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9035,11 +8927,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9065,25 +8952,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9105,6 +8977,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9117,7 +8990,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9230,7 +9104,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9249,8 +9123,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9292,20 +9166,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9316,11 +9176,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9330,8 +9185,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9347,17 +9202,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9396,28 +9259,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9425,11 +9284,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9446,47 +9307,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "Status:"
+msgid "Status"
+msgstr "Status"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "Status"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10170,7 +10003,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10322,7 +10155,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10489,39 +10322,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10637,11 +10464,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10694,10 +10521,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10710,7 +10533,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10741,27 +10564,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10769,21 +10592,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -10922,7 +10737,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11021,13 +10836,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11161,7 +10970,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11375,7 +11184,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11383,11 +11192,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11399,6 +11203,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11432,16 +11237,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11461,7 +11262,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11535,7 +11336,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11554,7 +11355,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11663,8 +11464,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11870,8 +11671,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11881,10 +11682,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11918,7 +11719,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11927,7 +11728,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12207,7 +12008,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12287,7 +12088,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12414,8 +12215,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12586,13 +12387,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12770,7 +12571,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12794,8 +12595,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13014,20 +12814,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13106,9 +12892,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13117,9 +12903,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13274,6 +13060,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13283,7 +13073,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13294,7 +13084,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13304,9 +13094,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13342,7 +13133,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13426,7 +13217,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13447,42 +13238,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13533,15 +13325,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13594,10 +13386,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13645,7 +13439,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13669,33 +13463,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13713,7 +13507,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13722,32 +13516,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13757,7 +13546,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13795,11 +13590,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13900,15 +13695,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14019,7 +13814,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14314,31 +14109,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14359,7 +14154,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14416,8 +14212,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14507,113 +14303,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14660,53 +14456,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14728,11 +14524,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14767,11 +14563,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14833,10 +14629,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15171,8 +14964,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15378,14 +15171,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15394,7 +15187,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15446,34 +15239,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15500,15 +15293,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15749,10 +15538,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15814,23 +15599,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15932,7 +15717,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16159,10 +15945,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16204,191 +15986,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Actions"
+msgid "Restrictions"
+msgstr "Handlinger"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16635,7 +16411,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16649,7 +16425,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16874,5 +16650,12 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Artist:"
+#~ msgstr "Kunstner:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
#~ msgid "Invalid barcode"
#~ msgstr "Ugyldig stregkode"
diff --git a/po/mb_server.de.po b/po/mb_server.de.po
index cf9181fbb3f..590b83c3ac0 100644
--- a/po/mb_server.de.po
+++ b/po/mb_server.de.po
@@ -67,13 +67,15 @@
# yvanz, 2018
# chaban {discid}
is not a valid disc ID."
msgstr "Entschuldigung, {discid}
ist keine gültige Disc-ID."
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
-"Bitte suche nach dem Künstler, für den du eine neue Veröffentlichung "
-"erstellen möchtest:"
#: ../root/cdstub/ImportCDStub.js:100
msgid "Import CD stub"
@@ -7974,8 +7961,8 @@ msgstr ""
"auf {release} von {artist} verbinden willst?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
-msgstr "Vergleich der Titellängen"
+msgid "Track length comparison"
+msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
#: ../root/cdtoc/SetTracklistDurations.js:67
@@ -7994,15 +7981,6 @@ msgstr "Medium-Titellängen"
msgid "CD TOC details"
msgstr "CD-TOC-Details"
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr "Disc-ID:"
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "FreeDB:"
@@ -8012,8 +7990,9 @@ msgid "Track details:"
msgstr "Titeldetails:"
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Titel"
@@ -8022,21 +8001,13 @@ msgid "Start"
msgstr "Start"
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Ende"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr "Zeit"
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -8083,12 +8054,9 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
-"Wenn du den gewünschten Künstler nicht siehst, kannst du trotzdem eine neue "
-"Veröffentlichung hinzufügen. Dabei kannst du diesen Künstler und die "
-"Veröffentlichung gleichzeitig erstellen."
#: ../root/cdtoc/SetTracklistDurations.js:46
#: ../root/cdtoc/SetTracklistDurations.js:47
@@ -8129,8 +8097,8 @@ msgstr "Alle deine Sammlungen ansehen"
msgid "See all of {editor}'s public collections"
msgstr "Alle öffentlichen Sammlungen von {editor} ansehen"
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
@@ -8139,7 +8107,7 @@ msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr "Mitwirkende"
@@ -8232,8 +8200,8 @@ msgstr "Bestätigen"
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "Neue Sammlung erstellen"
+msgid "Add a new collection"
+msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -8247,19 +8215,9 @@ msgstr "Bist du sicher, dass du die Sammlung {collection} löschen möchtest?"
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
-msgstr "Alias"
-
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr "Sortiername"
+msgstr "Alias"
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
@@ -8460,7 +8418,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Bewertungen"
@@ -8506,7 +8464,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8517,17 +8475,17 @@ msgstr ""
#: ../root/components/TagEntitiesList.js:129
msgid "Entities {user} tagged as “{tag}”"
-msgstr ""
+msgstr "Objekte, die {user} als „{tag}“ getaggt hat"
#: ../root/components/TagEntitiesList.js:133
msgid "Entities tagged as “{tag}”"
-msgstr ""
+msgstr "Objekte, die als „{tag}“ getaggt sind"
#: ../root/components/TagEntitiesList.js:144
msgid "{num} entity found"
msgid_plural "{num} entities found"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "{num} Objekt gefunden"
+msgstr[1] "{num} Objekte gefunden"
#: ../root/components/TagEntitiesList.js:158
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:13
@@ -8617,6 +8575,7 @@ msgstr "Abonnements"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr "Abonnenten"
@@ -8669,26 +8628,10 @@ msgid "About to close"
msgstr "Schließt in Kürze"
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr "Sortiername"
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Geschlecht"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "Anfangsgebiet"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "Endgebiet"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8700,13 +8643,6 @@ msgstr "Rolle"
msgid "Code"
msgstr "Code"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "Adresse"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr "Unspezifizierter Typ"
@@ -8715,22 +8651,16 @@ msgstr "Unspezifizierter Typ"
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr "[fehlende Medien]"
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Status"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr "Autoren"
@@ -8865,9 +8795,8 @@ msgid "There was a problem cancelling {edit}."
msgstr "Es gab ein Problem beim Abbrechen von {edit}."
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
-"Nur der Bearbeiter, der die Bearbeitung erstellt hat, kann sie abbrechen."
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
msgid "Error Voting on Edits"
@@ -9096,7 +9025,7 @@ msgid "None"
msgstr "Keine"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr "Abstimmung"
@@ -9121,7 +9050,8 @@ msgid_plural "Found {n} edits"
msgstr[0] "Eine Bearbeitung gefunden"
msgstr[1] "{n} Bearbeitungen gefunden"
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -9146,7 +9076,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -9155,15 +9085,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -9174,8 +9104,8 @@ msgid ""
"writing edit notes!"
msgstr ""
"Bearbeitungsbemerkungen unterstützen {doc_formatting|eine begrenzte Anzahl "
-"von Wiki-Formatierungsoptionen}. Bitte beachte immer die {doc_coc|"
-"Verhaltensregeln}, wenn du Bemerkungen schreibst!"
+"von Wiki-Formatierungsoptionen}. Bitte beachte immer den {doc_coc|"
+"Verhaltenskodex}, wenn du Bemerkungen schreibst!"
#: ../root/edit/components/EditNotes.js:55
msgid "No edit notes have been added."
@@ -9191,51 +9121,41 @@ msgstr ""
"Du kannst derzeit keine Bemerkungen zu dieser Bearbeitung abgegeben. ({url|"
"Details})"
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "Status:"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr "Erstellt:"
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "Geschlossen:"
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr "Um schneller zu schließen"
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] "1 Stimme"
msgstr[1] "{n} Einstimmige Stimmen"
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr "Falls keine Stimmen abgegeben wurden"
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr "Rohe Bearbeitungsdaten für diese Bearbeitung"
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr "Weitere Informationen:"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr "Abstimmungs-FAQ"
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr "Bearbeitungs-FAQ"
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Bemerkung hinzufügen"
@@ -9255,12 +9175,6 @@ msgstr "Dieser Benutzer ist automatisiert."
msgid "bot"
msgstr "Bot"
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "Veröffentlichungen:"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -9379,39 +9293,15 @@ msgstr "Diese Anmerkung ist leer."
msgid "Summary"
msgstr "Zusammenfassung"
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr "Anfangsdatum"
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "Enddatum"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
-msgstr "Beendet"
+msgstr ""
#: ../root/edit/details/AddCoverArt.js:39
#: ../root/edit/details/RemoveCoverArt.js:39
@@ -9421,18 +9311,21 @@ msgstr "(keine)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Dateiname:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr "Dateiname"
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "Kommentar:"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
-msgstr "Setliste"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
msgid "Client:"
@@ -9455,20 +9348,20 @@ msgstr "ISRC {isrc} an {recording}"
msgid "ISWC {iswc} to {work}"
msgstr "ISWC {iswc} an {work}"
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
-msgstr "Label-Code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
-msgstr "Künstlernennungen:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr "Künstlernennungen"
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
-msgstr "Beziehung:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddRelationship.js:33
msgid "Link order:"
@@ -9528,30 +9421,24 @@ msgstr "(keine)"
msgid "(new release group)"
msgstr "(neue Veröffentlichungsgruppe)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "Status:"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr "Verpackung"
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr "Veröffentlichungsereignisse"
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "Katalognummer:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "Katalognummer"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9563,17 +9450,17 @@ msgstr "alle Aliasse anzeigen"
msgid "Primary for locale"
msgstr "Primär für Sprachumgebung"
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
-msgstr "Reihenfolgentyp"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr "Liedtextsprachen"
@@ -9581,7 +9468,7 @@ msgstr "Liedtextsprachen"
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "Datenqualität"
@@ -9622,14 +9509,6 @@ msgstr "Künstlernennung"
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr "IPI-Codes"
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr "ISNI-Codes"
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9656,11 +9535,6 @@ msgstr "Alte Aufnahme"
msgid "New recording"
msgstr "Neue Aufnahme"
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr "Künstlernennungen"
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "Alter Künstler"
@@ -9689,25 +9563,10 @@ msgstr ""
msgid "Deprecated:"
msgstr "Veraltet:"
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr "Beachte"
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr "Diese Bearbeitung veränderte auch die Titelkünstler."
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "Katalognummer"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9731,6 +9590,7 @@ msgid "Search for the target URL."
msgstr "Suche nach der Ziel-URL."
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr "Werktyp"
@@ -9743,8 +9603,9 @@ msgstr "Werktyp"
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "Vereinen:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -9858,8 +9719,8 @@ msgid "New positions:"
msgstr "Neue Positionen:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
-msgstr "Medien:"
+msgid "Mediums"
+msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
@@ -9879,11 +9740,11 @@ msgstr "Medium {new} (neues Medium)"
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
-"Medium {new} (verschoben von Position {old})"
+"Medium {new} (verschoben von Position {old})"
#: ../root/edit/details/ReorderRelationships.js:21
msgid "Old Order"
@@ -9926,20 +9787,6 @@ msgstr ""
msgid "CD TOC:"
msgstr "CD-TOC:"
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "Beziehungen:"
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr "Veröffentlichungsereignisse:"
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Katalognummer"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9950,11 +9797,6 @@ msgstr "Titelnummer"
msgid "Artist name:"
msgstr "Künstlername:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr "Veröffentlichungsgruppe:"
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "Alte Beziehungen:"
@@ -9964,9 +9806,9 @@ msgid "New relationships:"
msgstr "Neue Beziehungen:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
-msgstr "Alt:"
+msgctxt "release type and status"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
msgid "Type: {type}, status: {status}"
@@ -9981,16 +9823,24 @@ msgid "New Status:"
msgstr "Neuer Status:"
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "Hinzugefügt"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
-msgstr "Entfernt"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
-msgstr "Bearbeitet"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
@@ -10033,41 +9883,39 @@ msgstr ""
msgid "Change track artists:"
msgstr "Titelkünstler ändern:"
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "Alias:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr "Titel:"
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Kandidat:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Kandidat"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
-msgstr "Vorschlagender:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr "Vorschlager"
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
-msgstr "1. Befürworter:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
-msgstr "2. Befürworter:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:59
msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "Stimmen dafür:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "Stimmen dafür"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "Stimmen dagegen:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "Stimmen dagegen"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -10083,47 +9931,19 @@ msgid ""
msgstr "Das Abstimmungsergebnis wird erst gezeigt, wenn die Wahl beendet ist."
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "Status:"
+msgid "Status"
+msgstr "Status"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "Details ansehen"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Kandidat"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "Status"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr "Anfangsdatum"
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr "Vorschlager"
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr "Befürworter 1"
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr "Befürworter 2"
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "Stimmen dafür"
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "Stimmen dagegen"
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr "Stimmen"
@@ -10854,7 +10674,7 @@ msgstr "Gesellschaftsvertrag"
#: ../root/layout/components/BottomMenu.js:141
msgid "Code of Conduct"
-msgstr "Verhaltensregeln"
+msgstr "Verhaltenskodex"
#: ../root/layout/components/BottomMenu.js:144
msgid "Privacy Policy"
@@ -10876,7 +10696,7 @@ msgstr "Autobearbeiter-Wahlen"
msgid "Privileged User Accounts"
msgstr "Privilegierte Benutzerkonten"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Statistiken"
@@ -11028,7 +10848,7 @@ msgstr "Dokumentations-Index"
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "Beziehungstypen"
@@ -11195,39 +11015,33 @@ msgstr "Gebietsinformationen"
msgid "Artist information"
msgstr "Künstlerinformationen"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "Aufnahme hinzufügen"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "In separate Künstler aufteilen"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "Hinzugefügt:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr "Zuletzt geändert:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
-msgstr "Anzahl Aufrufe:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
-msgstr "Anzahl Änderungen:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr "Als MusicBrainz-Veröffentlichung importieren"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "Disc-ID zu bestehender Veröffentlichung hinzufügen"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr "Durchsuche die Datenbank nach dieser CD"
@@ -11343,11 +11157,11 @@ msgstr "Zum Bearbeiten einloggen"
msgid "Event information"
msgstr "Veranstaltungsinformationen"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr "Anfangsdatum:"
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr "Enddatum:"
@@ -11400,13 +11214,9 @@ msgctxt "place"
msgid "Closed"
msgstr "Geschlossen"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "Koordinaten:"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
-msgstr ""
+msgstr "ListenBrainz"
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:64
msgid "Play on ListenBrainz"
@@ -11416,7 +11226,7 @@ msgstr "Spiele auf ListenBrainz"
msgid "Recording information"
msgstr "Aufnahmeinformationen"
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -11449,27 +11259,27 @@ msgstr ""
msgid "No cover art available."
msgstr "Kein Cover-Art verfügbar."
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "Zusätzliche Details"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr "Veröffentlichungsgruppenbewertung"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr "Rezensionen der Veröffentlichungsgruppe"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr "Externe Links der Veröffentlichungsgruppe"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr "Beziehungen bearbeiten"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr "Datenqualität ändern"
@@ -11477,21 +11287,13 @@ msgstr "Datenqualität ändern"
msgid "Series information"
msgstr "Serieninformationen"
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "IPI-Code:"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "ISNI-Code:"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Lizenz"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Bewertung"
@@ -11641,7 +11443,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr "Tut uns leid, aber die Seite, die du suchst, existiert nicht."
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Fehlermeldung: "
@@ -11750,13 +11552,7 @@ msgstr "Oberflächensprache:"
msgid "Request data:"
msgstr "Anfragedaten:"
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] "Fehler:"
-msgstr[1] "Fehler:"
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Zu diesem Fehler gibt es keine Details)"
@@ -11914,7 +11710,7 @@ msgstr "Ungültige MBID"
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -12144,21 +11940,14 @@ msgstr "Beziehungsattribut in Benutzen"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
-"Der Beziehungsattribut-Typ „{type}“ kann nicht gelöscht werden, da er noch "
-"in Gebrauch ist."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:77
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "ID:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -12170,6 +11959,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -12203,17 +11993,13 @@ msgstr "keine"
msgid "Add child"
msgstr "Kind hinzufügen"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr "Mögliche Werte:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "Keine Beziehungsattribute gefunden."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
-msgstr "Neues Beziehungsattribut erstellen"
+msgid "Add a new relationship attribute"
+msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
@@ -12234,10 +12020,8 @@ msgstr "Beziehungstyp in Benutzung"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
-"Der Beziehungstyp „{type}“ kann nicht gelöscht werden, da er noch in "
-"Gebrauch ist."
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
msgid "This relationship type doesn't allow any attributes."
@@ -12313,8 +12097,8 @@ msgid "{type0}-{type1} relationship types"
msgstr "{type0}-{type1}-Beziehungstypen"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
-msgstr "Eine neue {type0}-{type1}-Beziehung erstellen"
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
msgid "Expand all descriptions"
@@ -12332,7 +12116,7 @@ msgstr "Es wurden keine {type0}-{type1}-Beziehungstypen gefunden."
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -12447,8 +12231,8 @@ msgstr ""
"entfernen möchtest?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "Veröffentlichungsgruppe von {artist}"
@@ -12682,8 +12466,8 @@ msgstr "Fehlerhafte Amazon-URLs"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -12693,10 +12477,10 @@ msgstr "Disc-IDs mit zweifelhafter Dauer"
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12734,7 +12518,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12750,7 +12534,7 @@ msgstr ""
"übereinstimmen), entferne ihn oder, noch besser, versuche, die tatsächliche "
"Katalognummer zu finden."
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr "Veröffentlichungen mit Katalognummern, die wie Label-Codes aussehen"
@@ -13072,7 +12856,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -13152,7 +12936,7 @@ msgstr "Zeige nur Ergebnisse, die zu meinen abonnierten Objekten gehören."
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -13291,12 +13075,9 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
-"Dieser Report listet alle Veröffentlichungen auf, bei denen die Medien nicht "
-"durchgehend nummeriert sind (z. B. wenn es ein „Medium 1“ und „Medium 3“ "
-"gibt, aber kein „Medium 2“)"
#: ../root/report/MediumsWithSequenceIssues.js:30
msgid "Releases with medium number issues"
@@ -13506,15 +13287,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr "Aufnahmen mit „früheste Veröffentlichung“-Beziehungen"
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-"Dieser Report zeigt Aufnahmen mit Beziehungen, die ein zukünftiges Datum "
-"verwenden. Das sind vermutlich Tippfehler (z. B. 2109 statt 2019)."
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr "Aufnahmen mit Beziehungen, die ein zukünftiges Datum haben"
@@ -13692,6 +13471,10 @@ msgid ""
"since the 16th of May 2022, so these releases have no front cover anymore "
"until one is added to the Cover Art Archive."
msgstr ""
+"Dieser Bericht zeigt Veröffentlichungen, die Cover‐Art auf Amazon, aber kein "
+"Front‐Cover im Cover Art Archive haben. Die Nutzung von Amazon‐Covern wurde "
+"am 16. Mai 2022 eingestellt, daher haben diese Veröffentlichungen kein Front‐"
+"Cover mehr bis eines zum Cover Art Archive hinzugefügt wird."
#: ../root/report/ReleasesWithAmazonCoverArt.js:33
#: ../root/report/ReportsIndex.js:352
@@ -13716,7 +13499,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -13740,8 +13523,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13968,26 +13750,12 @@ msgstr ""
#: ../root/report/ReportsIndex.js:589
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:37
msgid "URLs"
-msgstr "URLs"
-
-#: ../root/report/ReportsIndex.js:601
-#: ../root/report/WikidataLinksWithMultipleEntities.js:48
-msgid "Wikidata URLs linked to multiple entities"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRCs"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr "ISWCs"
+msgstr "URLs"
+
+#: ../root/report/ReportsIndex.js:601
+#: ../root/report/WikidataLinksWithMultipleEntities.js:48
+msgid "Wikidata URLs linked to multiple entities"
+msgstr ""
#: ../root/report/SeparateDiscs.js:24
msgid ""
@@ -14086,15 +13854,10 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
-"Dieser Report hat das Ziel, Veröffentlichungen zu identifizieren, bei denen "
-"die Titelnamen ihre eigenen Titelnummern enthalten, z. B. „1) Irgendein "
-"Name“ (statt einfach nur „Irgendein Name“). Beachte, dass das manchmal "
-"gerechtfertigt und richtig ist; nimm nicht automatisch an, dass es ein "
-"Fehler ist! Wenn du es als Fehler bestätigen kannst, korrigiere es bitte."
#: ../root/report/TracksNamedWithSequence.js:33
msgid "Releases where track names start with their track number"
@@ -14103,14 +13866,10 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
-"Dieser Report listet alle Veröffentlichungen auf, bei denen die Titel nicht "
-"durchgehend nummieriert sind (z. B. wenn es keinen „Titel 2“ gibt), "
-"oder die doppelte Titelnummern haben (z. B. wenn es zwei „Titel 4“ "
-"gibt)."
#: ../root/report/TracksWithSequenceIssues.js:31
msgid "Releases with track number issues"
@@ -14266,6 +14025,10 @@ msgstr ""
msgid "Last edited"
msgstr "Zuletzt bearbeitet"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Katalognummer"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr "Tag-Nachschlagen"
@@ -14275,7 +14038,7 @@ msgid "Other lookups"
msgstr "Andere Dinge nachschlagen"
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -14286,7 +14049,7 @@ msgstr "Anfang"
msgid "Alternatively, you may {uri|add a new area}."
msgstr "Stattdessen kannst du auch {uri|ein neues Gebiet hinzufügen}."
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "Stattdessen kannst du auch {uri|einen neuen Künstler hinzufügen}."
@@ -14296,11 +14059,12 @@ msgid "Documentation Search"
msgstr "Dokumentationssuche"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Ort"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -14336,7 +14100,7 @@ msgstr ""
"Stattdessen kannst du auch {uri|eine neue Veröffentlichungsgruppe "
"hinzufügen}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
"Stattdessen kannst du auch {uri|eine neue Veröffentlichung hinzufügen}."
@@ -14428,7 +14192,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr "Entschuldigung, deine Anfrage war zu groß."
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr "Diese Serie ist derzeit leer."
@@ -14451,7 +14215,7 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
@@ -14459,17 +14223,18 @@ msgstr ""
"Dies ist ein Entwicklungsserver. Deine E-Mail-Adresse ist nicht privat oder "
"gesichert. Gehe vorsichtig vor!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
"Wenn du deine E-Mail-Adresse änderst, musst du sie nochmals bestätigen."
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
-msgstr "Ort:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
@@ -14477,11 +14242,11 @@ msgstr ""
"Du kannst die gewünschte Genauigkeit hier festlegen: dein Land, deine Region "
"oder deine Stadt. Sei so spezifisch, wie du willst!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "Geburtsdatum:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
@@ -14489,11 +14254,11 @@ msgstr ""
"Wir verwenden dein Geburtsdatum, um dein Alter in Jahren auf deinem Profil "
"anzuzeigen."
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "Beherrschte Sprachen:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Eine Sprache hinzufügen"
@@ -14551,16 +14316,16 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr "Schicke mir Mails mit Bearbeitungen zu meinen Abonnements:"
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
-msgstr "Von mir erstellte Künstler automatisch abonnieren"
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
-msgstr "Von mir erstelle Labels automatisch abonnieren"
+msgid "Automatically subscribe me to labels I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
-msgstr "Von mir erstellte Serien automatisch abonnieren"
+msgid "Automatically subscribe me to series I add."
+msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
msgid "Your username will be publicly visible."
@@ -14616,12 +14381,14 @@ msgid "This alias is no longer current."
msgstr "Der Alias ist nicht mehr aktuell."
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
-msgstr "Alt"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "Neu"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -14667,7 +14434,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -14695,33 +14462,33 @@ msgid "Show more artist credits"
msgstr "Zeige mehr Künstlernennungen"
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "Zeige mehr …"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "Sammlungsdetails"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "Andere Benutzer dürfen diese Sammlung sehen"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "Sammlung erstellen"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr "Änderungen speichern"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr "Mitwirkenden hinzufügen"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr "Mitwirkenden entfernen"
@@ -14741,7 +14508,7 @@ msgid "Try with indexed search instead."
msgstr "Versuch’s nochmal mit der indexierten Suche."
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr "Suchbegriff eingeben oder MBID einfügen"
@@ -14750,32 +14517,27 @@ msgstr "Suchbegriff eingeben oder MBID einfügen"
msgid "Clear recent items"
msgstr "Letzte Elemente löschen"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr "Nichts gefunden? Versuch’s nochmal mit der direkten Suche."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr "Zu langsam? Verwende wieder die indexierte Suche."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr "erscheint auf"
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr "alleinstehende Aufnahme"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr "{release_group_type} von {artist}"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr "Interpreten"
@@ -14785,8 +14547,14 @@ msgid "Vote on all edits:"
msgstr "Über alle Bearbeitungen abstimmen:"
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
-msgstr "Bemerkung entfernen"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
@@ -14817,7 +14585,7 @@ msgid ""
"This is an {history|old revision} of this annotation, as edited by {user} on "
"{date}. {current|View current revision}."
msgstr ""
-"Dies ist eine {history|alte Revision} dieser Anmerkungen, bearbeitet von "
+"Dies ist eine {history|alte Revision} dieser Anmerkung, bearbeitet von "
"{user} am {date}. {current|Aktuelle Revision anzeigen.}"
#: ../root/static/scripts/common/components/Annotation.js:114
@@ -14825,11 +14593,11 @@ msgid "Annotation last modified on {date}."
msgstr "Anmerkung zuletzt geändert am {date}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14930,15 +14698,15 @@ msgstr "Nach einer Serie suchen"
msgid "Search for a work"
msgstr "Nach einem Werk suchen"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr "von {artist}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr "{first_list_item} … {last_list_item}"
@@ -15056,8 +14824,8 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
-msgstr "Künstlernennung:"
+msgid "Artist credit"
+msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
msgid "Setlist contains"
@@ -15357,31 +15125,31 @@ msgctxt "plural"
msgid "Series"
msgstr "Serien"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr "am {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr "in {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
-msgstr "vom {begin_date} bis {end_date}"
+msgstr "von {begin_date} bis {end_date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr "vom {date} bis ????"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr "vom {date} bis heute"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr "bis {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr "beendet"
@@ -15402,8 +15170,9 @@ msgid "Began:"
msgstr "Begann:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "Beendet:"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -15468,8 +15237,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -15584,114 +15353,114 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr "Bitte verlinke auf Twitter-Profile, nicht auf Tweets."
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr "Diese Website erlaubt keine direkten Links zu ihren Bildern."
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
"Bei Veröffentlichungen sind nur Links zu Videos und Wiedergabelisten erlaubt."
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -15738,7 +15507,7 @@ msgstr "Eine neue Serie hinzufügen"
msgid "Add a new work"
msgstr "Ein neues Werk hinzufügen"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
@@ -15746,48 +15515,48 @@ msgstr ""
"Benutze die folgenden Felder, um Zusammenarbeiten einzugeben. Weitere "
"Informationen findest du in der Dokumentation zu {ac|Künstlernennungen}."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr "[fehlender Titelname]"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr "Du hast noch keinen Titelnamen eingetragen."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
-msgstr "Dieser Titel wurde noch nicht erstellt."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
+msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr "Künstler in MusicBrainz:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr "Künstler wie hier genannt:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr "Verknüpfungsphrase:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr "Künstlernennung hinzufügen"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
"Alle Künstler auf dieser Veröffentlichung ändern, die auf „{name}“ passen"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr "Nennungen kopieren"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr "Nennungen einfügen"
@@ -15815,11 +15584,11 @@ msgstr ""
"Anwendung zu bringen."
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -15855,11 +15624,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -15940,10 +15709,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr "Veröffentlichungsereignisse:"
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -16297,12 +16063,9 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
-"Warnung: Diese Beziehung hat ausstehende Bearbeitungen. {show|Klicke hier}, "
-"um diese Bearbeitungen anzusehen und sicherzustellen, dass sie nicht mit "
-"deinen eigenen in Konflikt stehen."
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
msgid "This will add a relationship to all checked recordings."
@@ -16521,20 +16284,15 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
-"Dies erstellt ein neues Werk für jede angewählte Aufnahmen, die nicht schon "
-"ein Werk hat. Die Werke werden nach ihren Aufnahmen benannt."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
-"Benutze diese Option nur, wenn du vorher versucht hast, nach dem/den "
-"Werk(en) zu suchen, die du erstellen möchtest, und dir sicher bist, dass sie "
-"nicht bereits in MusicBrainz eingetragen sind."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:94
@@ -16542,8 +16300,8 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
-msgstr "Mehrere Werke auf einmal erstellen"
+msgid "Batch-add new works"
+msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
msgid "Edit Work"
@@ -16594,36 +16352,36 @@ msgstr "Beziehung zu mehreren Werken auf einmal hinzufügen"
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr "Titelbeziehungen"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr "Verbundene Werke"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
"Wir haben keine Informationen über die Medien und die Titelliste dieser "
"Veröffentlichung."
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "Veröffentlichungsbeziehungen"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr "Veröffentlichungsgruppenbeziehungen"
@@ -16650,107 +16408,103 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr "Werktyp:"
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr "Sprache hinzufügen"
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr "Sprache entfernen"
#: ../root/tag/EntityList.js:26
msgid "Areas tagged as “{tag}”"
-msgstr ""
+msgstr "Gebiete, die als „{tag}“ getaggt sind"
#: ../root/tag/EntityList.js:27
msgid "Artists tagged as “{tag}”"
-msgstr ""
+msgstr "Künstler, die als „{tag}“ getaggt sind"
#: ../root/tag/EntityList.js:28
msgid "Events tagged as “{tag}”"
-msgstr ""
+msgstr "Veranstaltungen, die als „{tag}“ getaggt sind"
#: ../root/tag/EntityList.js:29
msgid "Instruments tagged as “{tag}”"
-msgstr ""
+msgstr "Instrumente, die als „{tag}“ getaggt sind"
#: ../root/tag/EntityList.js:30
msgid "Labels tagged as “{tag}”"
-msgstr ""
+msgstr "Label, die als „{tag}“ getaggt sind"
#: ../root/tag/EntityList.js:31
msgid "Places tagged as “{tag}”"
-msgstr ""
+msgstr "Örtlichkeiten, die als „{tag}“ getaggt sind"
#: ../root/tag/EntityList.js:32
msgid "Recordings tagged as “{tag}”"
-msgstr ""
+msgstr "Aufnahmen, die als „{tag}“ getaggt sind"
#: ../root/tag/EntityList.js:33
msgid "Releases tagged as “{tag}”"
-msgstr ""
+msgstr "Veröffentlichungen, die als „{tag}“ getaggt sind"
#: ../root/tag/EntityList.js:34
msgid "Release groups tagged as “{tag}”"
-msgstr ""
+msgstr "Veröffentlichungsgruppen, die als „{tag}“ getaggt sind"
#: ../root/tag/EntityList.js:35
msgctxt "plural series"
msgid "Series tagged as “{tag}”"
-msgstr ""
+msgstr "Serien, die als „{tag}“ getaggt sind"
#: ../root/tag/EntityList.js:36
msgid "Works tagged as “{tag}”"
-msgstr ""
+msgstr "Werke, die als „{tag}“ getaggt sind"
#: ../root/tag/EntityList.js:40
msgid "Areas {user} tagged as “{tag}”"
-msgstr ""
+msgstr "Gebiete, die {user} als „{tag}“ getaggt hat"
#: ../root/tag/EntityList.js:41
msgid "Artists {user} tagged as “{tag}”"
-msgstr ""
+msgstr "Künstler, die {user} als „{tag}“ getaggt hat"
#: ../root/tag/EntityList.js:42
msgid "Events {user} tagged as “{tag}”"
-msgstr ""
+msgstr "Veranstaltungen, die {user} als „{tag}“ getaggt hat"
#: ../root/tag/EntityList.js:43
msgid "Instruments {user} tagged as “{tag}”"
-msgstr ""
+msgstr "Instrumente, die {user} als „{tag}“ getaggt hat"
#: ../root/tag/EntityList.js:44
msgid "Labels {user} tagged as “{tag}”"
-msgstr ""
+msgstr "Labels, die {user} als „{tag}“ getaggt hat"
#: ../root/tag/EntityList.js:45
msgid "Places {user} tagged as “{tag}”"
-msgstr ""
+msgstr "Örtlichkeiten, die {user} als „{tag}“ getaggt hat"
#: ../root/tag/EntityList.js:46
msgid "Recordings {user} tagged as “{tag}”"
-msgstr ""
+msgstr "Aufnahmen, die {user} als „{tag}“ getaggt hat"
#: ../root/tag/EntityList.js:47
msgid "Releases {user} tagged as “{tag}”"
-msgstr ""
+msgstr "Veröffentlichungen, die {user} als „{tag}“ getaggt hat"
#: ../root/tag/EntityList.js:48
msgid "Release groups {user} tagged as “{tag}”"
-msgstr ""
+msgstr "Veröffentlichungsgruppen, die {user} als „{tag}“ getaggt hat"
#: ../root/tag/EntityList.js:49
msgctxt "plural series"
msgid "Series {user} tagged as “{tag}”"
-msgstr ""
+msgstr "Serien, die {user} als „{tag}“ getaggt hat"
#: ../root/tag/EntityList.js:50
msgid "Works {user} tagged as “{tag}”"
-msgstr ""
+msgstr "Werke, die {user} als „{tag}“ getaggt hat"
#: ../root/tag/EntityList.js:54
msgid "Areas where {user} downvoted “{tag}”"
@@ -16901,10 +16655,6 @@ msgstr ""
msgid "Duration"
msgstr "Dauer"
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr "Dateiname"
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "Tag-Nachschlagen"
@@ -16973,23 +16723,23 @@ msgstr "URL-Informationen"
msgid "URL Details"
msgstr "URL-Details"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr "Betreff:"
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr "Nachricht"
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr "Meine E-Mail-Adresse offen anzeigen"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr "Eine Kopie an meine eigene E-Mail-Adresse senden"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "Senden"
@@ -17103,11 +16853,9 @@ msgstr "Bannernachrichtenbearbeiter"
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
-"Bearbeiter von Bannernachrichten sind Benutzer, die eine Nachricht festlegen "
-"können, die auf allen Seiten als Schlagzeile sichtbar wird, etwa um andere "
-"Benutzer vor bevorstehenden Wartungsarbeiten zu warnen."
#: ../root/user/PrivilegedUsers.js:114
msgid "The following {count} users are banner message editors:"
@@ -17150,7 +16898,7 @@ msgstr ""
#: ../root/user/ReportUser.js:101
msgid "Please review our {uri|Code of Conduct} before sending a report."
msgstr ""
-"Bitte lies unseren {uri|Code of Conduct}, bevor du eine Meldung machst."
+"Bitte lies unseren {uri|Verhaltenskodex}, bevor du eine Meldung machst."
#: ../root/user/ReportUser.js:109
msgid ""
@@ -17339,10 +17087,6 @@ msgstr ""
msgid "General Information"
msgstr "Allgemeine Informationen"
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "E-Mail-Adresse:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(versteckt)"
@@ -17384,194 +17128,188 @@ msgstr "Als Autobearbeiter nominieren"
msgid "Age:"
msgstr "Alter:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "Mitglied seit:"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "Letzter Login:"
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "Beschreibung"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr "Hat sich noch nie angemeldet"
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr "Startseite:"
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr "Abonnenten:"
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr "{count} ({url|Liste ansehen})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr "nicht mehr abonnieren"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr "abonnieren"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "Sprachen:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr "{count} ({view_url|ansehen})"
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Bearbeitungen"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Insgesamt"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Angenommen"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr "Autobearbeitungen"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr "Insgesamt angewandt"
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr "Abgelehnt"
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr "Fehlgeschlagen"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr "Letzte 24 Stunden"
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
"Diese Tabelle zeigt eine Zusammenfassung der Stimmabgaben dieses Bearbeiters."
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr "Stimmen ({view_url|ansehen})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr "In den letzten 28 Tagen"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr "Insgesamt"
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
"Diese Tabelle zeigt eine Zusammenfassung der hinzugefügten Objekte dieses "
"Bearbeiters."
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr "Hinzugefügte Objekte"
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr "Fehlverhalten dieses Benutzers melden"
@@ -17824,13 +17562,9 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
-"Diese Bearbeitung ist fehlgeschlagen, weil die davon zu modifizierenden "
-"Daten zwischenzeitlich schon geändert wurden. Das kann passieren, wenn die "
-"gleiche Bearbeitung doppelt eingereicht wurde; eine davon wird durchgeführt, "
-"aber die andere wird fehlschlagen."
#: ../root/utility/edit.js:86
msgid ""
@@ -17844,7 +17578,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr "Diese Bearbeitung wurde abgebrochen."
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr "Abonniert"
@@ -18076,6 +17810,522 @@ msgstr ""
"unterschiedliche ISWCs. Bitte stelle sicher, dass es sich tatsächlich um die "
"gleichen Werke handelt und dass du die Vereinigung durchführen willst."
+#~ msgid "Address:"
+#~ msgstr "Adresse:"
+
+#~ msgid "Annotation:"
+#~ msgstr "Anmerkung:"
+
+#~ msgid "Area:"
+#~ msgstr "Gebiet:"
+
+#~ msgid "Artist:"
+#~ msgstr "Künstler:"
+
+#~ msgid "Attributes:"
+#~ msgstr "Eigenschaften:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Strichcode:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "Anfangsgebiet:"
+
+#~ msgid "Begin date:"
+#~ msgstr "Anfangsdatum:"
+
+#~ msgid "Catalog#:"
+#~ msgstr "Katalognr.:"
+
+#~ msgid "Child order:"
+#~ msgstr "Unterelementreihenfolge:"
+
+#~ msgid "Country:"
+#~ msgstr "Land:"
+
+#~ msgid "Created"
+#~ msgstr "Erstellt"
+
+#~ msgid "Date:"
+#~ msgstr "Datum:"
+
+#~ msgid "Delete"
+#~ msgstr "Löschen"
+
+#~ msgid "Description:"
+#~ msgstr "Beschreibung:"
+
+#~ msgid "Documentation:"
+#~ msgstr "Dokumentation:"
+
+#~ msgid "End Area:"
+#~ msgstr "Endgebiet:"
+
+#~ msgid "End date:"
+#~ msgstr "Enddatum:"
+
+#~ msgid "Format:"
+#~ msgstr "Format:"
+
+#~ msgid "Gender:"
+#~ msgstr "Geschlecht:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "IPI-Codes:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "ISNI-Codes:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRCs:"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWCs:"
+
+#~ msgid ""
+#~ "If you don’t select an existing release group, a new one will be created "
+#~ "with the types selected below."
+#~ msgstr ""
+#~ "Wenn du keine bestehende Veröffentlichungsgruppe auswählst, wird eine "
+#~ "neue mit den unten ausgewählten Typen erstellt."
+
+#~ msgid "Label code:"
+#~ msgstr "Label-Code:"
+
+#~ msgid "Label:"
+#~ msgstr "Label:"
+
+#~ msgid "Language:"
+#~ msgstr "Sprache:"
+
+#~ msgid "Length:"
+#~ msgstr "Länge:"
+
+#~ msgid "Merge"
+#~ msgstr "Vereinen"
+
+#~ msgid "Name:"
+#~ msgstr "Name:"
+
+#~ msgid "Note:"
+#~ msgstr "Beachte:"
+
+#~ msgid ""
+#~ "Note: only searches edits that: add or edit relationships, created after "
+#~ "2011-05-16; or which remove relationships, created after 2013-07-08; or "
+#~ "which reorder relationships."
+#~ msgstr ""
+#~ "Beachte: Durchsucht nur Bearbeitungen, die a) Beziehungen hinzufügen oder "
+#~ "verändern und nach dem 16. 5. 2011 erstellt wurden, oder b) Beziehungen "
+#~ "entfernen und nach dem 8. 7. 2013 erstellt wurden, oder c) Beziehungen "
+#~ "neu anordnen."
+
+#~ msgid "Ordering Type:"
+#~ msgstr "Reihenfolgentyp:"
+
+#~ msgid "Packaging:"
+#~ msgstr "Verpackung:"
+
+#~ msgid "Parent:"
+#~ msgstr "Elternelement:"
+
+#~ msgid "Position:"
+#~ msgstr "Position:"
+
+#~ msgid "Release Group:"
+#~ msgstr "Veröffentlichungsgruppe:"
+
+#~ msgid "Release:"
+#~ msgstr "Veröffentlichung:"
+
+#~ msgid "Script:"
+#~ msgstr "Schrift:"
+
+#~ msgid "Search:"
+#~ msgstr "Suche:"
+
+#~ msgid "Set track durations"
+#~ msgstr "Titellängen setzen"
+
+#~ msgid "Setlist:"
+#~ msgstr "Setliste:"
+
+#~ msgid "Sort name:"
+#~ msgstr "Sortiername:"
+
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "This entity will be created by this edit."
+#~ msgstr "Dieses Objekt wird von dieser Bearbeitung erstellt."
+
+#~ msgid "Time:"
+#~ msgstr "Zeit:"
+
+#~ msgid "Title:"
+#~ msgstr "Titel:"
+
+#~ msgid ""
+#~ "To create a new tracklist, use an existing medium or import a disc from a "
+#~ "CD stub, select the appropriate tab."
+#~ msgstr ""
+#~ "Um eine neue Titelliste zu erstellen, ein existierendes Medium zu "
+#~ "verwenden oder eine CD von einem CD-Stub zu importieren, wähle die "
+#~ "entsprechende Registerkarte."
+
+#~ msgid "Tracks:"
+#~ msgstr "Titel:"
+
+#~ msgid "URL:"
+#~ msgstr "URL:"
+
+#~ msgid "Warning:"
+#~ msgstr "Achtung:"
+
+#~ msgid "appears on:"
+#~ msgstr "erscheint auf:"
+
+#~ msgid "Cancelled"
+#~ msgstr "Abgebrochen"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Gib eine gültige URL an, z. B. „http://google.com/“"
+
+#~ msgid "Bio:"
+#~ msgstr "Über mich:"
+
+#~ msgid "Create"
+#~ msgstr "Erstellen"
+
+#~ msgid "Preview:"
+#~ msgstr "Vorschau:"
+
+#~ msgid "Preview"
+#~ msgstr "Vorschau"
+
+#~ msgid "Please search for the artist you wish to create a new release for:"
+#~ msgstr ""
+#~ "Bitte suche nach dem Künstler, für den du eine neue Veröffentlichung "
+#~ "erstellen möchtest:"
+
+#~ msgid "Track duration comparison"
+#~ msgstr "Vergleich der Titellängen"
+
+#~ msgid "Disc ID:"
+#~ msgstr "Disc-ID:"
+
+#~ msgid ""
+#~ "If you don't see the artist you are looking for, you can still add a new "
+#~ "release. This will allow you to create this artist and a release at the "
+#~ "same time"
+#~ msgstr ""
+#~ "Wenn du den gewünschten Künstler nicht siehst, kannst du trotzdem eine "
+#~ "neue Veröffentlichung hinzufügen. Dabei kannst du diesen Künstler und die "
+#~ "Veröffentlichung gleichzeitig erstellen."
+
+#~ msgid "Create a new collection"
+#~ msgstr "Neue Sammlung erstellen"
+
+#~ msgid "Status"
+#~ msgstr "Status"
+
+#~ msgid "Only the editor who created an edit can cancel it."
+#~ msgstr ""
+#~ "Nur der Bearbeiter, der die Bearbeitung erstellt hat, kann sie abbrechen."
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Closed:"
+#~ msgstr "Geschlossen:"
+
+#~ msgid "Releases:"
+#~ msgstr "Veröffentlichungen:"
+
+#~ msgid "Ended"
+#~ msgstr "Beendet"
+
+#~ msgid "Filename:"
+#~ msgstr "Dateiname:"
+
+#~ msgid "Medium:"
+#~ msgstr "Medium:"
+
+#~ msgid "Artist Credits:"
+#~ msgstr "Künstlernennungen:"
+
+#~ msgid "Relationship:"
+#~ msgstr "Beziehung:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "Katalognummer:"
+
+#~ msgid "Merge:"
+#~ msgstr "Vereinen:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Medien:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Beziehungen:"
+
+#~ msgid "Release Events:"
+#~ msgstr "Veröffentlichungsereignisse:"
+
+#~ msgid "Release group:"
+#~ msgstr "Veröffentlichungsgruppe:"
+
+#~ msgid "Old:"
+#~ msgstr "Alt:"
+
+#~ msgid "Added"
+#~ msgstr "Hinzugefügt"
+
+#~ msgid "Removed"
+#~ msgstr "Entfernt"
+
+#~ msgid "Edited"
+#~ msgstr "Bearbeitet"
+
+#~ msgid "Alias:"
+#~ msgstr "Alias:"
+
+#~ msgid "Track:"
+#~ msgstr "Titel:"
+
+#~ msgid "Candidate:"
+#~ msgstr "Kandidat:"
+
+#~ msgid "Proposer:"
+#~ msgstr "Vorschlagender:"
+
+#~ msgid "1st seconder:"
+#~ msgstr "1. Befürworter:"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "2. Befürworter:"
+
+#~ msgid "Votes for:"
+#~ msgstr "Stimmen dafür:"
+
+#~ msgid "Votes against:"
+#~ msgstr "Stimmen dagegen:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Seconder 1"
+#~ msgstr "Befürworter 1"
+
+#~ msgid "Seconder 2"
+#~ msgstr "Befürworter 2"
+
+#~ msgid "Added:"
+#~ msgstr "Hinzugefügt:"
+
+#~ msgid "Last modified:"
+#~ msgstr "Zuletzt geändert:"
+
+#~ msgid "Lookup count:"
+#~ msgstr "Anzahl Aufrufe:"
+
+#~ msgid "Modify count:"
+#~ msgstr "Anzahl Änderungen:"
+
+#~ msgid "Coordinates:"
+#~ msgstr "Koordinaten:"
+
+#~ msgid "IPI code:"
+#~ msgstr "IPI-Code:"
+
+#~ msgid "ISNI code:"
+#~ msgstr "ISNI-Code:"
+
+#~ msgid "Error:"
+#~ msgid_plural "Errors:"
+#~ msgstr[0] "Fehler:"
+#~ msgstr[1] "Fehler:"
+
+#~ msgid ""
+#~ "The relationship attribute type “{type}” can’t be deleted because it’s "
+#~ "still in use."
+#~ msgstr ""
+#~ "Der Beziehungsattribut-Typ „{type}“ kann nicht gelöscht werden, da er "
+#~ "noch in Gebrauch ist."
+
+#~ msgid "ID:"
+#~ msgstr "ID:"
+
+#~ msgid "Possible values:"
+#~ msgstr "Mögliche Werte:"
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "Neues Beziehungsattribut erstellen"
+
+#~ msgid ""
+#~ "The relationship type \"{type}\" can’t be deleted because it’s still in "
+#~ "use."
+#~ msgstr ""
+#~ "Der Beziehungstyp „{type}“ kann nicht gelöscht werden, da er noch in "
+#~ "Gebrauch ist."
+
+#~ msgid "Create a new {type0}-{type1} relationship"
+#~ msgstr "Eine neue {type0}-{type1}-Beziehung erstellen"
+
+#~ msgid ""
+#~ "This report lists all releases with gaps in the medium numbers (e.g. "
+#~ "there is a medium 1 and 3 but no medium 2)."
+#~ msgstr ""
+#~ "Dieser Report listet alle Veröffentlichungen auf, bei denen die Medien "
+#~ "nicht durchgehend nummeriert sind (z. B. wenn es ein „Medium 1“ und "
+#~ "„Medium 3“ gibt, aber kein „Medium 2“)"
+
+#~ msgid ""
+#~ "This report shows recordings with relationships using dates in the "
+#~ "future. Those are probably typos (e.g. 2109 instead of 2019)."
+#~ msgstr ""
+#~ "Dieser Report zeigt Aufnahmen mit Beziehungen, die ein zukünftiges Datum "
+#~ "verwenden. Das sind vermutlich Tippfehler (z. B. 2109 statt 2019)."
+
+#~ msgid ""
+#~ "This report aims to identify releases where track names include their own "
+#~ "track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). "
+#~ "Notice that sometimes this is justified and correct, don't automatically "
+#~ "assume it is a mistake! If you confirm it is a mistake, please correct it."
+#~ msgstr ""
+#~ "Dieser Report hat das Ziel, Veröffentlichungen zu identifizieren, bei "
+#~ "denen die Titelnamen ihre eigenen Titelnummern enthalten, z. B. „1) "
+#~ "Irgendein Name“ (statt einfach nur „Irgendein Name“). Beachte, dass das "
+#~ "manchmal gerechtfertigt und richtig ist; nimm nicht automatisch an, dass "
+#~ "es ein Fehler ist! Wenn du es als Fehler bestätigen kannst, korrigiere es "
+#~ "bitte."
+
+#~ msgid ""
+#~ "This report lists all releases where the track numbers are not continuous "
+#~ "(e.g. there is no \"track 2\"), or with duplicated track numbers (e.g. "
+#~ "there are two \"track 4\"s)."
+#~ msgstr ""
+#~ "Dieser Report listet alle Veröffentlichungen auf, bei denen die Titel "
+#~ "nicht durchgehend nummieriert sind (z. B. wenn es keinen „Titel 2“ "
+#~ "gibt), oder die doppelte Titelnummern haben (z. B. wenn es zwei "
+#~ "„Titel 4“ gibt)."
+
+#~ msgid "Location"
+#~ msgstr "Ort"
+
+#~ msgid "Location:"
+#~ msgstr "Ort:"
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "Von mir erstellte Künstler automatisch abonnieren"
+
+#~ msgid "Automatically subscribe me to labels I create."
+#~ msgstr "Von mir erstelle Labels automatisch abonnieren"
+
+#~ msgid "Automatically subscribe me to series I create."
+#~ msgstr "Von mir erstellte Serien automatisch abonnieren"
+
+#~ msgid "Old"
+#~ msgstr "Alt"
+
+#~ msgid "New"
+#~ msgstr "Neu"
+
+#~ msgid "Create collection"
+#~ msgstr "Sammlung erstellen"
+
+#~ msgid "Delete Note"
+#~ msgstr "Bemerkung entfernen"
+
+#~ msgid "Artist credit:"
+#~ msgstr "Künstlernennung:"
+
+#~ msgid "Ended:"
+#~ msgstr "Beendet:"
+
+#~ msgid "This track hasn’t been created yet."
+#~ msgstr "Dieser Titel wurde noch nicht erstellt."
+
+#~ msgid "Release events:"
+#~ msgstr "Veröffentlichungsereignisse:"
+
+#~ msgid ""
+#~ "Warning: This relationship has pending edits. {show|Click here} to view "
+#~ "these edits and make sure they do not conflict with your own."
+#~ msgstr ""
+#~ "Warnung: Diese Beziehung hat ausstehende Bearbeitungen. {show|Klicke "
+#~ "hier}, um diese Bearbeitungen anzusehen und sicherzustellen, dass sie "
+#~ "nicht mit deinen eigenen in Konflikt stehen."
+
+#~ msgid ""
+#~ "This will create a new work for each checked recording that has no work "
+#~ "already. The work names will be the same as their respective recording."
+#~ msgstr ""
+#~ "Dies erstellt ein neues Werk für jede angewählte Aufnahmen, die nicht "
+#~ "schon ein Werk hat. Die Werke werden nach ihren Aufnahmen benannt."
+
+#~ msgid ""
+#~ "Only use this option after you’ve tried searching for the work(s) you "
+#~ "want to create, and are certain they do not already exist on MusicBrainz."
+#~ msgstr ""
+#~ "Benutze diese Option nur, wenn du vorher versucht hast, nach dem/den "
+#~ "Werk(en) zu suchen, die du erstellen möchtest, und dir sicher bist, dass "
+#~ "sie nicht bereits in MusicBrainz eingetragen sind."
+
+#~ msgid "Batch-create new works"
+#~ msgstr "Mehrere Werke auf einmal erstellen"
+
+#~ msgid "Work Type:"
+#~ msgstr "Werktyp:"
+
+#~ msgid ""
+#~ "Banner message editors are users who can set a message that is shown in a "
+#~ "banner on all pages, e.g. to warn users about upcoming site maintenance."
+#~ msgstr ""
+#~ "Bearbeiter von Bannernachrichten sind Benutzer, die eine Nachricht "
+#~ "festlegen können, die auf allen Seiten als Schlagzeile sichtbar wird, "
+#~ "etwa um andere Benutzer vor bevorstehenden Wartungsarbeiten zu warnen."
+
+#~ msgid "Email:"
+#~ msgstr "E-Mail-Adresse:"
+
+#~ msgid "Member since:"
+#~ msgstr "Mitglied seit:"
+
+#~ msgid "Last login:"
+#~ msgstr "Letzter Login:"
+
+#~ msgid "Subscribers:"
+#~ msgstr "Abonnenten:"
+
+#~ msgid "Languages:"
+#~ msgstr "Sprachen:"
+
+#~ msgid ""
+#~ "This edit failed because the data it was changing was modified after this "
+#~ "edit was created. This may happen when the same edit is entered in twice; "
+#~ "one will pass but the other will fail."
+#~ msgstr ""
+#~ "Diese Bearbeitung ist fehlgeschlagen, weil die davon zu modifizierenden "
+#~ "Daten zwischenzeitlich schon geändert wurden. Das kann passieren, wenn "
+#~ "die gleiche Bearbeitung doppelt eingereicht wurde; eine davon wird "
+#~ "durchgeführt, aber die andere wird fehlschlagen."
+
#~ msgid "Artist {n}:"
#~ msgstr "Künstler {n}:"
diff --git a/po/mb_server.el.po b/po/mb_server.el.po
index c7e0149445c..f96c0df8b02 100644
--- a/po/mb_server.el.po
+++ b/po/mb_server.el.po
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:53+0000\n"
"Last-Translator: Anonymous {discid}
is not a valid disc ID."
msgstr "Λυπούμαστε, το {discid}
δεν είναι έγκυρο disc ID."
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
-"Παρακαλούμε αναζητήστε τον καλλιτέχνη για τον οποίο θέλετε να προσθέσετε μια "
-"νέα κυκλοφορία:"
#: ../root/cdstub/ImportCDStub.js:100
msgid "Import CD stub"
@@ -7606,7 +7600,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7626,15 +7620,6 @@ msgstr ""
msgid "CD TOC details"
msgstr "Λεπτομέρειες CD TOC"
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr "Disc ID:"
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "FreeDB:"
@@ -7644,8 +7629,9 @@ msgid "Track details:"
msgstr "Λεπτομέρειες κομματιού:"
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Κομμάτι"
@@ -7654,21 +7640,13 @@ msgid "Start"
msgstr "Έναρξη"
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Λήξη"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr "Ώρα"
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7706,12 +7684,9 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
-"Αν δε βλέπετε τον καλλιτέχνη που ψάχνετε, μπορείτε να προσθέσετε μία νέα "
-"κυκλοφορία. Αυτό θα σας επιτρέψει να δημιουργήσετε αυτόν τον καλλιτέχνη και "
-"μία κυκλοφορία ταυτόχρονα"
#: ../root/cdtoc/SetTracklistDurations.js:46
#: ../root/cdtoc/SetTracklistDurations.js:47
@@ -7748,15 +7723,15 @@ msgstr "Δείτε όλες τις συλλογές σας"
msgid "See all of {editor}'s public collections"
msgstr "Δείτε όλες τις δημόσιες συλλογές του {editor}"
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7849,8 +7824,8 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "Δημιουργία νέας συλλογής"
+msgid "Add a new collection"
+msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -7864,20 +7839,10 @@ msgstr "Είστε σίγουροι ότι θέλετε να καταργήσε
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "Ψευδώνυμο"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr "Όνομα ταξινόμησης"
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr "Ημερομηνία έναρξης"
@@ -8055,7 +8020,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Βαθμολογίες"
@@ -8101,7 +8066,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8212,6 +8177,7 @@ msgstr "Λίστα παρακολουθήσεων"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr "Χρήστες που παρακολουθούν"
@@ -8256,26 +8222,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr "Όνομα ταξινόμησης"
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8287,13 +8237,6 @@ msgstr ""
msgid "Code"
msgstr "Κώδικας"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8302,22 +8245,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr ""
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr "Συγγραφείς"
@@ -8450,7 +8387,7 @@ msgid "There was a problem cancelling {edit}."
msgstr "Υπήρξε ένα πρόβλημα κατά την ακύρωση του {edit}."
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8674,7 +8611,7 @@ msgid "None"
msgstr "Κανένα"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr "Ψηφοφορία"
@@ -8699,7 +8636,8 @@ msgid_plural "Found {n} edits"
msgstr[0] "Βρέθηκε {n} επεξεργασία"
msgstr[1] "Βρέθηκαν τουλάχιστον {n} τροποποιήσεις"
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8724,7 +8662,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8733,15 +8671,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8766,51 +8704,41 @@ msgstr ""
"Δεν μπορείτε να προσθέσετε σημειώσεις σε αυτή την επεξεργασία αυτή τη "
"στιγμή. ({url|Λεπτομέρειες})"
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr "Άνοιξε:"
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "Έκλεισε:"
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] "1 ψήφος"
msgstr[1] "{n} ομόφωνες ψήφοι"
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr "Για περισσότερες πληροφορίες:"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr "Συχνές ερωτήσεις ψηφοφορίας"
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr "Συχνές ερωτήσεις για την επεξεργασία"
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Προσθήκη σημείωσης"
@@ -8830,12 +8758,6 @@ msgstr "Αυτός ο χρήστης έχει αυτοματοποιηθεί."
msgid "bot"
msgstr "bot"
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "Κυκλοφορίες:"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8952,37 +8874,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "Ημερομηνία λήξης"
-
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8994,17 +8892,20 @@ msgstr "(κανένα)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Όνομα αρχείου:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr "Μέσο:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "Σχόλιο:"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -9028,20 +8929,20 @@ msgstr "ISRC {isrc} στο {recording}"
msgid "ISWC {iswc} to {work}"
msgstr "ISWC {iswc} στο {work}"
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
-msgstr "Σχέση:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddRelationship.js:33
msgid "Link order:"
@@ -9099,30 +9000,24 @@ msgstr "(κανένα)"
msgid "(new release group)"
msgstr "(νέα ομάδα κυκλοφοριών)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "Αριθμός καταλόγου:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "Αριθμός καταλόγου"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9134,17 +9029,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -9152,7 +9047,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9193,14 +9088,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9225,11 +9112,6 @@ msgstr "Παλιά ηχογράφηση"
msgid "New recording"
msgstr "Νέα ηχογράφηση"
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "Παλιός καλλιτέχνης"
@@ -9255,25 +9137,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "Αριθμός καταλόγου"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9295,6 +9162,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9307,8 +9175,9 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "Συγχώνευση:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -9422,8 +9291,8 @@ msgid "New positions:"
msgstr "Νέες θέσεις:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
-msgstr "Μέσα:"
+msgid "Mediums"
+msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
@@ -9441,8 +9310,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9484,20 +9353,6 @@ msgstr ""
msgid "CD TOC:"
msgstr "CD TOC:"
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "Σχέσεις:"
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr "Γεγονότα κυκλοφορίας:"
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Αριθμός καταλόγου"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9508,11 +9363,6 @@ msgstr ""
msgid "Artist name:"
msgstr "Όνομα καλλιτέχνη:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr "Ομάδα κυκλοφοριών:"
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "Παλιές σχέσεις:"
@@ -9522,9 +9372,9 @@ msgid "New relationships:"
msgstr "Νέες σχέσεις:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
-msgstr "Παλιό:"
+msgctxt "release type and status"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
msgid "Type: {type}, status: {status}"
@@ -9539,16 +9389,24 @@ msgid "New Status:"
msgstr "Νέα κατάσταση:"
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "Προστέθηκε"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
-msgstr "Αφαιρέθηκε"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
-msgstr "Έγινε επεξεργασία"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
@@ -9588,41 +9446,39 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "Ψευδώνυμο:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr "Κομμάτι:"
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Υποψήφιος:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Υποψήφιος"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
-msgstr "Προτάθηκε από:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
-msgstr "1ος υποστηρικτής:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
-msgstr "2ος υποστηρικτής:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:59
msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "Ψήφοι υπέρ:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "Ψήφοι κατά:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr ""
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -9639,47 +9495,19 @@ msgstr ""
"Το άθροισμα των ψήφων θα εμφανιστεί μόνο μόλις ολοκληρωθεί η ψηφοφορία."
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "Προβολή λεπτομερειών"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Υποψήφιος"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr "Ημερομηνία έναρξης"
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr "Ψήφος"
@@ -10394,7 +10222,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr "Προνομιούχοι λογαριασμοί χρηστών"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Στατιστικά"
@@ -10546,7 +10374,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "Τύποι σχέσης"
@@ -10713,39 +10541,33 @@ msgstr ""
msgid "Artist information"
msgstr "Πληροφορίες καλλιτέχνη"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "Προσθήκη ηχογράφησης"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "Διαχωρισμός σε ξεχωριστούς καλλιτέχνες"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "Προστέθηκε:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr "Τελευταία τροποποίηση:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
-msgstr "Πλήθος αναζητήσεων:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
-msgstr "Αριθμός τροποποιήσεων:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr "Εισαγωγή ως κυκλοφορία MusicBrainz"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr "Αναζητήστε αυτό το CD στη βάση δεδομένων"
@@ -10861,11 +10683,11 @@ msgstr "Συνδεθείτε για να επεξεργαστείτε"
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10918,10 +10740,6 @@ msgctxt "place"
msgid "Closed"
msgstr "Έκλεισε"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10934,7 +10752,7 @@ msgstr ""
msgid "Recording information"
msgstr "Πληροφορίες ηχογράφησης"
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10965,27 +10783,27 @@ msgstr ""
msgid "No cover art available."
msgstr "Δεν υπάρχει διαθέσιμο εξώφυλλο."
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "Πρόσθετες λεπτομέρειες"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr "Εξωτερικοί σύνδεσμοι ομάδας κυκλοφοριών"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10993,21 +10811,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "Κωδικός IPI:"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Βαθμολογία"
@@ -11155,7 +10965,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Μήνυμα σφάλματος: "
@@ -11256,13 +11066,7 @@ msgstr ""
msgid "Request data:"
msgstr "Αίτηση δεδομένων:"
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] "Σφάλμα:"
-msgstr[1] "Σφάλματα:"
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Δεν υπάρχουν διαθέσιμες λεπτομέρειες για αυτό το σφάλμα)"
@@ -11415,7 +11219,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11634,7 +11438,7 @@ msgstr "Γνώρισμα σχέσης που χρησιμοποιείται"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11642,11 +11446,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11658,6 +11457,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11691,17 +11491,13 @@ msgstr "κανένα"
msgid "Add child"
msgstr "Προσθήκη παιδιού"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr "Πιθανές τιμές:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "Δε βρέθηκαν γνωρίσματα σχέσης."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
-msgstr "Δημιουργία νέου γνωρίσματος σχέσης"
+msgid "Add a new relationship attribute"
+msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
@@ -11722,7 +11518,7 @@ msgstr "Τύπος σχέσης που χρησιμοποιείται"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11796,8 +11592,8 @@ msgid "{type0}-{type1} relationship types"
msgstr "{type0}-{type1} τύποι σχέσεων"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
-msgstr "Δημιουργία νέας {type0}-{type1} σχέσης"
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
msgid "Expand all descriptions"
@@ -11815,7 +11611,7 @@ msgstr "Δε βρέθηκαν τύποι σχέσης {type0}-{type1} ."
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11926,8 +11722,8 @@ msgstr ""
"{release} από {artist};"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "Ομάδα κυκλοφοριών από {artist}"
@@ -12150,8 +11946,8 @@ msgstr "Λανθασμένα Amazon URLs"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -12161,10 +11957,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12202,7 +11998,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12211,7 +12007,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12225,8 +12021,8 @@ msgid ""
msgstr ""
"Αυτή η αναφορά εμφανίζει μια λίστα με τους καλλιτέχνες που έχουν σχέσεις "
"συνεργασίας αλλά όχι σχέσεις URL. Αν η συνεργασία έχει το δικό της "
-"ανεξάρτητο όνομα, μην κάνετε τίποτα. Αν είναι της μορφής \"X με Y\" ή \"X & Y"
-"\", πιθανώς να πρέπει να τους διαχωρίσετε. Δείτε {how_to_split_artists|Πως "
+"ανεξάρτητο όνομα, μην κάνετε τίποτα. Αν είναι της μορφής \"X με Y\" ή \"X & "
+"Y\", πιθανώς να πρέπει να τους διαχωρίσετε. Δείτε {how_to_split_artists|Πως "
"να διαχωρίζετε καλλιτέχνες}."
#: ../root/report/CollaborationRelationships.js:42
@@ -12518,7 +12314,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12600,7 +12396,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12736,8 +12532,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12928,13 +12724,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -13117,7 +12913,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -13141,8 +12937,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13367,20 +13162,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRCs"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13463,15 +13244,10 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
-"Αυτή η αναφορά έχει ως στόχο να εντοπιστούν οι κυκλοφορίες όπου οι ονομασίες "
-"των κομματιών περιλαμβάνουν τον αριθμό του κομματιού π.χ. \"1) Κάποια "
-"ονομασία\" (αντί για σκέτο \"Κάποια ονομασία\"). Προσέξτε ότι κάποιες φορές "
-"αυτό είναι δικαιολογημένο και σωστό, μην υποθέτετε αυτόματα ότι πάντα είναι "
-"λάθος! Αν επιβεβαιώσετε ότι είναι λάθος, παρακαλούμε διορθώστε το."
#: ../root/report/TracksNamedWithSequence.js:33
msgid "Releases where track names start with their track number"
@@ -13479,13 +13255,10 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
-"Αυτή η αναφορά εμφανίζει μια λίστα με όλες τις κυκλοφορίες όπου οι αριθμοί "
-"των κομματιών δεν είναι συνεχείς (π.χ. δεν υπάρχει \"κομμάτι 2\"), ή με "
-"διπλούς αριθμούς κομματιών (π.χ. υπάρχουν δύο ή τρία \"κομμάτι 4\")."
#: ../root/report/TracksWithSequenceIssues.js:31
msgid "Releases with track number issues"
@@ -13639,6 +13412,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Αριθμός καταλόγου"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr "Αναζήτηση ετικέτας"
@@ -13648,7 +13425,7 @@ msgid "Other lookups"
msgstr "Άλλες αναζητήσεις"
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13659,7 +13436,7 @@ msgstr "Αρχή"
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "Εναλλακτικά, μπορείτε να {uri|προσθέσετε ένα νέο καλλιτέχνη}."
@@ -13669,9 +13446,10 @@ msgid "Documentation Search"
msgstr "Αναζήτηση τεκμηρίωσης"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13708,7 +13486,7 @@ msgstr "Εναλλακτικά, μπορείτε να {uri|προσθέσετε
msgid "Alternatively, you may {uri|add a new release group}."
msgstr "Εναλλακτικά, μπορείτε να {uri|προσθέσετε μια νέα ομάδα κυκλοφοριών}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13799,7 +13577,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr "Λυπούμαστε, το ερώτημά σας ήταν πολύ μεγάλο."
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13820,7 +13598,7 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
@@ -13828,26 +13606,27 @@ msgstr ""
"Αυτός είναι ένας εξυπηρετητής ανάπτυξης. Η διεύθυνση email σας δεν είναι "
"ούτε ιδιωτική ούτε ασφαλής. Συνεχίστε με σύνεση!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "Ημερομηνία γέννησης:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
@@ -13855,11 +13634,11 @@ msgstr ""
"Θα χρησιμοποιήσουμε την ημερομηνία γέννησής σας για να εμφανίζουμε την "
"ηλικία σας σε χρόνια στη σελίδα προφίλ σας."
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "Ομιλούμενες γλώσσες:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Προσθήκη μιας γλώσσας"
@@ -13918,15 +13697,15 @@ msgstr ""
"Να μου στέλνετε μηνύματα με τις τροποποιήσεις στα στοιχεία που παρακολουθώ:"
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
-msgstr "Να παρακολουθώ αυτόματα τους καλλιτέχνες που προσθέτω."
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
-msgstr "Να παρακολουθώ αυτόματα τις δισκογραφικές εταιρείες που προσθέτω."
+msgid "Automatically subscribe me to labels I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13983,12 +13762,14 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
-msgstr "Παλιό"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "Νέο"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -14034,7 +13815,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -14058,33 +13839,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "Εμφάνιση περισσότερων..."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "Λεπτομέρειες συλλογής"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "Να είναι ορατή αυτή η συλλογή στους άλλους χρήστες"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "Δημιουργία συλλογής"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr "Ενημέρωση συλλογής"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -14102,7 +13883,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -14111,32 +13892,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr "Δε βρέθηκε; Δοκιμάστε ξανά με απευθείας αναζήτηση."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -14146,7 +13922,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -14186,11 +13968,11 @@ msgid "Annotation last modified on {date}."
msgstr "Τελευταία τροποποίηση σχολίου στις {date}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14291,15 +14073,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr "από {artist}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14410,7 +14192,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14705,31 +14487,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr "στις {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr "στις {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr "από {begin_date} ως {end_date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr "από {date} ως ????"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr "από {date} μέχρι τώρα"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr "μέχρι {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr "έληξε"
@@ -14750,8 +14532,9 @@ msgid "Began:"
msgstr "Ξεκίνησε:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "Έληξε:"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -14807,8 +14590,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14898,113 +14681,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -15051,53 +14834,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -15119,11 +14902,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -15158,11 +14941,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -15226,10 +15009,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15567,8 +15347,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15778,14 +15558,14 @@ msgstr "Το barcode που έχετε εισάγει δεν είναι έγκυ
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15794,7 +15574,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15846,34 +15626,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15900,15 +15680,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -16149,10 +15925,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "Αναζήτηση ετικέτας"
@@ -16215,23 +15987,23 @@ msgstr "Πληροφορίες URL"
msgid "URL Details"
msgstr "Λεπτομέρειες URL"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr "Θέμα:"
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr "Εμφάνιση της διεύθυνσης email μου"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr "Στείλε ένα αντίγραφο και στη δική μου διεύθυνση email"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "Αποστολή"
@@ -16333,7 +16105,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16560,10 +16333,6 @@ msgstr ""
msgid "General Information"
msgstr "Γενικές πληροφορίες"
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "Email:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(κρυμμένο)"
@@ -16605,191 +16374,185 @@ msgstr ""
msgid "Age:"
msgstr "Ηλικία:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "Μέλος από:"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "Περιγραφή"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr "Αρχική σελίδα:"
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr "Παρακολουθούν:"
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr "{count} ({url|προβολή λίστας})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr "μη παρακολούθηση"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr "παρακολούθηση"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "Γλώσσες:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr "{count} ({view_url|προβολή})"
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Τροποποιήσεις"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Σύνολο"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr "Καταψηφίστηκαν"
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr "Απέτυχε"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr "Ψήφοι ({view_url|προβολή})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr "Τελευταίες 28 μέρες"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr "Συνολικά"
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -17041,12 +16804,9 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
-"Αυτή η επεξεργασία απέτυχε επειδή τα δεδομένα που άλλαζε είχαν τροποποιηθεί "
-"πριν τη δημιουργία αυτής της επεξεργασίας. Αυτό ίσως συνέβη επειδή η ίδια "
-"επεξεργασία καταχωρήθηκε δύο φορές. Η μία θα πετύχει αλλά η άλλη θα αποτύχει."
#: ../root/utility/edit.js:86
msgid ""
@@ -17060,7 +16820,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr "Η επεξεργασία ακυρώθηκε."
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -17285,6 +17045,310 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Annotation:"
+#~ msgstr "Σχόλιο:"
+
+#~ msgid "Artist:"
+#~ msgstr "Καλλιτέχνης:"
+
+#~ msgid "Attributes:"
+#~ msgstr "Γνωρίσματα:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Barcode:"
+
+#~ msgid "Begin date:"
+#~ msgstr "Ημερομηνία έναρξης:"
+
+#~ msgid "Child order:"
+#~ msgstr "Σειρά παιδιών:"
+
+#~ msgid "Country:"
+#~ msgstr "Χώρα:"
+
+#~ msgid "Created"
+#~ msgstr "Δημιουργήθηκε"
+
+#~ msgid "Date:"
+#~ msgstr "Ημερομηνία:"
+
+#~ msgid "Delete"
+#~ msgstr "Διαγραφή"
+
+#~ msgid "Description:"
+#~ msgstr "Περιγραφή:"
+
+#~ msgid "End date:"
+#~ msgstr "Ημερομηνία λήξης:"
+
+#~ msgid "Format:"
+#~ msgstr "Μορφή:"
+
+#~ msgid "Gender:"
+#~ msgstr "Φύλο:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "Κωδικοί IPI:"
+
+#~ msgid "Label code:"
+#~ msgstr "Κωδικός δισκογραφικής εταιρείας:"
+
+#~ msgid "Label:"
+#~ msgstr "Δισκογαφική εταιρεία:"
+
+#~ msgid "Language:"
+#~ msgstr "Γλώσσα:"
+
+#~ msgid "Length:"
+#~ msgstr "Διάρκεια:"
+
+#~ msgid "Merge"
+#~ msgstr "Συγχώνευση"
+
+#~ msgid "Name:"
+#~ msgstr "Όνομα:"
+
+#~ msgid "Note:"
+#~ msgstr "Σημείωση:"
+
+#~ msgid "Packaging:"
+#~ msgstr "Συσκευασία:"
+
+#~ msgid "Parent:"
+#~ msgstr "Γονιός:"
+
+#~ msgid "Position:"
+#~ msgstr "Θέση:"
+
+#~ msgid "Release Group:"
+#~ msgstr "Ομάδα κυκλοφοριών:"
+
+#~ msgid "Release:"
+#~ msgstr "Κυκλοφορία:"
+
+#~ msgid "Script:"
+#~ msgstr "Γραφή:"
+
+#~ msgid "Search:"
+#~ msgstr "Αναζήτηση:"
+
+#~ msgid "Set track durations"
+#~ msgstr "Ορισμός διάρκειας κομματιών"
+
+#~ msgid "Sort name:"
+#~ msgstr "Όνομα ταξινόμησης:"
+
+#~ msgid "Title:"
+#~ msgstr "Τίτλος:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Κομμάτια:"
+
+#~ msgid "URL:"
+#~ msgstr "URL:"
+
+#~ msgid "Warning:"
+#~ msgstr "Προειδοποίηση:"
+
+#~ msgid "appears on:"
+#~ msgstr "εμφανίζεται σε:"
+
+#~ msgid "Cancelled"
+#~ msgstr "Ακυρώθηκε"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Πληκτρολογήστε ένα έγκυρο url π.χ. \"http://google.com/\""
+
+#~ msgid "Create"
+#~ msgstr "Δημιουργία"
+
+#~ msgid "Preview:"
+#~ msgstr "Προεπισκόπηση:"
+
+#~ msgid "Preview"
+#~ msgstr "Προεπισκόπηση"
+
+#~ msgid "Please search for the artist you wish to create a new release for:"
+#~ msgstr ""
+#~ "Παρακαλούμε αναζητήστε τον καλλιτέχνη για τον οποίο θέλετε να προσθέσετε "
+#~ "μια νέα κυκλοφορία:"
+
+#~ msgid "Disc ID:"
+#~ msgstr "Disc ID:"
+
+#~ msgid ""
+#~ "If you don't see the artist you are looking for, you can still add a new "
+#~ "release. This will allow you to create this artist and a release at the "
+#~ "same time"
+#~ msgstr ""
+#~ "Αν δε βλέπετε τον καλλιτέχνη που ψάχνετε, μπορείτε να προσθέσετε μία νέα "
+#~ "κυκλοφορία. Αυτό θα σας επιτρέψει να δημιουργήσετε αυτόν τον καλλιτέχνη "
+#~ "και μία κυκλοφορία ταυτόχρονα"
+
+#~ msgid "Create a new collection"
+#~ msgstr "Δημιουργία νέας συλλογής"
+
+#~ msgid "Closed:"
+#~ msgstr "Έκλεισε:"
+
+#~ msgid "Releases:"
+#~ msgstr "Κυκλοφορίες:"
+
+#~ msgid "Filename:"
+#~ msgstr "Όνομα αρχείου:"
+
+#~ msgid "Medium:"
+#~ msgstr "Μέσο:"
+
+#~ msgid "Relationship:"
+#~ msgstr "Σχέση:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "Αριθμός καταλόγου:"
+
+#~ msgid "Merge:"
+#~ msgstr "Συγχώνευση:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Μέσα:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Σχέσεις:"
+
+#~ msgid "Release Events:"
+#~ msgstr "Γεγονότα κυκλοφορίας:"
+
+#~ msgid "Release group:"
+#~ msgstr "Ομάδα κυκλοφοριών:"
+
+#~ msgid "Old:"
+#~ msgstr "Παλιό:"
+
+#~ msgid "Added"
+#~ msgstr "Προστέθηκε"
+
+#~ msgid "Removed"
+#~ msgstr "Αφαιρέθηκε"
+
+#~ msgid "Edited"
+#~ msgstr "Έγινε επεξεργασία"
+
+#~ msgid "Alias:"
+#~ msgstr "Ψευδώνυμο:"
+
+#~ msgid "Track:"
+#~ msgstr "Κομμάτι:"
+
+#~ msgid "Candidate:"
+#~ msgstr "Υποψήφιος:"
+
+#~ msgid "Proposer:"
+#~ msgstr "Προτάθηκε από:"
+
+#~ msgid "1st seconder:"
+#~ msgstr "1ος υποστηρικτής:"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "2ος υποστηρικτής:"
+
+#~ msgid "Votes for:"
+#~ msgstr "Ψήφοι υπέρ:"
+
+#~ msgid "Votes against:"
+#~ msgstr "Ψήφοι κατά:"
+
+#~ msgid "Added:"
+#~ msgstr "Προστέθηκε:"
+
+#~ msgid "Last modified:"
+#~ msgstr "Τελευταία τροποποίηση:"
+
+#~ msgid "Lookup count:"
+#~ msgstr "Πλήθος αναζητήσεων:"
+
+#~ msgid "Modify count:"
+#~ msgstr "Αριθμός τροποποιήσεων:"
+
+#~ msgid "IPI code:"
+#~ msgstr "Κωδικός IPI:"
+
+#~ msgid "Error:"
+#~ msgid_plural "Errors:"
+#~ msgstr[0] "Σφάλμα:"
+#~ msgstr[1] "Σφάλματα:"
+
+#~ msgid "Possible values:"
+#~ msgstr "Πιθανές τιμές:"
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "Δημιουργία νέου γνωρίσματος σχέσης"
+
+#~ msgid "Create a new {type0}-{type1} relationship"
+#~ msgstr "Δημιουργία νέας {type0}-{type1} σχέσης"
+
+#~ msgid ""
+#~ "This report aims to identify releases where track names include their own "
+#~ "track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). "
+#~ "Notice that sometimes this is justified and correct, don't automatically "
+#~ "assume it is a mistake! If you confirm it is a mistake, please correct it."
+#~ msgstr ""
+#~ "Αυτή η αναφορά έχει ως στόχο να εντοπιστούν οι κυκλοφορίες όπου οι "
+#~ "ονομασίες των κομματιών περιλαμβάνουν τον αριθμό του κομματιού π.χ. \"1) "
+#~ "Κάποια ονομασία\" (αντί για σκέτο \"Κάποια ονομασία\"). Προσέξτε ότι "
+#~ "κάποιες φορές αυτό είναι δικαιολογημένο και σωστό, μην υποθέτετε αυτόματα "
+#~ "ότι πάντα είναι λάθος! Αν επιβεβαιώσετε ότι είναι λάθος, παρακαλούμε "
+#~ "διορθώστε το."
+
+#~ msgid ""
+#~ "This report lists all releases where the track numbers are not continuous "
+#~ "(e.g. there is no \"track 2\"), or with duplicated track numbers (e.g. "
+#~ "there are two \"track 4\"s)."
+#~ msgstr ""
+#~ "Αυτή η αναφορά εμφανίζει μια λίστα με όλες τις κυκλοφορίες όπου οι "
+#~ "αριθμοί των κομματιών δεν είναι συνεχείς (π.χ. δεν υπάρχει \"κομμάτι "
+#~ "2\"), ή με διπλούς αριθμούς κομματιών (π.χ. υπάρχουν δύο ή τρία \"κομμάτι "
+#~ "4\")."
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "Να παρακολουθώ αυτόματα τους καλλιτέχνες που προσθέτω."
+
+#~ msgid "Automatically subscribe me to labels I create."
+#~ msgstr "Να παρακολουθώ αυτόματα τις δισκογραφικές εταιρείες που προσθέτω."
+
+#~ msgid "Old"
+#~ msgstr "Παλιό"
+
+#~ msgid "New"
+#~ msgstr "Νέο"
+
+#~ msgid "Create collection"
+#~ msgstr "Δημιουργία συλλογής"
+
+#~ msgid "Ended:"
+#~ msgstr "Έληξε:"
+
+#~ msgid "Email:"
+#~ msgstr "Email:"
+
+#~ msgid "Member since:"
+#~ msgstr "Μέλος από:"
+
+#~ msgid "Subscribers:"
+#~ msgstr "Παρακολουθούν:"
+
+#~ msgid "Languages:"
+#~ msgstr "Γλώσσες:"
+
+#~ msgid ""
+#~ "This edit failed because the data it was changing was modified after this "
+#~ "edit was created. This may happen when the same edit is entered in twice; "
+#~ "one will pass but the other will fail."
+#~ msgstr ""
+#~ "Αυτή η επεξεργασία απέτυχε επειδή τα δεδομένα που άλλαζε είχαν "
+#~ "τροποποιηθεί πριν τη δημιουργία αυτής της επεξεργασίας. Αυτό ίσως συνέβη "
+#~ "επειδή η ίδια επεξεργασία καταχωρήθηκε δύο φορές. Η μία θα πετύχει αλλά η "
+#~ "άλλη θα αποτύχει."
+
#~ msgid "Artist {n}:"
#~ msgstr "Καλλιτέχνης {n}:"
diff --git a/po/mb_server.eo.po b/po/mb_server.eo.po
index 918a72d3e5c..d67bf2647b6 100644
--- a/po/mb_server.eo.po
+++ b/po/mb_server.eo.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:55+0000\n"
"Last-Translator: Anonymous {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7446,7 +7442,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7466,15 +7462,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7484,8 +7471,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7494,21 +7482,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7546,7 +7526,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7585,15 +7565,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7686,7 +7666,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7701,20 +7681,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "Alinomo"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7885,7 +7855,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7931,7 +7901,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8042,6 +8012,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8086,26 +8057,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8117,37 +8072,24 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
#: ../root/components/list/ReleaseList.js:95
#: ../root/edit/details/MergeReleases.js:53
-#: ../root/release_group/ReleaseGroupIndex.js:89
-#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
-msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
+#: ../root/release_group/ReleaseGroupIndex.js:89
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
msgstr ""
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8272,7 +8214,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8490,7 +8432,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8515,7 +8457,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8540,7 +8483,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8549,15 +8492,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8580,51 +8523,41 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Aldoni komenton"
@@ -8644,12 +8577,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8766,37 +8693,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8808,17 +8711,20 @@ msgstr "(nenio)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8842,19 +8748,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8913,29 +8819,23 @@ msgstr "(nenio)"
msgid "(new release group)"
msgstr "(nova eldona grupaĉo)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8948,17 +8848,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8966,7 +8866,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9007,14 +8907,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9039,11 +8931,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9069,25 +8956,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9109,6 +8981,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9121,7 +8994,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9234,7 +9108,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9253,8 +9127,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9296,20 +9170,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9320,11 +9180,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9334,8 +9189,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9351,17 +9206,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9400,28 +9263,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9429,11 +9288,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9450,47 +9311,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10174,7 +10007,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10326,7 +10159,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10493,39 +10326,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10641,11 +10468,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10698,10 +10525,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10714,7 +10537,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10745,27 +10568,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10773,21 +10596,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -10926,7 +10741,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11025,13 +10840,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Ne detaloj estas disponebla koncerne ĉi tiu eraro)"
@@ -11168,7 +10977,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11382,7 +11191,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11390,11 +11199,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11406,6 +11210,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11439,16 +11244,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11468,7 +11269,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11542,7 +11343,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11561,7 +11362,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11670,8 +11471,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11877,8 +11678,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11888,10 +11689,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11925,7 +11726,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11934,7 +11735,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12214,7 +12015,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12294,7 +12095,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12421,8 +12222,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12593,13 +12394,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12779,7 +12580,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12803,8 +12604,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13023,20 +12823,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13115,14 +12901,10 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
-"Ĉi tio raporto celas identigi eldonojn tion traknomojn enhavas sia propra "
-"traknumero, ekz. \"1) Io Nomo\" (anstataŭ nur \"Io Nomo\"). Konstatu ke iam "
-"ĉi tio estas prava kaj korekta, ne aŭtomate presimi estas eraro! Se vi "
-"konfirmas ke estas eraro, bonvolu korekti ĝin."
#: ../root/report/TracksNamedWithSequence.js:33
msgid "Releases where track names start with their track number"
@@ -13130,9 +12912,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13287,6 +13069,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13296,7 +13082,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13307,7 +13093,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13317,9 +13103,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13355,7 +13142,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13439,7 +13226,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13460,42 +13247,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13546,15 +13334,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13607,10 +13395,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13658,7 +13448,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13682,33 +13472,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13726,7 +13516,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13735,32 +13525,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13770,7 +13555,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13808,11 +13599,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13913,15 +13704,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14032,7 +13823,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14327,31 +14118,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14372,7 +14163,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14429,8 +14221,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14520,113 +14312,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14673,53 +14465,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14741,11 +14533,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14780,11 +14572,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14846,10 +14638,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15184,8 +14973,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15395,14 +15184,14 @@ msgstr "La strikodo vi enskribis ne estas valida UPC aŭ EAN kodo."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15411,7 +15200,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15463,34 +15252,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15517,15 +15306,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15766,10 +15551,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15831,23 +15612,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15949,7 +15730,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16176,10 +15958,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16221,191 +15999,183 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
msgstr ""
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16652,7 +16422,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16666,7 +16436,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16890,3 +16660,20 @@ msgid ""
"ISWCs. Please make sure they are indeed the same works and you wish to "
"continue with the merge."
msgstr ""
+
+#~ msgid "Artist:"
+#~ msgstr "Artisto:"
+
+#~ msgid "Merge"
+#~ msgstr "Kunfandiĝi"
+
+#~ msgid ""
+#~ "This report aims to identify releases where track names include their own "
+#~ "track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). "
+#~ "Notice that sometimes this is justified and correct, don't automatically "
+#~ "assume it is a mistake! If you confirm it is a mistake, please correct it."
+#~ msgstr ""
+#~ "Ĉi tio raporto celas identigi eldonojn tion traknomojn enhavas sia propra "
+#~ "traknumero, ekz. \"1) Io Nomo\" (anstataŭ nur \"Io Nomo\"). Konstatu ke "
+#~ "iam ĉi tio estas prava kaj korekta, ne aŭtomate presimi estas eraro! Se "
+#~ "vi konfirmas ke estas eraro, bonvolu korekti ĝin."
diff --git a/po/mb_server.es.po b/po/mb_server.es.po
index e719808c5d2..4695efe2956 100644
--- a/po/mb_server.es.po
+++ b/po/mb_server.es.po
@@ -47,22 +47,24 @@
# yvanz, 2018
# reosarevok {discid}
is not a valid disc ID."
msgstr "{discid}
no es una ID de disco válida."
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
-msgstr "Busca el artista para el cual quieres crear una nueva publicación:"
+msgid "Please search for the artist you wish to add a new release for:"
+msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
msgid "Import CD stub"
@@ -7796,8 +7801,8 @@ msgstr ""
"{pos} ({format}) de la publicación {release} de {artist}?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
-msgstr "Comparación de duración de las pistas"
+msgid "Track length comparison"
+msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
#: ../root/cdtoc/SetTracklistDurations.js:67
@@ -7806,7 +7811,7 @@ msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:88
msgid "CD TOC track lengths"
-msgstr ""
+msgstr "Duración de las pistas en esta TOC de CD"
#: ../root/cdtoc/AttachCDTocConfirmation.js:90
msgid "Medium track lengths"
@@ -7814,16 +7819,7 @@ msgstr ""
#: ../root/cdtoc/CDTocInfo.js:23
msgid "CD TOC details"
-msgstr "Detalles del CD TOC"
-
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr "ID de disco:"
+msgstr "Detalles de la TOC de CD"
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
@@ -7834,8 +7830,9 @@ msgid "Track details:"
msgstr "Detalles de la pista:"
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Pista"
@@ -7844,21 +7841,13 @@ msgid "Start"
msgstr "Inicio"
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Fin"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr "Duración"
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7902,11 +7891,9 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
-"Si no ves el artista que buscas, puedes añadir una nueva publicación. Podrás "
-"crear el artista y la publicación al mismo tiempo."
#: ../root/cdtoc/SetTracklistDurations.js:46
#: ../root/cdtoc/SetTracklistDurations.js:47
@@ -7945,22 +7932,22 @@ msgstr "Ver todas mis colecciones"
msgid "See all of {editor}'s public collections"
msgstr "Ver todas las colecciones públicas de {editor}"
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr "Colaboradores"
#: ../root/collection/CollectionIndex.js:219
msgid "Remove selected items from collection"
-msgstr ""
+msgstr "Eliminar las entidades seleccionadas de la colección"
#: ../root/collection/CollectionIndex.js:224
msgid "This collection is empty."
@@ -8046,8 +8033,8 @@ msgstr "Confirmar"
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "Crear nueva colección"
+msgid "Add a new collection"
+msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -8061,20 +8048,10 @@ msgstr "¿Seguro que quieres eliminar la colección {collection}?"
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "Alias"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr "Nombre de ordenación"
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr "Fecha de inicio"
@@ -8149,6 +8126,8 @@ msgid ""
"This event has no relationships and will be removed automatically in the "
"next few days. If this is not intended, please add more data to this event."
msgstr ""
+"Este evento no tiene relaciones y será eliminado automáticamente en unos "
+"días. Si deseas evitarlo, añade más información."
#: ../root/components/CleanupBanner.js:23
msgid ""
@@ -8164,6 +8143,8 @@ msgid ""
"This place has no relationships and will be removed automatically in the "
"next few days. If this is not intended, please add more data to this place."
msgstr ""
+"Este lugar no tiene relaciones y será eliminado automáticamente en unos "
+"días. Si deseas evitarlo, añade más información."
#: ../root/components/CleanupBanner.js:33
msgid ""
@@ -8171,20 +8152,25 @@ msgid ""
"removed automatically in the next few days. If this is not intended, please "
"add more data to this release group."
msgstr ""
+"Este grupo de publicaciones no tiene relaciones ni publicaciones y será "
+"eliminado automáticamente en unos días. Si deseas evitarlo, añade más "
+"información."
#: ../root/components/CleanupBanner.js:38
msgid ""
"This series has no relationships and will be removed automatically in the "
"next few days. If this is not intended, please add more data to this series."
msgstr ""
+"Esta serie no tiene relaciones y será eliminada automáticamente en unos "
+"días. Si deseas evitarlo, añade más información."
#: ../root/components/CleanupBanner.js:43
msgid ""
"This work has no relationships and will be removed automatically in the next "
"few days. If this is not intended, please add relationships to this work."
msgstr ""
-"Esta obra no tiene relaciones, y será eliminada automáticamente en unos "
-"días. Si deseas evitarlo, añade algunas relaciones."
+"Esta obra no tiene relaciones y será eliminada automáticamente en unos días. "
+"Si deseas evitarlo, añade más información."
#: ../root/components/CritiqueBrainzLinks.js:43
msgid "An error occurred when loading reviews."
@@ -8256,7 +8242,7 @@ msgstr "Opiniones"
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Valoraciones"
@@ -8302,7 +8288,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8422,6 +8408,7 @@ msgstr "Suscripciones"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr "Suscriptores"
@@ -8469,26 +8456,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr "Nombre de ordenación"
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Género"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "Área de inicio"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "Área Final"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8500,13 +8471,6 @@ msgstr "Rol"
msgid "Code"
msgstr "Código"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "Dirección"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8515,22 +8479,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Estatus"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr "Autores"
@@ -8661,8 +8619,8 @@ msgid "There was a problem cancelling {edit}."
msgstr "Ha habido un problema al cancelar el {edit}."
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
-msgstr "Solo el editor que creó una edición puede cancelarla."
+msgid "Only the editor who entered an edit can cancel it."
+msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
msgid "Error Voting on Edits"
@@ -8675,11 +8633,11 @@ msgstr ""
#: ../root/edit/DeleteNote.js:32 ../root/edit/DeleteNote.js:33
#: ../root/edit/components/EditNote.js:147
msgid "Remove edit note"
-msgstr ""
+msgstr "Eliminar nota de edición"
#: ../root/edit/DeleteNote.js:35
msgid "Are you sure you want to remove the following edit note?"
-msgstr ""
+msgstr "¿Seguro que quieres eliminar la siguiente nota de edición?"
#: ../root/edit/DeleteNote.js:47
msgid ""
@@ -8886,7 +8844,7 @@ msgid "None"
msgstr "Ninguno"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr "Votar"
@@ -8913,7 +8871,8 @@ msgstr[0] "Se encontró una edición"
msgstr[1] "Se encontraron al menos {n} ediciones"
msgstr[2] "Se encontraron al menos {n} ediciones"
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8923,22 +8882,22 @@ msgstr ""
#: ../root/edit/components/EditNote.js:168
msgid "This edit note was removed by its author. Reason given: “{reason}”."
-msgstr ""
+msgstr "Nota de edición eliminada por su autor. Motivo: “{reason}”."
#: ../root/edit/components/EditNote.js:173
msgid "This edit note was removed by its author. No reason was provided."
-msgstr ""
+msgstr "Nota de edición eliminada por su autor, sin presentar motivos."
#: ../root/edit/components/EditNote.js:179
msgid "This edit note was removed by an admin. Reason given: “{reason}”."
-msgstr ""
+msgstr "Nota de edición eliminada por un administrador. Motivo: “{reason}”."
#: ../root/edit/components/EditNote.js:184
msgid "This edit note was removed by an admin. No reason was provided."
-msgstr ""
+msgstr "Nota de edición eliminada por un administrador, sin presentar motivos."
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8947,15 +8906,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8978,52 +8937,42 @@ msgstr "Añadir una nota"
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr "No puedes añadir notas a esta edición. ({url|¿Por qué?})"
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "Estatus:"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr "Abiertas:"
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "Cerrado:"
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] "1 voto"
msgstr[1] "{n} votos unánimes"
msgstr[2] "{n} votos unánimes"
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr "Para saber más:"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr "FAQ de votaciones"
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr "FAQ de ediciones"
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Añadir nota"
@@ -9043,12 +8992,6 @@ msgstr "Este usuario funciona de forma automatizada."
msgid "bot"
msgstr "bot"
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "Publicaciones:"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -9140,7 +9083,7 @@ msgstr ""
#: ../root/edit/components/ListHeader.js:222 ../root/main/index.js:180
msgid "Style guidelines"
-msgstr "Convenciones de estilo"
+msgstr "Directrices de estilo"
#: ../root/edit/components/VoteTally.js:31
msgid "automatically applied"
@@ -9165,39 +9108,15 @@ msgstr "Esta anotación está vacia."
msgid "Summary"
msgstr "Resumen"
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr "Fecha de inicio"
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "Fecha de fin"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
-msgstr "Finalizado"
+msgstr ""
#: ../root/edit/details/AddCoverArt.js:39
#: ../root/edit/details/RemoveCoverArt.js:39
@@ -9207,18 +9126,21 @@ msgstr "(ninguno)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Nombre de archivo:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr "Nombre de archivo"
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr "Medio:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "Comentario:"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
-msgstr "Repertorio"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
msgid "Client:"
@@ -9241,20 +9163,20 @@ msgstr "ISRC {isrc} a {recording}"
msgid "ISWC {iswc} to {work}"
msgstr "ISWC {iswc} a {work}"
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
-msgstr "Créditos de artista:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr "Créditos de artista"
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
-msgstr "Relación:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddRelationship.js:33
msgid "Link order:"
@@ -9312,30 +9234,24 @@ msgstr "(ninguno)"
msgid "(new release group)"
msgstr "(nuevo grupo de publicaciones)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "Estatus:"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "Número de catálogo:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "Número de catálogo"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9347,17 +9263,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr "Idiomas de la letra"
@@ -9365,7 +9281,7 @@ msgstr "Idiomas de la letra"
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "Calidad de datos"
@@ -9406,14 +9322,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9438,11 +9346,6 @@ msgstr "Grabación anterior"
msgid "New recording"
msgstr "Nueva grabación"
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr "Créditos de artista"
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "Artista anterior"
@@ -9468,25 +9371,10 @@ msgstr ""
msgid "Deprecated:"
msgstr "Deprecado:"
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr "Nota"
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "Número de catálogo"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9509,6 +9397,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9521,8 +9410,9 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "Fusionar:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -9637,8 +9527,8 @@ msgid "New positions:"
msgstr "Nuevas posiciones:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
-msgstr "Medios:"
+msgid "Mediums"
+msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
@@ -9656,8 +9546,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9699,21 +9589,7 @@ msgstr ""
#: ../root/edit/details/historic/AddDiscId.js:23
msgid "CD TOC:"
-msgstr "CD TOC:"
-
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "Relaciones:"
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr "Eventos de lanzamiento:"
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Número de catálogo"
+msgstr "TOC de CD:"
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
@@ -9725,11 +9601,6 @@ msgstr "Número de pista"
msgid "Artist name:"
msgstr "Nombre del artista:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr "Grupo de publicaciones:"
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "Relaciones anteriores:"
@@ -9739,9 +9610,9 @@ msgid "New relationships:"
msgstr "Nuevas relaciones:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
-msgstr "Anterior:"
+msgctxt "release type and status"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
msgid "Type: {type}, status: {status}"
@@ -9756,16 +9627,24 @@ msgid "New Status:"
msgstr "Nuevo estatus:"
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "Añadido"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
-msgstr "Eliminada"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
-msgstr "Editado"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
@@ -9805,41 +9684,39 @@ msgstr ""
msgid "Change track artists:"
msgstr "Cambiar artistas de la pista:"
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "Alias:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr "Pistas:"
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Candidato:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Candidato"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
-msgstr "Nominado por:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
-msgstr "Primer aval:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
-msgstr "Segundo aval:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:59
msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "Votos a favor:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "Votos a favor"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "Votos en contra:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "Votos en contra"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -9855,47 +9732,19 @@ msgid ""
msgstr "El recuento de votos solo se mostrará cuando la elección termine."
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "Estatus:"
+msgid "Status"
+msgstr "Estatus"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "Ver detalles"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Candidato"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "Estatus"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr "Fecha de inicio"
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "Votos a favor"
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "Votos en contra"
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr "Votar"
@@ -10089,11 +9938,11 @@ msgstr ""
#: ../root/entity/NotFound.js:43
msgid "CD TOC Not Found"
-msgstr "No se ha encontrado un CD TOC"
+msgstr "No se ha encontrado una TOC de CD"
#: ../root/entity/NotFound.js:44
msgid "Sorry, we could not find the CD TOC you specified."
-msgstr "No hemos encontrado el CD TOC que has indicado."
+msgstr "No hemos encontrado la TOC de CD que has indicado."
#: ../root/entity/NotFound.js:49
msgid "Collection Not Found"
@@ -10616,7 +10465,7 @@ msgstr "Elecciones a autoeditor"
msgid "Privileged User Accounts"
msgstr "Cuentas de usuarios con privilegios"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Estadísticas"
@@ -10750,7 +10599,7 @@ msgstr "Guía para principiantes"
#: ../root/layout/components/BottomMenu.js:301
msgid "Style Guidelines"
-msgstr "Convenciones de estilo"
+msgstr "Directrices de estilo"
#: ../root/layout/components/BottomMenu.js:304
msgid "How Tos"
@@ -10768,7 +10617,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "Tipos de relación"
@@ -10935,39 +10784,33 @@ msgstr "Información del área"
msgid "Artist information"
msgstr "Información del artista"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "Añadir grabación"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "Separar en varios artistas"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "Añadido:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr "Última modificación:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
-msgstr "Número de búsquedas:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
-msgstr "Recuento de modificaciones:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr "Importar como publicación de MusicBrainz"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "Añadir ID de disco a una publicación existente"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr "Buscar este CD en la base de datos"
@@ -11084,11 +10927,11 @@ msgstr "Entra para editar"
msgid "Event information"
msgstr "Información del evento"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr "Fecha de inicio:"
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr "Fecha de fin:"
@@ -11141,10 +10984,6 @@ msgctxt "place"
msgid "Closed"
msgstr "Cerrada"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "Coordenadas:"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -11157,7 +10996,7 @@ msgstr ""
msgid "Recording information"
msgstr "Información de la grabación"
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -11188,27 +11027,27 @@ msgstr ""
msgid "No cover art available."
msgstr "No hay imágenes disponibles."
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "Detalles adicionales"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr "Enlaces externos del grupo de publicaciones"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr "Editar relaciones"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -11216,21 +11055,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "Código IPI:"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "Código ISNI:"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Licencia"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Valoración"
@@ -11378,7 +11209,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Mensaje de error:"
@@ -11483,14 +11314,7 @@ msgstr "Idioma de la interfaz."
msgid "Request data:"
msgstr "Datos de solicitud:"
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] "Error:"
-msgstr[1] "Errores:"
-msgstr[2] "Errores:"
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(No hay detalles disponibles sobre este error)"
@@ -11644,7 +11468,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11866,7 +11690,7 @@ msgstr "Atributo de relación en uso"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11874,11 +11698,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "ID:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11890,6 +11709,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr "Valores posibles"
@@ -11923,17 +11743,13 @@ msgstr "ninguno"
msgid "Add child"
msgstr "Añadir hijo"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr "Valores posibles:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "No se han encontrado atributos de relación."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
-msgstr "Crear nuevo atributo de relación"
+msgid "Add a new relationship attribute"
+msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
@@ -11954,7 +11770,7 @@ msgstr "Tipo de relación en uso"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -12028,8 +11844,8 @@ msgid "{type0}-{type1} relationship types"
msgstr "tipos de relación {type0}-{type1}"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
-msgstr "Crear nueva relación {type0}-{type1}"
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
msgid "Expand all descriptions"
@@ -12047,7 +11863,7 @@ msgstr "No se han encontrado relaciones {type0}-{type1}."
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -12161,8 +11977,8 @@ msgstr ""
"{release} por {artist}?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "Grupo de publicaciones de {artist}"
@@ -12262,13 +12078,13 @@ msgid ""
"name, rather than the actual disambiguation comment field."
msgstr ""
"Este informe muestra artistas que parecen tener comentarios de "
-"disambiguación como parte del nombre, en vez de en el campo de "
-"disambiguación."
+"desambiguación como parte del nombre, en vez de en el campo de "
+"desambiguación."
#: ../root/report/ArtistsContainingDisambiguationComments.js:30
#: ../root/report/ReportsIndex.js:84
msgid "Artists containing disambiguation comments in their name"
-msgstr "Artistas cuyo nombre contiene disambiguación"
+msgstr "Artistas cuyo nombre contiene desambiguación"
#: ../root/report/ArtistsDisambiguationSameName.js:24
msgid ""
@@ -12384,8 +12200,8 @@ msgstr "URL de Amazon malas"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -12395,10 +12211,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12437,7 +12253,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12446,7 +12262,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12642,8 +12458,8 @@ msgstr ""
"Este informe muestra artistas con nombres muy similares. Si dos de ellos son "
"realmente el mismo, fusiónalos (no olvides {how_to_write_edit_notes|dejar "
"una nota} con las pruebas que tengas). Si son diferentes, añade "
-"{disambiguation_comment|comentarios de disambiguación}; cuando todos los "
-"artistas con el mismo nombre tengan comentarios de disambiguación, dejarán "
+"{disambiguation_comment|comentarios de desambiguación}; cuando todos los "
+"artistas con el mismo nombre tengan comentarios de desambiguación, dejarán "
"de aparecer en este informe."
#: ../root/report/DuplicateArtists.js:55 ../root/report/ReportsIndex.js:71
@@ -12748,7 +12564,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12828,7 +12644,7 @@ msgstr "Ver solo resultados en mis suscripciones."
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12955,8 +12771,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -13147,13 +12963,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr "Grabaciones con la relación \"primera publicación\""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -13341,7 +13157,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -13365,8 +13181,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13435,7 +13250,7 @@ msgstr ""
"Si te gustaría editar MusicBrainz, pero no sabes por dónde empezar, estos "
"informes pueden resultar útiles. Para crearlos se analiza la base de datos "
"en busca de información que quizá deba ser modificada, ya sea para seguir "
-"las {style|convenciones de estilo} o por otras razones de organización."
+"las {style|directrices de estilo} o por otras razones de organización."
#: ../root/report/ReportsIndex.js:75
msgid "Artists which have collaboration relationships"
@@ -13596,20 +13411,6 @@ msgstr "URLs"
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRCs"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr "ISWCs"
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13696,14 +13497,10 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
-"Este informe muestra publicaciones cuyos títulos de pista incluyen su propio "
-"número de pista, como \"1) Título\" en vez de \"Título\". Ten en cuenta que "
-"algunas veces esto es correcto, ¡no asumas que debe ser un error! Pero si "
-"tienes la seguridad de que se trata de un error, corrígelo."
#: ../root/report/TracksNamedWithSequence.js:33
msgid "Releases where track names start with their track number"
@@ -13711,13 +13508,10 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
-"Este informe muestra todas las publicaciones en las que la lista de pistas "
-"no es continua (p. ej., contiene las pistas 1 y 3 pero no la 2) o incluye "
-"más de una pista en la misma posición (p. ej., hay dos pistas 4)."
#: ../root/report/TracksWithSequenceIssues.js:31
msgid "Releases with track number issues"
@@ -13871,6 +13665,10 @@ msgstr ""
msgid "Last edited"
msgstr "Última edición"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Número de catálogo"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr "Búsqueda de etiquetas"
@@ -13880,7 +13678,7 @@ msgid "Other lookups"
msgstr "Otras búsquedas"
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13891,7 +13689,7 @@ msgstr "Inicio"
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "O puedes {uri|añadir un artista nuevo}."
@@ -13901,11 +13699,12 @@ msgid "Documentation Search"
msgstr "Buscar en la documentación"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Ubicación"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13939,7 +13738,7 @@ msgstr "O puedes {uri|añadir una grabación nueva}."
msgid "Alternatively, you may {uri|add a new release group}."
msgstr "O puedes {uri|añadir un grupo de publicaciones nuevo}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr "O puedes {uri|añadir una publicación nueva}."
@@ -14030,7 +13829,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr "Tu búsqueda es demasiado grande."
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -14051,7 +13850,7 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
@@ -14059,37 +13858,38 @@ msgstr ""
"Este es un servidor de desarrollo. Tu dirección de correo ni es privada, ni "
"está protegida, ¡ten cuidado!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr "Si cambia su dirección de correo electrónico, tendrá que verificarla."
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
-msgstr "Localización:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "Fecha de nacimiento:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
"Usaremos tu fecha de nacimiento para indicar tu edad (en años) en tu perfil."
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "Idiomas:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Añadir un idioma"
@@ -14145,15 +13945,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr "Enviadme correos con las ediciones a mis suscripciones:"
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
-msgstr "Quiero ser suscrito automáticamente a los artistas que cree."
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
-msgstr "Quiero ser suscrito automáticamente a las discográficas que cree."
+msgid "Automatically subscribe me to labels I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -14209,12 +14009,14 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
-msgstr "Antigua"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "Nuevo"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -14261,7 +14063,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -14285,33 +14087,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "Mostrar más..."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "Detalles de colección"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "Permitir que otros usuarios vean esta colección"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "Crear colección"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr "Actualizar colección"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -14329,7 +14131,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -14338,34 +14140,29 @@ msgstr ""
msgid "Clear recent items"
msgstr "Borrar elementos recientes"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
"¿No encuentras lo que estás buscando? Prueba de nuevo con la búsqueda "
"directa."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr "¿Lento? Vuelve a la búsqueda indexada."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr "Intérpretes"
@@ -14375,8 +14172,14 @@ msgid "Vote on all edits:"
msgstr "Votar en todas las ediciones."
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
-msgstr "Eliminar nota"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
@@ -14415,11 +14218,11 @@ msgid "Annotation last modified on {date}."
msgstr "Última edición: {date}"
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14520,15 +14323,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr "de {artist}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14640,8 +14443,8 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
-msgstr "Crédito de artista:"
+msgid "Artist credit"
+msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
msgid "Setlist contains"
@@ -14937,31 +14740,31 @@ msgctxt "plural"
msgid "Series"
msgstr "Series"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr "el {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr "el {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr "desde {begin_date} hasta {end_date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr "de {date} a ????"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr "desde {date} a la actualidad"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr "hasta {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr "finalizada"
@@ -14982,8 +14785,9 @@ msgid "Began:"
msgstr "Inicio:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "Fin:"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -15039,8 +14843,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -15130,113 +14934,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -15283,53 +15087,53 @@ msgstr "Agregar una nueva serie"
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr "Artista en MusicBrainz:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr "Añadir crédito de artista"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr "Copiar Creditos"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr "Pegar Creditos"
@@ -15351,11 +15155,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -15390,11 +15194,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -15469,10 +15273,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr "Eventos de lanzamiento:"
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15809,8 +15610,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -16026,17 +15827,14 @@ msgstr "El código de barras introducido no es un UPC o EAN válido."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
-"Vas a crear una obra nueva para cada una de las grabaciones seleccionadas "
-"que no están asociadas a ninguna obra. Los nombres de cada obra serán los "
-"mismos que los de la grabación asociada."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -16045,8 +15843,8 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
-msgstr "Crear múltiples obras nuevas"
+msgid "Batch-add new works"
+msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
msgid "Edit Work"
@@ -16097,34 +15895,34 @@ msgstr "Añadir relación a múltiples obras"
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr "Relaciones de la pista"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr "Obras relacionadas"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "Relaciones de la publicación"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr "Relaciones del grupo de publicaciones"
@@ -16151,15 +15949,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr "Tipo de obra:"
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr "Añadir idioma"
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr "Eliminar idioma"
@@ -16410,10 +16204,6 @@ msgstr ""
msgid "Duration"
msgstr "Duración"
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr "Nombre de archivo"
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "Búsqueda de etiquetas"
@@ -16477,23 +16267,23 @@ msgstr "Información de la URL"
msgid "URL Details"
msgstr "Detalles de la URL"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr "Asunto:"
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr "Mensaje"
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr "Mostrar mi dirección de correo"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr "Enviar una copia a mi propia dirección de correo"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "Enviar"
@@ -16604,11 +16394,9 @@ msgstr "Editores de mensaje de banner"
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
-"Los editores de mensajes de banner son usuarios que pueden configurar un "
-"mensaje que se muestra en un banner en todas las páginas, por ejemplo. para "
-"advertir a los usuarios sobre el próximo mantenimiento del sitio."
#: ../root/user/PrivilegedUsers.js:114
msgid "The following {count} users are banner message editors:"
@@ -16835,10 +16623,6 @@ msgstr ""
msgid "General Information"
msgstr "Información general:"
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "Correo:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(oculto)"
@@ -16880,191 +16664,185 @@ msgstr "nominar para autoeditor"
msgid "Age:"
msgstr "Edad:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "Miembro desde:"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "Último inicio de sesión:"
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "Descripción"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr "No se ha conectado todavía"
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr "Página de inicio:"
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr "Suscriptores:"
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr "{count} ({url|ver lista})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr "desuscribirse"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr "suscribirse"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "Idiomas:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr "{count} ({view_url|ver})"
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Ediciones"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Total"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Aceptadas"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr "Autoediciones"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr "Rechazadas"
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr "Fallidas"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr "Últimas 24 horas"
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr "Esta tabla muestra un resumen de los votos de este editor."
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr "Votos ({view_url|ver})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr "Últimos 28 días"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr "Total"
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -17328,12 +17106,9 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
-"Esta edición falló porque los datos que modificaba cambiaron tras su "
-"creación. Esto puede ocurrir si se introduce la misma edición dos veces: una "
-"es aceptada, pero la otra falla."
#: ../root/utility/edit.js:86
msgid ""
@@ -17347,7 +17122,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr "Esta edición fue cancelada."
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr "Suscrito"
@@ -17572,6 +17347,453 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Address:"
+#~ msgstr "Dirección:"
+
+#~ msgid "Annotation:"
+#~ msgstr "Anotación:"
+
+#~ msgid "Area:"
+#~ msgstr "Área:"
+
+#~ msgid "Artist:"
+#~ msgstr "Artista:"
+
+#~ msgid "Attributes:"
+#~ msgstr "Atributos:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Código de barras:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "Área de Inicio:"
+
+#~ msgid "Begin date:"
+#~ msgstr "Fecha de inicio:"
+
+#~ msgid "Catalog#:"
+#~ msgstr "Catálogo#:"
+
+#~ msgid "Child order:"
+#~ msgstr "Orden de hijos:"
+
+#~ msgid "Country:"
+#~ msgstr "País:"
+
+#~ msgid "Created"
+#~ msgstr "Creada"
+
+#~ msgid "Date:"
+#~ msgstr "Fecha:"
+
+#~ msgid "Delete"
+#~ msgstr "Eliminar"
+
+#~ msgid "Description:"
+#~ msgstr "Descripción:"
+
+#~ msgid "Documentation:"
+#~ msgstr "Documentación:"
+
+#~ msgid "End Area:"
+#~ msgstr "Área Final:"
+
+#~ msgid "End date:"
+#~ msgstr "Fecha de fin:"
+
+#~ msgid "Format:"
+#~ msgstr "Formato:"
+
+#~ msgid "Gender:"
+#~ msgstr "Género:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "Códigos IPI:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "Códigos ISNI:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRCs:"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWCs:"
+
+#~ msgid ""
+#~ "Keep in mind that recording durations are {doc_link|recalculated from "
+#~ "tracks} once the duration of a track changes. As such, if you correct the "
+#~ "duration of a track whose recording is only used in this release, just "
+#~ "reuse the old recording, don’t create a new one. If the recording is also "
+#~ "used elsewhere and the durations are significantly different, consider "
+#~ "creating a new recording instead."
+#~ msgstr ""
+#~ "Ten en cuenta que las duraciones de las grabaciones se {doc_link|"
+#~ "recalculan a partir de las pistas} una vez que cambia la duración de una "
+#~ "pista. Por lo tanto, si corriges la duración de una pista cuya grabación "
+#~ "solo se utiliza en esta versión, reutiliza la grabación antigua, no crees "
+#~ "una nueva. Si la grabación también se utiliza en otros lugares y las "
+#~ "duraciones son significativamente diferentes, considera la posibilidad de "
+#~ "crear una nueva grabación en su lugar."
+
+#~ msgid "Label code:"
+#~ msgstr "Código de la discográfica:"
+
+#~ msgid "Label:"
+#~ msgstr "Discográfica:"
+
+#~ msgid "Language:"
+#~ msgstr "Idioma:"
+
+#~ msgid "Length:"
+#~ msgstr "Duración:"
+
+#~ msgid "Merge"
+#~ msgstr "Fusionar"
+
+#~ msgid "Name:"
+#~ msgstr "Nombre:"
+
+#~ msgid "Note:"
+#~ msgstr "Nota:"
+
+#~ msgid ""
+#~ "Note: only searches edits that: add or edit relationships, created after "
+#~ "2011-05-16; or which remove relationships, created after 2013-07-08; or "
+#~ "which reorder relationships."
+#~ msgstr ""
+#~ "Nota: solo busca ediciones que: añadan o editen relaciones, creadas "
+#~ "después del 16-05-2011; o que eliminen relaciones, creadas después del "
+#~ "08-07-2013; o que reordenen relaciones."
+
+#~ msgid "Packaging:"
+#~ msgstr "Empaquetado:"
+
+#~ msgid "Parent:"
+#~ msgstr "Padre:"
+
+#~ msgid "Position:"
+#~ msgstr "Posición:"
+
+#~ msgid "Release Group:"
+#~ msgstr "Grupo de publicaciones:"
+
+#~ msgid "Release:"
+#~ msgstr "Publicación:"
+
+#~ msgid "Script:"
+#~ msgstr "Alfabeto:"
+
+#~ msgid "Search:"
+#~ msgstr "Buscar:"
+
+#~ msgid "Set track durations"
+#~ msgstr "Establecer la duración de pista"
+
+#~ msgid "Setlist:"
+#~ msgstr "Repertorio:"
+
+#~ msgid "Sort name:"
+#~ msgstr "Nombre de ordenación:"
+
+#~ msgid "Status:"
+#~ msgstr "Estatus:"
+
+#~ msgid "Time:"
+#~ msgstr "Tiempo:"
+
+#~ msgid "Title:"
+#~ msgstr "Título:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Pistas"
+
+#~ msgid "URL:"
+#~ msgstr "URL:"
+
+#~ msgid "Warning:"
+#~ msgstr "Advertencia:"
+
+#~ msgid "appears on:"
+#~ msgstr "aparece en:"
+
+#~ msgid "Cancelled"
+#~ msgstr "Cancelada"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Introduce una URL válida como \"http://google.com/\""
+
+#~ msgid "Bio:"
+#~ msgstr "Biografía:"
+
+#~ msgid "Create"
+#~ msgstr "Crear"
+
+#~ msgid "Preview:"
+#~ msgstr "Previsualización:"
+
+#~ msgid "Preview"
+#~ msgstr "Previsualización"
+
+#~ msgid "Please search for the artist you wish to create a new release for:"
+#~ msgstr "Busca el artista para el cual quieres crear una nueva publicación:"
+
+#~ msgid "Track duration comparison"
+#~ msgstr "Comparación de duración de las pistas"
+
+#~ msgid "Disc ID:"
+#~ msgstr "ID de disco:"
+
+#~ msgid ""
+#~ "If you don't see the artist you are looking for, you can still add a new "
+#~ "release. This will allow you to create this artist and a release at the "
+#~ "same time"
+#~ msgstr ""
+#~ "Si no ves el artista que buscas, puedes añadir una nueva publicación. "
+#~ "Podrás crear el artista y la publicación al mismo tiempo."
+
+#~ msgid "Create a new collection"
+#~ msgstr "Crear nueva colección"
+
+#~ msgid "Status"
+#~ msgstr "Estatus"
+
+#~ msgid "Only the editor who created an edit can cancel it."
+#~ msgstr "Solo el editor que creó una edición puede cancelarla."
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "Estatus:"
+
+#~ msgid "Closed:"
+#~ msgstr "Cerrado:"
+
+#~ msgid "Releases:"
+#~ msgstr "Publicaciones:"
+
+#~ msgid "Ended"
+#~ msgstr "Finalizado"
+
+#~ msgid "Filename:"
+#~ msgstr "Nombre de archivo:"
+
+#~ msgid "Medium:"
+#~ msgstr "Medio:"
+
+#~ msgid "Artist Credits:"
+#~ msgstr "Créditos de artista:"
+
+#~ msgid "Relationship:"
+#~ msgstr "Relación:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "Estatus:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "Número de catálogo:"
+
+#~ msgid "Merge:"
+#~ msgstr "Fusionar:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Medios:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Relaciones:"
+
+#~ msgid "Release Events:"
+#~ msgstr "Eventos de lanzamiento:"
+
+#~ msgid "Release group:"
+#~ msgstr "Grupo de publicaciones:"
+
+#~ msgid "Old:"
+#~ msgstr "Anterior:"
+
+#~ msgid "Added"
+#~ msgstr "Añadido"
+
+#~ msgid "Removed"
+#~ msgstr "Eliminada"
+
+#~ msgid "Edited"
+#~ msgstr "Editado"
+
+#~ msgid "Alias:"
+#~ msgstr "Alias:"
+
+#~ msgid "Track:"
+#~ msgstr "Pistas:"
+
+#~ msgid "Candidate:"
+#~ msgstr "Candidato:"
+
+#~ msgid "Proposer:"
+#~ msgstr "Nominado por:"
+
+#~ msgid "1st seconder:"
+#~ msgstr "Primer aval:"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "Segundo aval:"
+
+#~ msgid "Votes for:"
+#~ msgstr "Votos a favor:"
+
+#~ msgid "Votes against:"
+#~ msgstr "Votos en contra:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Estatus:"
+
+#~ msgid "Added:"
+#~ msgstr "Añadido:"
+
+#~ msgid "Last modified:"
+#~ msgstr "Última modificación:"
+
+#~ msgid "Lookup count:"
+#~ msgstr "Número de búsquedas:"
+
+#~ msgid "Modify count:"
+#~ msgstr "Recuento de modificaciones:"
+
+#~ msgid "Coordinates:"
+#~ msgstr "Coordenadas:"
+
+#~ msgid "IPI code:"
+#~ msgstr "Código IPI:"
+
+#~ msgid "ISNI code:"
+#~ msgstr "Código ISNI:"
+
+#~ msgid "Error:"
+#~ msgid_plural "Errors:"
+#~ msgstr[0] "Error:"
+#~ msgstr[1] "Errores:"
+#~ msgstr[2] "Errores:"
+
+#~ msgid "ID:"
+#~ msgstr "ID:"
+
+#~ msgid "Possible values:"
+#~ msgstr "Valores posibles:"
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "Crear nuevo atributo de relación"
+
+#~ msgid "Create a new {type0}-{type1} relationship"
+#~ msgstr "Crear nueva relación {type0}-{type1}"
+
+#~ msgid ""
+#~ "This report aims to identify releases where track names include their own "
+#~ "track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). "
+#~ "Notice that sometimes this is justified and correct, don't automatically "
+#~ "assume it is a mistake! If you confirm it is a mistake, please correct it."
+#~ msgstr ""
+#~ "Este informe muestra publicaciones cuyos títulos de pista incluyen su "
+#~ "propio número de pista, como \"1) Título\" en vez de \"Título\". Ten en "
+#~ "cuenta que algunas veces esto es correcto, ¡no asumas que debe ser un "
+#~ "error! Pero si tienes la seguridad de que se trata de un error, corrígelo."
+
+#~ msgid ""
+#~ "This report lists all releases where the track numbers are not continuous "
+#~ "(e.g. there is no \"track 2\"), or with duplicated track numbers (e.g. "
+#~ "there are two \"track 4\"s)."
+#~ msgstr ""
+#~ "Este informe muestra todas las publicaciones en las que la lista de "
+#~ "pistas no es continua (p. ej., contiene las pistas 1 y 3 pero no la 2) o "
+#~ "incluye más de una pista en la misma posición (p. ej., hay dos pistas 4)."
+
+#~ msgid "Location"
+#~ msgstr "Ubicación"
+
+#~ msgid "Location:"
+#~ msgstr "Localización:"
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "Quiero ser suscrito automáticamente a los artistas que cree."
+
+#~ msgid "Automatically subscribe me to labels I create."
+#~ msgstr "Quiero ser suscrito automáticamente a las discográficas que cree."
+
+#~ msgid "Old"
+#~ msgstr "Antigua"
+
+#~ msgid "New"
+#~ msgstr "Nuevo"
+
+#~ msgid "Create collection"
+#~ msgstr "Crear colección"
+
+#~ msgid "Delete Note"
+#~ msgstr "Eliminar nota"
+
+#~ msgid "Artist credit:"
+#~ msgstr "Crédito de artista:"
+
+#~ msgid "Ended:"
+#~ msgstr "Fin:"
+
+#~ msgid "Release events:"
+#~ msgstr "Eventos de lanzamiento:"
+
+#~ msgid ""
+#~ "This will create a new work for each checked recording that has no work "
+#~ "already. The work names will be the same as their respective recording."
+#~ msgstr ""
+#~ "Vas a crear una obra nueva para cada una de las grabaciones seleccionadas "
+#~ "que no están asociadas a ninguna obra. Los nombres de cada obra serán los "
+#~ "mismos que los de la grabación asociada."
+
+#~ msgid "Batch-create new works"
+#~ msgstr "Crear múltiples obras nuevas"
+
+#~ msgid "Work Type:"
+#~ msgstr "Tipo de obra:"
+
+#~ msgid ""
+#~ "Banner message editors are users who can set a message that is shown in a "
+#~ "banner on all pages, e.g. to warn users about upcoming site maintenance."
+#~ msgstr ""
+#~ "Los editores de mensajes de banner son usuarios que pueden configurar un "
+#~ "mensaje que se muestra en un banner en todas las páginas, por ejemplo. "
+#~ "para advertir a los usuarios sobre el próximo mantenimiento del sitio."
+
+#~ msgid "Email:"
+#~ msgstr "Correo:"
+
+#~ msgid "Member since:"
+#~ msgstr "Miembro desde:"
+
+#~ msgid "Last login:"
+#~ msgstr "Último inicio de sesión:"
+
+#~ msgid "Subscribers:"
+#~ msgstr "Suscriptores:"
+
+#~ msgid "Languages:"
+#~ msgstr "Idiomas:"
+
+#~ msgid ""
+#~ "This edit failed because the data it was changing was modified after this "
+#~ "edit was created. This may happen when the same edit is entered in twice; "
+#~ "one will pass but the other will fail."
+#~ msgstr ""
+#~ "Esta edición falló porque los datos que modificaba cambiaron tras su "
+#~ "creación. Esto puede ocurrir si se introduce la misma edición dos veces: "
+#~ "una es aceptada, pero la otra falla."
+
#~ msgid "Artist {n}:"
#~ msgstr "Artista {n}:"
diff --git a/po/mb_server.es_419.po b/po/mb_server.es_419.po
new file mode 100644
index 00000000000..1b1d8ffda42
--- /dev/null
+++ b/po/mb_server.es_419.po
@@ -0,0 +1,16643 @@
+# #-#-#-#-# mb_server.pot (PACKAGE VERSION) #-#-#-#-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR {discid}
”"
+msgstr ""
+
+#: ../root/cdtoc/index.tt:1
+msgid "Disc ID “{discid}”"
+msgstr ""
+
+#: ../root/release/discids.tt:1 ../root/release/discids.tt:3
+#: ../root/components/EntityTabs.js:104 ../root/report/ReportsIndex.js:624
+msgid "Disc IDs"
+msgstr ""
+
+#: ../root/release/edit/duplicates.tt:40
+msgid "Do not use any of the above releases as a starting point"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:65
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
+#: ../root/edit/details/AddRelationshipType.js:187
+#: ../root/edit/details/EditRelationshipType.js:327
+#: ../root/layout/components/BottomMenu.js:293
+#: ../root/layout/components/Search.js:51
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
+#: ../root/search/components/SearchForm.js:56
+msgid "Documentation"
+msgstr ""
+
+#: ../root/layout.tt:112 ../root/layout/components/Footer.js:26
+msgid "Donate"
+msgstr ""
+
+#: ../root/release/edit/macros.tt:54
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:165
+#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:219
+#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:64
+#: ../root/static/scripts/edit/components/URLInputPopover.js:134
+#: ../root/static/scripts/relationship-editor/components/DialogButtons.js:37
+msgid "Done"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:158
+msgid ""
+"Each track in the MusicBrainz database has to be linked to a recording, "
+"choose the appropriate recording or look for it in the database."
+msgstr ""
+
+#: ../root/cdtoc/list.tt:18 ../root/entity/edit.tt:1
+#: ../root/release/discids.tt:12 ../root/release/edit/recordings.tt:73
+#: ../root/release/edit/recordings.tt:109
+#: ../root/account/applications/ApplicationList.js:41
+#: ../root/admin/attributes/Attribute.js:102
+#: ../root/admin/attributes/Language.js:64
+#: ../root/admin/attributes/Script.js:61
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:45
+#: ../root/collection/CollectionHeader.js:86
+#: ../root/collection/EditCollection.js:32
+#: ../root/components/Aliases/AliasTableRow.js:61
+#: ../root/components/Aliases/ArtistCreditList.js:78
+#: ../root/components/Aliases/ArtistCreditList.js:79
+#: ../root/components/EntityTabs.js:153
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:96
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:68
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:133
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:119
+#: ../root/release/CoverArt.js:110
+#: ../root/static/scripts/edit/components/ArtistCreditEditor.js:444
+#: ../root/user/UserCollections.js:134
+msgid "Edit"
+msgstr ""
+
+#: ../root/artist/edit_credit.tt:1 ../root/artist/edit_credit.tt:6
+msgid "Edit Artist Credit"
+msgstr ""
+
+#: ../root/admin/attributes/edit.tt:1 ../root/admin/attributes/edit.tt:3
+msgid "Edit Attribute"
+msgstr ""
+
+#: ../root/release/edit_cover_art.tt:1 ../root/release/edit_cover_art.tt:4
+msgid "Edit Cover Art"
+msgstr ""
+
+#: ../root/forms/edit-note.tt:2 ../root/release/edit/editnote.tt:27
+#: ../root/release/edit/layout.tt:18
+#: ../root/static/scripts/edit/components/EnterEditNote.js:48
+msgid "Edit Note"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Edit Note Authors"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Edit Note Content"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/edit.tt:1
+#: ../root/relationship/linkattributetype/edit.tt:3
+msgid "Edit Relationship Attribute"
+msgstr ""
+
+#: ../root/relationship/linktype/edit.tt:1
+#: ../root/relationship/linktype/edit.tt:3
+msgid "Edit Relationship Type"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:18 ../root/doc/edit_types.tt:1
+#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:99
+#: ../root/layout/components/BottomMenu.js:315
+msgid "Edit Types"
+msgstr ""
+
+#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:26
+#: ../root/static/scripts/edit/components/URLInputPopover.js:146
+msgid "Edit URL"
+msgstr ""
+
+#: ../root/components/forms.tt:36 ../root/components/forms.tt:40
+#: ../root/static/scripts/edit/components/EnterEditNote.js:77
+msgid "Edit note:"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Edited entity"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:48
+#: ../root/admin/components/UserList.js:29
+#: ../root/layout/components/Search.js:48
+#: ../root/report/components/EditorList.js:63
+#: ../root/search/components/SearchForm.js:47
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:105
+msgid "Editor"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Editor Flag"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:45
+msgid "Enable vinyl track numbers"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:56 ../root/components/list/ArtistList.js:112
+#: ../root/search/components/ArtistResults.js:59
+msgid "End Area"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:51 ../root/components/forms.tt:214
+#: ../root/event/edit_form.tt:38 ../root/artist/utils.js:65
+#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
+#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
+#: ../root/edit/details/AddRemoveAlias.js:97
+#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
+#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
+#: ../root/edit/details/EditPlace.js:101
+#: ../root/elections/ElectionTable/index.js:25
+#: ../root/layout/components/sidebar/AreaSidebar.js:64
+#: ../root/report/RecordingsWithFutureDates.js:39
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
+msgid "End date"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:112
+msgid "Endpoint:"
+msgstr ""
+
+#: ../root/components/forms.tt:258 ../root/components/forms.tt:283
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:113
+msgid "English"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:3
+msgid "Enter a tracklist below:"
+msgstr ""
+
+#: ../root/place/edit_form.tt:50
+msgid ""
+"Enter coordinates manually or click the map to get coordinates from the "
+"marker. If you’re too far out, clicking will zoom instead."
+msgstr ""
+
+#: ../root/components/forms.tt:51 ../root/release/add_cover_art.tt:170
+#: ../root/release/edit/layout.tt:58
+#: ../root/static/scripts/edit/components/EnterEdit.js:74
+msgid "Enter edit"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:86
+msgid ""
+"Enter the delimiter that separates the track name from the artist name "
+"(valid {url|regular expressions} are accepted)."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Entered"
+msgstr ""
+
+#: ../root/components/forms.tt:30
+msgid ""
+"Entering an {note|edit note} that describes where you got your information "
+"is highly recommended. Not only does it make it clear where you got your "
+"information, but it can also encourage other users to vote on your edit "
+"— thus making your edit get applied faster."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:37 ../root/admin/attributes/Attribute.js:36
+msgid "Entity type"
+msgstr ""
+
+#: ../root/components/forms.tt:32
+#: ../root/static/scripts/edit/components/EnterEditNote.js:63
+msgid ""
+"Even just providing a URL or two is helpful! For more suggestions, see "
+"{doc_how_to|our guide for writing good edit notes}."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Event.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:52
+#: ../root/components/list/EventList.js:75 ../root/edit/details/AddEvent.js:27
+#: ../root/edit/details/EditEvent.js:35 ../root/layout/components/Search.js:27
+#: ../root/report/components/EventList.js:53
+#: ../root/search/components/SearchForm.js:51
+#: ../root/static/scripts/common/constants.js:37
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:54
+#: ../root/user/UserProfile.js:52
+msgid "Event"
+msgstr ""
+
+#: ../root/event/edit_form.tt:11
+msgid "Event Details"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:71
+#: ../root/edit/details/EditRelationshipType.js:335
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:240
+msgid "Examples"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:247
+msgid "Existing medium"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:151
+msgid "Expand"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:301
+msgid "Expand medium"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:38
+msgid "Expire action"
+msgstr ""
+
+#: ../root/area/edit_form.tt:22 ../root/artist/edit_form.tt:70
+#: ../root/event/edit_form.tt:46 ../root/instrument/edit_form.tt:32
+#: ../root/label/edit_form.tt:41 ../root/place/edit_form.tt:37
+#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:268
+#: ../root/release_group/edit_form.tt:23 ../root/series/edit_form.tt:26
+#: ../root/work/edit_form.tt:90
+#: ../root/static/scripts/genre/components/GenreEditForm.js:160
+msgid "External Links"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:48
+msgid "File:"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:126
+msgid "Find Relationships"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:64
+msgid "Finish"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:17
+msgid ""
+"First enter all track information, including titles and artist credits, in "
+"order to edit their recordings."
+msgstr ""
+
+#: ../root/artist/edit_form.tt:3 ../root/recording/edit_form.tt:17
+#: ../root/release_group/edit_form.tt:5 ../root/series/edit_form.tt:3
+msgid ""
+"For more information, check the {doc_doc|documentation} and {doc_styleguide|"
+"style guidelines}."
+msgstr ""
+
+#: ../root/event/edit_form.tt:3 ../root/label/edit_form.tt:3
+#: ../root/place/edit_form.tt:3 ../root/work/edit_form.tt:4
+#: ../root/search/components/SearchForm.js:106
+msgid "For more information, check the {doc_doc|documentation}."
+msgstr ""
+
+#: ../root/cdtoc/list.tt:9 ../root/release/edit/duplicates.tt:11
+#: ../root/release/edit/tracklist.tt:305
+#: ../root/release_group/set_cover_art.tt:46
+#: ../root/components/list/ReleaseList.js:98
+#: ../root/edit/details/AddMedium.js:136 ../root/edit/details/EditMedium.js:485
+#: ../root/edit/details/EditReleaseLabel.js:131
+#: ../root/edit/details/MergeReleases.js:237
+#: ../root/edit/details/historic/AddRelease.js:126
+#: ../root/edit/details/historic/EditReleaseEvents.js:114
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:137
+#: ../root/release_group/ReleaseGroupIndex.js:169
+#: ../root/report/components/CDTocList.js:49
+#: ../root/search/components/ReleaseResults.js:113
+msgid "Format"
+msgstr ""
+
+#: ../root/layout.tt:114 ../root/layout/components/Footer.js:28
+#: ../root/main/index.js:212
+msgid "Forums"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:13
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:198
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:65
+msgid "Forward link phrase:"
+msgstr ""
+
+#: ../root/components/with-pager.tt:5 ../root/components/PaginatedResults.js:52
+msgid "Found {n} result"
+msgid_plural "Found {n} results"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/with-pager.tt:7 ../root/components/PaginatedResults.js:58
+msgid "Found {n} result for \"{q}\""
+msgid_plural "Found {n} results for \"{q}\""
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/forms.tt:260 ../root/components/forms.tt:285
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:115
+msgid "French"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:12 ../root/admin/attributes/form.tt:26
+#: ../root/admin/attributes/Language.js:45
+#: ../root/admin/attributes/Script.js:44
+msgid "Frequency"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:14 ../root/admin/attributes/form.tt:28
+msgid "Frequency notes:"
+msgstr ""
+
+#: ../root/cdstub/index.tt:30 ../root/cdstub/CDStubIndex.js:59
+#: ../root/cdtoc/CDTocInfo.js:27
+msgid "Full TOC:"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:17 ../root/components/list/ArtistList.js:87
+#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
+#: ../root/layout/components/sidebar/ArtistSidebar.js:89
+#: ../root/search/components/ArtistResults.js:54
+#: ../root/static/scripts/account/components/EditProfileForm.js:237
+#: ../root/user/UserProfile.js:268
+msgid "Gender"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Genre.pm:7
+#: ../root/edit/details/AddGenre.js:24 ../root/edit/details/EditGenre.js:28
+#: ../root/genre/GenreHeader.js:29 ../root/search/components/TagResults.js:52
+#: ../root/static/scripts/common/constants.js:38
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:56
+#: ../root/tag/TagIndex.js:36
+msgid "Genre"
+msgstr ""
+
+#: ../root/components/forms.tt:228 ../root/release/edit/information.tt:14
+#: ../root/release/edit/tracklist.tt:527
+#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:153
+msgid "Guess case"
+msgstr ""
+
+#: ../root/components/forms.tt:254
+msgctxt "button/menu"
+msgid "Guess case"
+msgstr ""
+
+#: ../root/components/forms.tt:249
+msgctxt "header"
+msgid "Guess case"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:320
+msgid "Guess case medium title"
+msgstr ""
+
+#: ../root/components/forms.tt:232 ../root/release/edit/information.tt:16
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:111
+#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:26
+msgid "Guess case options"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:224
+msgid "Guess case track"
+msgstr ""
+
+#: ../root/components/forms.tt:230 ../root/release/edit/information.tt:15
+#: ../root/release/edit/tracklist.tt:225
+#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:159
+msgid "Guess feat. artists"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:528
+msgid "Guess feat. artists from track titles"
+msgstr ""
+
+#: ../root/components/forms.tt:241
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:115
+msgid "Guess sort name"
+msgstr ""
+
+#: ../root/components/forms.tt:124
+msgid "HH:MM"
+msgstr ""
+
+#: ../root/instrument/edit_form.tt:20
+msgid "HTML tags allowed in the description: {tag_list}."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:17
+msgid ""
+"Hidden is used by default for ancient languages and languages only in ISO "
+"639-3 (until requested by a user)."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:31
+msgid "Hidden should be used for scripts not in Unicode."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:16
+msgid ""
+"Hidden should be used for sign languages and languages with no ISO 639-3 "
+"code."
+msgstr ""
+
+#: ../root/doc/edit_types.tt:5 ../root/doc/edit_types.tt:19
+#: ../root/doc/edit_types.tt:21 ../lib/MusicBrainz/Server/Edit/Historic.pm:10
+msgid "Historic"
+msgstr ""
+
+#: ../root/release/edit/information.tt:339
+msgid "I confirm that this is the barcode as it appears on the release."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:390
+msgid "I confirm this is a correct medium format/packaging combination."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:413
+msgid "I confirm this is an intentional use of Various Artists on tracks."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:314
+msgid "I don’t know"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:426
+msgid "I don’t know the tracklist for this medium."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:280
+msgid "I have no information about this release’s media and tracklist."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/admin/attributes/Attribute.js:78
+#: ../root/admin/attributes/Language.js:39
+#: ../root/admin/attributes/Script.js:40
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
+msgid "ID"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/AddArtist.js:136 ../root/edit/details/AddLabel.js:102
+#: ../root/layout/components/sidebar/SidebarIpis.js:18
+msgid "IPI code"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/EditArtist.js:162 ../root/edit/details/EditLabel.js:131
+msgid "IPI codes"
+msgstr ""
+
+#: ../root/components/forms.tt:333
+msgid ""
+"IPI codes are assigned by CISAC to “interested parties” in musical rights "
+"management. Check {ipi_doc|the documentation} for more info."
+msgstr ""
+
+#: ../root/layout.tt:115
+msgid "IRC"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/AddArtist.js:145 ../root/edit/details/AddLabel.js:111
+#: ../root/layout/components/sidebar/SidebarIsnis.js:22
+msgid "ISNI code"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/EditArtist.js:170 ../root/edit/details/EditLabel.js:140
+msgid "ISNI codes"
+msgstr ""
+
+#: ../root/components/forms.tt:342
+msgid ""
+"ISNI codes are an ISO standard used to uniquely identify persons and "
+"organizations. Check {isni_doc|the documentation} for more info."
+msgstr ""
+
+#: ../root/area/edit_form.tt:12 ../root/edit/details/AddArea.js:68
+#: ../root/edit/details/EditArea.js:82
+#: ../root/layout/components/sidebar/AreaSidebar.js:71
+msgid "ISO 3166-1"
+msgstr ""
+
+#: ../root/area/edit_form.tt:13 ../root/edit/details/AddArea.js:75
+#: ../root/edit/details/EditArea.js:89
+#: ../root/layout/components/sidebar/AreaSidebar.js:81
+msgid "ISO 3166-2"
+msgstr ""
+
+#: ../root/area/edit_form.tt:14 ../root/edit/details/AddArea.js:82
+#: ../root/edit/details/EditArea.js:96
+#: ../root/layout/components/sidebar/AreaSidebar.js:91
+msgid "ISO 3166-3"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:8 ../root/admin/attributes/Language.js:41
+msgid "ISO 639-1"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:9 ../root/admin/attributes/Language.js:42
+msgid "ISO 639-2/B"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:10 ../root/admin/attributes/Language.js:43
+msgid "ISO 639-2/T"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:11 ../root/admin/attributes/Language.js:44
+msgid "ISO 639-3"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:24 ../root/admin/attributes/Script.js:42
+msgid "ISO code"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:25 ../root/admin/attributes/Script.js:43
+msgid "ISO number"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:45 ../root/edit/details/RemoveIsrc.js:27
+#: ../root/otherlookup/OtherLookupForm.js:72
+#: ../root/report/IsrcsWithManyRecordings.js:58
+#: ../root/static/scripts/common/components/IsrcList.js:26
+msgid "ISRC"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:45 ../root/report/ReportsIndex.js:606
+#: ../root/search/components/RecordingResults.js:144
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:721
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:411
+#: ../root/static/scripts/common/components/IsrcList.js:44
+#: ../root/utility/tableColumns.js:694
+msgid "ISRCs"
+msgstr ""
+
+#: ../root/work/edit_form.tt:16 ../root/edit/details/AddWork.js:47
+#: ../root/edit/details/EditWork.js:66 ../root/edit/details/RemoveIswc.js:27
+#: ../root/otherlookup/OtherLookupForm.js:77
+#: ../root/report/IswcsWithManyWorks.js:49
+#: ../root/search/components/WorkResults.js:57
+#: ../root/static/scripts/common/components/IswcList.js:26
+#: ../root/utility/tableColumns.js:708
+msgid "ISWC"
+msgstr ""
+
+#: ../root/work/edit_form.tt:16 ../root/report/ReportsIndex.js:615
+#: ../root/static/scripts/common/components/IswcList.js:44
+msgid "ISWCs"
+msgstr ""
+
+#: ../root/event/edit_form.tt:26
+msgid ""
+"If needed, the characters \"[\", \"]\", and \"&\" can be escaped using the "
+"HTML entities \"[\", \"]\", and \"&\" respectively."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:134
+msgid ""
+"If the {recording_doc|recording titles/artists} listed above are incorrect, "
+"you can check the boxes below to replace them with the track titles/artists "
+"for this release."
+msgstr ""
+
+#: ../root/release/edit/information.tt:300
+msgid ""
+"If this is an Amazon ASIN, please do not enter it in the catalog number "
+"field, but add it as a URL relationship later."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:160
+msgid ""
+"If we do not have a recording for this track in the database yet, please "
+"select \"Add a new recording\" below."
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:49
+msgid "If you can't find what you're looking for, you can add a new release:"
+msgstr ""
+
+#: ../root/release/edit/information.tt:330
+msgid ""
+"If you do not know whether the release has a barcode or not, just leave this "
+"blank."
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:75
+msgid ""
+"If you don't see the release you are looking for, you can still add a new "
+"one, using this CD TOC:"
+msgstr ""
+
+#: ../root/components/forms.tt:336 ../root/components/forms.tt:345
+msgid "If you don’t know the code for this entity, just leave the field blank."
+msgstr ""
+
+#: ../root/release/edit/information.tt:54
+msgid ""
+"If you don’t select an existing release group, a new one will be added with "
+"the types selected below."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:5
+msgid "If you have a tracklist you can copy and paste, you can input it here."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:15
+msgid ""
+"If you select “{enable_vinyl_numbers}”, the parser will also accept strings "
+"such as “A1” as track numbers."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:10
+msgid ""
+"If you want to save an edit search for future use, you can just bookmark it!"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:393
+msgid ""
+"If you’re sure the combination of “Digital Media” and the selected packaging "
+"is correct, confirm it above. Otherwise, please fix the data."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:353
+msgid ""
+"If you’re sure the entered medium title is correct, confirm it above. "
+"Otherwise, please fix the data."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:416
+msgid ""
+"If you’re sure the use of Various Artists is correct, confirm it above. "
+"Otherwise, please fix the data."
+msgstr ""
+
+#: ../root/components/common-macros.tt:60 ../root/components/Artwork.js:50
+msgid "Image not available, please try again later."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:28 ../root/cdstub/ImportCDStub.js:36
+msgid "Import CD Stub"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../lib/MusicBrainz/Server/Edit/Instrument.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:50
+#: ../root/components/list/InstrumentList.js:47
+#: ../root/edit/details/AddInstrument.js:29
+#: ../root/edit/details/EditInstrument.js:37
+#: ../root/instrument/InstrumentLayout.js:37
+#: ../root/layout/components/Search.js:36
+#: ../root/report/components/InstrumentList.js:47
+#: ../root/search/components/SearchForm.js:49
+#: ../root/static/scripts/common/constants.js:39
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:58
+#: ../root/user/UserProfile.js:53
+msgid "Instrument"
+msgstr ""
+
+#: ../root/instrument/edit_form.tt:8
+msgid "Instrument Details"
+msgstr ""
+
+#: ../root/components/common-macros.tt:486
+msgid "Javascript is required for this page to work properly."
+msgstr ""
+
+#: ../root/components/forms.tt:267 ../root/components/forms.tt:292
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:133
+msgid "Keep all-uppercase words uppercased"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:7
+msgid ""
+"Keep in mind that recording durations are {doc_link|recalculated from "
+"tracks} once the duration of a track changes. As such, if you correct the "
+"duration of a track whose recording is only used in this release, just reuse "
+"the old recording, don’t add a new one. If the recording is also used "
+"elsewhere and the durations are significantly different, consider adding a "
+"new recording instead."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:502
+msgid ""
+"Keep in mind that unselecting this will remove the track if the medium has a "
+"disc ID! If you unselect it by mistake, please readd the pregap track before "
+"submitting."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:517
+msgid ""
+"Keep in mind that unselecting this will remove the tracks if the medium has "
+"a disc ID! If you unselect it by mistake, please readd the data tracks "
+"before submitting."
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:17
+#: ../root/cdtoc/attach_filter_release.tt:31 ../root/cdtoc/list.tt:11
+#: ../root/cdtoc/lookup.tt:45 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/duplicates.tt:15
+#: ../root/release/edit/information.tt:179
+#: ../root/release_group/set_cover_art.tt:52
+#: ../lib/MusicBrainz/Server/Edit/Label.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:43
+#: ../root/components/list/LabelList.js:54 ../root/edit/details/AddLabel.js:31
+#: ../root/edit/details/AddReleaseLabel.js:35
+#: ../root/edit/details/EditLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:51
+#: ../root/edit/details/MergeReleases.js:240
+#: ../root/edit/details/RemoveReleaseLabel.js:31
+#: ../root/edit/details/historic/AddRelease.js:123
+#: ../root/edit/details/historic/EditReleaseEvents.js:111
+#: ../root/label/LabelHeader.js:25 ../root/layout/components/Search.js:37
+#: ../root/recording/RecordingIndex.js:61
+#: ../root/release_group/ReleaseGroupIndex.js:172
+#: ../root/report/ReleaseLabelSameArtist.js:31
+#: ../root/report/components/LabelList.js:47
+#: ../root/report/components/LabelUrlList.js:35
+#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/SearchForm.js:42
+#: ../root/static/scripts/common/components/FilterForm.js:168
+#: ../root/static/scripts/common/constants.js:40
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:60
+#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:538
+#: ../root/utility/tableColumns.js:543
+msgid "Label"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Label Area"
+msgstr ""
+
+#: ../root/label/edit_form.tt:10
+msgid "Label Details"
+msgstr ""
+
+#: ../root/label/edit_form.tt:28 ../root/edit/details/AddLabel.js:94
+#: ../root/edit/details/EditLabel.js:85
+#: ../root/layout/components/sidebar/LabelSidebar.js:83
+msgid "Label code"
+msgstr ""
+
+#: ../root/release/edit/information.tt:114
+#: ../root/admin/attributes/Language.js:31
+#: ../root/admin/attributes/Language.js:34
+#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
+#: ../root/edit/details/EditRelease.js:113
+#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:191
+#: ../root/report/IswcsWithManyWorks.js:54
+#: ../root/search/components/ReleaseResults.js:119
+#: ../root/utility/tableColumns.js:559
+msgid "Language"
+msgstr ""
+
+#: ../root/layout.tt:139 ../root/layout/components/Footer.js:85
+msgid "Last replication packet received at {datetime}"
+msgstr ""
+
+#: ../root/cdstub/cdstub.tt:9 ../root/recording/edit_form.tt:35
+#: ../root/recording/edit_form.tt:38 ../root/release/discids.tt:10
+#: ../root/release/edit/tracklist.tt:164 ../root/release/edit/tracklist.tt:454
+#: ../root/cdstub/CDStubInfo.js:29 ../root/cdtoc/AttachCDTocConfirmation.js:72
+#: ../root/cdtoc/CDTocInfo.js:54 ../root/components/RelationshipsTable.js:338
+#: ../root/components/list/RecordingList.js:115
+#: ../root/edit/details/AddStandaloneRecording.js:59
+#: ../root/edit/details/EditMedium.js:317
+#: ../root/edit/details/EditMedium.js:321
+#: ../root/edit/details/EditRecording.js:61
+#: ../root/edit/details/EditRecording.js:69
+#: ../root/edit/details/historic/AddRelease.js:91
+#: ../root/edit/details/historic/AddTrackKV.js:54 ../root/isrc/Index.js:68
+#: ../root/layout/components/sidebar/RecordingSidebar.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:146
+#: ../root/recording/RecordingIndex.js:55
+#: ../root/report/IsrcsWithManyRecordings.js:61
+#: ../root/report/components/CDTocList.js:54
+#: ../root/search/components/RecordingResults.js:142
+#: ../root/static/scripts/release/components/MediumTable.js:89
+msgid "Length"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:54
+msgid "Lines contain track artists"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:31
+msgid "Lines start with a track number"
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:15
+msgid "Loading edit previews..."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397
+msgid "Location Editor"
+msgstr ""
+
+#: ../root/components/common-macros.tt:421
+#: ../root/components/RequestLogin.js:23
+msgid "Log in"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:15
+#: ../root/edit/details/AddRelationshipType.js:121
+#: ../root/edit/details/EditRelationshipType.js:233
+#: ../root/edit/details/RemoveRelationshipType.js:104
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:208
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:79
+msgid "Long link phrase:"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:186
+msgid "Looking for suggested recordings..."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:3 ../root/cdtoc/lookup.tt:4
+msgid "Lookup CD"
+msgstr ""
+
+#: ../root/release/edit/information.tt:141
+#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:252
+#: ../root/static/scripts/edit/components/PartialDateInput.js:174
+msgid "MM"
+msgstr ""
+
+#: ../root/components/forms.tt:15 ../root/components/forms.tt:20
+#: ../root/static/scripts/edit/components/EnterEdit.js:63
+msgid "Make all edits votable."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:246
+msgid "Manual entry"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:5
+msgid "Matching CDs"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:41 ../root/components/common-macros.tt:503
+#: ../lib/MusicBrainz/Server/Edit/Medium.pm:8
+#: ../root/cdtoc/AttachCDTocConfirmation.js:65
+#: ../root/cdtoc/SetTracklistDurations.js:56
+#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/RemoveDiscId.js:25
+#: ../root/edit/details/RemoveMedium.js:71
+#: ../root/edit/details/SetTrackLengths.js:40
+#: ../root/search/components/RecordingResults.js:148
+#: ../root/static/scripts/common/utility/mediumFormatName.js:14
+msgid "Medium"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:318
+msgid "Medium title:"
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:30
+#: ../root/layout/components/MergeHelper.js:71
+#: ../root/layout/components/sidebar/MergeLink.js:34
+msgctxt "button/link"
+msgid "Merge"
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:3 ../root/layout/components/MergeHelper.js:30
+msgid "Merge Process"
+msgstr ""
+
+#: ../root/cdtoc/list.tt:63 ../root/release/discids.tt:45
+msgid "Move"
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:1 ../root/cdtoc/move_search.tt:2
+msgid "Move Disc ID"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:44
+msgid "Move file down"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:42
+msgid "Move file up"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:328
+msgid "Move medium down"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:329
+msgid "Move medium up"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:197
+msgid "Move track down"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:201
+msgid "Move track up"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:7 ../root/admin/attributes/form.tt:23
+#: ../root/admin/attributes/form.tt:58 ../root/components/forms.tt:226
+#: ../root/relationship/linkattributetype/form.tt:12
+#: ../root/relationship/linktype/form.tt:12
+#: ../root/relationship/linktype/form.tt:77
+#: ../root/relationship/linktype/form.tt:107
+#: ../root/admin/attributes/Attribute.js:79
+#: ../root/admin/attributes/Language.js:40
+#: ../root/admin/attributes/Script.js:41
+#: ../root/components/Aliases/ArtistCreditList.js:50
+#: ../root/components/list/RecordingList.js:97
+#: ../root/edit/details/AddArea.js:41 ../root/edit/details/AddArtist.js:51
+#: ../root/edit/details/AddEvent.js:38 ../root/edit/details/AddGenre.js:35
+#: ../root/edit/details/AddInstrument.js:41 ../root/edit/details/AddLabel.js:41
+#: ../root/edit/details/AddMedium.js:129 ../root/edit/details/AddPlace.js:38
+#: ../root/edit/details/AddRelationshipAttribute.js:34
+#: ../root/edit/details/AddRelationshipType.js:66
+#: ../root/edit/details/AddRelease.js:51
+#: ../root/edit/details/AddReleaseGroup.js:42
+#: ../root/edit/details/AddSeries.js:33
+#: ../root/edit/details/AddStandaloneRecording.js:42
+#: ../root/edit/details/AddWork.js:36 ../root/edit/details/EditArea.js:52
+#: ../root/edit/details/EditArtist.js:65 ../root/edit/details/EditEvent.js:40
+#: ../root/edit/details/EditGenre.js:37
+#: ../root/edit/details/EditInstrument.js:44
+#: ../root/edit/details/EditLabel.js:49 ../root/edit/details/EditMedium.js:477
+#: ../root/edit/details/EditPlace.js:45
+#: ../root/edit/details/EditRecording.js:46
+#: ../root/edit/details/EditRelationshipAttribute.js:51
+#: ../root/edit/details/EditRelationshipAttribute.js:60
+#: ../root/edit/details/EditRelationshipType.js:186
+#: ../root/edit/details/EditRelease.js:57
+#: ../root/edit/details/EditReleaseGroup.js:43
+#: ../root/edit/details/EditSeries.js:41 ../root/edit/details/EditWork.js:52
+#: ../root/edit/details/RemoveRelationshipAttribute.js:31
+#: ../root/edit/details/RemoveRelationshipType.js:41
+#: ../root/edit/details/historic/AddRelease.js:33
+#: ../root/edit/details/historic/AddRelease.js:89
+#: ../root/edit/details/historic/AddTrackKV.js:30
+#: ../root/edit/details/historic/AddTrackOld.js:22
+#: ../root/edit/details/historic/EditReleaseName.js:22
+#: ../root/entity/Details.js:96
+#: ../root/search/components/AnnotationResults.js:55
+#: ../root/search/components/AreaResults.js:63
+#: ../root/search/components/ArtistResults.js:51
+#: ../root/search/components/EditorResults.js:42
+#: ../root/search/components/EventResults.js:73
+#: ../root/search/components/InstrumentResults.js:53
+#: ../root/search/components/LabelResults.js:66
+#: ../root/search/components/PlaceResults.js:63
+#: ../root/search/components/RecordingResults.js:141
+#: ../root/search/components/ReleaseResults.js:111
+#: ../root/search/components/SeriesResults.js:57
+#: ../root/search/components/TagResults.js:51
+#: ../root/search/components/WorkResults.js:54
+#: ../root/static/scripts/account/components/ApplicationForm.js:81
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:197
+#: ../root/static/scripts/common/components/FilterForm.js:135
+#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:112
+#: ../root/static/scripts/genre/components/GenreEditForm.js:147
+#: ../root/static/scripts/release/components/EditWorkDialog.js:166
+#: ../root/user/UserSubscriptions.js:48
+msgid "Name"
+msgstr ""
+
+#: ../root/artist/edit_credit.tt:18 ../root/artist/split.tt:45
+msgid "New Artist Credit"
+msgstr ""
+
+#: ../root/admin/attributes/create.tt:1 ../root/admin/attributes/create.tt:3
+msgid "New Attribute"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:148
+msgid "New Image Goes Here"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/create.tt:1
+#: ../root/relationship/linkattributetype/create.tt:3
+msgid "New Relationship Attribute"
+msgstr ""
+
+#: ../root/relationship/linktype/create.tt:1
+#: ../root/relationship/linktype/create.tt:3
+msgid "New Relationship Type"
+msgstr ""
+
+#: ../root/components/paginator.tt:44 ../root/components/paginator.tt:46
+#: ../root/release/edit/macros.tt:53 ../root/components/Paginator.js:140
+#: ../root/components/Paginator.js:145
+#: ../root/static/scripts/common/artworkViewer.js:42
+#: ../root/static/scripts/release-editor/bindingHandlers.js:41
+msgid "Next"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:62
+msgid "Next »"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
+#: ../lib/MusicBrainz/Server/Data/Vote.pm:176
+#: ../root/edit/components/Vote.js:93
+msgctxt "vote"
+msgid "No"
+msgstr ""
+
+#: ../root/components/forms.tt:369
+msgid "No description available."
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:96
+msgid "No releases have cover art marked as \"Front\", cannot set cover art."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:140 ../root/admin/IpLookup.js:38
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:472
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:88
+msgid "No results"
+msgstr ""
+
+#: ../root/components/search.tt:43 ../root/admin/EmailSearch.js:87
+#: ../root/otherlookup/OtherLookupReleaseResults.js:32
+msgid "No results found."
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:61
+#: ../root/cdtoc/SelectArtistForCDToc.js:102
+#: ../root/search/components/PaginatedSearchResults.js:58
+msgid "No results found. Try refining your search query."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291
+msgid "No vote"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:444
+#: ../root/static/scripts/release-editor/fields.js:211
+msgid ""
+"None of the attached disc IDs can fit a pregap track of the given length."
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:78
+msgid ""
+"None of the mediums on this release can have the given CD TOC attached, "
+"because they have the wrong number of tracks."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:3 ../root/edit/details/EditRelease.js:164
+#: ../root/edit/details/MergeReleases.js:347
+#: ../root/edit/details/SetTrackLengths.js:74
+#: ../root/edit/details/historic/MergeReleases.js:55
+#: ../root/user/ReportUser.js:116
+msgid "Note"
+msgstr ""
+
+#: ../root/release/edit/information.tt:285
+msgid ""
+"Note! If you do not know the month or day of release, please leave them "
+"empty. January 1st is not often the actual release date, please double "
+"check that you have entered the release date correctly."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:243
+msgid ""
+"Note: only searches edits that: add or edit relationships, entered after "
+"2011-05-16; or which remove relationships, entered after 2013-07-08; or "
+"which reorder relationships."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:120
+msgid "Now loading recording associations..."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:180 ../root/release/edit/tracklist.tt:400
+msgid "Now loading tracklist..."
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:13
+msgid ""
+"Only releases with a front cover on the {caa|Cover Art Archive} can be "
+"selected."
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:7
+msgid ""
+"Only releases with the same amount of tracks ({n}) as the release the disc "
+"ID is currently attached to are shown."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:101
+msgid ""
+"Oops! It seems your search parameters are not correct, please double check "
+"your input!"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:139 ../root/release/edit/tracklist.tt:24
+msgid "Options"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:37
+#: ../root/edit/details/AddRelationshipType.js:160
+#: ../root/edit/details/EditRelationshipType.js:285
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:184
+msgid "Orderable direction:"
+msgstr ""
+
+#: ../root/series/edit_form.tt:17 ../root/edit/details/AddSeries.js:52
+#: ../root/edit/details/EditSeries.js:66
+#: ../root/layout/components/sidebar/SeriesSidebar.js:53
+#: ../root/utility/tableColumns.js:765
+msgid "Ordering Type"
+msgstr ""
+
+#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:77
+msgid "PDF file"
+msgstr ""
+
+#: ../root/release/edit/information.tt:240
+#: ../root/edit/details/AddRelease.js:105
+#: ../root/edit/details/EditRelease.js:137
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
+msgid "Packaging"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:50
+#: ../root/relationship/linkattributetype/form.tt:4
+#: ../root/relationship/linktype/form.tt:4
+#: ../root/edit/details/AddRelationshipAttribute.js:55
+#: ../root/edit/details/EditRelationshipAttribute.js:85
+#: ../root/edit/details/EditRelationshipType.js:317
+msgid "Parent"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:238
+msgid "Parse Tracks"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Place.pm:8
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:45
+#: ../root/components/list/PlaceList.js:54 ../root/edit/details/AddPlace.js:30
+#: ../root/edit/details/EditPlace.js:40 ../root/layout/components/Search.js:38
+#: ../root/report/PlacesWithoutCoordinates.js:40
+#: ../root/report/components/PlaceList.js:47
+#: ../root/search/components/SearchForm.js:44
+#: ../root/static/scripts/common/constants.js:41
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:62
+#: ../root/user/UserProfile.js:55
+msgid "Place"
+msgstr ""
+
+#: ../root/place/edit_form.tt:10
+msgid "Place Details"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:421
+msgid "Please choose a condition"
+msgstr ""
+
+#: ../root/release/edit/information.tt:326
+msgid ""
+"Please enter the barcode of the release you are entering, see Barcode for more information."
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:24
+#: ../root/layout/components/MergeHelper.js:58
+msgid ""
+"Please navigate to the pages of other entities you wish to merge and select "
+"the \"merge\" link."
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:66 ../root/release/CoverArtFields.js:84
+msgid ""
+"Please see the {doc|Cover Art Types} documentation for a description of "
+"these types."
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:7
+msgid "Please select the medium you wish to attach this CD TOC to."
+msgstr ""
+
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
+msgid "Position"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:32
+msgid "Possible Mediums"
+msgstr ""
+
+#: ../root/components/paginator.tt:6 ../root/components/paginator.tt:8
+#: ../root/release/edit/macros.tt:52 ../root/components/Paginator.js:72
+#: ../root/components/Paginator.js:77
+#: ../root/static/scripts/common/artworkViewer.js:38
+#: ../root/static/scripts/release-editor/bindingHandlers.js:44
+msgid "Previous"
+msgstr ""
+
+#: ../root/release/edit/information.tt:95 ../root/release_group/edit_form.tt:16
+#: ../root/edit/details/AddReleaseGroup.js:67
+#: ../root/edit/details/EditReleaseGroup.js:60
+msgid "Primary Type:"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:46
+msgid "Priority:"
+msgstr ""
+
+#: ../root/components/search.tt:9 ../root/search/components/SearchForm.js:78
+msgid "Query:"
+msgstr ""
+
+#: ../root/components/rating-macros.tt:1
+#: ../root/static/scripts/common/utility/ratingTooltip.js:13
+msgid "Rate: {rating} star"
+msgid_plural "Rate: {rating} stars"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../lib/MusicBrainz/Server/Edit/Recording.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:41
+#: ../root/edit/details/AddStandaloneRecording.js:32
+#: ../root/edit/details/EditRecording.js:39
+#: ../root/edit/details/MergeReleases.js:305
+#: ../root/edit/details/RemoveIsrc.js:31
+#: ../root/edit/details/historic/EditTrack.js:27
+#: ../root/layout/components/Search.js:28
+#: ../root/report/IsrcsWithManyRecordings.js:60
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:54
+#: ../root/report/components/RecordingList.js:49
+#: ../root/search/components/SearchForm.js:40
+#: ../root/static/scripts/common/constants.js:42
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
+#: ../root/user/UserProfile.js:56
+msgid "Recording"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:24
+msgid "Recording Details"
+msgstr ""
+
+#: ../root/recording/layout.tt:3 ../root/recording/RecordingLayout.js:40
+msgid "Recording “{name}” by {artist}"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:17 ../root/area/AreaRecordings.js:25
+#: ../root/artist/ArtistRecordings.js:144
+#: ../root/artist/ArtistRecordings.js:146
+#: ../root/artist_credit/ArtistCreditIndex.js:145
+#: ../root/artist_credit/ArtistCreditLayout.js:28
+#: ../root/components/EntityTabs.js:30
+#: ../root/components/TagEntitiesList.js:190
+#: ../root/edit/details/EditMedium.js:514
+#: ../root/instrument/InstrumentRecordings.js:37
+#: ../root/instrument/InstrumentRecordings.js:39
+#: ../root/report/ReportsIndex.js:472
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:29
+#: ../root/tag/TagLayout.js:27 ../root/work/WorkIndex.js:55
+msgid "Recordings"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:8
+msgid "Reject"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397
+msgid "Relationship Editor"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../root/edit/details/AddRelationshipType.js:56
+#: ../root/edit/details/EditRelationshipType.js:156
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
+#: ../root/utility/tableColumns.js:750
+msgid "Relationship Type"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:15
+#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
+#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
+#: ../root/components/list/ReleaseList.js:81
+#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
+#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
+#: ../root/edit/details/ChangeReleaseQuality.js:24
+#: ../root/edit/details/EditBarcodes.js:38
+#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
+#: ../root/edit/details/EditReleaseLabel.js:42
+#: ../root/edit/details/MergeReleases.js:235
+#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
+#: ../root/edit/details/ReorderCoverArt.js:34
+#: ../root/edit/details/ReorderMediums.js:25
+#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
+#: ../root/layout/components/Search.js:29
+#: ../root/release_group/ReleaseGroupIndex.js:167
+#: ../root/report/components/CDTocReleaseList.js:50
+#: ../root/report/components/ReleaseList.js:52
+#: ../root/report/components/ReleaseUrlList.js:37
+#: ../root/search/components/RecordingResults.js:145
+#: ../root/search/components/SearchForm.js:39
+#: ../root/static/scripts/common/constants.js:43
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:66
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:397
+#: ../root/taglookup/Form.js:30 ../root/user/UserProfile.js:57
+msgid "Release"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Release Country"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:14
+msgid "Release Duplicates"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
+#: ../root/layout/components/Search.js:30
+#: ../root/report/DuplicateReleaseGroups.js:60
+#: ../root/report/ReleaseRgDifferentName.js:30
+#: ../root/report/ReleasesSameBarcode.js:46
+#: ../root/report/components/ReleaseGroupList.js:50
+#: ../root/report/components/ReleaseGroupUrlList.js:37
+#: ../root/search/components/ReleaseGroupResults.js:63
+#: ../root/search/components/SearchForm.js:38
+#: ../root/static/scripts/common/i18n/localizeTypeNameForEntity.js:36
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:68
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:404
+msgid "Release Group"
+msgstr ""
+
+#: ../root/release_group/edit_form.tt:12
+msgid "Release Group Details"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:31
+#: ../root/cdtoc/attach_filter_release.tt:46
+msgid "Release Group: {release_group_link}"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:12
+msgid "Release Information"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Release Language"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Release Quality"
+msgstr ""
+
+#: ../root/release/edit/information.tt:124
+#: ../root/static/scripts/common/components/ReleaseEvents.js:34
+msgid "Release event"
+msgstr ""
+
+#: ../root/release_group/layout.tt:1
+#: ../root/release_group/ReleaseGroupLayout.js:35
+msgid "Release group “{name}” by {artist}"
+msgstr ""
+
+#: ../root/release/edit/information.tt:3
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:121
+msgid "Release information"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:9 ../root/cdtoc/lookup.tt:85
+#: ../root/cdtoc/move_search.tt:15
+msgid "Release title or MBID"
+msgstr ""
+
+#: ../root/release/layout.tt:1 ../root/release/ReleaseLayout.js:32
+msgid "Release “{name}” by {artist}"
+msgstr ""
+
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
+#: ../root/account/applications/ApplicationList.js:45
+#: ../root/admin/attributes/Attribute.js:106
+#: ../root/admin/attributes/Language.js:68
+#: ../root/admin/attributes/Script.js:65
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:49
+#: ../root/admin/wikidoc/WikiDocIndex.js:108
+#: ../root/collection/CollectionHeader.js:93
+#: ../root/collection/DeleteCollection.js:26
+#: ../root/components/Aliases/AliasTableRow.js:65
+#: ../root/layout/components/sidebar/RemoveLink.js:34
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:102
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:74
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
+#: ../root/release/CoverArt.js:116
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
+#: ../root/static/scripts/edit/components/Multiselect.js:210
+#: ../root/user/UserCollections.js:135
+msgid "Remove"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:81
+msgid "Remove Example"
+msgstr ""
+
+#: ../root/release/edit/information.tt:199
+msgid "Remove Label"
+msgstr ""
+
+#: ../root/release/edit/information.tt:159
+msgid "Remove Release Event"
+msgstr ""
+
+#: ../root/work/edit_form.tt:60
+msgid "Remove attribute"
+msgstr ""
+
+#: ../root/components/common-macros.tt:584
+#: ../root/components/common-macros.tt:592
+#: ../root/components/RemoveFromMergeTableCell.js:39
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
+msgid "Remove from merge"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:330
+#: ../lib/MusicBrainz/Server/Edit/Medium/Delete.pm:23
+msgid "Remove medium"
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:33
+#: ../root/layout/components/MergeHelper.js:75
+msgid "Remove selected entities"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:227
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveTrack.pm:11
+msgid "Remove track"
+msgstr ""
+
+#: ../root/components/rating-macros.tt:1
+#: ../root/static/scripts/common/utility/ratingTooltip.js:12
+msgid "Remove your rating"
+msgstr ""
+
+#: ../root/components/forms.tt:163 ../root/components/forms.tt:168
+msgid "Remove {item}"
+msgstr ""
+
+#: ../root/release/reorder_cover_art.tt:1
+#: ../root/release/reorder_cover_art.tt:4
+msgctxt "header"
+msgid "Reorder Cover Art"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:83
+msgid "Request signature..."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:525
+msgid "Reset track numbers"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:58 ../root/cdtoc/move_search.tt:25
+#: ../root/components/search.tt:19 ../root/cdtoc/SelectArtistForCDToc.js:63
+#: ../root/cdtoc/SelectArtistForCDToc.js:99
+msgid "Results:"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:14
+msgid "Reuse previous recordings"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:14
+#: ../root/edit/details/AddRelationshipType.js:113
+#: ../root/edit/details/EditRelationshipType.js:223
+#: ../root/edit/details/RemoveRelationshipType.js:92
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:203
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:72
+msgid "Reverse link phrase:"
+msgstr ""
+
+#: ../root/release/edit/information.tt:307
+msgid "Review the {packaging|list of packaging types} for help."
+msgstr ""
+
+#: ../root/release/edit/layout.tt:27
+msgid ""
+"Review the {url|documentation} on release editor seeding and make sure your "
+"data is formatted correctly."
+msgstr ""
+
+#: ../root/layout.tt:132
+msgid ""
+"Running: {branch} ({sha})"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:82
+#: ../root/relationship/linkattributetype/form.tt:24
+#: ../root/relationship/linktype/form.tt:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
+#: ../root/static/scripts/account/components/PreferencesForm.js:260
+msgid "Save"
+msgstr ""
+
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
+#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
+#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/doc/components/DocSearchBox.js:22
+#: ../root/layout/components/BottomMenu.js:217
+#: ../root/layout/components/Search.js:94
+#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
+#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
+#: ../root/static/scripts/common/components/SearchIcon.js:14
+#: ../root/taglookup/Form.js:54
+msgid "Search"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:71
+msgid "Search by artist"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:81
+msgid "Search by release"
+msgstr ""
+
+#: ../root/edit/search.tt:2 ../root/edit/search_macros.tt:8
+#: ../root/edit/search_results.tt:3
+msgid "Search for Edits"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:136
+msgid "Searching..."
+msgstr ""
+
+#: ../root/release/edit/information.tt:98 ../root/release_group/edit_form.tt:17
+#: ../root/edit/details/AddReleaseGroup.js:80
+#: ../root/edit/details/EditReleaseGroup.js:79
+msgid "Secondary Types:"
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:42 ../root/cdtoc/SelectArtistForCDToc.js:94
+msgid "Select"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:123
+msgid ""
+"Select a medium from the search results below and then click \"Add Medium\"."
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:4
+msgid ""
+"Select a release to which the disc ID {discid}
. should be moved "
+"to."
+msgstr ""
+
+#: ../root/components/forms.tt:360
+msgid ""
+"Select any type from the list to see its description. If the work doesn’t "
+"seem to match any type, just leave this blank."
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:31
+msgid "Select images..."
+msgstr ""
+
+#: ../root/components/forms.tt:259 ../root/components/forms.tt:284
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:114
+msgid "Sentence"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Series.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:51
+#: ../root/components/list/SeriesList.js:47
+#: ../root/layout/components/Search.js:31
+#: ../root/search/components/SearchForm.js:50
+#: ../root/static/scripts/common/constants.js:45
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:70
+#: ../root/user/UserProfile.js:59
+msgctxt "singular"
+msgid "Series"
+msgstr ""
+
+#: ../root/series/edit_form.tt:10
+msgid "Series Details"
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:1
+msgid "Set Release Group Cover Art"
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:4
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/SetCoverArt.pm:20
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:88
+msgid "Set cover art"
+msgstr ""
+
+#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
+msgstr ""
+
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:43
+msgid ""
+"Show me {autoedit_select_block} sorted {sort_select_block} that "
+"{match_or_negation_block} {and_vs_or_block} of the following conditions:"
+msgstr ""
+
+#: ../root/release/edit/duplicates.tt:2
+msgid "Similar releases"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:499
+msgid ""
+"Some discs contain a hidden track in the pregap section that precedes track "
+"1. Use this to add (or remove) the special pregap track section."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:514
+msgid ""
+"Some discs contain one or more data tracks after all audio tracks. Use this "
+"to add (or remove) the special data tracks section. You should only add data "
+"tracks that contain audio or video ({info|more info})"
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:4
+msgid ""
+"Some errors were detected in the data you’ve entered. Click on the "
+"highlighted tabs and correct any visible errors."
+msgstr ""
+
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
+msgstr ""
+
+#: ../root/artist/split.tt:1
+msgid "Split Artist"
+msgstr ""
+
+#: ../root/artist/split.tt:6 ../root/artist/CannotSplit.js:22
+msgid "Split Into Separate Artists"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
+msgctxt "edit status"
+msgid "Status"
+msgstr ""
+
+#: ../root/release/edit/information.tt:111
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
+msgstr ""
+
+#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
+msgid "Stop using beta site"
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:44
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
+msgid "Submitting edits..."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:193
+msgid "Suggested recordings:"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:526
+msgid "Swap track titles with artist credits"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:21
+#: ../root/cdtoc/attach_filter_release.tt:35 ../root/cdtoc/list.tt:15
+#: ../root/recording/RecordingIndex.js:65
+#: ../root/release_group/ReleaseGroupIndex.js:177
+#: ../root/search/components/RecordingResults.js:146
+#: ../root/search/components/ReleaseResults.js:124
+#: ../root/static/scripts/common/components/TaggerIcon.js:82
+#: ../root/utility/tableColumns.js:782
+msgid "Tagger"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:12
+msgid ""
+"The Cover Art Archive is currently experiencing difficulties. Adding images "
+"for this release is unlikely to work at the moment."
+msgstr ""
+
+#: ../root/release/edit/information.tt:348
+msgid "The annotation field functions like a miniature wiki."
+msgstr ""
+
+#: ../root/release/edit/information.tt:297
+msgid "The catalog number you have entered looks like an Amazon ASIN."
+msgstr ""
+
+#: ../root/layout.tt:91 ../root/layout/index.js:285
+msgid ""
+"The data you have submitted does not make any changes to the data already "
+"present."
+msgstr ""
+
+#: ../root/release/edit/layout.tt:23
+msgid "The data you’ve seeded contained the following errors:"
+msgstr ""
+
+#: ../root/release/edit/information.tt:163
+msgid "The date you've entered is not valid."
+msgstr ""
+
+#: ../root/release/edit/information.tt:361
+msgid ""
+"The disambiguation field is used to help users distinguish between "
+"identically named releases."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:9
+msgid ""
+"The filters below allow you to find only edits fulfilling specific criteria. "
+"See the {doc_link|documentation} for more info about using the filters."
+msgstr ""
+
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
+msgid ""
+"The purpose of this field is to add information that usually doesn't fit "
+"into the strict structural data schema of MusicBrainz (be it due to "
+"technical limitations that may be addressed later, or because the "
+"information in itself has to be free-text)."
+msgstr ""
+
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
+#: ../root/layout.tt:71 ../root/layout/index.js:245
+msgid "The server is temporarily in read-only mode for database maintenance."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:124
+msgid ""
+"The tracklist for the medium (including the track/recording associations, "
+"but not other data such as medium format) will be loaded as a medium on this "
+"release."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:30 ../root/edit/details/AddMedium.js:154
+#: ../root/edit/details/RemoveMedium.js:91
+#: ../root/edit/details/RemoveMedium.js:108
+#: ../root/static/scripts/release/components/MediumRelationshipEditor.js:193
+msgid "The tracklist for this medium is unknown."
+msgstr ""
+
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
+#: ../root/static/scripts/edit/components/PartialDateInput.js:52
+msgid ""
+"The year should have four digits. If you want to enter a year earlier than "
+"1000 CE, please pad with zeros, such as “0123”."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:14
+msgid ""
+"There are currently no discs in MusicBrainz associated with the information "
+"you provided. You can search using the form below in order to attach this "
+"disc to another MusicBrainz release, or to add a new one if the search shows "
+"it is missing from the database."
+msgstr ""
+
+#: ../root/release/discids.tt:56
+msgid ""
+"There are no disc IDs attached to this release; to find out more about how "
+"to add one, see {doc|How to Add Disc IDs}."
+msgstr ""
+
+#: ../root/artist/split.tt:10
+msgid ""
+"There are no recordings, release groups, releases or tracks credited to only "
+"{name}. If you are trying to remove {name}, please edit all artist credits "
+"at the bottom of the {alias_uri|aliases} tab and remove all existing "
+"{rel_uri|relationships} instead, which will allow ModBot to automatically "
+"remove this artist in the upcoming days."
+msgstr ""
+
+#: ../root/place/edit_form.tt:29
+msgid "These coordinates could not be parsed."
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:54 ../root/cdtoc/attach_list.tt:67
+msgid "This CDTOC is already attached to this medium."
+msgstr ""
+
+#: ../root/release/edit/information.tt:354
+msgid ""
+"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
+"text that you don't have the right to release under that license. While you "
+"can quote a source to support a point you're making, you should never enter "
+"promotional texts or other artist or label-owned texts into the annotation."
+msgstr ""
+
+#: ../root/area/edit_form.tt:17
+msgid "This area has ended."
+msgstr ""
+
+#: ../root/artist/edit_form.tt:53
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:53
+msgid "This artist has ended."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/form.tt:20
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:145
+msgid "This attribute supports free text credits"
+msgstr ""
+
+#: ../root/work/edit_form.tt:56
+msgid "This attribute type is only used for grouping, please select a subtype"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/form.tt:21
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:151
+msgid "This attribute uses free text values"
+msgstr ""
+
+#: ../root/layout.tt:37 ../root/layout/index.js:111
+msgid ""
+"This beta test server allows testing of new features with the live database."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:509
+msgid "This disc contains data tracks at the end"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:494
+msgid "This disc has a hidden pregap track before track 1"
+msgstr ""
+
+#: ../root/components/common-macros.tt:186
+#: ../root/static/scripts/common/components/EntityLink.js:37
+msgid "This entity has been removed, and cannot be displayed correctly."
+msgstr ""
+
+#: ../root/components/common-macros.tt:186
+#: ../root/static/scripts/common/components/EntityLink.js:36
+msgid "This entity will be added by this edit."
+msgstr ""
+
+#: ../root/event/edit_form.tt:15
+msgid "This event was cancelled."
+msgstr ""
+
+#: ../root/release/edit/information.tt:364
+msgid ""
+"This field is not a place to store general background information about the "
+"release: that kind of information should go in the annotation field."
+msgstr ""
+
+#: ../root/artist/edit_credit.tt:12
+msgid ""
+"This form allows you to edit the artist credit \"{ac}\". When the edit is "
+"accepted, all tracks, recordings, releases and release groups using this "
+"artist credit will be update to use the new one."
+msgstr ""
+
+#: ../root/artist/split.tt:29
+msgid ""
+"This form allows you to split {artist} into separate artists. When the edit "
+"is accepted, existing artist credits will be updated, and collaboration "
+"relationships will be removed"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:73
+msgid "This format can have disc IDs"
+msgstr ""
+
+#: ../root/layout.tt:37 ../root/layout/index.js:115
+msgid "This is a MusicBrainz development server."
+msgstr ""
+
+#: ../root/layout.tt:54 ../root/layout/index.js:143
+msgid ""
+"This is a MusicBrainz mirror server. To edit or make changes to the data, "
+"please {uri|return to musicbrainz.org}."
+msgstr ""
+
+#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:73
+msgid ""
+"This is a PDF file, the thumbnail may not show the entire contents of the "
+"file."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:77
+msgid "This is a free text work attribute"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:386
+msgid ""
+"This is almost always incorrect. Please make sure whether you actually "
+"wanted a different format (such as “USB Flash Drive” or “Music Card”) or "
+"packaging type."
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:76
+msgid "This is the current release group image"
+msgstr ""
+
+#: ../root/label/edit_form.tt:36
+msgid "This label has ended."
+msgstr ""
+
+#: ../root/release/edit/information.tt:209
+msgid "This label/catalog number pair already exists."
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:56
+msgid "This medium format cannot have a disc ID attached."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:383
+msgid ""
+"This medium format is set to “Digital Media”, but the packaging type for "
+"this release is not “None”."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:334
+msgid ""
+"This medium has a disc ID, pregap track, or data track, so you can only "
+"change the format to one that can have disc IDs."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:363 ../root/release/edit/tracklist.tt:373
+msgid ""
+"This medium is set to a format that did not exist on the selected release "
+"date."
+msgstr ""
+
+#: ../root/place/edit_form.tt:32
+msgid "This place has ended."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:369
+msgid ""
+"This problem already existed before you opened the release editor, so you "
+"don’t need to do anything about it. But if you have some time, consider "
+"trying to find out what the real format should be or if the release should "
+"be split!"
+msgstr ""
+
+#: ../root/components/common-macros.tt:229
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
+#: ../root/static/scripts/common/components/EntityLink.js:323
+msgid "This recording is a video"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:17
+msgid "This relationship allows setting dates"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:16
+msgid "This relationship is deprecated"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:100
+msgid "This relationship type does not have any examples."
+msgstr ""
+
+#: ../root/release/edit/information.tt:235
+msgid "This release does not have a barcode"
+msgstr ""
+
+#: ../root/release/discids.tt:58
+msgid "This release has no mediums that can have disc IDs."
+msgstr ""
+
+#: ../root/release/edit/information.tt:370
+msgid ""
+"This release status should be used for unofficial translations and "
+"transliterations of tracklists and release titles, and does not denote a "
+"separate real release. It should not be used to denote bootlegs, mixtape/"
+"street albums, demos, or digital albums. Be sure to link to the "
+"corresponding real release with the {url|transl(iter)ation relationship}."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:366
+msgid ""
+"This should never be correct. Make sure that, say, your release set to CD "
+"isn’t meant to be a vinyl, or your vinyl isn’t actually a shellac disc."
+msgstr ""
+
+#: ../root/components/common-macros.tt:559
+#: ../root/static/scripts/common/components/DataTrackIcon.js:13
+msgid "This track is a data track."
+msgstr ""
+
+#: ../root/components/common-macros.tt:555
+#: ../root/static/scripts/common/components/PregapTrackIcon.js:13
+msgid "This track is hidden in the pregap."
+msgstr ""
+
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
+#: ../root/main/error/components/ErrorEnvironment.js:27
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
+msgstr ""
+
+#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
+#: ../root/cdstub/BrowseCDStubs.js:36 ../root/cdstub/CDStubInfo.js:27
+#: ../root/cdtoc/AttachCDTocConfirmation.js:70
+#: ../root/components/RelationshipsTable.js:334
+#: ../root/components/list/ReleaseGroupList.js:91
+#: ../root/edit/details/EditMedium.js:315
+#: ../root/edit/details/EditMedium.js:319 ../root/isrc/Index.js:66
+#: ../root/iswc/Index.js:57 ../root/recording/RecordingIndex.js:54
+#: ../root/static/scripts/release/components/MediumTable.js:84
+msgid "Title"
+msgstr ""
+
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:243
+msgid ""
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
+"stub, select the appropriate tab."
+msgstr ""
+
+#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
+#: ../root/cdtoc/CDTocInfo.js:44
+msgid "Total length:"
+msgstr ""
+
+#: ../root/cdstub/index.tt:17 ../root/cdstub/CDStubIndex.js:51
+#: ../root/cdtoc/CDTocInfo.js:40
+msgid "Total tracks:"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:524
+#: ../root/static/scripts/release-editor/dialogs.js:40
+msgid "Track Parser"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:114
+msgid "Track count:"
+msgstr ""
+
+#: ../root/cdstub/index.tt:7 ../root/release/edit/layout.tt:16
+#: ../root/cdstub/CDStubIndex.js:41 ../root/edit/details/AddMedium.js:144
+#: ../root/edit/details/EditMedium.js:497
+#: ../root/edit/details/RemoveMedium.js:81
+#: ../root/static/scripts/release-editor/fields.js:768
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:359
+msgid "Tracklist"
+msgstr ""
+
+#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
+#: ../root/artist_credit/ArtistCreditIndex.js:156
+#: ../root/artist_credit/ArtistCreditLayout.js:29
+#: ../root/components/list/ReleaseList.js:108
+#: ../root/edit/details/MergeReleases.js:238
+#: ../root/edit/details/historic/AddRelease.js:83
+#: ../root/release_group/ReleaseGroupIndex.js:170
+#: ../root/search/components/CDStubResults.js:46
+#: ../root/search/components/ReleaseResults.js:114
+msgid "Tracks"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:432
+msgid ""
+"Tracks are required. If you don’t know them, but do know some info (such as "
+"the format or number of media), tick the “I don’t know the tracklist for "
+"this medium” checkbox above and enter the available info. If you have no "
+"information about this release’s media, remove all media."
+msgstr ""
+
+#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
+msgid "Turkish"
+msgstr ""
+
+#: ../root/layout.tt:118 ../root/layout/components/Footer.js:34
+msgid "Twitter"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../root/account/applications/ApplicationList.js:155
+#: ../root/components/Aliases/AliasTable.js:26
+#: ../root/components/list/ReleaseGroupList.js:105
+#: ../root/components/list/ReleaseList.js:155
+#: ../root/edit/details/AddArea.js:61 ../root/edit/details/AddArtist.js:69
+#: ../root/edit/details/AddEvent.js:56 ../root/edit/details/AddInstrument.js:58
+#: ../root/edit/details/AddLabel.js:87 ../root/edit/details/AddPlace.js:49
+#: ../root/edit/details/AddReleaseGroup.js:66
+#: ../root/edit/details/AddRemoveAlias.js:83
+#: ../root/edit/details/AddSeries.js:44 ../root/edit/details/AddWork.js:53
+#: ../root/edit/details/EditAlias.js:105 ../root/edit/details/EditArea.js:73
+#: ../root/edit/details/EditArtist.js:86 ../root/edit/details/EditEvent.js:61
+#: ../root/edit/details/EditInstrument.js:58
+#: ../root/edit/details/EditLabel.js:73 ../root/edit/details/EditPlace.js:59
+#: ../root/edit/details/EditReleaseGroup.js:59
+#: ../root/edit/details/EditSeries.js:55
+#: ../root/edit/details/historic/AddRelease.js:45 ../root/iswc/Index.js:60
+#: ../root/release/CoverArtFields.js:56 ../root/report/DuplicateArtists.js:69
+#: ../root/report/DuplicateReleaseGroups.js:61
+#: ../root/report/IswcsWithManyWorks.js:53
+#: ../root/report/components/ArtistList.js:62
+#: ../root/report/components/EventList.js:64
+#: ../root/report/components/InstrumentList.js:58
+#: ../root/report/components/ReleaseGroupList.js:65
+#: ../root/report/components/WorkList.js:66
+#: ../root/search/components/AnnotationResults.js:54
+#: ../root/search/components/AreaResults.js:64
+#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/EventResults.js:76
+#: ../root/search/components/InstrumentResults.js:54
+#: ../root/search/components/LabelResults.js:67
+#: ../root/search/components/PlaceResults.js:64
+#: ../root/search/components/RecordingResults.js:149
+#: ../root/search/components/ReleaseGroupResults.js:65
+#: ../root/search/components/ReleaseResults.js:120
+#: ../root/search/components/SeriesResults.js:58
+#: ../root/search/components/WorkResults.js:58
+#: ../root/static/scripts/account/components/ApplicationForm.js:88
+#: ../root/static/scripts/alias/AliasEditForm.js:331
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
+#: ../root/static/scripts/common/components/FilterForm.js:83
+#: ../root/static/scripts/edit/externalLinks.js:1207
+#: ../root/static/scripts/edit/externalLinks.js:1529
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
+msgid "Type"
+msgstr ""
+
+#: ../root/area/edit_form.tt:11 ../root/artist/edit_form.tt:16
+#: ../root/event/edit_form.tt:14 ../root/instrument/edit_form.tt:11
+#: ../root/label/edit_form.tt:15 ../root/place/edit_form.tt:15
+#: ../root/release/add_cover_art.tt:54 ../root/release/edit/information.tt:103
+#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
+#: ../root/layout/components/sidebar/CollectionSidebar.js:59
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
+#: ../root/layout/components/sidebar/SidebarType.js:25
+#: ../root/search/components/SearchForm.js:84
+msgid "Type:"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:69
+#: ../root/edit/details/AddCoverArt.js:33
+#: ../root/edit/details/EditCoverArt.js:58
+#: ../root/edit/details/RemoveCoverArt.js:33 ../root/release/CoverArt.js:86
+msgid "Types:"
+msgstr ""
+
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
+#: ../root/main/error/components/ErrorEnvironment.js:49
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:21
+msgid "Unable to parse the tracklist you entered."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
+msgid "Untrusted"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:98
+msgid "Update the recording artist credit to match the track artist credit."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:93
+msgid "Update the recording title to match the track title."
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:84
+msgid "Uploading image..."
+msgstr ""
+
+#: ../root/components/forms.tt:272 ../root/components/forms.tt:297
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:142
+msgid "Uppercase Roman numerals"
+msgstr ""
+
+#: ../root/layout.tt:120 ../root/layout/components/Footer.js:45
+msgid "Use beta site"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:68
+msgid "Use custom artist delimiter"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:261
+msgid "Use the following fields to search for a CD stub."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:256
+msgid "Use the following fields to search for an existing medium."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:60
+msgid "Use track artists"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:95
+msgid "Use track lengths"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:37
+msgid "Use track numbers"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:74
+msgid "Use track titles"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:81
+msgid "Validating file..."
+msgstr ""
+
+#: ../root/recording/edit_form.tt:44
+#: ../root/edit/details/AddStandaloneRecording.js:64
+#: ../root/edit/details/EditRecording.js:77
+msgid "Video"
+msgstr ""
+
+#: ../root/recording/layout.tt:3 ../root/recording/RecordingLayout.js:39
+msgid "Video “{name}” by {artist}"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/edit/EditIndex.js:76
+#: ../root/edit/components/EditHeader.js:128
+msgid "Vote tally"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/elections/ElectionVotes.js:26
+msgid "Voter"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
+#: ../root/user/UserProfile.js:698
+msgid "Votes"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Voting closed"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:32
+msgid "Voting period (days)"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
+#: ../root/static/scripts/common/components/Warning.js:28
+#: ../root/static/scripts/common/components/WarningIcon.js:14
+msgid "Warning"
+msgstr ""
+
+#: ../root/release/edit/information.tt:282
+msgid ""
+"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
+"for which they don't know the actual date. Please use this date only "
+"if you're certain this date is correct!"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:61
+msgid "We couldn’t find a release matching that MBID."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:7
+msgid ""
+"We found discs matching the information you requested, listed below. If none "
+"of these are the release you are looking for, you can search using the form "
+"below in order to attach this disc to another MusicBrainz release, or to add "
+"a new one if the search shows it is missing from the database."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:12
+msgid "We used DiscID {discid}
to look up this information."
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:18
+#: ../root/layout/components/MergeHelper.js:53
+msgid ""
+"When you are ready to merge these, just click the Merge button. You may "
+"still add more to this merge queue by simply browsing to the entities page "
+"and following the merge link."
+msgstr ""
+
+#: ../root/layout.tt:113 ../root/layout/components/Footer.js:27
+msgid "Wiki"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397
+msgid "Wiki Transcluder"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Work.pm:9
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:42
+#: ../root/components/list/WorkList.js:61 ../root/edit/details/AddWork.js:30
+#: ../root/edit/details/EditWork.js:45 ../root/edit/details/RemoveIswc.js:31
+#: ../root/layout/components/Search.js:32
+#: ../root/report/IswcsWithManyWorks.js:50
+#: ../root/report/components/WorkList.js:50
+#: ../root/search/components/SearchForm.js:41
+#: ../root/static/scripts/common/constants.js:47
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:74
+#: ../root/user/UserProfile.js:60 ../root/work/WorkLayout.js:33
+msgid "Work"
+msgstr ""
+
+#: ../root/work/edit_form.tt:20
+#: ../root/static/scripts/common/components/AttributeList.js:65
+msgid "Work Attributes"
+msgstr ""
+
+#: ../root/work/edit_form.tt:11
+msgid "Work Details"
+msgstr ""
+
+#: ../root/release/edit/information.tt:133
+#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
+#: ../root/static/scripts/edit/components/PartialDateInput.js:161
+msgid "YYYY"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:68 ../root/admin/attributes/Attribute.js:29
+#: ../root/components/list/ReleaseGroupList.js:84
+msgid "Year"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
+#: ../lib/MusicBrainz/Server/Data/Vote.pm:177
+#: ../root/edit/components/Vote.js:86
+msgctxt "vote"
+msgid "Yes"
+msgstr ""
+
+#: ../root/components/forms.tt:320
+msgid ""
+"You are about to add an ISRC to this recording. The ISRC must be entered in "
+"standard CCXXXYYNNNNN
format:"
+msgstr ""
+
+#: ../root/components/forms.tt:309
+msgid ""
+"You are about to add an ISWC to this work. The ISWC must be entered in "
+"standard T-DDD.DDD.DDD-C
format:"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:5
+msgid "You are viewing releases by {artist}."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:12
+msgid ""
+"You can use the checkboxes under the parser to deactivate some sections. For "
+"example, you can deactivate “{lines_have_artists}” if your data has no track "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
+"parser to ignore them."
+msgstr ""
+
+#: ../root/release/edit/information.tt:165
+msgid "You cannot use the same country more than once."
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:4 ../root/layout/components/MergeHelper.js:32
+msgid "You currently have the following entities selected for merging:"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:7
+msgid ""
+"You have used the {valink|Various Artists} special purpose artist on this "
+"recording."
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:10
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
+msgid "You haven’t made any changes!"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:414
+msgid "You must be logged in to use this option."
+msgstr ""
+
+#: ../root/components/common-macros.tt:576
+msgid "You must enter a disambiguation comment for this entity."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:436
+msgid ""
+"You must enter a title for every track (if the track is untitled, enter "
+"“{untitled_track}”)."
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:32
+msgid "You must provide an edit note when adding a release."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:440
+msgid ""
+"You must select an artist for every track (the background color of every "
+"artist field should be green). If you’ve entered an artist but the "
+"background remains uncolored, click the magnifying glass to match the name "
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"down."
+msgstr ""
+
+#: ../root/release/edit/information.tt:30
+msgid ""
+"You must select an artist for the release (the background color of the "
+"artist field should be green). If you’ve entered an artist but the "
+"background remains uncolored, click the magnifying glass to match the name "
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"down."
+msgstr ""
+
+#: ../root/release/edit/information.tt:56
+msgid "You must select an existing release group."
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:36
+#: ../lib/MusicBrainz/Server/Form/EditNoteModify.pm:32
+#: ../lib/MusicBrainz/Server/Form/Role/EditNote.pm:30
+msgid ""
+"Your edit note seems to have no actual content. Please provide a note that "
+"will be helpful to your fellow editors!"
+msgstr ""
+
+#: ../root/edit/search.tt:7
+msgid ""
+"Your search took too long and was cancelled. It may help to be more "
+"specific, or to try again."
+msgstr ""
+
+#: ../root/layout.tt:21 ../root/layout/index.js:210
+msgid ""
+"You’re currently not allowed to edit or vote because an admin has revoked "
+"your privileges. If you haven’t already been contacted about why, please "
+"{uri|send us a message}."
+msgstr ""
+
+#: ../root/layout.tt:17 ../root/layout/index.js:202
+msgid ""
+"You’re currently not allowed to edit, vote or leave edit notes because an "
+"admin has revoked your privileges. If you haven’t already been contacted "
+"about why, please {uri|send us a message}."
+msgstr ""
+
+#: ../root/layout.tt:25 ../lib/MusicBrainz/Server/Controller/EditNote.pm:63
+#: ../root/layout/index.js:219
+msgid ""
+"You’re currently not allowed to leave or change edit notes because an admin "
+"has revoked your privileges. If you haven’t already been contacted about "
+"why, please {uri|send us a message}."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:289
+msgid ""
+"You’ve seeded some Disc IDs that aren’t matched to any medium. If this is "
+"wrong, use the “Attach Disc ID” options below."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:409
+msgid ""
+"You’ve used the {valink|Various Artists} special purpose artist on some "
+"tracks below. {valink|Various Artists} should very rarely be used on tracks; "
+"please make sure the artists have been entered correctly."
+msgstr ""
+
+#: ../root/components/common-macros.tt:186
+#: ../lib/MusicBrainz/Server/Edit/Relationship/RemoveLinkType.pm:86
+#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:112
+#: ../root/edit/details/EditAlias.js:76
+#: ../root/edit/details/SetTrackLengths.js:58
+#: ../root/static/scripts/common/components/EntityLink.js:48
+#: ../root/static/scripts/common/i18n/localizeLanguageName.js:15
+#: ../root/static/scripts/edit/components/Multiselect.js:197
+msgid "[removed]"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:172
+msgid "after"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:39
+msgid "all"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:287
+msgid "and voted"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:39
+msgid "any"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:20
+msgid "auto-edits"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:172
+msgid "before"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:172
+msgid "between"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:79 ../root/release/edit/recordings.tt:83
+msgid "by"
+msgstr ""
+
+#: ../root/components/common-macros.tt:107
+#: ../root/static/scripts/common/components/EntityLink.js:96
+msgid "cancelled"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "do not include"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "do not include editors in my subscriptions"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "do not include me"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:35
+msgid "do not match"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:378
+msgid "does not include"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "earliest closed first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:20
+msgid "edits"
+msgstr ""
+
+#: ../root/components/forms.tt:263 ../root/components/forms.tt:288
+#: ../root/edit/search_macros.tt:188 ../root/release/edit/tracklist.tt:3
+#: ../root/release/edit/tracklist.tt:83 ../root/release/edit/tracklist.tt:316
+#: ../root/release/edit/tracklist.tt:495 ../root/release/edit/tracklist.tt:510
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:121
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:886
+msgid "help"
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:94 ../root/cdtoc/list.tt:84
+msgid "hide tracklist"
+msgstr ""
+
+#: ../root/components/common-macros.tt:98
+#: ../root/static/scripts/common/components/EntityLink.js:117
+msgid "historical"
+msgstr ""
+
+#: ../root/components/common-macros.tt:96
+#: ../root/static/scripts/common/components/EntityLink.js:119
+msgid "historical, until {end}"
+msgstr ""
+
+#: ../root/components/common-macros.tt:94
+#: ../root/static/scripts/common/components/EntityLink.js:113
+msgid "historical, {begin}-{end}"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "in an unspecified order (possibly faster)"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include a beginner editor"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include an editor in my subscriptions"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include me"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include someone other than the edit author"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:378
+msgid "includes"
+msgstr ""
+
+#: ../root/components/common-macros.tt:153
+#: ../root/components/common-macros.tt:229
+#: ../root/static/scripts/common/components/EntityLink.js:141
+#: ../root/static/scripts/common/components/EntityLink.js:426
+msgid "info"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134 ../root/edit/search_macros.tt:151
+#: ../root/edit/search_macros.tt:193 ../root/edit/search_macros.tt:208
+#: ../root/edit/search_macros.tt:230 ../root/edit/search_macros.tt:248
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:321
+#: ../root/edit/search_macros.tt:336 ../root/edit/search_macros.tt:360
+#: ../root/edit/search_macros.tt:393
+msgid "is"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:360
+msgid "is a beginner"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134
+msgid "is after"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134
+msgid "is before"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134 ../root/edit/search_macros.tt:151
+msgid "is between"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:321
+#: ../root/edit/search_macros.tt:360 ../root/edit/search_macros.tt:387
+msgid "is in my subscriptions"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:151
+msgid "is less than"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:360
+msgid "is me"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:151
+msgid "is more than"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134 ../root/edit/search_macros.tt:151
+#: ../root/edit/search_macros.tt:172 ../root/edit/search_macros.tt:193
+#: ../root/edit/search_macros.tt:208 ../root/edit/search_macros.tt:230
+#: ../root/edit/search_macros.tt:248 ../root/edit/search_macros.tt:271
+#: ../root/edit/search_macros.tt:321 ../root/edit/search_macros.tt:336
+#: ../root/edit/search_macros.tt:360 ../root/edit/search_macros.tt:393
+msgid "is not"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:321
+#: ../root/edit/search_macros.tt:360 ../root/edit/search_macros.tt:387
+msgid "is not in my subscriptions"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:360
+msgid "is not me"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:484
+msgid "link"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:35
+msgid "match"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "newest first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:20
+msgid "non-auto-edits"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "oldest first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:172
+msgid "on"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:33
+msgid "or drop files here"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "recently closed first"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:38
+msgid "recording"
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:18 ../root/cdtoc/attach_list.tt:92
+#: ../root/cdtoc/list.tt:82
+msgid "show tracklist"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:37
+msgid "track"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "voting closing later first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "voting closing sooner first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "with recent edit notes first"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:24
+msgid "{artist} - {name}"
+msgstr ""
+
+#: ../root/components/common-macros.tt:131
+#: ../root/static/scripts/common/components/ExpandedArtistCredit.js:34
+msgid "{artist} as {name}"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:45
+msgid "{artist} has no releases which have only {n} track."
+msgid_plural "{artist} has no releases which have {n} tracks."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/cdstub/index.tt:13 ../root/cdstub/CDStubIndex.js:47
+msgid "{doc|Disc ID}:"
+msgstr ""
+
+#: ../root/components/common-macros.tt:199 ../root/main/index.js:268
+#: ../root/static/scripts/common/components/DescriptiveLink.js:74
+#: ../root/static/scripts/release-editor/dialogs.js:150
+msgid "{entity} by {artist}"
+msgstr ""
+
+#: ../root/layout.tt:82 ../root/layout/index.js:272
+msgid ""
+"{link|New notes} have been left on some of your edits. Please make sure to "
+"read them and respond if necessary."
+msgstr ""
+
+#: ../root/components/common-macros.tt:260
+#: ../root/static/scripts/common/components/EntityLink.js:262
+msgid "{name} – {additional_info}"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:20
+msgid "{num} release found matching your query."
+msgid_plural "{num} releases found matching your query."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/common-macros.tt:199
+#: ../root/static/scripts/common/components/DescriptiveLink.js:87
+msgid "{place} in {area}"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:39
+msgid ""
+"{recording_length} ({length_info|derived} from the associated track lengths)"
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:33
+msgid "{release} by {artist}"
+msgstr ""
+
+#: ../root/instrument/layout.tt:1 ../root/instrument/InstrumentLayout.js:33
+msgid "{type} “{instrument}”"
+msgstr ""
+
+#: ../root/work/layout.tt:1 ../root/work/WorkLayout.js:30
+msgid "{type} “{work}”"
+msgstr ""
+
+#: ../root/layout.tt:45 ../root/layout/index.js:124
+msgid "{uri|Return to musicbrainz.org}."
+msgstr ""
+
+#: ../root/recording/edit_form.tt:10
+msgid ""
+"{valink|Various Artists} should very rarely be used on recordings, make sure "
+"that the artist has been entered correctly."
+msgstr ""
+
+#: ../root/components/common-macros.tt:550
+#: ../root/static/scripts/common/i18n/addColon.js:13
+#: ../root/static/scripts/common/i18n/addColon.js:17
+msgid "{variable}:"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:61
+msgid "« Previous"
+msgstr ""
+
+#: ../root/components/paginator.tt:19 ../root/components/paginator.tt:31
+#: ../root/components/paginator.tt:39 ../root/components/Paginator.js:94
+#: ../root/components/Paginator.js:119 ../root/components/Paginator.js:133
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:162
+msgid "…"
+msgstr ""
+
+#: ../lib/MusicBrainz/Script/RemoveEmpty.pm:139
+msgid ""
+"This entity was automatically removed because it was empty: it had no "
+"relationships associated with it, nor (if relevant for the type of entity in "
+"question) any recordings, releases nor release groups. If you consider this "
+"was a valid, non-duplicate entry that does belong in MusicBrainz, feel free "
+"to add it again, but please ensure enough data is added to it this time to "
+"avoid another automatic removal."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller.pm:34
+#, perl-brace-format
+msgid "'{id}' is not a valid MusicBrainz ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller.pm:122
+#, perl-brace-format
+msgid ""
+"Thank you, your {edit_url|edit} ({edit_ids}) has been automatically accepted "
+"and applied."
+msgid_plural ""
+"Thank you, your {num_edits} {edit_url|edits} ({edit_ids}) have been "
+"automatically accepted and applied."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Controller.pm:128
+#, perl-brace-format
+msgid ""
+"Thank you, your {edit_url|edit} ({edit_ids}) has been entered into the edit "
+"queue for peer review."
+msgid_plural ""
+"Thank you, your {num_edits} {edit_url|edits} ({edit_ids}) have been entered "
+"into the edit queue for peer review."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Controller.pm:136
+#, perl-brace-format
+msgid ""
+"Thank you, your {edit_url|edit} ({edit_ids}) has been entered, with "
+"{num_open_edits} in the edit queue for peer review, and the rest "
+"automatically accepted and applied."
+msgid_plural ""
+"Thank you, your {num_edits} {edit_url|edits} ({edit_ids}) have been entered, "
+"with {num_open_edits} in the edit queue for peer review, and the rest "
+"automatically accepted and applied."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:57
+msgid "The user ID is missing or is in an invalid format."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:67
+msgid "The email address is missing."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:77
+msgid "The time is missing or is in an invalid format."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:88
+msgid "The verification key is missing."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:99
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:274
+msgid "The checksum is invalid, please double check your email."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:110
+msgid "Sorry, this email verification link has expired."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:122
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:286
+#, perl-brace-format
+msgid "The user with ID '{user_id}' could not be found."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:173
+msgid ""
+"We were unable to send login information to your email address. Please try "
+"again, however if you continue to experience difficulty contact us at "
+"support@musicbrainz.org."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:199
+msgid "There is no user with this username"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:204
+msgid "There is no user with this username and email"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:207
+msgid ""
+"We can't send a password reset email, because we have no email on record for "
+"this user."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:237
+msgid "Your password has been reset."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:252
+msgid "Missing one or more required parameters."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:263
+msgid "Sorry, this password reset link has expired."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:337
+msgid "There is no user with this email"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:420
+msgid "Your profile has been updated."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:424
+#, perl-brace-format
+msgid ""
+"We have sent you a verification email to {email}
. Please check "
+"your mailbox and click on the link in the email to verify the new email "
+"address."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:463
+msgid "Your password has been changed."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:701
+msgid ""
+"We were unable to send a verification email to you.http
or https
"
+"for web applications."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Application.pm:58
+msgid ""
+"Redirect URL scheme must be a reverse-DNS string, as in org.example."
+"app://auth
, for installed applications."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Area.pm:88
+msgid "An area already exists with this ISO code"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Artist.pm:75
+msgid "Group artists cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Artist.pm:82
+msgid "Orchestras cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Artist.pm:89
+msgid "Choirs cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Collection.pm:92
+msgid "The collection type must match the type of entities it contains."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Collection.pm:110
+#, perl-brace-format
+msgid ""
+"To add “{editor}” as a collaborator, please select them from the dropdown."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Collection.pm:115
+#, perl-brace-format
+msgid "Editor “{editor}” does not exist."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/EditNoteModify.pm:30
+msgid ""
+"You must provide an edit note. If you want to blank the note, please remove "
+"it instead."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:50
+#, perl-brace-format
+msgid "Please add an artist name for {credit}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:57
+#, perl-brace-format
+msgid ""
+"Artist \"{artist}\" is unlinked, please select an existing artist. You may "
+"need to add a new artist to MusicBrainz first."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:63
+msgid "Please add an artist name for each credit."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:78
+msgid "Artist credit field is required"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Coordinates.pm:58
+msgid "These coordinates could not be parsed"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/DatePeriod.pm:42
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:68
+msgid "The end date cannot precede the begin date."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/DiscID.pm:15
+msgid "This is not a valid disc ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/FreeDBID.pm:15
+msgid "This is not a valid FreeDB ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/GID.pm:15
+msgid "This is not a valid MBID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ID.pm:15
+msgid "This is not a valid database ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/IPI.pm:15
+#: ../lib/MusicBrainz/Server/Form/Field/IPI.pm:19
+msgid "This is not a valid IPI."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISNI.pm:15
+#: ../lib/MusicBrainz/Server/Form/Field/ISNI.pm:19
+msgid "This is not a valid ISNI."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISO_3166_1.pm:15
+msgid "This is not a valid ISO 3166-1 code"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISO_3166_2.pm:15
+msgid "This is not a valid ISO 3166-2 code"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISO_3166_3.pm:15
+msgid "This is not a valid ISO 3166-3 code"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISRC.pm:17
+msgid "This is not a valid ISRC"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISRC.pm:21
+msgid "This is not a valid ISRC."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISWC.pm:15
+#: ../lib/MusicBrainz/Server/Form/Field/ISWC.pm:19
+msgid "This is not a valid ISWC"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/LabelCode.pm:17
+msgid "Label codes must be greater than 0 and 5 digits at most"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Length.pm:31
+msgid "Not a valid time. Must be in the format MM:SS"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/PartialDate.pm:68
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:103
+msgid "invalid date"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Relationship.pm:95
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:290
+msgid ""
+"You must select a relationship type and target entity for every relationship."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Setlist.pm:15
+msgid "Please ensure all lines start with @, * or #, followed by a space."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Text.pm:21
+msgid "The characters you’ve entered are invalid or not allowed."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Time.pm:19
+msgid "This is not a valid time."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
+msgid "URL protocol must be HTTP, HTTPS or FTP"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Event.pm:31
+msgctxt "event type"
+msgid "[none]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Release.pm:95
+msgid ""
+"Must be a valid date or partial date. Examples: 2006-05-25, "
+"1990-01, ????-01, ..."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/ReleaseGroup.pm:54
+#: ../lib/MusicBrainz/Server/Form/Filter/ReleaseGroup.pm:63
+msgctxt "release group type"
+msgid "[none]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Work.pm:29
+msgid "As performer"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Work.pm:30
+msgid "As writer"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Work.pm:37
+msgctxt "work type"
+msgid "[none]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge.pm:21
+msgid "Please pick the entity you want the others merged into."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:54
+#: ../root/edit/details/MergeReleases.js:35
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:38
+msgid "Append mediums to target release"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:55
+#: ../root/edit/details/MergeReleases.js:36
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:39
+msgid "Merge mediums and recordings"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:66
+msgid "Another medium is already in this position"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:69
+msgid "Positions must be greater than 0"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Recording.pm:68
+msgid ""
+"This recording’s duration is determined by the tracks that are linked to it, "
+"and cannot be changed directly."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Recording/Standalone.pm:11
+msgid "You must provide an edit note when adding a standalone recording"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Release/AddCoverArt.pm:59
+#: ../lib/MusicBrainz/Server/Form/Role/CSRFToken.pm:10
+#: ../lib/MusicBrainz/Server/Form/Role/CSRFToken.pm:81
+msgid "The form you’ve submitted has expired. Please resubmit your request."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/EditNote.pm:26
+msgid "You must provide an edit note"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:34
+msgid "Invalid URL format"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:65
+msgid "A language is required."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:71
+msgid "A fluency level is required."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
+#: ../root/static/scripts/common/constants.js:366
+msgid "Basic"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
+#: ../root/static/scripts/common/constants.js:367
+msgid "Intermediate"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
+#: ../root/static/scripts/common/constants.js:365
+msgid "Advanced"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
+#: ../root/static/scripts/common/constants.js:368
+msgid "Native"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:96
+msgid "You must supply a complete birth date for us to display your age."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:100
+msgid "Birth year must be after 1900"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
+#: ../root/layout/components/Search.js:45
+#: ../root/search/components/CDStubResults.js:44
+#: ../root/search/components/SearchForm.js:46
+msgid "CD Stub"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:49
+#: ../root/layout/components/Search.js:42
+#: ../root/search/components/SearchForm.js:48
+msgctxt "noun"
+msgid "Tag"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
+#: ../root/search/components/SearchForm.js:60
+msgid "Indexed search"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:64
+msgid "Indexed search with advanced query syntax"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:65
+#: ../root/search/components/SearchForm.js:67
+msgid "Direct database search"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Series.pm:29
+msgid "A type is required."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/ChangePassword.pm:53
+msgid "The old password is incorrect"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/ChangePassword.pm:58
+msgid "An account with this name could not be found"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Login.pm:15
+msgid "Username field is required"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Login.pm:23
+msgid "Password field is required"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Preferences.pm:84
+#: ../root/static/scripts/account/components/PreferencesForm.js:80
+msgid "Daily"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Preferences.pm:85
+#: ../root/static/scripts/account/components/PreferencesForm.js:81
+msgid "Weekly"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Preferences.pm:86
+#: ../root/static/scripts/account/components/PreferencesForm.js:82
+msgid "Never"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Register.pm:15
+#, perl-brace-format
+msgid ""
+"The value of this field cannot be longer than {max} characters, but you "
+"entered {actual}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Register.pm:44
+msgid "Please enter a password in this field"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Register.pm:55
+msgid "The password confirmation does not match the password"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:35
+#: ../root/user/ReportUser.js:48
+msgid "Editor is spamming"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:36
+#: ../root/user/ReportUser.js:52
+msgid "Editor is unresponsive to edit notes"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:37
+#: ../root/user/ReportUser.js:56
+msgid "Editor intentionally ignores accepted guidelines"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:38
+#: ../root/user/ReportUser.js:60
+msgid "Editor is overzealous in enforcing guidelines as rules"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:39
+#: ../root/user/ReportUser.js:64
+msgid "Editor engages in overzealous or abusive yes/no voting"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:40
+#: ../root/user/ReportUser.js:69
+msgid "Editor has violated some other part of our Code of Conduct"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:46
+#: ../root/static/scripts/common/i18n/localizeLanguageName.js:19
+msgid "[No lyrics]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:82
+msgctxt "script optgroup"
+msgid "Frequently used"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:82
+msgctxt "script optgroup"
+msgid "Other"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:214
+msgid ""
+"This username contains invalid characters. (Check for consecutive spaces.)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:217
+msgid "This username is reserved for internal use."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:220
+msgid "Please choose another username, this one is already taken."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:60
+msgid "Please select a work attribute type."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:67
+msgid "Please enter a work attribute value."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:94
+msgid ""
+"You cannot select “[Multiple languages]” and specific languages at the same "
+"time."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:99
+msgid "You cannot select “[No lyrics]” and a lyrics language at the same time."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:104
+msgid "You cannot select the same language more than once."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:146
+msgid "Unknown work attribute type."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:155
+msgid "You cannot enter the same attribute and value more than once."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:162
+msgid "This value is not allowed for this work attribute type."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:30
+msgid "(Special case)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:31
+msgid ""
+"An album release primarily consists of previously unreleased material. This "
+"includes album re-issues, with or without bonus tracks."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:32
+msgid ""
+"A single typically has one main song and possibly a handful of additional "
+"tracks or remixes of the main track. A single is usually named after its "
+"main song."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:33
+msgid ""
+"An EP is an Extended Play release and often contains the letters EP in the "
+"title."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:34
+msgid ""
+"A compilation is a collection of previously released tracks by one or more "
+"artists."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:35
+msgid ""
+"A soundtrack is the musical score to a movie, TV series, stage show, "
+"computer game etc."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:36
+msgid "Non-music spoken word releases."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:37
+msgid "An interview release contains an interview with the Artist."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:38
+msgid "An audiobook is a book read by a narrator without music."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:39
+msgid "A release that was recorded live."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:40
+msgid "A release that was (re)mixed from previously released material."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:41
+msgid "Any release that does not fit any of the categories above."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:43
+msgid ""
+"Any release officially sanctioned by the artist and/or their record company. "
+"(Most releases will fit into this category.)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:44
+msgid ""
+"A giveaway release or a release intended to promote an upcoming official "
+"release. (e.g. prerelease albums or releases included with a magazine)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:45
+msgid ""
+"An unofficial/underground release that was not sanctioned by the artist and/"
+"or the record company."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:46
+msgid ""
+"A pseudo-release is a duplicate release for translation/transliteration "
+"purposes."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Translation.pm:254
+#: ../root/static/scripts/common/i18n/commaList.js:24
+#, perl-brace-format
+msgid "{almost_last_list_item} and {last_list_item}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Translation.pm:260
+#: ../root/static/scripts/common/i18n/commaList.js:30
+#, perl-brace-format
+msgid "{list_item}, {rest}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Translation.pm:271
+#: ../root/static/scripts/common/i18n/commaList.js:21
+#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
+#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
+#, perl-brace-format
+msgid "{last_list_item}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Translation.pm:274
+#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
+#, perl-brace-format
+msgid "{commas_only_list_item}, {rest}"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:45
+msgid ""
+"Please change your password. Unfortunately we've discovered that secure "
+"hashes user's passwords were temporarily available for download on our FTP "
+"site. While it is extremely unlikely that anyone will be able to derive the "
+"original passwords from this mishap, we are requiring all of our users to "
+"change their passwords. Sorry for the inconvenience. For more information "
+"see {blog|the recent blog post}."
+msgstr ""
+
+#: ../root/account/ChangePassword.js:58
+msgid "Please enter your old password below, and then your new password."
+msgstr ""
+
+#: ../root/account/ChangePassword.js:69 ../root/account/LostPassword.js:44
+#: ../root/admin/EditUser.js:155
+#: ../root/static/scripts/account/components/RegisterForm.js:64
+#: ../root/user/Login.js:100
+msgid "Username"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:77
+msgid "Old password:"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:85 ../root/account/ResetPassword.js:41
+msgid "New password:"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:93 ../root/account/ResetPassword.js:49
+#: ../root/static/scripts/account/components/RegisterForm.js:100
+msgid "Confirm password:"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:99 ../root/account/ChangePassword.js:117
+#: ../root/account/ChangePassword.js:119 ../root/account/ChangePassword.js:130
+#: ../root/account/ChangePassword.js:131
+#: ../root/components/UserAccountTabs.js:86
+msgid "Change Password"
+msgstr ""
+
+#: ../root/account/Donation.js:32 ../root/account/Donation.js:34
+#: ../root/components/UserAccountTabs.js:92
+msgid "Donation Check"
+msgstr ""
+
+#: ../root/account/Donation.js:38
+msgid ""
+"We were not able to check your donation status right now. Please try again "
+"later."
+msgstr ""
+
+#: ../root/account/Donation.js:45
+msgid ""
+"We have not received a donation from you recently. If you have just made a "
+"PayPal donation, then we have not received a notification from PayPal yet. "
+"Please wait a few minutes and reload this page to check again."
+msgstr ""
+
+#: ../root/account/Donation.js:52
+msgid ""
+"If you would like to make a donation, {donate|you can do that here}. If you "
+"have donated, but you are still being nagged, please {contact|contact us}."
+msgstr ""
+
+#: ../root/account/Donation.js:62
+msgid "Thank you for contributing to MusicBrainz."
+msgstr ""
+
+#: ../root/account/Donation.js:68
+msgid "You will not be nagged for another {days} days."
+msgstr ""
+
+#: ../root/account/Donation.js:74
+msgid "You will never be nagged again!"
+msgstr ""
+
+#: ../root/account/EditProfile.js:34 ../root/account/EditProfile.js:36
+#: ../root/components/UserAccountTabs.js:74
+msgid "Edit Profile"
+msgstr ""
+
+#: ../root/account/EditProfile.js:39
+msgid ""
+"See also your {uri|user preferences}, which include your privacy settings."
+msgstr ""
+
+#: ../root/account/EmailVerificationStatus.js:19
+msgid "Email Verification"
+msgstr ""
+
+#: ../root/account/EmailVerificationStatus.js:23
+msgid ""
+"Thank you, your email address has now been verified! If you still can't "
+"edit, please try to log out and log in again."
+msgstr ""
+
+#: ../root/account/LostPassword.js:29 ../root/account/LostPassword.js:30
+#: ../root/account/LostPasswordSent.js:14
+msgid "Lost Password"
+msgstr ""
+
+#: ../root/account/LostPassword.js:33
+msgid ""
+"Enter your username and email below. We will send you an email with a link "
+"to reset your password. If you have forgotten your username, {link|retrieve "
+"it} first and then reset your password."
+msgstr ""
+
+#: ../root/account/LostPassword.js:50 ../root/account/LostUsername.js:37
+#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
+#: ../root/admin/components/UserList.js:32
+#: ../root/report/components/EditorList.js:79
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
+#: ../root/static/scripts/account/components/PreferencesForm.js:208
+#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
+msgid "Email"
+msgstr ""
+
+#: ../root/account/LostPassword.js:55 ../root/account/ResetPassword.js:29
+#: ../root/account/ResetPassword.js:30 ../root/account/ResetPassword.js:55
+#: ../root/account/ResetPasswordStatus.js:19
+msgid "Reset Password"
+msgstr ""
+
+#: ../root/account/LostPasswordSent.js:14
+#: ../root/account/LostUsernameSent.js:14
+msgid "Email Sent!"
+msgstr ""
+
+#: ../root/account/LostPasswordSent.js:17
+msgid ""
+"We've sent you instructions on how to reset your password. If you don't "
+"receive this email or still have problems logging in, please {link|contact "
+"us}."
+msgstr ""
+
+#: ../root/account/LostUsername.js:27 ../root/account/LostUsername.js:28
+#: ../root/account/LostUsernameSent.js:14
+msgid "Lost Username"
+msgstr ""
+
+#: ../root/account/LostUsername.js:30
+msgid ""
+"Enter your email address below and we will send you an email with your "
+"MusicBrainz account information."
+msgstr ""
+
+#: ../root/account/LostUsernameSent.js:17
+msgid ""
+"We've sent you information about your MusicBrainz account. If you don't "
+"receive this email or still have problems logging in, please {link|contact "
+"us}."
+msgstr ""
+
+#: ../root/account/Preferences.js:34 ../root/account/PreferencesSaved.js:18
+#: ../root/components/UserAccountTabs.js:80
+msgid "Preferences"
+msgstr ""
+
+#: ../root/account/PreferencesSaved.js:21
+msgid ""
+"Your preferences have been saved. Click {link|here} to continue to your user "
+"page."
+msgstr ""
+
+#: ../root/account/Register.js:28 ../root/account/Register.js:35
+msgid "Create an Account"
+msgstr ""
+
+#: ../root/account/Register.js:31
+msgid "Captcha incorrect. Try again."
+msgstr ""
+
+#: ../root/account/Register.js:39
+msgid ""
+"Note that any contributions you make to MusicBrainz will be released "
+"into the Public Domain and/or licensed under a Creative Commons by-nc-sa "
+"license. Furthermore, you give the MetaBrainz Foundation the right to "
+"license this data for commercial use. Please read our {doc|license page} for "
+"more details."
+msgstr ""
+
+#: ../root/account/Register.js:51
+msgid ""
+"MusicBrainz believes strongly in the privacy of its users! Any personal "
+"information you choose to provide will not be sold or shared with anyone "
+"else. For full details, please read our {doc|Privacy Policy}."
+msgstr ""
+
+#: ../root/account/Register.js:61
+msgid ""
+"You may remove your personal information from our services anytime by "
+"deleting your account. For more details, see our {doc|GDPR compliance "
+"statement}."
+msgstr ""
+
+#: ../root/account/Register.js:73
+msgid ""
+"If you have any questions, please review the {faq|FAQs} or {doc|"
+"documentation} before {con|contacting us}. "
+msgstr ""
+
+#: ../root/account/Register.js:85
+msgid ""
+"Follow our {bl|blog} or {tw|twitter account}! To talk to other users, try "
+"the {fo|forums} or {irc|IRC}."
+msgstr ""
+
+#: ../root/account/Register.js:98
+msgid ""
+"MusicBrainz has one account type for all users. If you represent an artist "
+"or label, please use the above form to create an account."
+msgstr ""
+
+#: ../root/account/ResetPassword.js:33
+msgid "Set a new password for your MusicBrainz account."
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:34
+#: ../root/static/scripts/account/components/ApplicationForm.js:40
+msgid "Web Application"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:35
+#: ../root/static/scripts/account/components/ApplicationForm.js:41
+msgid "Installed Application"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:65
+msgid "Revoke Access"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:77
+msgid "Offline Access"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:94
+#: ../root/account/applications/ApplicationList.js:95
+#: ../root/layout/components/TopMenu.js:51
+msgid "Applications"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:97
+msgid "Authorized Applications"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:101
+msgid ""
+"Some applications and websites support accessing private data from or "
+"submitting data to MusicBrainz but require your permission to access your "
+"account. These are the applications that you have authorized to access your "
+"MusicBrainz account. If you no longer use some of the applications, you can "
+"revoke their access."
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:115
+#: ../root/account/applications/ApplicationList.js:154
+msgid "Application"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:116
+msgid "Access"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:117
+msgid "Last granted token"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:118
+#: ../root/account/applications/ApplicationList.js:158
+#: ../root/admin/attributes/Attribute.js:85
+#: ../root/admin/attributes/Language.js:46
+#: ../root/admin/attributes/Script.js:45
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:30
+#: ../root/admin/wikidoc/WikiDocIndex.js:118
+#: ../root/components/Aliases/AliasTable.js:29
+#: ../root/components/Aliases/ArtistCreditList.js:54
+#: ../root/static/scripts/common/components/FingerprintTable.js:80
+#: ../root/utility/tableColumns.js:82
+msgid "Actions"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:129
+msgid "You have not authorized any applications."
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:132
+msgid "Developer Applications"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:136
+msgid ""
+"Do you want to develop an application that uses the {mb_api_doc_url|"
+"MusicBrainz API}? {register_url|Register an application} to generate OAuth "
+"tokens. See our {oauth2_doc_url|OAuth documentation} for more details."
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:156
+msgid "OAuth Client ID"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:157
+msgid "OAuth Client Secret"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:167
+msgid "You do not have any registered applications."
+msgstr ""
+
+#: ../root/account/applications/EditApplication.js:21
+#: ../root/account/applications/EditApplication.js:22
+msgid "Edit Application"
+msgstr ""
+
+#: ../root/account/applications/EditApplication.js:26
+#: ../root/admin/EditBanner.js:39 ../root/admin/wikidoc/EditWikiDoc.js:51
+#: ../root/admin/wikidoc/WikiDocIndex.js:102
+msgid "Update"
+msgstr ""
+
+#: ../root/account/applications/RegisterApplication.js:22
+#: ../root/account/applications/RegisterApplication.js:23
+msgid "Register Application"
+msgstr ""
+
+#: ../root/account/applications/RegisterApplication.js:27
+msgid "Register"
+msgstr ""
+
+#: ../root/account/applications/RemoveApplication.js:21
+msgid "Are you sure you want to remove this application?"
+msgstr ""
+
+#: ../root/account/applications/RemoveApplication.js:22
+msgid "Remove Application"
+msgstr ""
+
+#: ../root/account/applications/RevokeApplicationAccess.js:30
+msgid "You’re about to revoke {app}’s permissions to:"
+msgstr ""
+
+#: ../root/account/applications/RevokeApplicationAccess.js:42
+msgid "Are you sure you want to revoke this application’s access?"
+msgstr ""
+
+#: ../root/account/applications/RevokeApplicationAccess.js:46
+msgid "Revoke Application Access"
+msgstr ""
+
+#: ../root/account/sso/DiscourseRegistered.js:19
+#: ../root/account/sso/DiscourseRegistered.js:20
+msgid "Account Created"
+msgstr ""
+
+#: ../root/account/sso/DiscourseRegistered.js:23
+#: ../root/account/sso/DiscourseUnconfirmedEmailAddress.js:17
+msgid ""
+"You must verify your email address before you can log in to {discourse|"
+"MetaBrainz Community Discourse}."
+msgstr ""
+
+#: ../root/account/sso/DiscourseRegistered.js:30
+msgid ""
+"An email has been sent to {addr}. Please check your mailbox and click on the "
+"link in the email to verify your email address."
+msgstr ""
+
+#: ../root/account/sso/DiscourseUnconfirmedEmailAddress.js:13
+#: ../root/account/sso/DiscourseUnconfirmedEmailAddress.js:14
+msgid "Unverified Email Address"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:47 ../root/admin/DeleteUser.js:49
+#: ../root/components/UserAccountTabs.js:111
+msgid "Delete Account"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:54
+msgid ""
+"Are you sure you want to delete all information about {e}? This cannot be "
+"undone!"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:66
+msgid "Allow the name “{editor_name}” to be reused."
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:75
+msgid "Delete {e}"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:84
+msgid ""
+"For information about the account deletion process, please read the {uri|"
+"account FAQ}."
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:92
+msgid ""
+"This will also cancel all your open edits and change all of your votes on "
+"any edits currently open to Abstain."
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:100
+msgid ""
+"Keep in mind this process might take a fairly long time if you have entered "
+"a lot of tags. If the process times out, please {contact_url|contact us}."
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:109
+msgid "Are you sure you want to delete your account? This cannot be undone!"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:120
+msgid "Delete my account"
+msgstr ""
+
+#: ../root/admin/EditBanner.js:25 ../root/layout/components/TopMenu.js:156
+msgid "Edit Banner Message"
+msgstr ""
+
+#: ../root/admin/EditBanner.js:27
+msgid "Edit banner message"
+msgstr ""
+
+#: ../root/admin/EditBanner.js:29
+msgid ""
+"This will set the banner message that is shown at the top of each page. An "
+"empty string removes the banner."
+msgstr ""
+
+#: ../root/admin/EditBanner.js:36
+msgid "Banner message"
+msgstr ""
+
+#: ../root/admin/EditUser.js:69
+msgid "Adjust User Account Flags"
+msgstr ""
+
+#: ../root/admin/EditUser.js:76 ../root/admin/PrivilegeSearch.js:63
+msgid "User permissions"
+msgstr ""
+
+#: ../root/admin/EditUser.js:79 ../root/admin/PrivilegeSearch.js:67
+msgid "Auto-editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:84 ../root/admin/PrivilegeSearch.js:72
+msgid "Transclusion editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:89 ../root/admin/PrivilegeSearch.js:77
+msgid "Relationship editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:94 ../root/admin/PrivilegeSearch.js:82
+msgid "Location editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:99 ../root/admin/PrivilegeSearch.js:87
+msgid "Banner message editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:103 ../root/admin/PrivilegeSearch.js:92
+msgid "User sanctions"
+msgstr ""
+
+#: ../root/admin/EditUser.js:106 ../root/admin/PrivilegeSearch.js:96
+msgid "Spammer"
+msgstr ""
+
+#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
+#: ../root/user/UserProfile.js:901
+msgid "Editing/voting disabled"
+msgstr ""
+
+#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
+#: ../root/user/UserProfile.js:904
+msgid "Edit notes disabled"
+msgstr ""
+
+#: ../root/admin/EditUser.js:125 ../root/admin/PrivilegeSearch.js:117
+msgid "Technical flags"
+msgstr ""
+
+#: ../root/admin/EditUser.js:133 ../root/admin/PrivilegeSearch.js:126
+msgid "No nag"
+msgstr ""
+
+#: ../root/admin/EditUser.js:137 ../root/admin/PrivilegeSearch.js:131
+msgid "Administration flags"
+msgstr ""
+
+#: ../root/admin/EditUser.js:141
+msgid "MBID submitter"
+msgstr ""
+
+#: ../root/admin/EditUser.js:148 ../root/admin/PrivilegeSearch.js:140
+msgid "Account admin"
+msgstr ""
+
+#: ../root/admin/EditUser.js:152
+msgid "Edit profile"
+msgstr ""
+
+#: ../root/admin/EditUser.js:166
+msgid "Skip verification"
+msgstr ""
+
+#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
+#: ../root/report/components/EditorList.js:74
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
+msgid "Website"
+msgstr ""
+
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
+msgstr ""
+
+#: ../root/admin/EditUser.js:182
+msgid "Edit user"
+msgstr ""
+
+#: ../root/admin/EmailSearch.js:31 ../root/admin/EmailSearch.js:33
+msgid "Search users by email"
+msgstr ""
+
+#: ../root/admin/EmailSearch.js:38
+msgid "Enter a {link|POSIX regular expression}."
+msgstr ""
+
+#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
+#: ../root/user/UserProfile.js:428
+msgid "IP lookup"
+msgstr ""
+
+#: ../root/admin/IpLookup.js:30
+msgid "IP hash:"
+msgstr ""
+
+#: ../root/admin/PrivilegeSearch.js:44 ../root/admin/PrivilegeSearch.js:46
+msgid "Search users by privileges"
+msgstr ""
+
+#: ../root/admin/PrivilegeSearch.js:50
+msgid ""
+"Select the flags you want to match. Editors which have other flags in "
+"addition to the selected ones will also be shown, unless you select “Exact "
+"match only” below."
+msgstr ""
+
+#: ../root/admin/PrivilegeSearch.js:58
+msgid "Exact match only"
+msgstr ""
+
+#: ../root/admin/PrivilegeSearch.js:135
+msgid "MBID submitter"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:30
+msgid "Disc IDs allowed"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:39
+#: ../root/edit/details/AddRelationshipAttribute.js:64
+#: ../root/edit/details/EditRelationshipAttribute.js:109
+msgid "Free text"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:81
+#: ../root/otherlookup/OtherLookupForm.js:107
+msgid "MBID"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:83
+msgid "Parent ID"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:116
+#: ../root/admin/attributes/Language.js:77
+#: ../root/admin/attributes/Script.js:75
+msgid "Add new attribute"
+msgstr ""
+
+#: ../root/admin/attributes/CannotRemoveAttribute.js:19
+#: ../root/admin/attributes/CannotRemoveAttribute.js:20
+msgid "Cannot Remove Attribute"
+msgstr ""
+
+#: ../root/admin/attributes/DeleteAttribute.js:26
+msgid "Are you sure you wish to remove the {name} attribute?"
+msgstr ""
+
+#: ../root/admin/attributes/DeleteAttribute.js:30
+msgid "Remove Attribute"
+msgstr ""
+
+#: ../root/admin/components/UserList.js:30
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
+msgid "Member since"
+msgstr ""
+
+#: ../root/admin/components/UserList.js:33
+msgid "Verified on"
+msgstr ""
+
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
+msgid "Last login"
+msgstr ""
+
+#: ../root/admin/components/UserList.js:52
+#: ../root/report/components/EditorList.js:57
+msgid "delete"
+msgstr ""
+
+#: ../root/admin/statistics-events/CreateStatisticsEvent.js:21
+#: ../root/admin/statistics-events/CreateStatisticsEvent.js:23
+msgid "Add a new statistics event"
+msgstr ""
+
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:21
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:22
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:45
+msgid "Remove statistics event"
+msgstr ""
+
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:37
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:47
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:29
+#: ../root/static/scripts/common/components/FingerprintTable.js:105
+msgid "Link"
+msgstr ""
+
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:42
+msgid "Are you sure you want to remove this statistics event?"
+msgstr ""
+
+#: ../root/admin/statistics-events/EditStatisticsEvent.js:21
+msgid "Edit statistics event"
+msgstr ""
+
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:27
+msgid "Statistics event details"
+msgstr ""
+
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:53
+#: ../root/edit/ModifyNote.js:81 ../root/oauth2/OAuth2FormPost.js:44
+#: ../root/static/scripts/edit/components/InlineSubmitButton.js:23
+#: ../root/user/components/UserTagFilters.js:61
+msgid "Submit"
+msgstr ""
+
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:21
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:22
+msgid "Statistics Events"
+msgstr ""
+
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:59
+msgctxt "statistics event"
+msgid "Add new event"
+msgstr ""
+
+#: ../root/admin/wikidoc/CreateWikiDoc.js:29
+#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
+msgid "Add Page"
+msgstr ""
+
+#: ../root/admin/wikidoc/CreateWikiDoc.js:36
+#: ../root/admin/wikidoc/EditWikiDoc.js:36
+msgid "Page:"
+msgstr ""
+
+#: ../root/admin/wikidoc/CreateWikiDoc.js:42
+msgid "Version:"
+msgstr ""
+
+#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
+#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
+msgid "Remove Page"
+msgstr ""
+
+#: ../root/admin/wikidoc/DeleteWikiDoc.js:28
+msgid ""
+"Are you sure you wish to remove the page “{page_uri|{page_name}}” from the "
+"transclusion table?"
+msgstr ""
+
+#: ../root/admin/wikidoc/DeleteWikiDoc.js:38
+#: ../root/components/ConfirmLayout.js:38 ../root/edit/DeleteNote.js:64
+msgid "Yes, I am sure"
+msgstr ""
+
+#: ../root/admin/wikidoc/EditWikiDoc.js:30
+#: ../root/admin/wikidoc/EditWikiDoc.js:32
+msgid "Update Page"
+msgstr ""
+
+#: ../root/admin/wikidoc/EditWikiDoc.js:40
+msgid "Current version:"
+msgstr ""
+
+#: ../root/admin/wikidoc/EditWikiDoc.js:45
+#: ../root/edit/details/ChangeWikiDoc.js:61
+msgid "New version:"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:41
+msgid "Page name"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:47
+msgid "Transcluded version"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:68
+msgid "Error!"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:81
+msgid "diff"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:90
+msgid "Wiki version"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:114
+msgid "View on wiki"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:149
+#: ../root/admin/wikidoc/WikiDocIndex.js:151
+msgid "Transclusion Table"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:154
+msgid ""
+"Read the {doc|WikiDocs} documentation for an overview of how transclusion "
+"works."
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:164
+msgid "Add a new entry"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:169
+msgid "View transclusion history"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:174
+msgid ""
+"Note: MediaWiki does not check to see if the version number "
+"matches the page name, it will take the version number and provide whatever "
+"page is associated with it. Make sure to double check your work when "
+"updating a page!"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:185
+msgid "There was a problem accessing the wiki API."
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:43
+#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
+msgid "Annotation comparison"
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:49
+msgid "Old annotation"
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:58
+msgid "New annotation"
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:71
+msgid ""
+"Comparing revision by {user_old} on {date_old} with revision by {user_new} "
+"on {date_new}."
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:87
+msgid "View annotation history."
+msgstr ""
+
+#: ../root/annotation/AnnotationHistory.js:40
+#: ../root/annotation/AnnotationHistory.js:42
+msgid "Annotation history"
+msgstr ""
+
+#: ../root/annotation/AnnotationHistory.js:54
+msgid "Compare versions"
+msgstr ""
+
+#: ../root/annotation/AnnotationHistory.js:62
+msgid "This entity has no annotation history."
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:47
+#: ../root/annotation/EditAnnotation.js:49
+#: ../root/layout/components/sidebar/AnnotationLinks.js:37
+#: ../root/static/scripts/common/components/Annotation.js:97
+msgid "Edit annotation"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:53
+msgid ""
+"Please note that any content submitted to MusicBrainz will be made available "
+"to the public under {open|open licenses}, do not submit any copyrighted text "
+"here!"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:62
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:80
+#: ../root/static/scripts/common/components/Annotation.js:71
+msgid "Changelog:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:93
+msgctxt "button"
+msgid "Preview"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:98
+msgid "Annotation Formatting"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:100
+msgid "Annotations support a limited set of wiki formatting options:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:105
+msgid "Emphasis:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:107
+msgid "''italics''; '''bold'''; '''''bold italics'''''; ---- horizontal rule"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:112
+msgid "Headings:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:114
+msgid "= Title 1 =; == Title 2 ==; === Title 3 ==="
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:118
+msgid "Lists:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:120
+msgid ""
+"tab or 4 spaces and: * bullets or 1., a., A., i., I. numbered items "
+"(rendered with 1.)"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:125
+msgid "Links:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:127
+msgid "URL; [URL]; [URL|label]; [entity-type:MBID|label]"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:135
+msgid ""
+"Because square brackets [] are used to create hyperlinks, you have to use "
+"the encoded html equivalents ([
for [) and (&"
+"#93;
for ]) if you want them not be converted into hyperlinks. "
+"Example: If you want to use [unknown] in the annotation, you'll have to "
+"write [unknown]
then it will appear the way you "
+"intended it to show."
+msgstr ""
+
+#: ../root/area/AreaArtists.js:32 ../root/area/AreaArtists.js:33
+#: ../root/components/EntityTabs.js:23
+#: ../root/components/TagEntitiesList.js:162
+#: ../root/components/list/EventList.js:85
+#: ../root/instrument/InstrumentArtists.js:37
+#: ../root/instrument/InstrumentArtists.js:39 ../root/iswc/Index.js:59
+#: ../root/report/IswcsWithManyWorks.js:52 ../root/report/ReportsIndex.js:55
+#: ../root/report/components/EventList.js:69
+#: ../root/search/components/EventResults.js:77
+#: ../root/search/components/WorkResults.js:56
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
+msgid "Artists"
+msgstr ""
+
+#: ../root/area/AreaArtists.js:52 ../root/instrument/InstrumentArtists.js:59
+#: ../root/report/DuplicateArtists.js:127
+msgid "Add selected artists for merging"
+msgstr ""
+
+#: ../root/area/AreaArtists.js:60
+msgid "This area is not currently associated with any artists."
+msgstr ""
+
+#: ../root/area/AreaEvents.js:32 ../root/area/AreaEvents.js:33
+#: ../root/artist/ArtistEvents.js:41 ../root/artist/ArtistEvents.js:42
+#: ../root/components/EntityTabs.js:24
+#: ../root/components/TagEntitiesList.js:166 ../root/place/PlaceEvents.js:32
+#: ../root/place/PlaceEvents.js:33 ../root/report/ReportsIndex.js:138
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:19
+#: ../root/tag/TagLayout.js:34
+msgid "Events"
+msgstr ""
+
+#: ../root/area/AreaEvents.js:54 ../root/artist/ArtistEvents.js:69
+#: ../root/place/PlaceEvents.js:53
+msgid "Add selected events for merging"
+msgstr ""
+
+#: ../root/area/AreaEvents.js:62
+msgid "This area is not currently associated with any events."
+msgstr ""
+
+#: ../root/area/AreaHeader.js:29
+msgid "{area_type} in {parent_areas}"
+msgstr ""
+
+#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
+#: ../root/components/EntityTabs.js:26
+#: ../root/components/TagEntitiesList.js:174
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
+#: ../root/report/ReportsIndex.js:174
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
+#: ../root/tag/TagLayout.js:29
+msgid "Labels"
+msgstr ""
+
+#: ../root/area/AreaLabels.js:51
+msgid "Add selected labels for merging"
+msgstr ""
+
+#: ../root/area/AreaLabels.js:59
+msgid "This area is not currently associated with any labels."
+msgstr ""
+
+#: ../root/area/AreaMerge.js:32
+msgid ""
+"You are about to merge all these areas into a single one. Please select the "
+"area all others should be merged into:"
+msgstr ""
+
+#: ../root/area/AreaPlaces.js:36 ../root/area/AreaPlaces.js:37
+#: ../root/components/EntityTabs.js:29
+#: ../root/components/TagEntitiesList.js:178 ../root/report/ReportsIndex.js:542
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:27
+#: ../root/tag/TagLayout.js:30
+msgid "Places"
+msgstr ""
+
+#: ../root/area/AreaPlaces.js:49 ../root/place/PlaceMap.js:40
+msgid ""
+"A map cannot be shown because no maps service access token has been set for "
+"this server."
+msgstr ""
+
+#: ../root/area/AreaPlaces.js:69
+msgid "Add selected places for merging"
+msgstr ""
+
+#: ../root/area/AreaPlaces.js:78
+msgid "This area is not currently associated with any places."
+msgstr ""
+
+#: ../root/area/AreaRecordings.js:29
+msgid "This area has no relationships to any recordings."
+msgstr ""
+
+#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
+#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
+#: ../root/relationship/RelationshipsHeader.js:37
+#: ../root/static/scripts/common/components/Relationships.js:92
+#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
+msgid "Relationships"
+msgstr ""
+
+#: ../root/area/AreaReleases.js:35 ../root/area/AreaReleases.js:38
+#: ../root/artist/ArtistReleases.js:46 ../root/artist/ArtistReleases.js:47
+#: ../root/artist_credit/ArtistCreditIndex.js:135
+#: ../root/artist_credit/ArtistCreditLayout.js:27
+#: ../root/components/EntityTabs.js:31
+#: ../root/components/TagEntitiesList.js:186
+#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
+#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
+#: ../root/instrument/InstrumentReleases.js:37
+#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
+#: ../root/report/ReportsIndex.js:250
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:31
+#: ../root/tag/TagLayout.js:26
+msgid "Releases"
+msgstr ""
+
+#: ../root/area/AreaReleases.js:52 ../root/artist/ArtistReleases.js:64
+#: ../root/instrument/InstrumentReleases.js:58 ../root/label/LabelIndex.js:96
+#: ../root/release_group/ReleaseGroupIndex.js:191
+msgid "Add selected releases for merging"
+msgstr ""
+
+#: ../root/area/AreaReleases.js:60
+msgid "This area is not currently associated with any releases."
+msgstr ""
+
+#: ../root/area/AreaReleases.js:68
+msgid "This area has no relationships to any releases."
+msgstr ""
+
+#: ../root/area/AreaUsers.js:26 ../root/area/AreaUsers.js:27
+#: ../root/components/EntityTabs.js:32
+msgid "Users"
+msgstr ""
+
+#: ../root/area/AreaUsers.js:31
+msgid "There is currently {num} user in this area."
+msgid_plural "There are currently {num} users in this area."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/area/AreaUsers.js:37
+msgid "There are currently no users in this area."
+msgstr ""
+
+#: ../root/area/AreaWorks.js:25 ../root/artist/ArtistWorks.js:41
+#: ../root/artist/ArtistWorks.js:42 ../root/components/EntityTabs.js:33
+#: ../root/components/TagEntitiesList.js:198 ../root/report/ReportsIndex.js:568
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:39
+#: ../root/tag/TagLayout.js:28
+msgid "Works"
+msgstr ""
+
+#: ../root/area/AreaWorks.js:29
+msgid "This area has no relationships to any works."
+msgstr ""
+
+#: ../root/area/DeleteArea.js:35 ../root/area/DeleteArea.js:37
+msgid "Remove Area"
+msgstr ""
+
+#: ../root/area/DeleteArea.js:41
+msgid ""
+"This area cannot be removed because it is one of the areas that can be used "
+"as a release country."
+msgstr ""
+
+#: ../root/area/DeleteArea.js:55
+msgid ""
+"This area cannot be removed because it is still in use (in artists, labels, "
+"places, relationships or open edits)."
+msgstr ""
+
+#: ../root/artist/ArtistEvents.js:78
+msgid "No events found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistEvents.js:79
+msgid "This artist is not currently associated with any events."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:92
+msgid "Show official release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:99
+msgid "Show all release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:106
+msgid "Show official various artist release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:113
+msgid "Show all various artist release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:142
+msgid "This artist only has unofficial release groups by various artists."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:148
+msgid "Showing all release groups for various artists"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:149
+msgid "This artist does not have any various artists release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:158
+msgid "This artist only has release groups by various artists."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:162
+msgid "Showing official release groups for various artists"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:170
+msgid "This artist only has unofficial release groups."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:174
+msgid "Showing all release groups by this artist"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:185
+msgid "Showing official release groups by this artist"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:239
+msgid "Performance name of"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:247
+msgid "Legal name"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:253 ../root/label/LabelIndex.js:64
+msgid "Previously known as"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:260 ../root/label/LabelIndex.js:71
+msgid "Renamed to"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:268
+msgid "Also performs as"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:282
+msgid "Discography"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:323 ../root/artist/ArtistRecordings.js:169
+#: ../root/instrument/InstrumentRecordings.js:59 ../root/isrc/Index.js:99
+msgid "Add selected recordings for merging"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:332
+msgid "This artist has no release groups, only standalone recordings."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:336
+msgid "No results found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistMerge.js:34
+msgid ""
+"You are about to merge all these artists into a single one. Please select "
+"the artist all others should be merged into:"
+msgstr ""
+
+#: ../root/artist/ArtistMerge.js:50
+msgid "You should only use the checkbox above to fix errors (such as typos)."
+msgstr ""
+
+#: ../root/artist/ArtistMerge.js:56
+msgid ""
+"If a name appears on the cover of a release, don’t check the box: the "
+"artists will still be combined if you don’t, but the {doc_acs|artist "
+"credits} will be kept as they are now."
+msgstr ""
+
+#: ../root/artist/ArtistMerge.js:65
+msgid ""
+"Update matching artist and relationship credits to use the target artist’s "
+"name"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:55
+msgid "Show all recordings"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:60
+msgid "Show only standalone recordings"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:65
+msgid "Show only videos"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:73
+msgid "Showing only standalone recordings"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:89
+msgid "Showing only videos"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:105
+msgid "Showing all recordings"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:176
+msgid "No recordings found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:177
+#: ../root/instrument/InstrumentRecordings.js:67
+msgid "No recordings found."
+msgstr ""
+
+#: ../root/artist/ArtistRelationships.js:37
+#: ../root/label/LabelRelationships.js:37
+msgid "Appearances"
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:73
+msgid "No releases found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:74
+#: ../root/instrument/InstrumentReleases.js:66
+#: ../root/release_group/ReleaseGroupIndex.js:197
+msgid "No releases found."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:80
+msgid ""
+"Showing Various Artist releases. {show_subset|Show releases by this artist "
+"instead}."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:91
+msgid "This search only found releases by various artists."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:93
+msgid "This artist only has releases by various artists."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:98
+msgid ""
+"Showing releases by this artist. {show_all|Show Various Artist releases "
+"instead}."
+msgstr ""
+
+#: ../root/artist/ArtistWorks.js:65 ../root/iswc/Index.js:79
+msgid "Add selected works for merging"
+msgstr ""
+
+#: ../root/artist/ArtistWorks.js:74
+msgid "No works found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistWorks.js:75
+msgid "This artist is not currently associated with any works."
+msgstr ""
+
+#: ../root/artist/CannotSplit.js:25
+msgid "This artist is already empty and is awaiting automatic deletion."
+msgstr ""
+
+#: ../root/artist/CannotSplit.js:28
+msgid ""
+"This artist has relationships other than collaboration relationships, and "
+"cannot be split until these are removed. {relationships|View all "
+"relationships}."
+msgstr ""
+
+#: ../root/artist/SpecialPurpose.js:23 ../root/label/SpecialPurpose.js:23
+msgid "Cannot edit"
+msgstr ""
+
+#: ../root/artist/SpecialPurpose.js:25
+msgid "You may not edit special purpose artists"
+msgstr ""
+
+#: ../root/artist/SpecialPurpose.js:27
+msgid ""
+"The artist you are trying to edit is a special purpose artist, and you may "
+"not make direct changes to this data."
+msgstr ""
+
+#: ../root/artist/utils.js:13
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:65
+msgid "Born in:"
+msgstr ""
+
+#: ../root/artist/utils.js:17
+msgctxt "group artist"
+msgid "Founded in"
+msgstr ""
+
+#: ../root/artist/utils.js:19
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:55
+msgid "Begin area:"
+msgstr ""
+
+#: ../root/artist/utils.js:26
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:61
+msgid "Born:"
+msgstr ""
+
+#: ../root/artist/utils.js:30
+msgctxt "group artist"
+msgid "Founded"
+msgstr ""
+
+#: ../root/artist/utils.js:32
+msgctxt "character artist"
+msgid "Created"
+msgstr ""
+
+#: ../root/artist/utils.js:41
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:65
+msgid "Died in:"
+msgstr ""
+
+#: ../root/artist/utils.js:45
+msgctxt "group artist"
+msgid "Dissolved in"
+msgstr ""
+
+#: ../root/artist/utils.js:47
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:55
+msgid "End area:"
+msgstr ""
+
+#: ../root/artist/utils.js:57
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:62
+msgid "Died:"
+msgstr ""
+
+#: ../root/artist/utils.js:62
+msgctxt "group artist"
+msgid "Dissolving"
+msgstr ""
+
+#: ../root/artist/utils.js:63
+msgctxt "group artist"
+msgid "Dissolved"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:93
+msgid "This artist credit is composed of the following artists:"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:103
+msgid "credited as “{credit}”"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:111
+msgid "Uses"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:124
+#: ../root/artist_credit/ArtistCreditLayout.js:26
+#: ../root/components/TagEntitiesList.js:182
+#: ../root/components/list/RecordingList.js:62
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:33
+#: ../root/tag/TagLayout.js:25
+msgid "Release Groups"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:126
+#: ../root/components/TagEntitiesList.js:183
+msgid "See all {num} release groups"
+msgid_plural "See all {num} release groups"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:136
+#: ../root/components/TagEntitiesList.js:187
+msgid "See all {num} releases"
+msgid_plural "See all {num} releases"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:147
+#: ../root/components/TagEntitiesList.js:191
+msgid "See all {num} recordings"
+msgid_plural "See all {num} recordings"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:158
+msgid "See all {num} tracks"
+msgid_plural "See all {num} tracks"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/ArtistCreditLayout.js:25
+#: ../root/collection/CollectionHeader.js:77
+#: ../root/components/EntityTabs.js:79 ../root/tag/TagLayout.js:23
+msgid "Overview"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditLayout.js:43
+#: ../root/artist_credit/ArtistCreditLayout.js:47
+#: ../root/artist_credit/ArtistCreditLayout.js:57
+msgid "Artist credit “{artist_credit}”"
+msgstr ""
+
+#: ../root/artist_credit/EntityList.js:22 ../root/tag/EntityList.js:76
+msgid "{num} recording found"
+msgid_plural "{num} recordings found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/EntityList.js:23 ../root/tag/EntityList.js:77
+msgid "{num} release found"
+msgid_plural "{num} releases found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/EntityList.js:25 ../root/tag/EntityList.js:79
+msgid "{num} release group found"
+msgid_plural "{num} release groups found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/EntityList.js:28
+msgid "{num} track found"
+msgid_plural "{num} tracks found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/EntityList.js:32
+msgid "No recordings with this artist credit were found."
+msgstr ""
+
+#: ../root/artist_credit/EntityList.js:33
+msgid "No releases with this artist credit were found."
+msgstr ""
+
+#: ../root/artist_credit/EntityList.js:34
+msgid "No release groups with this artist credit were found."
+msgstr ""
+
+#: ../root/artist_credit/EntityList.js:35
+msgid "No tracks with this artist credit were found."
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:30 ../root/cdstub/BrowseCDStubs.js:31
+#: ../root/layout/components/BottomMenu.js:231
+msgid "Top CD Stubs"
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
+msgid "Lookup count"
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
+msgid "Modify count"
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:49 ../root/cdstub/CDStubHeader.js:22
+#: ../root/cdstub/CDStubLayout.js:29
+#: ../root/layout/components/sidebar/CDStubSidebar.js:27
+msgid "Various Artists"
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:56
+msgid "Added {add}, last modified {lastmod}"
+msgstr ""
+
+#: ../root/cdstub/CDStubNotFound.js:19
+msgid "CD Stub Not Found"
+msgstr ""
+
+#: ../root/cdstub/CDStubNotFound.js:22
+msgid ""
+"Sorry, {discid}
does not match a CD stub. You can try "
+"{search_url|searching for it} instead."
+msgstr ""
+
+#: ../root/cdstub/DiscIdNotValid.js:19
+msgid "Invalid Disc ID"
+msgstr ""
+
+#: ../root/cdstub/DiscIdNotValid.js:22
+msgid "Sorry, {discid}
is not a valid disc ID."
+msgstr ""
+
+#: ../root/cdstub/ImportCDStub.js:38
+msgid "Please search for the artist you wish to add a new release for:"
+msgstr ""
+
+#: ../root/cdstub/ImportCDStub.js:100
+msgid "Import CD stub"
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:53
+msgid ""
+"Are you sure that you wish to attach the disc ID {discid}
to "
+"{format} {pos} of {release} by {artist}?"
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:80
+msgid "Track length comparison"
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:84
+#: ../root/cdtoc/SetTracklistDurations.js:67
+msgid "This edit would only make subsecond changes to track lengths."
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:88
+msgid "CD TOC track lengths"
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:90
+msgid "Medium track lengths"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:23
+msgid "CD TOC details"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:36
+msgid "FreeDB:"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:48
+msgid "Track details:"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
+#: ../root/search/components/RecordingResults.js:147
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
+msgid "Track"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:53
+msgid "Start"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
+#: ../root/search/components/ArtistResults.js:58
+#: ../root/search/components/LabelResults.js:71
+#: ../root/search/components/PlaceResults.js:68
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
+msgid "End"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
+#: ../root/cdtoc/CDTocInfo.js:63
+msgid "Sectors"
+msgstr ""
+
+#: ../root/cdtoc/RemoveDiscId.js:32 ../root/cdtoc/RemoveDiscId.js:33
+msgid "Remove Disc ID"
+msgstr ""
+
+#: ../root/cdtoc/RemoveDiscId.js:38
+msgid ""
+"Are you sure you want to remove the disc ID {discid}
from the "
+"release {release} by {artist}?"
+msgstr ""
+
+#: ../root/cdtoc/RemoveDiscId.js:49
+msgid ""
+"You need to be certain that this disc ID was added to this release "
+"erroneously, since a release can have multiple valid disc IDs, and each disc "
+"ID can belong to more than one release. For more in-depth information about "
+"this topic, please see our {doc|CD submission guide}."
+msgstr ""
+
+#: ../root/cdtoc/SelectArtistForCDToc.js:37
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:128
+msgid "Search for an artist"
+msgstr ""
+
+#: ../root/cdtoc/SelectArtistForCDToc.js:67
+msgid ""
+"Click the radio button to select the appropriate artist, or click the "
+"artist’s name to get more info."
+msgstr ""
+
+#: ../root/cdtoc/SelectArtistForCDToc.js:113
+msgid ""
+"If you don't see the artist you are looking for, you can still add a new "
+"release. This will allow you to add this artist and a release at the same "
+"time"
+msgstr ""
+
+#: ../root/cdtoc/SetTracklistDurations.js:46
+#: ../root/cdtoc/SetTracklistDurations.js:47
+msgid "Set Tracklist Durations"
+msgstr ""
+
+#: ../root/cdtoc/SetTracklistDurations.js:50
+msgid ""
+"You are about to enter an edit that will change the durations of tracks to "
+"match that of the below disc ID."
+msgstr ""
+
+#: ../root/cdtoc/SetTracklistDurations.js:63 ../root/edit/EditIndex.js:53
+msgid "Changes"
+msgstr ""
+
+#: ../root/cdtoc/SetTracklistDurations.js:78
+msgid "The medium you are altering is part of the following release: {release}"
+msgstr ""
+
+#: ../root/collection/CollectionHeader.js:37
+msgid "Public collection by {owner}"
+msgstr ""
+
+#: ../root/collection/CollectionHeader.js:40
+msgid "Private collection by {owner}"
+msgstr ""
+
+#: ../root/collection/CollectionHeader.js:55
+msgid "See all of your collections"
+msgstr ""
+
+#: ../root/collection/CollectionHeader.js:57
+msgid "See all of {editor}'s public collections"
+msgstr ""
+
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
+msgid ""
+"This content is hidden to prevent spam. To view it, please {url|log in}."
+msgstr ""
+
+#: ../root/collection/CollectionIndex.js:205
+#: ../root/collection/CollectionMerge.js:70
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
+#: ../root/user/UserCollections.js:117
+msgid "Collaborators"
+msgstr ""
+
+#: ../root/collection/CollectionIndex.js:219
+msgid "Remove selected items from collection"
+msgstr ""
+
+#: ../root/collection/CollectionIndex.js:224
+msgid "This collection is empty."
+msgstr ""
+
+#: ../root/collection/CollectionLayout.js:34
+msgid "Collection “{collection}”"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:50
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:52
+#: ../root/user/UserCollections.js:103
+msgid "Collection"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:58
+msgid "Entity Type"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:63
+msgid "Entities"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:77 ../root/user/UserCollections.js:76
+msgid "Public"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:78 ../root/user/UserCollections.js:76
+msgid "Private"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:79
+#: ../root/static/scripts/account/components/PreferencesForm.js:190
+#: ../root/user/UserCollections.js:128
+msgid "Privacy"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:116
+#: ../root/collection/CollectionMerge.js:118
+msgid "Merge collections"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:120
+msgid ""
+"You are about to merge all these collections into a single one. Please "
+"select the collection all others should be merged into:"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:129
+msgid ""
+"Warning: These collections are for different entity types. "
+"Please remove some collections from the merge queue until you only have "
+"collections for the same entity type."
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:136
+msgid ""
+"Warning: These collections are for different entity types. "
+"Only collections for the same entity type can be merged."
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:148
+msgid ""
+"Warning: Some of these collections are public and some are "
+"private. Keep in mind the privacy setting of the destination collection will "
+"apply. If you merge your private collections into a public one, the final "
+"result will be visible to other users."
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:163
+msgid "The merged collection will have the following collaborators:"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:174
+msgid ""
+"This process cannot be reverted. Are you sure you want to enter a merge?"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:184
+msgid "Confirm"
+msgstr ""
+
+#: ../root/collection/CreateCollection.js:28
+#: ../root/collection/CreateCollection.js:31
+#: ../root/user/UserCollections.js:226
+msgid "Add a new collection"
+msgstr ""
+
+#: ../root/collection/DeleteCollection.js:28
+#: ../root/collection/DeleteCollection.js:34
+msgid "Remove collection"
+msgstr ""
+
+#: ../root/collection/DeleteCollection.js:30
+msgid "Are you sure you want to remove the collection {collection}?"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTable.js:22
+#: ../root/edit/details/AddRemoveAlias.js:57
+#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
+msgid "Alias"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTable.js:24
+msgid "Begin Date"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTable.js:25
+msgid "End Date"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTable.js:27
+#: ../root/edit/details/AddRemoveAlias.js:71
+#: ../root/edit/details/EditAlias.js:93
+#: ../root/static/scripts/alias/AliasEditForm.js:312
+msgid "Locale"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTableRow.js:51
+msgid "primary"
+msgstr ""
+
+#: ../root/components/Aliases/ArtistCreditList.js:33
+#: ../root/report/ReportsIndex.js:116
+msgid "Artist credits"
+msgstr ""
+
+#: ../root/components/Aliases/ArtistCreditList.js:36
+msgid ""
+"This is a list of all the different ways {artist} is credited in the "
+"database. View the {doc|artist credit documentation} for more details."
+msgstr ""
+
+#: ../root/components/Aliases/ArtistCreditList.js:69
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:139
+msgid "see uses"
+msgstr ""
+
+#: ../root/components/Aliases/index.js:49 ../root/components/EntityTabs.js:127
+#: ../root/entity/Aliases.js:32
+msgid "Aliases"
+msgstr ""
+
+#: ../root/components/Aliases/index.js:52
+#: ../root/static/scripts/alias/AliasEditForm.js:277
+msgid ""
+"An alias is an alternate name for an entity. They typically contain common "
+"misspellings or variations of the name and are also used to improve search "
+"results. View the {doc|alias documentation} for more details."
+msgstr ""
+
+#: ../root/components/Aliases/index.js:67
+msgid "{entity} has no aliases."
+msgstr ""
+
+#: ../root/components/Aliases/index.js:75
+msgid "Add a new alias"
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:12
+msgid ""
+"This artist has no relationships, recordings, releases or release groups, "
+"and will be removed automatically in the next few days. If this is not "
+"intended, please add more data to this artist."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:18
+msgid ""
+"This event has no relationships and will be removed automatically in the "
+"next few days. If this is not intended, please add more data to this event."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:23
+msgid ""
+"This label has no relationships or releases and will be removed "
+"automatically in the next few days. If this is not intended, please add more "
+"data to this label."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:28
+msgid ""
+"This place has no relationships and will be removed automatically in the "
+"next few days. If this is not intended, please add more data to this place."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:33
+msgid ""
+"This release group has no relationships or releases associated, and will be "
+"removed automatically in the next few days. If this is not intended, please "
+"add more data to this release group."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:38
+msgid ""
+"This series has no relationships and will be removed automatically in the "
+"next few days. If this is not intended, please add more data to this series."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:43
+msgid ""
+"This work has no relationships and will be removed automatically in the next "
+"few days. If this is not intended, please add relationships to this work."
+msgstr ""
+
+#: ../root/components/CritiqueBrainzLinks.js:43
+msgid "An error occurred when loading reviews."
+msgstr ""
+
+#: ../root/components/CritiqueBrainzLinks.js:47
+msgid ""
+"No one has reviewed {entity} yet. Be the first to {write_link|write a "
+"review}."
+msgstr ""
+
+#: ../root/components/CritiqueBrainzLinks.js:56
+msgid ""
+"There’s {reviews_link|{review_count} review} on CritiqueBrainz. You can also "
+"{write_link|write your own}."
+msgid_plural ""
+"There are {reviews_link|{review_count} reviews} on CritiqueBrainz. You can "
+"also {write_link|write your own}."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/EntityDeletionHelp.js:24
+msgid "Are you sure you wish to remove {entity} from MusicBrainz?"
+msgstr ""
+
+#: ../root/components/EntityDeletionHelp.js:30
+msgid ""
+"If it’s a duplicate, {doc_merge|you should probably merge it instead}. If it "
+"just has some small errors, it’s usually better to just fix those."
+msgstr ""
+
+#: ../root/components/EntityTabs.js:25
+#: ../root/recording/RecordingFingerprints.js:25
+msgid "Fingerprints"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:27 ../root/place/PlaceMap.js:30
+msgid "Map"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:28 ../root/place/PlacePerformances.js:28
+#: ../root/place/PlacePerformances.js:35
+msgid "Performances"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:101
+msgid "Disc IDs ({num})"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:116
+msgid "Cover Art ({num})"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:131
+#: ../root/components/UserAccountTabs.js:64 ../root/entity/Tags.js:35
+#: ../root/layout/components/sidebar/SidebarTags.js:78
+#: ../root/static/scripts/common/components/TagEditor.js:665
+#: ../root/tag/TagCloud.js:102 ../root/tag/TagCloud.js:104
+#: ../root/user/UserTagList.js:61
+msgid "Tags"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:140 ../root/entity/Ratings.js:46
+#: ../root/entity/Ratings.js:90
+#: ../root/static/scripts/edit/externalLinks.js:732
+msgid "Reviews"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:141
+#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
+#: ../root/user/UserRatingList.js:82
+msgid "Ratings"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:159
+msgid "Edit Relationships"
+msgstr ""
+
+#: ../root/components/InstrumentRelTypes.js:32
+msgid "as “{credit}”"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:141
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:283
+msgid "See all {num} relationships"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:335
+msgid "Credited As"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:352
+msgid "“{link_phrase}” relationships"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:354
+msgid "Invalid relationship type"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:365
+msgid "No relationships of the selected type were found."
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:366
+msgid "The provided relationship type ID is not valid."
+msgstr ""
+
+#: ../root/components/ReleaseLanguageScript.js:24
+#: ../root/components/ReleaseLanguageScript.js:30
+#: ../root/components/list/ReleaseList.js:105
+#: ../root/edit/details/MergeReleases.js:58 ../root/release/CoverArt.js:92
+#: ../root/release_group/ReleaseGroupIndex.js:94
+#: ../root/search/components/ReleaseResults.js:62
+#: ../root/static/scripts/common/components/ReleaseEvents.js:54
+#: ../root/static/scripts/common/components/ReleaseEvents.js:71
+#: ../root/static/scripts/release-editor/duplicates.js:144
+msgctxt "missing data"
+msgid "-"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:125
+msgid "Entities where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:129
+msgid "Entities {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:133
+msgid "Entities tagged as “{tag}”"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:144
+msgid "{num} entity found"
+msgid_plural "{num} entities found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:158
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:13
+#: ../root/tag/TagLayout.js:31
+msgid "Areas"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:159
+msgid "See all {num} areas"
+msgid_plural "See all {num} areas"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:163
+msgid "See all {num} artists"
+msgid_plural "See all {num} artists"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:167
+msgid "See all {num} events"
+msgid_plural "See all {num} events"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:170 ../root/report/ReportsIndex.js:159
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:23
+#: ../root/tag/TagLayout.js:32
+msgid "Instruments"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:171
+msgid "See all {num} instruments"
+msgid_plural "See all {num} instruments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:175
+msgid "See all {num} labels"
+msgid_plural "See all {num} labels"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:179
+msgid "See all {num} places"
+msgid_plural "See all {num} places"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:194
+#: ../root/edit/details/AddSeries.js:25 ../root/edit/details/EditSeries.js:34
+#: ../root/report/ReportsIndex.js:559
+#: ../root/report/components/SeriesList.js:47
+msgid "Series"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:195
+msgid "See all {num} series"
+msgid_plural "See all {num} series"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:199
+msgid "See all {num} works"
+msgid_plural "See all {num} works"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/UserAccountLayout.js:62
+#: ../root/components/UserAccountLayout.js:63
+msgid "Editor “{user}”"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:28
+#: ../root/layout/components/TopMenu.js:48
+msgid "Profile"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:41
+#: ../root/layout/components/TopMenu.js:55
+#: ../root/layout/components/sidebar/CollectionSidebar.js:96
+#: ../root/layout/components/sidebar/SubscriptionLinks.js:32
+msgid "Subscriptions"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:51 ../root/entity/Subscribers.js:51
+#: ../root/entity/Subscribers.js:53
+#: ../root/layout/components/sidebar/CollectionSidebar.js:125
+#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
+msgid "Subscribers"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:57 ../root/entity/Collections.js:33
+#: ../root/entity/Collections.js:35
+#: ../root/layout/components/sidebar/CollectionLinks.js:48
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:17
+#: ../root/user/UserCollections.js:180
+msgid "Collections"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:102
+msgid "Edit User"
+msgstr ""
+
+#: ../root/components/VotingPeriod.js:40
+msgid ""
+"Closes in {num} day"
+msgid_plural ""
+"Closes in {num} days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/VotingPeriod.js:49
+msgid ""
+"Closes in {num} hour"
+msgid_plural ""
+"Closes in {num} hours"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/VotingPeriod.js:58
+msgid ""
+"Closes in {num} minute"
+msgid_plural ""
+"Closes in {num} minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/VotingPeriod.js:66
+msgid "About to close"
+msgstr ""
+
+#: ../root/components/list/ArtistList.js:73
+#: ../root/search/components/ArtistResults.js:52
+msgid "Sort Name"
+msgstr ""
+
+#: ../root/components/list/EventList.js:109
+#: ../root/static/scripts/common/components/FilterForm.js:149
+msgid "Role"
+msgstr ""
+
+#: ../root/components/list/LabelList.js:68
+#: ../root/search/components/AreaResults.js:65
+#: ../root/search/components/LabelResults.js:68
+msgid "Code"
+msgstr ""
+
+#: ../root/components/list/ReleaseGroupList.js:166
+msgid "Unspecified type"
+msgstr ""
+
+#: ../root/components/list/ReleaseList.js:95
+#: ../root/edit/details/MergeReleases.js:53
+#: ../root/release_group/ReleaseGroupIndex.js:89
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
+msgstr ""
+
+#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
+#: ../root/report/IswcsWithManyWorks.js:51
+#: ../root/report/components/WorkList.js:55
+#: ../root/search/components/WorkResults.js:55
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
+msgid "Writers"
+msgstr ""
+
+#: ../root/constants.js:22
+msgid "View and modify your private collections"
+msgstr ""
+
+#: ../root/constants.js:23
+msgid "View your email address"
+msgstr ""
+
+#: ../root/constants.js:24
+msgid "View your public account information"
+msgstr ""
+
+#: ../root/constants.js:25
+msgid "View and modify your private ratings"
+msgstr ""
+
+#: ../root/constants.js:26
+msgid "Submit new barcodes to the database"
+msgstr ""
+
+#: ../root/constants.js:27
+msgid "Submit new ISRCs to the database"
+msgstr ""
+
+#: ../root/constants.js:28
+msgid "View and modify your private tags"
+msgstr ""
+
+#: ../root/doc/DocError.js:32 ../root/doc/DocError.js:36
+#: ../root/main/error/Error404.js:32 ../root/main/error/MirrorError404.js:13
+msgid "Page Not Found"
+msgstr ""
+
+#: ../root/doc/DocError.js:40
+msgid "Sorry, “{id}” is not a valid documentation page."
+msgstr ""
+
+#: ../root/doc/DocError.js:46 ../root/main/error/Error400.js:37
+#: ../root/main/error/Error403.js:29 ../root/main/error/Error404.js:46
+msgid "Looking for help? Check out our {doc|documentation} or {faq|FAQ}."
+msgstr ""
+
+#: ../root/doc/DocError.js:55
+msgid ""
+"Found a broken link on our site? Please let us know by {report|reporting a "
+"bug}."
+msgstr ""
+
+#: ../root/doc/DocPage.js:80
+msgid ""
+"This page has not been reviewed by our documentation team ({more_info|more "
+"info})."
+msgstr ""
+
+#: ../root/doc/DocPage.js:90
+msgid "This page is {doc|transcluded} from revision {version} of {title}."
+msgstr ""
+
+#: ../root/doc/DocPage.js:98
+msgid "This page is {doc|transcluded} from {title}."
+msgstr ""
+
+#: ../root/doc/components/DocSearchBox.js:18
+msgid "Search the documentation..."
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:28 ../root/edit/CancelEdit.js:29
+msgid "Cancel Edit"
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:32
+msgid "Are you sure you wish to cancel edit #{n}? This cannot be undone!"
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:42 ../root/edit/EditIndex.js:56
+#: ../root/edit/components/ListEdit.js:51
+#: ../root/edit/details/historic/RemoveRelationship.js:35
+msgid "An error occurred while loading this edit."
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:48
+msgid ""
+"You may enter an edit note while cancelling this edit. This can be useful to "
+"point editors to another edit."
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:56 ../root/edit/components/EditHeader.js:185
+#: ../root/edit/components/EditSummary.js:76
+msgid "Cancel edit"
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:24
+msgid "The edit has been cancelled."
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:26 ../root/edit/CannotCancelEdit.js:32
+msgid "The edit has already been closed."
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:29
+msgid "Only {doc|auto-editors} can approve an edit."
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:34 ../root/edit/CannotApproveEdit.js:35
+#: ../root/edit/NoteIsRequired.js:21 ../root/edit/NoteIsRequired.js:22
+msgid "Error Approving Edit"
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:38
+msgid "There was a problem approving {edit}."
+msgstr ""
+
+#: ../root/edit/CannotCancelEdit.js:22 ../root/edit/CannotCancelEdit.js:23
+msgid "Error Cancelling Edit"
+msgstr ""
+
+#: ../root/edit/CannotCancelEdit.js:26
+msgid "There was a problem cancelling {edit}."
+msgstr ""
+
+#: ../root/edit/CannotCancelEdit.js:33
+msgid "Only the editor who entered an edit can cancel it."
+msgstr ""
+
+#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
+msgid "Error Voting on Edits"
+msgstr ""
+
+#: ../root/edit/CannotVote.js:16
+msgid "You’re not currently allowed to vote, please read the banner."
+msgstr ""
+
+#: ../root/edit/DeleteNote.js:32 ../root/edit/DeleteNote.js:33
+#: ../root/edit/components/EditNote.js:147
+msgid "Remove edit note"
+msgstr ""
+
+#: ../root/edit/DeleteNote.js:35
+msgid "Are you sure you want to remove the following edit note?"
+msgstr ""
+
+#: ../root/edit/DeleteNote.js:47
+msgid ""
+"Providing a reason for the removal is recommended if you feel it will make "
+"things clearer for other editors checking the editing history in the future. "
+"Otherwise it can be omitted."
+msgstr ""
+
+#: ../root/edit/DeleteNote.js:54 ../root/edit/ModifyNote.js:71
+#: ../root/user/ReportUser.js:139
+msgid "Reason"
+msgstr ""
+
+#: ../root/edit/EditData.js:34
+msgid "Edit data for edit #{id}"
+msgstr ""
+
+#: ../root/edit/EditData.js:57
+msgid "Data:"
+msgstr ""
+
+#: ../root/edit/EditData.js:62
+msgid "Related entities:"
+msgstr ""
+
+#: ../root/edit/EditData.js:90
+msgid ""
+"This is the raw data for edit #{id}. It is available for debugging purposes."
+msgstr ""
+
+#: ../root/edit/EditData.js:96
+msgid "View the human-readable rendering instead."
+msgstr ""
+
+#: ../root/edit/EditIndex.js:49
+msgid "Edit #{id}"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:58
+msgid "Raw edit data may be available."
+msgstr ""
+
+#: ../root/edit/EditIndex.js:83
+msgid "My vote:"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:122
+msgid "You are not currently able to vote on this edit. ({url|Details})"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:132
+msgid "Testing features"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:134
+msgid ""
+"To aid in testing, the following features have been made available on "
+"testing servers:"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:140 ../root/edit/components/EditSummary.js:87
+msgid "Accept edit"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:145 ../root/edit/components/EditSummary.js:93
+msgid "Reject edit"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:153
+msgid "You must be logged in to vote on edits."
+msgstr ""
+
+#: ../root/edit/EditIndex.js:159
+msgid "Edit notes"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:164 ../root/edit/components/Vote.js:112
+msgid "Submit vote and note"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:166
+msgid "Submit note"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:171
+msgid "You must be logged in to see edit notes."
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:36 ../root/edit/ModifyNote.js:37
+#: ../root/edit/components/EditNote.js:142
+msgid "Modify edit note"
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:39
+msgid "You are modifying the following edit note:"
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:52
+msgid "New edit note"
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:58
+msgid ""
+"Keep in mind modification of edit notes is mostly intended to correct small "
+"mistakes. Editors won’t be notified of your changes via email."
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:65
+msgid ""
+"Providing a reason is optional but can make things more clear for editors "
+"checking this edit in the future. Keep in mind the reason will be displayed "
+"to other editors."
+msgstr ""
+
+#: ../root/edit/NoteIsRequired.js:25
+msgid ""
+"{edit} has received one or more \"no\" votes, you must leave an edit note "
+"before you can approve it."
+msgstr ""
+
+#: ../root/edit/NotesReceived.js:35 ../root/edit/NotesReceived.js:37
+msgid "Recent Notes Left on Your Edits"
+msgstr ""
+
+#: ../root/edit/NotesReceived.js:67
+msgid "Nobody has left notes on any of your edits in the past three months."
+msgstr ""
+
+#: ../root/edit/OpenEdits.js:27 ../root/edit/OpenEdits.js:29
+msgid "Open Edits"
+msgstr ""
+
+#: ../root/edit/SubscribedEditorEdits.js:27
+#: ../root/edit/SubscribedEditorEdits.js:29
+msgid "Edits by Your Subscribed Editors"
+msgstr ""
+
+#: ../root/edit/SubscribedEdits.js:27 ../root/edit/SubscribedEdits.js:29
+msgid "Edits for Your Subscribed Entities"
+msgstr ""
+
+#: ../root/edit/SubscribedEdits.js:32
+msgid ""
+"This page lists edits linked to entities you are directly subscribed to, as "
+"well as edits linked to entities which are part of a collection you are "
+"subscribed to."
+msgstr ""
+
+#: ../root/edit/components/EditArtwork.js:27
+#: ../root/edit/details/ReorderCoverArt.js:25
+msgid ""
+"We are unable to display history for this cover art. For a current listing "
+"of cover art, please see the {coverart|release's cover art page}."
+msgstr ""
+
+#: ../root/edit/components/EditArtwork.js:32
+msgid "We are unable to display history for this cover art."
+msgstr ""
+
+#: ../root/edit/components/EditArtwork.js:36
+msgid "Cover art:"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:52
+#: ../root/edit/components/EditNoteListEntry.js:27
+msgid "Edit #{id} - {name}"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:78
+msgid "Edit by {editor}"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:86
+msgid "Editor hidden"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:92
+msgid "log in to see who"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:107
+msgid "Their vote: "
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:114
+msgid "My vote: "
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:118
+msgid "N/A"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:119
+#: ../root/edit/components/Vote.js:107
+#: ../root/static/scripts/common/components/OrderableDirection.js:22
+msgid "None"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:141
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
+msgid "Voting"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:149
+msgid "Approved"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:177
+#: ../root/edit/components/EditSummary.js:67
+msgid "Approve edit"
+msgstr ""
+
+#: ../root/edit/components/EditList.js:82
+msgid "Found at least {n} edit"
+msgid_plural "Found at least {n} edits"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/components/EditList.js:89
+msgid "Found {n} edit"
+msgid_plural "Found {n} edits"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
+msgid "Submit votes & edit notes"
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:159
+msgid "[time missing]"
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:168
+msgid "This edit note was removed by its author. Reason given: “{reason}”."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:173
+msgid "This edit note was removed by its author. No reason was provided."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:179
+msgid "This edit note was removed by an admin. Reason given: “{reason}”."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:184
+msgid "This edit note was removed by an admin. No reason was provided."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:194
+#: ../root/edit/components/EditNote.js:246
+msgctxt "edit note"
+msgid "see all changes"
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:211
+msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:220
+msgid "Last modified by the note author ({time})."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:227
+msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:236
+msgid "Last modified by an admin ({time})."
+msgstr ""
+
+#: ../root/edit/components/EditNoteHelp.js:20
+msgid ""
+"Edit notes support {doc_formatting|a limited set of wiki formatting "
+"options}. Please do always keep the {doc_coc|Code of Conduct} in mind when "
+"writing edit notes!"
+msgstr ""
+
+#: ../root/edit/components/EditNotes.js:55
+msgid "No edit notes have been added."
+msgstr ""
+
+#: ../root/edit/components/EditNotes.js:70
+msgid "Add an edit note"
+msgstr ""
+
+#: ../root/edit/components/EditNotes.js:78
+msgid "You are not currently able to add notes to this edit. ({url|Details})"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:48
+msgid "Opened:"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:68
+msgid "For quicker closing"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:71
+msgid "1 vote"
+msgid_plural "{n} unanimous votes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/components/EditSidebar.js:80
+msgid "If no votes cast"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:89
+msgid "Raw edit data for this edit"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:94
+msgid "For more information:"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:97
+msgid "Voting FAQ"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:98
+msgid "Editing FAQ"
+msgstr ""
+
+#: ../root/edit/components/EditSummary.js:59
+msgid "Add Note"
+msgstr ""
+
+#: ../root/edit/components/EditorTypeInfo.js:29 ../root/user/UserProfile.js:101
+msgid "This user is new to MusicBrainz."
+msgstr ""
+
+#: ../root/edit/components/EditorTypeInfo.js:31
+msgid "beginner"
+msgstr ""
+
+#: ../root/edit/components/EditorTypeInfo.js:39
+msgid "This user is automated."
+msgstr ""
+
+#: ../root/edit/components/EditorTypeInfo.js:40
+msgid "bot"
+msgstr ""
+
+#: ../root/edit/components/IntentionallyRawIcon.js:17
+msgid ""
+"This field is intentionally left as it was originally entered (untranslated, "
+"unformatted)."
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:49
+msgid "Open edits for {user}"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:57
+msgid "All edits for {user}"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:69
+msgid "Open edits for this collection"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:70
+msgid "Open edits for this entity"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:80
+msgid "All edits for this collection"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:81
+msgid "All edits for this entity"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:92
+msgid "All edits for your subscribed entities"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:100
+msgid "Open edits for your subscribed entities"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:111
+msgid "All edits for your subscribed editors"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:119
+msgid "Open edits for your subscribed editors"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:134
+msgid "Refine this search"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:143
+msgid "Subscribed entities"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:150
+msgid "Subscribed editors"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:158
+#: ../root/layout/components/sidebar/CollectionSidebar.js:77
+#: ../root/layout/components/sidebar/EditLinks.js:43
+msgid "Open edits"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:165 ../root/vote/VotingIndex.js:44
+#: ../root/vote/VotingIndex.js:46
+msgid "Voting suggestions"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:172
+msgid "Search for edits"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:199
+msgid "Quick links:"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:211
+msgid "Help:"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:215
+msgid "Introduction to Voting"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:219
+msgid "Introduction to Editing"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:222 ../root/main/index.js:180
+msgid "Style guidelines"
+msgstr ""
+
+#: ../root/edit/components/VoteTally.js:31
+msgid "automatically applied"
+msgstr ""
+
+#: ../root/edit/components/VoteTally.js:39
+msgid "{yes} yes : {no} no"
+msgstr ""
+
+#: ../root/edit/details/AddAnnotation.js:43
+#: ../root/edit/details/historic/AddReleaseAnnotation.js:25
+msgid "Text"
+msgstr ""
+
+#: ../root/edit/details/AddAnnotation.js:56
+#: ../root/edit/details/historic/AddReleaseAnnotation.js:35
+msgid "This annotation is empty."
+msgstr ""
+
+#: ../root/edit/details/AddAnnotation.js:72
+#: ../root/edit/details/historic/AddReleaseAnnotation.js:43
+msgid "Summary"
+msgstr ""
+
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddCoverArt.js:39
+#: ../root/edit/details/RemoveCoverArt.js:39
+msgctxt "type"
+msgid "(none)"
+msgstr ""
+
+#: ../root/edit/details/AddCoverArt.js:44
+#: ../root/edit/details/EditCoverArt.js:47
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr ""
+
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr ""
+
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr ""
+
+#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
+msgid "Client:"
+msgstr ""
+
+#: ../root/edit/details/AddIsrcs.js:28
+msgctxt "isrc client"
+msgid "(unknown)"
+msgstr ""
+
+#: ../root/edit/details/AddIsrcs.js:33 ../root/edit/details/AddIswcs.js:25
+msgid "Additions:"
+msgstr ""
+
+#: ../root/edit/details/AddIsrcs.js:39
+msgid "ISRC {isrc} to {recording}"
+msgstr ""
+
+#: ../root/edit/details/AddIswcs.js:31
+msgid "ISWC {iswc} to {work}"
+msgstr ""
+
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr ""
+
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddRelationship.js:33
+msgid "Link order:"
+msgstr ""
+
+#: ../root/edit/details/AddRelationship.js:41
+#: ../root/edit/details/EditRelationship.js:27
+msgid ""
+"This relationship edit also included changes to relationship attributes "
+"which no longer exist."
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipAttribute.js:60
+#: ../root/edit/details/EditRelationshipAttribute.js:101
+msgid "Creditable"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:82
+#: ../root/edit/details/RemoveRelationshipAttribute.js:47
+#: ../root/edit/details/RemoveRelationshipType.js:57
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:90
+msgctxt "description"
+msgid "(none)"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:88
+#: ../root/edit/details/AddRelationshipType.js:97
+#: ../root/edit/details/EditRelationshipType.js:163
+#: ../root/edit/details/EditRelationshipType.js:172
+#: ../root/edit/details/RemoveRelationshipType.js:63
+#: ../root/edit/details/RemoveRelationshipType.js:72
+msgid "Type of {entity_placeholder}"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:105
+#: ../root/edit/details/EditRelationshipType.js:213
+#: ../root/edit/details/RemoveRelationshipType.js:80
+msgid "Link phrase:"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:128
+#: ../root/edit/details/RemoveRelationshipType.js:87
+#: ../root/edit/details/RemoveRelationshipType.js:99
+#: ../root/edit/details/RemoveRelationshipType.js:111
+msgctxt "link_phrase"
+msgid "(none)"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:195
+msgctxt "documentation"
+msgid "(none)"
+msgstr ""
+
+#: ../root/edit/details/AddRelease.js:68
+msgid "(new release group)"
+msgstr ""
+
+#: ../root/edit/details/AddRelease.js:119
+#: ../root/edit/details/EditReleaseLabel.js:92
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
+#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
+msgid "Release events"
+msgstr ""
+
+#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
+#: ../root/edit/details/RemoveReleaseLabel.js:39
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr ""
+
+#: ../root/edit/details/AddRemoveAlias.js:46
+#: ../root/edit/details/EditAlias.js:51
+msgid "view all aliases"
+msgstr ""
+
+#: ../root/edit/details/AddRemoveAlias.js:75
+#: ../root/edit/details/EditAlias.js:99
+msgid "Primary for locale"
+msgstr ""
+
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
+#: ../root/layout/components/sidebar/WorkSidebar.js:69
+#: ../root/search/components/WorkResults.js:59
+#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
+msgid "Lyrics Languages"
+msgstr ""
+
+#: ../root/edit/details/ChangeReleaseQuality.js:30
+#: ../root/edit/details/historic/ChangeArtistQuality.js:30
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
+#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
+#: ../root/release/ChangeQuality.js:67
+msgid "Data Quality"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:39
+msgid "WikiDoc:"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:48
+msgid "Old version:"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:50
+msgid "New page"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:63
+msgid "Page removed"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:75
+msgid "Diff"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:78
+msgid "View diff"
+msgstr ""
+
+#: ../root/edit/details/EditAlias.js:71
+msgid "primary for {locale}"
+msgstr ""
+
+#: ../root/edit/details/EditArtistCredit.js:26
+#: ../root/report/components/ArtistCreditList.js:29
+msgid "Artist Credit"
+msgstr ""
+
+#: ../root/edit/details/EditArtistCredit.js:41
+msgid "See all uses of the artist credit being changed."
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:84
+msgid "This track's MBID will change when this edit is applied."
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:309
+msgid "Old Tracklist"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:310
+msgid "New Tracklist"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:505
+msgid "This edit changes which tracks are data tracks."
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:520
+msgid "Old recording"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:521
+msgid "New recording"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:578
+msgid "Old Artist"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:579
+msgid "New Artist"
+msgstr ""
+
+#: ../root/edit/details/EditRecording.js:63
+msgid "This edit makes subsecond changes to the recording length"
+msgstr ""
+
+#: ../root/edit/details/EditRelationshipType.js:146
+#: ../root/edit/details/historic/EditRelationship.js:44
+msgid ""
+"The data for this edit seems to have been damaged during the 2011 transition "
+"to the current MusicBrainz schema. The remaining data is displayed below, "
+"but might not be fully accurate."
+msgstr ""
+
+#: ../root/edit/details/EditRelationshipType.js:249
+#: ../root/edit/details/EditRelationshipType.js:257
+msgid "Deprecated:"
+msgstr ""
+
+#: ../root/edit/details/EditRelease.js:165
+msgid "This edit also changed the track artists."
+msgstr ""
+
+#: ../root/edit/details/EditUrl.js:70
+msgid "This change affects {num} relationship."
+msgid_plural "This change affects {num} relationships."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/details/EditUrl.js:79
+msgid ""
+"The new URL already exists in the database. This edit will therefore merge "
+"the two URL entities."
+msgstr ""
+
+#: ../root/edit/details/EditUrl.js:82
+msgid "This edit was a merge."
+msgstr ""
+
+#: ../root/edit/details/EditUrl.js:86
+msgid "Search for the target URL."
+msgstr ""
+
+#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
+msgid "Work type"
+msgstr ""
+
+#: ../root/edit/details/MergeAreas.js:19
+#: ../root/edit/details/MergeArtists.js:20
+#: ../root/edit/details/MergeEvents.js:19
+#: ../root/edit/details/MergeInstruments.js:19
+#: ../root/edit/details/MergeLabels.js:19
+#: ../root/edit/details/MergePlaces.js:19
+#: ../root/edit/details/MergeRecordings.js:19
+#: ../root/edit/details/MergeReleaseGroups.js:20
+#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
+
+#: ../root/edit/details/MergeAreas.js:25
+#: ../root/edit/details/MergeArtists.js:26
+#: ../root/edit/details/MergeEvents.js:30
+#: ../root/edit/details/MergeInstruments.js:25
+#: ../root/edit/details/MergeLabels.js:25
+#: ../root/edit/details/MergePlaces.js:25
+#: ../root/edit/details/MergeRecordings.js:29
+#: ../root/edit/details/MergeReleaseGroups.js:26
+#: ../root/edit/details/MergeReleases.js:271
+#: ../root/edit/details/MergeReleases.js:278
+#: ../root/edit/details/MergeReleases.js:288
+#: ../root/edit/details/MergeReleases.js:306
+#: ../root/edit/details/MergeSeries.js:25 ../root/edit/details/MergeWorks.js:25
+msgid "Into:"
+msgstr ""
+
+#: ../root/edit/details/MergeArtists.js:32
+msgid "Rename artist and relationship credits"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:109
+msgid "Medium {position}: {name} is now medium {new_position}: {new_name}"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:120
+msgid "Medium {position}: {name} is now medium {new_position}"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:129
+msgid "Medium {position} is now medium {new_position}: {new_name}"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:140
+msgid "Medium {position} is now medium {new_position}"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:254
+msgid "This release has no media to merge."
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:301
+msgid "Recording Merges"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:304
+msgid "Track #"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:316
+msgid ""
+"This edit does not store recording merge information and is closed, so no "
+"recording merge information can be shown."
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:333
+msgid "All recordings for these releases are already merged."
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:341
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:65
+msgid "Merge strategy:"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:349
+msgid ""
+"The data in this edit originally came from an older version of this edit, "
+"and may not display correctly"
+msgstr ""
+
+#: ../root/edit/details/MoveDiscId.js:32
+#: ../root/edit/details/historic/MoveDiscId.js:27
+msgid "From:"
+msgstr ""
+
+#: ../root/edit/details/MoveDiscId.js:36
+#: ../root/edit/details/historic/MoveDiscId.js:31
+msgid "To:"
+msgstr ""
+
+#: ../root/edit/details/RemoveMedium.js:58
+msgid ""
+"The number of tracks on the medium being removed has changed since the "
+"removal edit was entered. Please check the changes and ensure the removal is "
+"still correct."
+msgstr ""
+
+#: ../root/edit/details/RemoveMedium.js:62
+msgid ""
+"Some track lengths, titles or artists have changed since the removal edit "
+"was entered. Please check the changes and ensure the removal is still "
+"correct."
+msgstr ""
+
+#: ../root/edit/details/RemoveMedium.js:80
+msgid "Original tracklist"
+msgstr ""
+
+#: ../root/edit/details/RemoveMedium.js:99
+msgid "Current tracklist"
+msgstr ""
+
+#: ../root/edit/details/ReorderCoverArt.js:41
+msgid "Old positions:"
+msgstr ""
+
+#: ../root/edit/details/ReorderCoverArt.js:53
+msgid "New positions:"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:42
+msgid "Mediums"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:46
+msgid "Medium {new}: {title} (new medium)"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:50
+msgid ""
+"Medium {new}: {title} (moved from position {old})"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:58
+msgid "Medium {new} (new medium)"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:61
+msgid ""
+"Medium {new} (moved from position {old})"
+msgstr ""
+
+#: ../root/edit/details/ReorderRelationships.js:21
+msgid "Old Order"
+msgstr ""
+
+#: ../root/edit/details/ReorderRelationships.js:22
+msgid "New Order"
+msgstr ""
+
+#: ../root/edit/details/SetCoverArt.js:37
+msgid "Old cover art:"
+msgstr ""
+
+#: ../root/edit/details/SetCoverArt.js:58
+msgid ""
+"The old image was selected automatically from the earliest release in the "
+"release group."
+msgstr ""
+
+#: ../root/edit/details/SetCoverArt.js:60
+#: ../root/edit/details/SetCoverArt.js:85
+msgid "We are unable to display this cover art."
+msgstr ""
+
+#: ../root/edit/details/SetCoverArt.js:65
+msgid "New cover art:"
+msgstr ""
+
+#: ../root/edit/details/SetTrackLengths.js:63
+msgid "Track lengths:"
+msgstr ""
+
+#: ../root/edit/details/SetTrackLengths.js:76
+msgid "This edit makes subsecond changes to track lengths"
+msgstr ""
+
+#: ../root/edit/details/historic/AddDiscId.js:23
+msgid "CD TOC:"
+msgstr ""
+
+#: ../root/edit/details/historic/AddTrackKV.js:49
+#: ../root/edit/details/historic/AddTrackOld.js:34
+#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
+msgid "Track number"
+msgstr ""
+
+#: ../root/edit/details/historic/AddTrackOld.js:28
+msgid "Artist name:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditRelationship.js:53
+msgid "Old relationships:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditRelationship.js:125
+msgid "New relationships:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseAttributes.js:34
+msgctxt "release type and status"
+msgid "Old"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseAttributes.js:41
+msgid "Type: {type}, status: {status}"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseAttributes.js:60
+msgid "New Type:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseAttributes.js:67
+msgid "New Status:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
+msgid "Added"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
+msgid "Removed"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
+msgid "Edited"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:27
+msgid "Language: {language}, script: {script}"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:48
+msgid "New language:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:57
+msgid "New script:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:22
+msgid "Old releases:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:34
+msgid "New releases:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:46
+msgid "Merge attributes:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:50
+msgid "Merge language & script:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:57
+msgid ""
+"This edit was a \"Merge Releases (Various Artists)\" edit which additionally "
+"set the release artist to Various Artists."
+msgstr ""
+
+#: ../root/edit/details/historic/MoveRelease.js:26
+msgid "Change track artists:"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:32
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:36
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:40
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:48
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:59
+msgid "Total votes"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:63
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:67
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:71
+msgid "Abstentions"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:79
+msgid "Votes for/against:"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:81
+msgid ""
+"The tally of votes cast will only be shown when the election is complete."
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
+msgctxt "election status"
+msgid "Status"
+msgstr ""
+
+#: ../root/elections/ElectionTable/ElectionTableRows.js:60
+msgid "View details"
+msgstr ""
+
+#: ../root/elections/ElectionTable/index.js:24
+msgid "Start date"
+msgstr ""
+
+#: ../root/elections/ElectionVotes.js:27
+msgid "Vote"
+msgstr ""
+
+#: ../root/elections/ElectionVotes.js:38
+msgid "(private)"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:27
+msgid "To find out if you can vote for this candidate, please {url|log in}."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:36
+msgid "You cannot vote for this candidate, because you are not an auto-editor."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:41
+msgid ""
+"You cannot vote for this candidate, because you proposed / seconded them."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:46
+msgid ""
+"Voting is not yet open. If you would like to support this candidate, you can "
+"second their nomination. If you do not support this candidate, please note "
+"that you cannot cast a \"No\" vote (or abstain) until two seconders have "
+"been found."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:53
+msgid "Voting is closed."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:68
+msgid "Second this candidate"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:80
+msgid "Your current vote: {vote}"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:88
+msgid "Vote YES"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:91
+msgid "Vote NO"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:94
+msgid "Abstain"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:111
+msgid "Cancel the election"
+msgstr ""
+
+#: ../root/elections/Index.js:19 ../root/elections/Index.js:20
+msgid "Auto-editor elections"
+msgstr ""
+
+#: ../root/elections/Index.js:23
+msgid "No elections found."
+msgstr ""
+
+#: ../root/elections/Nominate.js:25
+msgid ""
+"Are you sure you want to nominate the editor {editor} for auto-editor status?"
+msgstr ""
+
+#: ../root/elections/Nominate.js:29
+msgid "Nominate a candidate for auto-editor"
+msgstr ""
+
+#: ../root/elections/Show.js:24
+msgid "Auto-editor election #{no}"
+msgstr ""
+
+#: ../root/elections/Show.js:29
+msgid "Back to elections"
+msgstr ""
+
+#: ../root/elections/Show.js:34
+msgid "Votes cast"
+msgstr ""
+
+#: ../root/elections/Show.js:37
+msgid "The list of voters will only be shown when the election is complete."
+msgstr ""
+
+#: ../root/entity/Collections.js:40
+msgid "{entity} has been added to {num} collection:"
+msgid_plural "{entity} has been added to {num} collections:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Collections.js:50
+msgid "{collection} by {owner}"
+msgstr ""
+
+#: ../root/entity/Collections.js:62
+msgid "plus {n} other private collection"
+msgid_plural "plus {n} other private collections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Collections.js:71
+msgid "A private collection"
+msgid_plural "{n} private collections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Collections.js:83
+msgid "{entity} has not been added to any collections."
+msgstr ""
+
+#: ../root/entity/Details.js:103
+msgid "{mbid|MBID}:"
+msgstr ""
+
+#: ../root/entity/Details.js:109 ../root/report/components/InstrumentList.js:69
+msgid "Last updated"
+msgstr ""
+
+#: ../root/entity/Details.js:113
+msgctxt "last updated"
+msgid "(unknown)"
+msgstr ""
+
+#: ../root/entity/Details.js:117
+msgid "Permanent link:"
+msgstr ""
+
+#: ../root/entity/Details.js:125
+msgid "{xml_ws_docs|XML}"
+msgstr ""
+
+#: ../root/entity/Details.js:141
+msgid "{json_ws_docs|JSON}"
+msgstr ""
+
+#: ../root/entity/Edits.js:53 ../root/entity/Edits.js:57
+msgid "Open Edits for {name}"
+msgstr ""
+
+#: ../root/entity/Edits.js:54 ../root/entity/Edits.js:58
+msgid "Edits for {name}"
+msgstr ""
+
+#: ../root/entity/Edits.js:70
+msgid "{entity_type} by {artist}"
+msgstr ""
+
+#: ../root/entity/NotFound.js:19
+msgid "Area Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:21
+msgid ""
+"Sorry, we could not find an area with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:28
+msgid "Artist Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:30
+msgid ""
+"Sorry, we could not find an artist with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:37
+msgid "Artist Credit Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:38
+msgid "Sorry, we could not find an artist credit with that ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:43
+msgid "CD TOC Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:44
+msgid "Sorry, we could not find the CD TOC you specified."
+msgstr ""
+
+#: ../root/entity/NotFound.js:49
+msgid "Collection Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:51
+msgid "Sorry, we could not find a collection with that MusicBrainz ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:57
+msgid "Edit Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:59
+msgid ""
+"Sorry, we could not find an edit with that edit ID. You may wish to try and "
+"perform an {search_url|edit search} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:66
+msgid "Election Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:67
+msgid "Sorry, we could not find this election."
+msgstr ""
+
+#: ../root/entity/NotFound.js:69
+msgid "Back to all elections."
+msgstr ""
+
+#: ../root/entity/NotFound.js:72
+msgid "Event Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:74
+msgid ""
+"Sorry, we could not find an event with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:81
+msgid "Genre Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:83
+msgid ""
+"Sorry, we could not find a genre with that MusicBrainz ID. You can see all "
+"available genres on our {genre_list|genre list}."
+msgstr ""
+
+#: ../root/entity/NotFound.js:90
+msgid "Instrument Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:92
+msgid ""
+"Sorry, we could not find an instrument with that MusicBrainz ID. You may "
+"wish to try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:99
+msgid "ISRC Not Currently Used"
+msgstr ""
+
+#: ../root/entity/NotFound.js:101
+msgid ""
+"This ISRC is not associated with any recordings. If you wish to associate it "
+"with a recording, please {search_url|search for the recording} and add it."
+msgstr ""
+
+#: ../root/entity/NotFound.js:109
+msgid "ISWC Not Currently Used"
+msgstr ""
+
+#: ../root/entity/NotFound.js:111
+msgid ""
+"This ISWC is not associated with any works. If you wish to associate it with "
+"a work, please {search_url|search for the work} and add it."
+msgstr ""
+
+#: ../root/entity/NotFound.js:118
+msgid "Label Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:120
+msgid ""
+"Sorry, we could not find a label with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:127
+msgid "Entity Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:129
+msgid ""
+"Sorry, we could not find a MusicBrainz entity with that ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:136
+msgid "Place Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:138
+msgid ""
+"Sorry, we could not find a place with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:145
+msgid "Recording Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:147
+msgid ""
+"Sorry, we could not find a recording with that MusicBrainz ID. You may wish "
+"to try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:154
+msgid "Relationship Attribute Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:156
+msgid ""
+"Sorry, we could not find a relationship attribute with that MusicBrainz ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:163
+msgid "Relationship Type Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:165
+msgid "Sorry, we could not find a relationship type with that MusicBrainz ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:172
+msgid "Release Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:174
+msgid ""
+"Sorry, we could not find a release with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:181
+msgid "Release Group Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:183
+msgid ""
+"Sorry, we could not find a release group with that MusicBrainz ID. You may "
+"wish to try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:190
+msgid "Series Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:192
+msgid ""
+"Sorry, we could not find a series with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:199
+msgid "Track Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:201
+msgid ""
+"Sorry, we could not find neither a recording nor a track with that "
+"MusicBrainz ID. You may wish to try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:209
+msgid "URL Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:210
+msgid "Sorry, we could not find a URL with that MusicBrainz ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:215
+msgid "Editor Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:217
+msgid ""
+"Sorry, we could not find an editor with that name. You may wish to try and "
+"{search_url|search for them} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:224
+msgid "Work Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:226
+msgid ""
+"Sorry, we could not find a work with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/Ratings.js:68
+msgid "{count} private rating not listed."
+msgid_plural "{count} private ratings not listed."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Ratings.js:75
+msgid "Average rating:"
+msgstr ""
+
+#: ../root/entity/Ratings.js:81
+msgid "{link} has no ratings."
+msgstr ""
+
+#: ../root/entity/Ratings.js:97
+msgid "Most Recent"
+msgstr ""
+
+#: ../root/entity/Ratings.js:104
+msgid "Most Popular"
+msgstr ""
+
+#: ../root/entity/Subscribers.js:57
+msgid "This is a special purpose entity and does not support subscriptions."
+msgstr ""
+
+#: ../root/entity/Subscribers.js:68
+msgid "There is currently {num} user subscribed to edits that you make:"
+msgid_plural ""
+"There are currently {num} users subscribed to edits that you make:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:79
+msgid "There is currently {num} user subscribed to edits that {user} makes:"
+msgid_plural ""
+"There are currently {num} users subscribed to edits that {user} makes:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:92
+msgid "There is currently {num} user subscribed to {entity}:"
+msgid_plural "There are currently {num} users subscribed to {entity}:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:111
+msgid "Plus {n} other anonymous user"
+msgid_plural "Plus {n} other anonymous users"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:121
+msgid "An anonymous user"
+msgid_plural "{n} anonymous users"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:135
+msgid "There are currently no users subscribed to edits that you make."
+msgstr ""
+
+#: ../root/entity/Subscribers.js:138
+msgid "There are currently no users subscribed to edits that {user} makes."
+msgstr ""
+
+#: ../root/entity/Subscribers.js:143
+msgid "There are currently no users subscribed to {entity}."
+msgstr ""
+
+#: ../root/entity/Subscribers.js:152
+msgid "You are currently subscribed. {unsub|Unsubscribe}?"
+msgstr ""
+
+#: ../root/entity/Subscribers.js:156
+msgid "Be the first! {sub|Subscribe}?"
+msgstr ""
+
+#: ../root/entity/Subscribers.js:159
+msgid "You are not currently subscribed. {sub|Subscribe}?"
+msgstr ""
+
+#: ../root/entity/alias/AddOrEditAlias.js:37
+msgid "Add alias"
+msgstr ""
+
+#: ../root/entity/alias/AddOrEditAlias.js:38
+msgid "Edit alias"
+msgstr ""
+
+#: ../root/entity/alias/DeleteAlias.js:31
+msgid "Remove alias"
+msgstr ""
+
+#: ../root/entity/alias/DeleteAlias.js:42
+msgid "You're removing the alias {alias}."
+msgstr ""
+
+#: ../root/entity/alias/DeleteAlias.js:48
+msgid "Please review the {doc|alias documentation} before entering this edit."
+msgstr ""
+
+#: ../root/event/EventMerge.js:32
+msgid ""
+"You are about to merge all these events into a single one. Please select the "
+"event all others should be merged into:"
+msgstr ""
+
+#: ../root/genre/CreateGenre.js:24 ../root/genre/CreateGenre.js:26
+msgid "Add a new genre"
+msgstr ""
+
+#: ../root/genre/DeleteGenre.js:35
+msgid "Are you sure you want to remove the genre {genre}?"
+msgstr ""
+
+#: ../root/genre/GenreIndex.js:34
+msgid "Genre information"
+msgstr ""
+
+#: ../root/genre/GenreIndex.js:36
+msgid "Associated tags"
+msgstr ""
+
+#: ../root/genre/GenreIndex.js:39
+msgid "Primary tag"
+msgstr ""
+
+#: ../root/genre/GenreListPage.js:20 ../root/genre/GenreListPage.js:22
+#: ../root/layout/components/BottomMenu.js:324
+msgid "Genre List"
+msgstr ""
+
+#: ../root/genre/GenreListPage.js:25
+msgid ""
+"These are all the {genre_url|genres} currently available for use in "
+"MusicBrainz."
+msgstr ""
+
+#: ../root/genre/GenreListPage.js:31
+msgid ""
+"To associate a genre with an entity, tag the entity with the genre name."
+msgstr ""
+
+#: ../root/genre/GenreListPage.js:42
+msgid ""
+"Is a genre missing from the list? Request it by {link|adding a style ticket}."
+msgstr ""
+
+#: ../root/instrument/DeleteInstrument.js:34
+#: ../root/instrument/DeleteInstrument.js:36
+msgid "Remove Instrument"
+msgstr ""
+
+#: ../root/instrument/DeleteInstrument.js:49
+msgid ""
+"This instrument cannot be removed because there are still relationships "
+"attributed to it."
+msgstr ""
+
+#: ../root/instrument/InstrumentArtists.js:67
+msgid "No artists found."
+msgstr ""
+
+#: ../root/instrument/InstrumentMerge.js:32
+msgid ""
+"You are about to merge all these instruments into a single one. Please "
+"select the instrument all others should be merged into:"
+msgstr ""
+
+#: ../root/instrument/List.js:45 ../root/instrument/List.js:47
+#: ../root/layout/components/BottomMenu.js:321
+msgid "Instrument List"
+msgstr ""
+
+#: ../root/instrument/List.js:61 ../root/report/components/InstrumentList.js:55
+msgid "Unclassified instrument"
+msgstr ""
+
+#: ../root/instrument/List.js:72
+msgid ""
+"Is this list missing an instrument? Request it by following {link|these "
+"instructions}."
+msgstr ""
+
+#: ../root/isrc/Index.js:38 ../root/isrc/Index.js:42
+msgid "ISRC “{isrc}”"
+msgstr ""
+
+#: ../root/isrc/Index.js:48
+msgid "Associated with {num} recording"
+msgid_plural "Associated with {num} recordings"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/iswc/Index.js:31 ../root/iswc/Index.js:34
+msgid "ISWC “{iswc}”"
+msgstr ""
+
+#: ../root/iswc/Index.js:39
+msgid "Associated with {num} work"
+msgid_plural "Associated with {num} works"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/label/LabelIndex.js:101
+msgid "This label does not have any releases."
+msgstr ""
+
+#: ../root/label/LabelMerge.js:32
+msgid ""
+"You are about to merge all these labels into a single one. Please select the "
+"label all others should be merged into:"
+msgstr ""
+
+#: ../root/label/SpecialPurpose.js:25
+msgid "You may not edit special purpose labels"
+msgstr ""
+
+#: ../root/label/SpecialPurpose.js:27
+msgid ""
+"The label you are trying to edit is a special purpose label, and you may not "
+"make direct changes to this data."
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:99
+msgid "(reset language)"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:104
+msgid "Help Translate"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:115
+msgid "About Us"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:120
+msgid "About MusicBrainz"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:123
+msgid "Sponsors"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:126
+msgid "Team"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:129
+msgid "Shop"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:132
+msgid "Contact Us"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:135
+msgid "Data Licenses"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:138
+msgid "Social Contract"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:141
+msgid "Code of Conduct"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:144
+msgid "Privacy Policy"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:147
+msgid "GDPR Compliance"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:150
+msgid "Data Removal Policy"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:153
+msgid "Auto-editor Elections"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:156
+msgid "Privileged User Accounts"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
+msgid "Statistics"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:162
+msgid "Timeline Graph"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:165
+msgid "MusicBrainz History"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:174
+msgid "Products"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:179 ../root/main/index.js:153
+msgid "MusicBrainz Picard"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:182 ../root/main/index.js:157
+msgid "AudioRanger"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:185 ../root/main/index.js:160
+msgid "Mp3tag"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:188 ../root/main/index.js:163
+msgid "Yate Music Tagger"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:192
+msgid "MusicBrainz for Android"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:196
+msgid "MusicBrainz Server"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:199 ../root/main/index.js:218
+msgid "MusicBrainz Database"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:202
+msgid "Developer Resources"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:205
+msgid "MusicBrainz API"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:208
+msgid "Live Data Feed"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:222
+msgid "Advanced Search"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:225
+msgid "Edit Search"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:228
+msgid "Tag Cloud"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:240
+#: ../root/layout/components/sidebar/CollectionSidebar.js:72
+#: ../root/layout/components/sidebar/EditLinks.js:31
+#: ../root/static/scripts/account/components/PreferencesForm.js:242
+msgid "Editing"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:245
+msgctxt "button/menu"
+msgid "Add Artist"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:252
+msgctxt "button/menu"
+msgid "Add Release Group"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:256
+msgctxt "button/menu"
+msgid "Add Release"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:260
+msgid "Add Various Artists Release"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:265
+msgctxt "button/menu"
+msgid "Add Standalone Recording"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:269
+msgctxt "button/menu"
+msgid "Add Work"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:272
+msgctxt "button/menu"
+msgid "Add Place"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:275
+msgctxt "button/menu"
+msgid "Add Series"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:278
+msgctxt "button/menu"
+msgid "Add Event"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:281
+msgid "Vote on Edits"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:284
+#: ../root/report/ReportsIndex.js:39 ../root/report/ReportsIndex.js:41
+msgid "Reports"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:298
+msgid "Beginners Guide"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:301
+msgid "Style Guidelines"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:304
+msgid "How Tos"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:307 ../root/main/index.js:183
+msgid "FAQs"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:311
+msgid "Documentation Index"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:318
+#: ../root/relationship/RelationshipsHeader.js:17
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
+#: ../root/relationship/linktype/RelationshipTypesList.js:60
+#: ../root/utility/tableColumns.js:373
+msgid "Relationship Types"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:327
+msgid "Development"
+msgstr ""
+
+#: ../root/layout/components/ExternalLinks.js:56
+msgid "{url} (as {credited_name})"
+msgstr ""
+
+#: ../root/layout/components/ExternalLinks.js:121
+msgid "Official homepage"
+msgstr ""
+
+#: ../root/layout/components/ExternalLinks.js:170
+msgid "External links"
+msgstr ""
+
+#: ../root/layout/components/ExternalLinks.js:177
+msgid "View all relationships"
+msgstr ""
+
+#: ../root/layout/components/Footer.js:30
+msgid "Chat (IRC)"
+msgstr ""
+
+#: ../root/layout/components/Footer.js:66
+msgid "Running: {git_details}"
+msgstr ""
+
+#: ../root/layout/components/Head.js:49
+msgid "Page {n}"
+msgstr ""
+
+#: ../root/layout/components/Head.js:105
+msgid "MusicBrainz: Artist"
+msgstr ""
+
+#: ../root/layout/components/Head.js:111
+msgid "MusicBrainz: Label"
+msgstr ""
+
+#: ../root/layout/components/Head.js:117
+msgid "MusicBrainz: Release"
+msgstr ""
+
+#: ../root/layout/components/Head.js:123
+msgid "MusicBrainz: Track"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:68
+msgid "Log Out"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:82
+msgid "My Data"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:88
+msgid "My Collections"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:92
+msgid "My Ratings"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:95
+msgid "My Tags"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:98
+msgid "My Open Edits"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:101
+msgid "All My Edits"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:104
+msgid "Edits for Subscribed Entities"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:108
+msgid "Edits by Subscribed Editors"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:112
+msgid "Notes Left on My Edits"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:122
+msgid "Admin"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:128
+msgctxt "button/menu"
+msgid "Add Area"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:136
+msgctxt "button/menu"
+msgid "Add Instrument"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:140
+msgctxt "button/menu"
+msgid "Add Genre"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:143
+msgid "Edit Relationship Types"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:150
+msgid "Transclude WikiDocs"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:163
+#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:233
+msgid "Edit Attributes"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:167
+msgid "Edit Statistics Events"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:171
+msgid "Email Search"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:174
+msgid "Privilege Search"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:178
+msgid "Locked Username Search"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:200 ../root/user/Login.js:51
+#: ../root/user/Login.js:52 ../root/user/Login.js:131
+msgid "Log In"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:204
+#: ../root/static/scripts/account/components/RegisterForm.js:131
+msgid "Create Account"
+msgstr ""
+
+#: ../root/layout/components/sidebar/AnnotationLinks.js:38
+msgid "Add annotation"
+msgstr ""
+
+#: ../root/layout/components/sidebar/AnnotationLinks.js:44
+#: ../root/static/scripts/common/components/Annotation.js:91
+msgid "View annotation history"
+msgstr ""
+
+#: ../root/layout/components/sidebar/AreaSidebar.js:49
+msgid "Area information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ArtistSidebar.js:71
+msgid "Artist information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
+msgid "Add recording"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
+msgid "Split into separate artists"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
+msgid "Import as MusicBrainz release"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
+msgid "Add disc ID to an existing release"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
+msgid "Search the database for this CD"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:23
+msgid "You have no area collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:24
+msgid "You have no artist collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:25
+msgid "You have no event collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:26
+msgid "You have no instrument collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:27
+msgid "You have no label collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:28
+msgid "You have no place collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:29
+msgid "You have no recording collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:30
+msgid "You have no release collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:31
+msgid "You have no release group collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:32
+msgid "You have no series collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:33
+msgid "You have no work collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:44
+msgid "Add to a new collection"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:46
+#: ../root/user/UserCollections.js:203
+msgid "Collaborative collections"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:50
+#: ../root/user/UserCollections.js:182
+msgid "My collections"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:57
+msgid "Found in {num} user collection"
+msgid_plural "Found in {num} user collections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:66
+msgid "Other collections"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionList.js:86
+msgid "Remove from {collection}"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionList.js:91
+msgid "Add to {collection}"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:50
+msgid "Collection information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:54
+msgid "Owner:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:66
+msgid "Number of entities"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:84
+#: ../root/layout/components/sidebar/EditLinks.js:50
+msgid "Editing history"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:107
+#: ../root/layout/components/sidebar/SubscriptionLinks.js:42
+#: ../root/user/UserSubscriptions.js:91
+msgid "Unsubscribe"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:119
+#: ../root/layout/components/sidebar/SubscriptionLinks.js:52
+msgid "Subscribe"
+msgstr ""
+
+#: ../root/layout/components/sidebar/EditLinks.js:36
+msgid "Log in to edit"
+msgstr ""
+
+#: ../root/layout/components/sidebar/EventSidebar.js:51
+msgid "Event information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/EventSidebar.js:65
+msgid "Start Date:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/EventSidebar.js:66
+msgid "End Date:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/InstrumentSidebar.js:51
+msgid "Instrument information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LabelSidebar.js:58
+msgid "Label information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LabelSidebar.js:67
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:73
+msgid "Founded:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LabelSidebar.js:73
+msgid "Defunct:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LastUpdated.js:23
+msgid "Last updated on {date}"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LastUpdated.js:28
+msgid "Last updated on an unknown date"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:55
+msgid "Place information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:66
+msgctxt "place"
+msgid "Opening"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:67
+msgctxt "place"
+msgid "Opened"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:76
+msgctxt "place"
+msgid "Closing"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:77
+msgctxt "place"
+msgid "Closed"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
+msgid "ListenBrainz"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:64
+msgid "Play on ListenBrainz"
+msgstr ""
+
+#: ../root/layout/components/sidebar/RecordingSidebar.js:45
+msgid "Recording information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
+msgid "First release year"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:56
+msgid "Release group information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:90
+msgid "Front cover image failed to load correctly.support@musicbrainz."
+"org
with the name of your account."
+msgstr ""
+
+#: ../root/main/error/Error403.js:21 ../root/main/error/MirrorError403.js:13
+msgid "Forbidden Request"
+msgstr ""
+
+#: ../root/main/error/Error403.js:24
+msgid "The page you requested is private."
+msgstr ""
+
+#: ../root/main/error/Error403.js:35
+msgid ""
+"If you followed a link on our site to get here, please {report|report a bug} "
+"and the URL of the page that sent you here."
+msgstr ""
+
+#: ../root/main/error/Error404.js:35
+msgid "Sorry, the page you're looking for does not exist."
+msgstr ""
+
+#: ../root/main/error/Error404.js:40
+#: ../root/main/error/components/ErrorInfo.js:28
+msgid "Error message: "
+msgstr ""
+
+#: ../root/main/error/Error404.js:52
+msgid ""
+"Found a broken link on our site? Please {report|report a bug} and include "
+"any error message that is shown above."
+msgstr ""
+
+#: ../root/main/error/Error500.js:37
+msgid "Internal Server Error"
+msgstr ""
+
+#: ../root/main/error/Error500.js:40
+#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:553
+msgid "Oops, something went wrong!"
+msgstr ""
+
+#: ../root/main/error/Error500.js:50
+msgid "Edits loaded for the page:"
+msgstr ""
+
+#: ../root/main/error/Error500.js:60
+msgid "raw edit data"
+msgstr ""
+
+#: ../root/main/error/Error500.js:65
+msgid "fully loaded"
+msgstr ""
+
+#: ../root/main/error/Error500.js:78
+msgid ""
+"We’re terribly sorry for this problem. Please wait a few minutes and repeat "
+"your request — the problem may go away."
+msgstr ""
+
+#: ../root/main/error/Error500.js:85
+msgid ""
+"If the problem persists, please {report|report a bug} and include any error "
+"message that is shown above."
+msgstr ""
+
+#: ../root/main/error/Error503.js:13
+msgid "System Busy"
+msgstr ""
+
+#: ../root/main/error/Error503.js:16
+msgid "The system is overloaded or you are making requests too fast."
+msgstr ""
+
+#: ../root/main/error/Error503.js:21
+msgid "Please wait a few minutes and repeat your request."
+msgstr ""
+
+#: ../root/main/error/MirrorError403.js:16
+msgid "Sorry, you are unable to perform that action on a mirror server."
+msgstr ""
+
+#: ../root/main/error/MirrorError403.js:23
+msgid ""
+"In order to log in or make changes to the database you must visit the main "
+"server at {mb|https://musicbrainz.org/}."
+msgstr ""
+
+#: ../root/main/error/MirrorError404.js:16
+msgid "Sorry, the page you're looking for is not available on a mirror server."
+msgstr ""
+
+#: ../root/main/error/MirrorError404.js:23
+msgid ""
+"In order to view this page, please visit the main server at {mb|https://"
+"musicbrainz.org/}."
+msgstr ""
+
+#: ../root/main/error/TimeoutError.js:25
+msgid "Request Timed Out"
+msgstr ""
+
+#: ../root/main/error/TimeoutError.js:28
+msgid "Processing your request took too long and timed out."
+msgstr ""
+
+#: ../root/main/error/TimeoutError.js:33
+msgid "It may help to try again by reloading the page."
+msgstr ""
+
+#: ../root/main/error/components/ErrorEnvironment.js:34
+msgid "Host:"
+msgstr ""
+
+#: ../root/main/error/components/ErrorEnvironment.js:42
+msgid "Interface language:"
+msgstr ""
+
+#: ../root/main/error/components/ErrorEnvironment.js:55
+msgid "Request data:"
+msgstr ""
+
+#: ../root/main/error/components/ErrorInfo.js:32
+msgid "(No details about this error are available)"
+msgstr ""
+
+#: ../root/main/index.js:36
+msgid "MusicBrainz - The Open Music Encyclopedia"
+msgstr ""
+
+#: ../root/main/index.js:40
+msgid "Welcome to MusicBrainz!"
+msgstr ""
+
+#: ../root/main/index.js:44
+msgid ""
+"MusicBrainz is an open music encyclopedia that collects music metadata and "
+"makes it available to the public."
+msgstr ""
+
+#: ../root/main/index.js:50
+msgid "MusicBrainz aims to be:"
+msgstr ""
+
+#: ../root/main/index.js:56
+msgid ""
+"The ultimate source of music information by allowing anyone "
+"to contribute and releasing the {doc|data} under {doc2|open licenses}."
+msgstr ""
+
+#: ../root/main/index.js:67
+msgid ""
+"The universal lingua franca for music by providing a "
+"reliable and unambiguous form of {doc|music identification}, enabling both "
+"people and machines to have meaningful conversations about music."
+msgstr ""
+
+#: ../root/main/index.js:80
+msgid ""
+"Like Wikipedia, MusicBrainz is maintained by a global community of users and "
+"we want everyone — including you — to {doc|participate and "
+"contribute}."
+msgstr ""
+
+#: ../root/main/index.js:91
+msgid ""
+"{about|More Information} — {faq|FAQs} — {contact|Contact Us}"
+msgstr ""
+
+#: ../root/main/index.js:103
+msgid ""
+"MusicBrainz is operated by the {uri|MetaBrainz Foundation}, a California "
+"based 501(c)(3) tax-exempt non-profit corporation dedicated to keeping "
+"MusicBrainz {free|free and open source}."
+msgstr ""
+
+#: ../root/main/index.js:116
+msgid "MetaBrainz Blog"
+msgstr ""
+
+#: ../root/main/index.js:121
+msgid "Latest posts:"
+msgstr ""
+
+#: ../root/main/index.js:133
+msgid "Read more »"
+msgstr ""
+
+#: ../root/main/index.js:140
+msgid "The blog is currently unavailable."
+msgstr ""
+
+#: ../root/main/index.js:149
+msgid "Tag Your Music"
+msgstr ""
+
+#: ../root/main/index.js:169
+msgid "Quick Start"
+msgstr ""
+
+#: ../root/main/index.js:172
+msgid "Beginners guide"
+msgstr ""
+
+#: ../root/main/index.js:176
+msgid "Editing introduction"
+msgstr ""
+
+#: ../root/main/index.js:187
+msgid "How to add artists"
+msgstr ""
+
+#: ../root/main/index.js:192
+msgid "How to add releases"
+msgstr ""
+
+#: ../root/main/index.js:203
+msgid "Community"
+msgstr ""
+
+#: ../root/main/index.js:206
+msgid "How to Contribute"
+msgstr ""
+
+#: ../root/main/index.js:222
+msgid ""
+"The majority of the data in the MusicBrainz Database is "
+"released into the Public Domain and can be downloaded and "
+"used for free."
+msgstr ""
+
+#: ../root/main/index.js:232
+msgid "Developers"
+msgstr ""
+
+#: ../root/main/index.js:236
+msgid ""
+"Use our XML web service or development libraries"
+"strong> to create your own MusicBrainz-enabled applications."
+msgstr ""
+
+#: ../root/main/index.js:246
+msgid "Recent Additions"
+msgstr ""
+
+#: ../root/mbid/NotFound.js:21
+msgid "MBID Not Found"
+msgstr ""
+
+#: ../root/mbid/NotFound.js:21
+msgid "Invalid MBID"
+msgstr ""
+
+#: ../root/mbid/NotFound.js:25
+msgid ""
+"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
+"it is an ID for something else than an entity (for example, a "
+"{rel_type_table|relationship type})."
+msgstr ""
+
+#: ../root/mbid/NotFound.js:39
+msgid "{mbid} is not a valid {mbid_doc|MBID}."
+msgstr ""
+
+#: ../root/mbid/NotFound.js:47
+msgid "No {mbid_doc|MBID} selected."
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:28 ../root/oauth2/OAuth2Oob.js:21
+msgid "OAuth Authorization"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:29
+msgid "Authorization"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:33
+msgid "{app} is requesting permission to:"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:44
+msgid "Perform the above operations when I'm not using the application"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:59
+msgid "No thanks"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:62
+msgid "Allow access"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Error.js:21
+msgid "OAuth Authorization Error"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Error.js:22
+msgid "Error: {error}"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Error.js:24
+msgid "{doc|Learn more}"
+msgstr ""
+
+#: ../root/oauth2/OAuth2FormPost.js:21
+msgid "Redirecting to {application}"
+msgstr ""
+
+#: ../root/oauth2/OAuth2FormPost.js:33
+msgid "If this page doesn’t redirect automatically, press “Submit” below."
+msgstr ""
+
+#: ../root/oauth2/OAuth2Oob.js:22
+msgid "Success!"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Oob.js:25
+msgid ""
+"You have granted access to {app}. Next, return to {app} and copy this token "
+"to complete the authorization process:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:82
+msgid "Artist IPI:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:87
+msgid "Artist ISNI:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:92
+msgid "Label IPI:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:97
+msgid "Label ISNI:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:102
+msgid "FreeDB ID:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupIndex.js:22
+#: ../root/otherlookup/OtherLookupIndex.js:24
+msgid "Other Lookups"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupReleaseResults.js:22
+#: ../root/otherlookup/OtherLookupReleaseResults.js:23
+#: ../root/search/components/ResultsLayout.js:32
+#: ../root/search/components/ResultsLayout.js:34
+msgid "Search Results"
+msgstr ""
+
+#: ../root/place/PlaceEvents.js:61
+msgid "This place is not currently associated with any events."
+msgstr ""
+
+#: ../root/place/PlaceMap.js:47
+msgid "A map cannot be shown because this place has no coordinates."
+msgstr ""
+
+#: ../root/place/PlaceMerge.js:32
+msgid ""
+"You are about to merge all these places into a single one. Please select the "
+"place all others should be merged into:"
+msgstr ""
+
+#: ../root/place/PlacePerformances.js:33
+msgid "No recordings, releases or release groups are linked to this place."
+msgstr ""
+
+#: ../root/recording/DeleteRecording.js:34
+#: ../root/recording/DeleteRecording.js:36
+msgid "Remove Recording"
+msgstr ""
+
+#: ../root/recording/DeleteRecording.js:43
+msgid ""
+"Please make sure you’re not removing a legitimate {doc_standalone|standalone "
+"recording}."
+msgstr ""
+
+#: ../root/recording/DeleteRecording.js:57
+msgid "This recording cannot be removed because it is still used on releases."
+msgstr ""
+
+#: ../root/recording/RecordingFingerprints.js:27
+msgid "Associated AcoustIDs"
+msgstr ""
+
+#: ../root/recording/RecordingHeader.js:40
+msgid "Video by {artist}"
+msgstr ""
+
+#: ../root/recording/RecordingHeader.js:41
+msgid "Recording by {artist}"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:56
+msgid "Track Artist"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:57
+msgid "Release Title"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:58
+msgid "Release Artist"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:59
+msgid "Release Group Type"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:81
+#: ../root/release_group/ReleaseGroupIndex.js:60
+msgctxt "release status"
+msgid "(unknown)"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:94
+msgid "Medium {medium_num}, track {track_num}"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:176
+msgid "Appears on releases"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:184
+msgid "No releases found which feature this recording."
+msgstr ""
+
+#: ../root/recording/RecordingMerge.js:34
+msgid ""
+"You are about to merge all these recordings into a single one. Please select "
+"the recording all others should be merged into:"
+msgstr ""
+
+#: ../root/recording/RecordingMerge.js:41
+msgid ""
+"Warning: Some of the recordings you're merging have "
+"different ISRCs. Please make sure they are indeed the same recordings and "
+"you wish to continue with the merge."
+msgstr ""
+
+#: ../root/relationship/RelationshipsHeader.js:23
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:87
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:178
+msgid "Relationship Attributes"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/DeleteRelationshipAttributeType.js:24
+msgid ""
+"Are you sure you wish to remove the {link_attr_type} "
+"relationship attribute?"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/DeleteRelationshipAttributeType.js:28
+msgid "Remove Relationship Attribute"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:19
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:21
+msgid "Relationship attribute in use"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
+msgid ""
+"The relationship attribute type “{type}” can’t be removed because it’s still "
+"in use."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:77
+msgid "Relationship Attribute"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
+msgid "UUID:"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:134
+msgid "Parent attribute"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
+msgid "Possible values"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:161
+msgid ""
+"The possible values for this relationship can be seen from the "
+"{instrument_list|instrument list}."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:182
+msgid "Relationship usage"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:186
+msgid "This attribute is being used by the following relationship types:"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:200
+msgid "{type0} - {type1}"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:217
+msgid "This attribute isn’t directly being used by any relationship types."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:45
+msgid "none"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:62
+msgid "Add child"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
+msgid "No relationship attributes found."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
+msgid "Add a new relationship attribute"
+msgstr ""
+
+#: ../root/relationship/linktype/DeleteRelationshipType.js:24
+msgid ""
+"Are you sure you wish to remove the {link_type} "
+"relationship type?"
+msgstr ""
+
+#: ../root/relationship/linktype/DeleteRelationshipType.js:28
+msgid "Remove Relationship Type"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeInUse.js:19
+#: ../root/relationship/linktype/RelationshipTypeInUse.js:21
+msgid "Relationship Type In Use"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
+msgid ""
+"The relationship type “{type}” can’t be removed because it’s still in use."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
+msgid "This relationship type doesn't allow any attributes."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:52
+msgid "The following attributes can be used with this relationship type:"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:73
+msgid "start date"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:76
+msgid "end date"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:116
+msgid "{entity0}-{entity1}"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:126
+#: ../root/static/scripts/edit/externalLinks.js:774
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:72
+msgid "This relationship type is deprecated and should not be used."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:194
+msgid "Link phrases"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:223
+msgid "Guidelines"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:227
+msgid "See the general {url|guidelines for URLs}."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:260
+msgid ""
+"This relationship type is only used for grouping other relationship types."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:47
+msgid "more"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:69
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:76
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:83
+msgctxt "link phrase"
+msgid "(none)"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:134
+msgid "{relationship_documentation_url|Documentation}"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:172
+msgid "{type0}-{type1} Relationship Types"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:183
+msgid "< Back to all relationship types"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:190
+msgid "{type0}-{type1} relationship types"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
+msgid "Expand all descriptions"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:213
+msgid "Collapse all descriptions"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:232
+msgid "No {type0}-{type1} relationship types found."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypesList.js:40
+msgid "{type0}-{type1}"
+msgstr ""
+
+#: ../root/release/ChangeQuality.js:52
+msgid ""
+"{data_quality_doc|Data quality} indicates how good the data for a release "
+"is. It is not a mark of how good or bad the music itself is — for that, use "
+"{ratings_doc|ratings}."
+msgstr ""
+
+#: ../root/release/CoverArt.js:32
+msgid "250px"
+msgstr ""
+
+#: ../root/release/CoverArt.js:38
+msgid "500px"
+msgstr ""
+
+#: ../root/release/CoverArt.js:44
+msgid "1200px"
+msgstr ""
+
+#: ../root/release/CoverArt.js:48
+msgid "original"
+msgstr ""
+
+#: ../root/release/CoverArt.js:63
+msgid "Cannot show cover art"
+msgstr ""
+
+#: ../root/release/CoverArt.js:100
+msgid "All sizes:"
+msgstr ""
+
+#: ../root/release/CoverArt.js:125
+msgid ""
+"These images provided by the {caa|Cover Art Archive}. You can also see them "
+"at the {ia|Internet Archive}."
+msgstr ""
+
+#: ../root/release/CoverArt.js:137
+msgid "We do not currently have any cover art for {release}."
+msgstr ""
+
+#: ../root/release/CoverArt.js:147
+msgctxt "button/menu"
+msgid "Add Cover Art"
+msgstr ""
+
+#: ../root/release/CoverArt.js:153
+msgctxt "button/menu"
+msgid "Reorder Cover Art"
+msgstr ""
+
+#: ../root/release/CoverArt.js:161
+msgid "Log in to upload cover art"
+msgstr ""
+
+#: ../root/release/CoverArtDarkened.js:19
+msgid "Cannot Add Cover Art"
+msgstr ""
+
+#: ../root/release/CoverArtFields.js:78
+msgid "Choose one or more cover art types for this image"
+msgstr ""
+
+#: ../root/release/DeleteRelease.js:31 ../root/release/DeleteRelease.js:33
+msgid "Remove Release"
+msgstr ""
+
+#: ../root/release/EditRelationships.js:28
+msgid "Edit Relationships: {release}"
+msgstr ""
+
+#: ../root/release/EditRelationships.js:35
+msgid ""
+"To use the batch tools, select some recordings or works using the checkboxes."
+msgstr ""
+
+#: ../root/release/EditRelationships.js:42
+msgid ""
+"Please read {relationships_doc|our guidelines for relationships} if you "
+"haven’t already."
+msgstr ""
+
+#: ../root/release/ReleaseHeader.js:29
+msgid "see all versions of this release, {count} available"
+msgid_plural "see all versions of this release, {count} available"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/release/ReleaseHeader.js:36
+msgid "Release by {artist}"
+msgstr ""
+
+#: ../root/release/ReleaseMerge.js:41
+msgid ""
+"You are about to merge the following releases into a single release. Please "
+"select the release which you would like other releases to be merged into:"
+msgstr ""
+
+#: ../root/release/RemoveCoverArt.js:31
+msgid "Remove Cover Art"
+msgstr ""
+
+#: ../root/release/RemoveCoverArt.js:38
+msgid ""
+"Are you sure you wish to remove the below cover art from {release} by "
+"{artist}?"
+msgstr ""
+
+#: ../root/release_group/ReleaseGroupHeader.js:28
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
+msgid "Release group by {artist}"
+msgstr ""
+
+#: ../root/release_group/ReleaseGroupMerge.js:32
+msgid ""
+"You are about to merge all these release groups into a single one. Please "
+"select the release group all others should be merged into:"
+msgstr ""
+
+#: ../root/report/AnnotationsArtists.js:29
+msgid "This report lists artists with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsArtists.js:34
+msgid "Artist annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsEvents.js:29
+msgid "This report lists events with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsEvents.js:34
+msgid "Event annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsLabels.js:29
+msgid "This report lists labels with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsLabels.js:34
+msgid "Label annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsPlaces.js:29
+msgid "This report lists places with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsPlaces.js:34
+msgid "Place annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsRecordings.js:30
+msgid "This report lists recordings with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsRecordings.js:35
+msgid "Recording annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsReleaseGroups.js:30
+msgid "This report lists release groups with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsReleaseGroups.js:35
+msgid "Release group annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsReleases.js:29
+msgid "This report lists releases with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsReleases.js:34
+msgid "Release annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsSeries.js:29
+msgid "This report lists series with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsSeries.js:34
+msgid "Series annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsWorks.js:29
+msgid "This report lists works with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsWorks.js:34
+msgid "Work annotations"
+msgstr ""
+
+#: ../root/report/ArtistCreditsWithDubiousTrailingPhrases.js:24
+msgid ""
+"This report lists artist credits that have a trailing join phrase that looks "
+"like it might have been left behind in error, such as a trailing comma or "
+"“feat.”."
+msgstr ""
+
+#: ../root/report/ArtistCreditsWithDubiousTrailingPhrases.js:31
+#: ../root/report/ReportsIndex.js:120
+msgid "Artist credits with dubious trailing join phrases"
+msgstr ""
+
+#: ../root/report/ArtistsContainingDisambiguationComments.js:24
+msgid ""
+"This report lists artists that may have disambiguation comments in their "
+"name, rather than the actual disambiguation comment field."
+msgstr ""
+
+#: ../root/report/ArtistsContainingDisambiguationComments.js:30
+#: ../root/report/ReportsIndex.js:84
+msgid "Artists containing disambiguation comments in their name"
+msgstr ""
+
+#: ../root/report/ArtistsDisambiguationSameName.js:24
+msgid ""
+"This report lists artists that have their disambiguation set to be the same "
+"as their name. The disambiguation should be removed or, if it is needed, "
+"improved."
+msgstr ""
+
+#: ../root/report/ArtistsDisambiguationSameName.js:31
+#: ../root/report/ReportsIndex.js:111
+msgid "Artists with disambiguation the same as the name"
+msgstr ""
+
+#: ../root/report/ArtistsThatMayBeGroups.js:24
+msgid ""
+"This report lists artists that have their type set to other than Group (or a "
+"subtype of Group) but may be a group, because they have other artists listed "
+"as members. If you find that an artist here is indeed a group, change its "
+"type. If it is not, please make sure that the “member of” relationships are "
+"in the right direction and are correct."
+msgstr ""
+
+#: ../root/report/ArtistsThatMayBeGroups.js:34
+#: ../root/report/ReportsIndex.js:59
+msgid "Artists that may be groups"
+msgstr ""
+
+#: ../root/report/ArtistsThatMayBePersons.js:24
+msgid ""
+"This report lists artists that have their type set to other than Person, but "
+"may be a person, based on their relationships. For example, an artist will "
+"appear here if it is listed as a member of another. If you find that an "
+"artist here is indeed a person, change its type. If it is not, please make "
+"sure that all the relationships are correct and make sense."
+msgstr ""
+
+#: ../root/report/ArtistsThatMayBePersons.js:34
+#: ../root/report/ReportsIndex.js:63
+msgid "Artists that may be persons"
+msgstr ""
+
+#: ../root/report/ArtistsWithMultipleOccurrencesInArtistCredits.js:24
+msgid ""
+"This report lists artists that appear more than once in different positions "
+"within the same artist credit."
+msgstr ""
+
+#: ../root/report/ArtistsWithMultipleOccurrencesInArtistCredits.js:30
+#: ../root/report/ReportsIndex.js:98
+msgid "Artists occurring multiple times in the same artist credit"
+msgstr ""
+
+#: ../root/report/ArtistsWithNoSubscribers.js:24
+msgid ""
+"This report lists artists that have no editors subscribed to them, and whose "
+"changes may therefore be under-reviewed. Artists with more release groups "
+"and more open edits are listed first."
+msgstr ""
+
+#: ../root/report/ArtistsWithNoSubscribers.js:31
+#: ../root/report/ReportsIndex.js:67
+msgid "Artists with no subscribers"
+msgstr ""
+
+#: ../root/report/AsinsWithMultipleReleases.js:24
+msgid ""
+"This report shows Amazon URLs which are linked to multiple releases. In most "
+"cases Amazon ASINs should map to MusicBrainz releases 1:1, so only one of "
+"the links will be correct. Just check which MusicBrainz release fits the "
+"release in Amazon (look at the format, tracklist, etc). If the release has a "
+"barcode, you can also search Amazon for it and see which ASIN matches. You "
+"might also find some ASINs linked to several discs of a multi-disc release: "
+"just merge those (see {how_to_merge_releases|How to Merge Releases})."
+msgstr ""
+
+#: ../root/report/AsinsWithMultipleReleases.js:38
+#: ../root/report/ReportsIndex.js:280
+msgid "Amazon URLs linked to multiple releases"
+msgstr ""
+
+#: ../root/report/BadAmazonUrls.js:35
+#: ../root/report/LinksWithMultipleEntities.js:86
+#: ../root/report/WikidataLinksWithMultipleEntities.js:81
+#: ../root/report/components/RemovedUrlRow.js:16
+msgid "This URL no longer exists."
+msgstr ""
+
+#: ../root/report/BadAmazonUrls.js:47
+msgid ""
+"This report shows releases with Amazon URLs which don't follow the expected "
+"format. They might still be correct if they're archive.org cover links, but "
+"in any other case they should probably be fixed or removed."
+msgstr ""
+
+#: ../root/report/BadAmazonUrls.js:55
+msgid "Bad Amazon URLs"
+msgstr ""
+
+#: ../root/report/CDTocDubiousLength.js:24
+msgid ""
+"This report shows disc IDs indicating a total duration much longer than what "
+"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
+msgstr ""
+
+#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
+msgid "Disc IDs with dubious duration"
+msgstr ""
+
+#: ../root/report/CDTocNotApplied.js:24
+msgid ""
+"This report shows disc IDs attached to a release but obviously not applied "
+"because at least one track length is unknown on the release. The report is "
+"also restricted to mediums where only one disc ID is attached, so it is "
+"highly likely that the disc ID can be applied without any worries. Do make "
+"sure though that no existing lengths clash with the disc ID, or that any "
+"clashes are clear mistakes."
+msgstr ""
+
+#: ../root/report/CDTocNotApplied.js:34 ../root/report/ReportsIndex.js:632
+msgid "Disc IDs attached but not applied"
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeAsin.js:28
+msgid ""
+"This report shows releases which have catalog numbers that look like ASINs. "
+"This is almost always wrong: ASINs are just Amazon's entries for the "
+"releases and should be linked to the release with an Amazon URL relationship "
+"instead."
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeAsin.js:36 ../root/report/ReportsIndex.js:323
+msgid "Releases with catalog numbers that look like ASINs"
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeIsrc.js:28
+msgid ""
+"This report shows releases which have catalog numbers that look like "
+"{doc_link|ISRCs}. Assigning ISRCs to releases is almost always wrong, but "
+"still happens sometimes, especially for releases added to MusicBrainz by an "
+"artist/label. But ISRCs are codes assigned to recordings, and should be "
+"linked to the appropriate recording instead. That said, do make sure this is "
+"not a legitimate catalog number that just happens to look like an ISRC!"
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeIsrc.js:40 ../root/report/ReportsIndex.js:327
+msgid "Releases with catalog numbers that look like ISRCs"
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
+msgid ""
+"This report shows releases which have catalog numbers that look like "
+"{doc_link|Label Codes}. This is often wrong, since the two are often "
+"confused: label codes apply to the label, not to a specific release. If you "
+"confirm this is a label code (check the label page to see if they match, for "
+"example), remove it or, even better, try to find the actual catalog number."
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
+#: ../root/report/ReportsIndex.js:332
+msgid "Releases with catalog numbers that look like Label Codes"
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:32
+msgid ""
+"This report lists artists which have collaboration relationships but no URL "
+"relationships. If the collaboration has its own independent name, do "
+"nothing. If it is in a format like \"X with Y\" or \"X & Y\", you should "
+"probably split it. See {how_to_split_artists|How to Split Artists}."
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:42
+msgid "Artists with collaboration relationships"
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:49
+msgid "Collaboration"
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:50
+msgid "Collaborator"
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:68
+#: ../root/report/CollaborationRelationships.js:79
+#: ../root/report/DuplicateArtists.js:116
+#: ../root/report/components/ArtistUrlList.js:74
+msgid "This artist no longer exists."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipArtists.js:29
+msgid ""
+"This report lists artists which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipArtists.js:35
+#: ../root/report/ReportsIndex.js:103
+msgid "Artists with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipLabels.js:29
+msgid ""
+"This report lists labels which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipLabels.js:35
+#: ../root/report/ReportsIndex.js:186
+msgid "Labels with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipPlaces.js:29
+msgid ""
+"This report lists places which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipPlaces.js:35
+#: ../root/report/ReportsIndex.js:546
+msgid "Places with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipRecordings.js:29
+msgid ""
+"This report lists recordings which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipRecordings.js:35
+#: ../root/report/ReportsIndex.js:492
+msgid "Recordings with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipReleaseGroups.js:29
+msgid ""
+"This report lists release groups which have relationships using deprecated "
+"and grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipReleaseGroups.js:35
+#: ../root/report/ReportsIndex.js:223
+msgid "Release groups with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipReleases.js:29
+msgid ""
+"This report lists releases which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipReleases.js:35
+#: ../root/report/ReportsIndex.js:397
+msgid "Releases with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipUrls.js:29
+msgid ""
+"This report lists URLs which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipUrls.js:35
+#: ../root/report/ReportsIndex.js:593
+msgid "URLs with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipWorks.js:29
+msgid ""
+"This report lists works which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipWorks.js:35
+#: ../root/report/ReportsIndex.js:576
+msgid "Works with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleArtists.js:25
+msgid "This report shows Discogs URLs which are linked to multiple artists."
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleArtists.js:30
+#: ../root/report/ReportsIndex.js:89
+msgid "Discogs URLs linked to multiple artists"
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleLabels.js:25
+msgid "This report shows Discogs URLs which are linked to multiple labels."
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleLabels.js:30
+#: ../root/report/ReportsIndex.js:178
+msgid "Discogs URLs linked to multiple labels"
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleReleaseGroups.js:25
+msgid ""
+"This report shows Discogs URLs which are linked to multiple release groups."
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleReleaseGroups.js:31
+#: ../root/report/ReportsIndex.js:213
+msgid "Discogs URLs linked to multiple release groups"
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleReleases.js:25
+msgid ""
+"This report shows Discogs URLs which are linked to multiple releases. In "
+"most cases Discogs releases should map to MusicBrainz releases 1:1, so only "
+"one of the links will be correct. Just check which MusicBrainz release fits "
+"the release in Discogs (look at the format, tracklist, release country, "
+"etc.). You might also find some Discogs URLs linked to several discs of a "
+"multi-disc release: just merge those (see {how_to_merge_releases|How to "
+"Merge Releases})."
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleReleases.js:37
+#: ../root/report/ReportsIndex.js:284
+msgid "Discogs URLs linked to multiple releases"
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:38
+msgid "Total duplicate groups: {count}"
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:40
+msgid ""
+"This report aims to identify artists with very similar names. If two artists "
+"are actually the same, please merge them (remember to "
+"{how_to_write_edit_notes|write an edit note} and give your proof). If "
+"they're different, add {disambiguation_comment|disambiguation comments} to "
+"them (and once a group of similarly named artists have disambiguation "
+"comments, they will stop appearing here)."
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:55 ../root/report/ReportsIndex.js:71
+msgid "Possibly duplicate artists"
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:99
+msgid "alias:"
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:109
+#: ../root/report/DuplicateReleaseGroups.js:93
+#: ../root/report/components/ArtistList.js:59
+#: ../root/report/components/ReleaseGroupList.js:63
+#: ../root/report/components/WorkList.js:63
+#: ../root/static/scripts/common/components/Cardinality.js:26
+msgid "Unknown"
+msgstr ""
+
+#: ../root/report/DuplicateEvents.js:24
+msgid ""
+"This report lists events happening at the same place on the same date. If "
+"there are duplicates (for example, if there are separate events for "
+"headliner and supporting artist) please merge them."
+msgstr ""
+
+#: ../root/report/DuplicateEvents.js:32
+msgid "Possible duplicate events"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsArtists.js:24
+msgid ""
+"This report lists artists which have multiple relatonships to the same "
+"artist, label or URL using the same relationship type. For multiple "
+"relationships to release groups, recordings or works, see the reports for "
+"those entities."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsArtists.js:32
+#: ../root/report/ReportsIndex.js:93
+msgid "Artists with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsLabels.js:24
+msgid ""
+"This report lists labels which have multiple relationships to the same "
+"entity using the same relationship type."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsLabels.js:30
+#: ../root/report/ReportsIndex.js:182
+msgid "Labels with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsRecordings.js:24
+msgid ""
+"This report lists recordings which have multiple relationships to the same "
+"entity using the same relationship type."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsRecordings.js:30
+#: ../root/report/ReportsIndex.js:484
+msgid "Recordings with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsReleaseGroups.js:24
+msgid ""
+"This report lists release groups which have multiple relationships to the "
+"same entity using the same relationship type."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsReleaseGroups.js:30
+#: ../root/report/ReportsIndex.js:218
+msgid "Release groups with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsReleases.js:24
+msgid ""
+"This report lists releases which have multiple relationships to the same "
+"entity using the same relationship type."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsReleases.js:30
+#: ../root/report/ReportsIndex.js:381
+msgid "Releases with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsWorks.js:24
+msgid ""
+"This report lists works which have multiple relationships to the same entity "
+"using the same relationship type. This excludes recording-work "
+"relationships. See the recording version of this report for those."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsWorks.js:32
+#: ../root/report/ReportsIndex.js:572
+msgid "Works with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateReleaseGroups.js:39
+msgid ""
+"This report lists release groups with very similar names and artists. If the "
+"releases in the release groups should be grouped together (see the {url|"
+"guidelines}), they can be merged. If they shouldn't be grouped together but "
+"they can be distinguished by the release group types, such as when an artist "
+"has an album and single with the same name, then there is usually no need to "
+"change anything. In other cases, a disambiguation comment may be helpful."
+msgstr ""
+
+#: ../root/report/DuplicateReleaseGroups.js:52
+#: ../root/report/ReportsIndex.js:227
+msgid "Possible duplicate release groups"
+msgstr ""
+
+#: ../root/report/DuplicateReleaseGroups.js:100
+#: ../root/report/components/ReleaseGroupUrlList.js:83
+msgid "This release group no longer exists."
+msgstr ""
+
+#: ../root/report/EventSequenceNotInSeries.js:24
+msgid ""
+"This report lists events where the event name indicates that it may have to "
+"be part of a series or a larger event."
+msgstr ""
+
+#: ../root/report/EventSequenceNotInSeries.js:30
+#: ../root/report/ReportsIndex.js:151
+msgid "Events which should be part of series or larger event"
+msgstr ""
+
+#: ../root/report/FeaturingRecordings.js:24
+msgid ""
+"This report shows recordings with “(feat. Artist)” (or similar) in the "
+"title. For classical recordings, consult the {CSG|classical style "
+"guidelines}. For non-classical recordings, this is usually inherited from an "
+"older version of MusicBrainz and should be fixed (both on the recordings and "
+"on the tracks!). Consult the {featured_artists|page about featured artists} "
+"to know more."
+msgstr ""
+
+#: ../root/report/FeaturingRecordings.js:39 ../root/report/ReportsIndex.js:480
+msgid "Recordings with titles containing featuring artists"
+msgstr ""
+
+#: ../root/report/FeaturingReleaseGroups.js:24
+msgid ""
+"This report shows release groups with “(feat. Artist)” (or similar) in the "
+"title. For classical release groups, consult the {CSG|classical style "
+"guidelines}. For non-classical release groups, this is usually inherited "
+"from an older version of MusicBrainz and should be fixed. Consult the "
+"{featured_artists|page about featured artists} to know more."
+msgstr ""
+
+#: ../root/report/FeaturingReleaseGroups.js:38
+#: ../root/report/ReportsIndex.js:208
+msgid "Release groups with titles containing featuring artists"
+msgstr ""
+
+#: ../root/report/FeaturingReleases.js:24
+msgid ""
+"This report shows releases with “(feat. Artist)” (or similar) in the title. "
+"For classical releases, consult the {CSG|classical style guidelines}. For "
+"non-classical releases, this is usually inherited from an older version of "
+"MusicBrainz and should be fixed. Consult the {featured_artists|page about "
+"featured artists} to know more. Don’t forget that the same generally applies "
+"to tracks, so if the track titles also include featuring credits you can fix "
+"them too while you edit the release!"
+msgstr ""
+
+#: ../root/report/FeaturingReleases.js:41 ../root/report/ReportsIndex.js:308
+msgid "Releases with titles containing featuring artists"
+msgstr ""
+
+#: ../root/report/FilterLink.js:27
+msgid "Show all results."
+msgstr ""
+
+#: ../root/report/FilterLink.js:31
+msgid "Show only results that are in my subscribed entities."
+msgstr ""
+
+#: ../root/report/InstrumentsWithoutAnImage.js:24
+msgid ""
+"This report shows instruments without an image relationship to StaticBrainz "
+"(that is, without an IROMBOOK image)."
+msgstr ""
+
+#: ../root/report/InstrumentsWithoutAnImage.js:30
+#: ../root/report/ReportsIndex.js:163
+msgid "Instruments without an image"
+msgstr ""
+
+#: ../root/report/InstrumentsWithoutWikidata.js:24
+msgid "This report shows instruments without Wikidata relationships."
+msgstr ""
+
+#: ../root/report/InstrumentsWithoutWikidata.js:29
+msgid "Instruments without a Wikidata link"
+msgstr ""
+
+#: ../root/report/IsrcsWithManyRecordings.js:37
+msgid ""
+"This report lists {isrc|ISRCs} that are attached to more than one recording. "
+"If the recordings are the same, this usually means they should be merged "
+"(ISRCs can be wrongly assigned so care should still be taken to make sure "
+"they really are the same). If the recordings are parts of a larger "
+"recording, the ISRCs are probably correct and should be left alone. If the "
+"same ISRC appears on two unrelated recordings on the same release, this is "
+"usually means there was an error when reading the disc."
+msgstr ""
+
+#: ../root/report/IsrcsWithManyRecordings.js:51
+#: ../root/report/ReportsIndex.js:610
+msgid "ISRCs with multiple recordings"
+msgstr ""
+
+#: ../root/report/IsrcsWithManyRecordings.js:98
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:82
+msgid "This recording no longer exists."
+msgstr ""
+
+#: ../root/report/IswcsWithManyWorks.js:34
+msgid ""
+"This report lists {iswc|ISWCs} that are attached to more than one work. If "
+"the works are the same, this usually means they should be merged."
+msgstr ""
+
+#: ../root/report/IswcsWithManyWorks.js:42 ../root/report/ReportsIndex.js:619
+msgid "ISWCs with multiple works"
+msgstr ""
+
+#: ../root/report/IswcsWithManyWorks.js:83
+msgid "This work no longer exists."
+msgstr ""
+
+#: ../root/report/LabelsDisambiguationSameName.js:24
+msgid ""
+"This report lists labels that have their disambiguation set to be the same "
+"as their name. The disambiguation should be removed or, if it is needed, "
+"improved."
+msgstr ""
+
+#: ../root/report/LabelsDisambiguationSameName.js:31
+#: ../root/report/ReportsIndex.js:194
+msgid "Labels with disambiguation the same as the name"
+msgstr ""
+
+#: ../root/report/LimitedEditors.js:31
+msgid "This report lists {url|beginner/limited editors}."
+msgstr ""
+
+#: ../root/report/LimitedEditors.js:37 ../root/report/ReportsIndex.js:131
+msgid "Beginner/limited editors"
+msgstr ""
+
+#: ../root/report/LinksWithMultipleEntities.js:40
+msgid ""
+"This report shows URLs that are linked to multiple entities. It excludes "
+"license relationships (where reuse is expected) and Amazon (for releases), "
+"Discogs and Wikidata, which have their own reports. The links here should be "
+"reviewed to see whether they are really a good match: for example, a generic "
+"link to a store page could be replaced with specific per-release store "
+"links, and a link attached to all movements of a classical work might be a "
+"better fit for the main parent work only."
+msgstr ""
+
+#: ../root/report/LinksWithMultipleEntities.js:53
+#: ../root/report/ReportsIndex.js:597
+msgid "URLs linked to multiple entities"
+msgstr ""
+
+#: ../root/report/LinksWithMultipleEntities.js:61
+#: ../root/report/WikidataLinksWithMultipleEntities.js:56
+#: ../root/report/components/UrlList.js:52
+msgid "URL Entity"
+msgstr ""
+
+#: ../root/report/LinksWithMultipleEntities.js:62
+#: ../root/report/WikidataLinksWithMultipleEntities.js:57
+msgid "Usage count"
+msgstr ""
+
+#: ../root/report/LowQualityReleases.js:26
+msgid ""
+"This report shows releases that have been marked as low quality. If you have "
+"some time, you can review them and try to improve the data as much as "
+"possible before changing their quality back to Normal (or even to High, if "
+"you add all the possible data!). If a release has already been improved but "
+"the quality wasn’t changed accordingly, just enter a data quality change to "
+"remove it from this report."
+msgstr ""
+
+#: ../root/report/LowQualityReleases.js:36 ../root/report/ReportsIndex.js:467
+msgid "Releases marked as low quality"
+msgstr ""
+
+#: ../root/report/MediumsWithOrderInTitle.js:24
+msgid ""
+"This report lists releases where at least one medium has a title that seems "
+"to just be indicating its position (such a first medium with the title “Disc "
+"1”). These should usually be removed, as per {release_style|the release "
+"guidelines}."
+msgstr ""
+
+#: ../root/report/MediumsWithOrderInTitle.js:33
+#: ../root/report/ReportsIndex.js:365
+msgid "Releases with mediums named after their position"
+msgstr ""
+
+#: ../root/report/MediumsWithSequenceIssues.js:24
+msgid ""
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
+msgstr ""
+
+#: ../root/report/MediumsWithSequenceIssues.js:30
+msgid "Releases with medium number issues"
+msgstr ""
+
+#: ../root/report/MislinkedPseudoReleases.js:24
+msgid ""
+"This report shows releases with status Pseudo-Release that are marked as the "
+"original version of a translation/transliteration relationship. The pseudo-"
+"release should be the one marked as a translated/transliterated version "
+"instead. If both releases are pseudo-releases, consider linking both to an "
+"official release rather than to each other."
+msgstr ""
+
+#: ../root/report/MislinkedPseudoReleases.js:34
+msgid "Translated/transliterated pseudo-releases marked as original"
+msgstr ""
+
+#: ../root/report/MultipleAsins.js:24
+msgid ""
+"This report shows releases that have more than one Amazon ASIN. In most "
+"cases ASINs should map to MusicBrainz releases 1:1, so only one of them will "
+"be correct. Just check which ones do not fit the release (because of format, "
+"different number of tracks, etc). If the release has a barcode, you can "
+"search Amazon for it and see which ASIN matches."
+msgstr ""
+
+#: ../root/report/MultipleAsins.js:34
+msgid "Releases with multiple ASINs"
+msgstr ""
+
+#: ../root/report/MultipleDiscogsLinks.js:24
+msgid ""
+"This report shows releases that have more than one link to Discogs. In most "
+"cases a MusicBrainz release should have only one equivalent in Discogs, so "
+"only one of them will be correct. Just check which ones do not fit the "
+"release (because of format, different number of tracks, etc). Any \"master\" "
+"Discogs page belongs at the {release_group|release group level}, not at the "
+"release level, and should be removed from releases too."
+msgstr ""
+
+#: ../root/report/MultipleDiscogsLinks.js:36
+msgid "Releases with multiple Discogs links"
+msgstr ""
+
+#: ../root/report/NoLanguage.js:28
+msgid ""
+"This report shows releases that have no language set. If you recognize the "
+"language, please set it! Do it only if you are pretty sure, don't just "
+"guess: not everything written in Cyrillic is Russian, for example."
+msgstr ""
+
+#: ../root/report/NoLanguage.js:36 ../root/report/ReportsIndex.js:260
+msgid "Releases without language"
+msgstr ""
+
+#: ../root/report/NoScript.js:28
+msgid ""
+"This report shows releases that have no script set. If you recognize the "
+"script, just add it! Remember that the script used for English (and most "
+"other European languages) is Latin."
+msgstr ""
+
+#: ../root/report/NoScript.js:35 ../root/report/ReportsIndex.js:264
+msgid "Releases without script"
+msgstr ""
+
+#: ../root/report/NonBootlegsOnBootlegLabels.js:24
+msgid ""
+"This report shows releases that have at least one “Bootleg Production” label "
+"in their labels list, but are not set to status “Bootleg”. These labels "
+"pretty much never release non-bootleg releases, so chances are that either "
+"the label or the status are wrong."
+msgstr ""
+
+#: ../root/report/NonBootlegsOnBootlegLabels.js:32
+#: ../root/report/ReportsIndex.js:456
+msgid "Releases on bootleg labels not set to bootleg"
+msgstr ""
+
+#: ../root/report/PartOfSetRelationships.js:24
+msgid ""
+"This report shows releases that still have the deprecated \"part of set\" "
+"relationship and should probably be merged. For instructions on how to fix "
+"them, please see the documentation about {how_to_merge_releases|how to merge "
+"releases}. If the releases are not really part of a set (for example, if "
+"they are independently-released volumes in a series) just remove the "
+"relationship."
+msgstr ""
+
+#: ../root/report/PartOfSetRelationships.js:36
+msgid "Releases with “part of set” relationships"
+msgstr ""
+
+#: ../root/report/PlacesWithoutCoordinates.js:29
+msgid "This report lists places without coordinates."
+msgstr ""
+
+#: ../root/report/PlacesWithoutCoordinates.js:33
+#: ../root/report/ReportsIndex.js:554
+msgid "Places without coordinates"
+msgstr ""
+
+#: ../root/report/PlacesWithoutCoordinates.js:43
+msgid "Search for coordinates"
+msgstr ""
+
+#: ../root/report/PlacesWithoutCoordinates.js:123
+msgid "This place no longer exists."
+msgstr ""
+
+#: ../root/report/PossibleCollaborations.js:24
+msgid ""
+"This report lists artists which have “&” in their names but no membership-"
+"related relationships (none of member, collaborator, conductor, founder nor "
+"subgroup). If the artist is usually seen as an actual group, member "
+"relationships should be added. If it’s a short term collaboration, it should "
+"be split if possible (see {how_to_split_artists|How to Split Artists}). If "
+"it is a collaboration with its own name and can’t be split, collaboration "
+"relationships should be added to it. For some special cases, such as “Person "
+"& His Orchestra”, conductor and/or founder might be the best choice."
+msgstr ""
+
+#: ../root/report/PossibleCollaborations.js:39
+msgid "Artists that may be collaborations"
+msgstr ""
+
+#: ../root/report/RecordingTrackDifferentName.js:37
+msgid ""
+"This report shows recordings that are linked to only one track, yet have a "
+"different name than the track. This might mean one of the two needs to be "
+"renamed to match the other."
+msgstr ""
+
+#: ../root/report/RecordingTrackDifferentName.js:44
+#: ../root/report/ReportsIndex.js:528
+msgid "Recordings with a different name than their only track"
+msgstr ""
+
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:30
+msgid ""
+"This report shows all recordings with the same name that have different "
+"artists (having different MBIDs) with the same name. These are most likely "
+"cases where the {ac|artist credit} is incorrect for at least one of the "
+"recordings."
+msgstr ""
+
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:38
+msgid "Currently, this report only works with recordings that have one artist."
+msgstr ""
+
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:44
+msgid "Recordings with the same name by different artists with the same name"
+msgstr ""
+
+#: ../root/report/RecordingsWithEarliestReleaseRelationships.js:24
+msgid ""
+"This report shows recordings that have the deprecated \"earliest release\" "
+"relationship. They should be merged if they are truly the same recording; if "
+"they're not, the relationship should be removed. Please, do not merge "
+"recordings blindly just because the lengths fit, and do not merge recordings "
+"with very different times!"
+msgstr ""
+
+#: ../root/report/RecordingsWithEarliestReleaseRelationships.js:34
+#: ../root/report/ReportsIndex.js:476
+msgid "Recordings with earliest release relationships"
+msgstr ""
+
+#: ../root/report/RecordingsWithFutureDates.js:55
+msgid ""
+"This report shows recordings with relationships using dates in the future. "
+"Those are probably typos (such as 2109 instead of 2019)."
+msgstr ""
+
+#: ../root/report/RecordingsWithFutureDates.js:61
+msgid "Recordings with relationships having dates in the future"
+msgstr ""
+
+#: ../root/report/RecordingsWithVaryingTrackLengths.js:24
+msgid ""
+"This report shows recordings where the linked tracks have times that vary by "
+"more than 30 seconds."
+msgstr ""
+
+#: ../root/report/RecordingsWithVaryingTrackLengths.js:30
+#: ../root/report/ReportsIndex.js:488
+msgid "Recordings with varying track times"
+msgstr ""
+
+#: ../root/report/RecordingsWithoutVaCredit.js:24
+msgid ""
+"This report shows recordings linked to the Various Artists entity without "
+"\"Various Artists\" as the credited name."
+msgstr ""
+
+#: ../root/report/RecordingsWithoutVaCredit.js:30
+#: ../root/report/ReportsIndex.js:501
+msgid "Recordings not credited to \"Various Artists\" but linked to VA"
+msgstr ""
+
+#: ../root/report/RecordingsWithoutVaLink.js:24
+msgid ""
+"This report shows recordings with \"Various Artists\" as the credited name "
+"but not linked to the Various Artists entity."
+msgstr ""
+
+#: ../root/report/RecordingsWithoutVaLink.js:30
+#: ../root/report/ReportsIndex.js:508
+msgid "Recordings credited to \"Various Artists\" but not linked to VA"
+msgstr ""
+
+#: ../root/report/ReleaseGroupsWithoutVaCredit.js:24
+msgid ""
+"This report shows release groups linked to the Various Artists entity "
+"without \"Various Artists\" as the credited name."
+msgstr ""
+
+#: ../root/report/ReleaseGroupsWithoutVaCredit.js:31
+#: ../root/report/ReportsIndex.js:236
+msgid "Release groups not credited to \"Various Artists\" but linked to VA"
+msgstr ""
+
+#: ../root/report/ReleaseGroupsWithoutVaLink.js:24
+msgid ""
+"This report shows release groups with \"Various Artists\" as the credited "
+"name but not linked to the Various Artists entity."
+msgstr ""
+
+#: ../root/report/ReleaseGroupsWithoutVaLink.js:31
+#: ../root/report/ReportsIndex.js:243
+msgid "Release groups credited to \"Various Artists\" but not linked to VA"
+msgstr ""
+
+#: ../root/report/ReleaseLabelSameArtist.js:39
+msgid ""
+"This report lists releases where the label name is the same as the artist "
+"name. Often this means the release is self-released, and the label "
+"{SpecialPurposeLabel|should be \"[no label]\" instead}."
+msgstr ""
+
+#: ../root/report/ReleaseLabelSameArtist.js:50
+#: ../root/report/ReportsIndex.js:438
+msgid "Releases where artist name and label name are the same"
+msgstr ""
+
+#: ../root/report/ReleaseRgDifferentName.js:37
+msgid ""
+"This report shows releases which are the only ones in their release group, "
+"yet have a different name than the group. This might mean one of the two "
+"needs to be renamed to match the other."
+msgstr ""
+
+#: ../root/report/ReleaseRgDifferentName.js:44
+#: ../root/report/ReportsIndex.js:444
+msgid "Releases with a different name than their release group"
+msgstr ""
+
+#: ../root/report/ReleasedTooEarly.js:24
+msgid ""
+"This report shows releases which have disc IDs even though they were "
+"released too early to have disc IDs, where one of the medium formats didn't "
+"exist at the time the release was released or where a disc ID is attached to "
+"a medium whose format does not have disc IDs."
+msgstr ""
+
+#: ../root/report/ReleasedTooEarly.js:33 ../root/report/ReportsIndex.js:312
+msgid "Releases released too early"
+msgstr ""
+
+#: ../root/report/ReleasesConflictingDiscIds.js:24
+msgid ""
+"This report shows releases that have conflicting disc IDs on the same medium "
+"with significant differences in duration. This usually means a disc ID was "
+"applied to the wrong medium or the wrong release."
+msgstr ""
+
+#: ../root/report/ReleasesConflictingDiscIds.js:31
+#: ../root/report/ReportsIndex.js:429
+msgid "Releases with conflicting disc IDs"
+msgstr ""
+
+#: ../root/report/ReleasesMissingDiscIds.js:24
+msgid ""
+"This report shows releases (official and promotional only) that have at "
+"least one medium with a format that supports disc IDs, but is missing one."
+msgstr ""
+
+#: ../root/report/ReleasesMissingDiscIds.js:30
+msgid ""
+"For instructions on how to add one, see the {add_discids|documentation page}."
+msgstr ""
+
+#: ../root/report/ReleasesMissingDiscIds.js:36
+#: ../root/report/ReportsIndex.js:425
+msgid "Releases missing disc IDs"
+msgstr ""
+
+#: ../root/report/ReleasesSameBarcode.js:53
+msgid ""
+"This report shows non-bootleg releases which have the same barcode, yet are "
+"placed in different release groups. Chances are that the releases are "
+"duplicates or parts of a set, or at least that the release groups should be "
+"merged."
+msgstr ""
+
+#: ../root/report/ReleasesSameBarcode.js:61 ../root/report/ReportsIndex.js:450
+msgid "Releases with the same barcode in different release groups"
+msgstr ""
+
+#: ../root/report/ReleasesToConvert.js:24
+msgid ""
+"This report aims to identify releases which need converting to multiple "
+"artists (because the track artists are on the title field, for example). "
+"Currently it does this by looking for releases where every track contains \"/"
+"\" or \"-\"."
+msgstr ""
+
+#: ../root/report/ReleasesToConvert.js:32 ../root/report/ReportsIndex.js:255
+msgid "Releases which might need converting to \"multiple artists\""
+msgstr ""
+
+#: ../root/report/ReleasesWithAmazonCoverArt.js:24
+msgid ""
+"This report shows releases which have cover art on Amazon, but have no front "
+"cover in the Cover Art Archive. The use of Amazon art has been discontinued "
+"since the 16th of May 2022, so these releases have no front cover anymore "
+"until one is added to the Cover Art Archive."
+msgstr ""
+
+#: ../root/report/ReleasesWithAmazonCoverArt.js:33
+#: ../root/report/ReportsIndex.js:352
+msgid ""
+"Releases that have Amazon cover art but no Cover Art Archive front cover"
+msgstr ""
+
+#: ../root/report/ReleasesWithCaaNoTypes.js:24
+msgid ""
+"This report shows releases which have cover art in the Cover Art Archive, "
+"but where none of it has any types set. This often means a front cover was "
+"added, but not marked as such."
+msgstr ""
+
+#: ../root/report/ReleasesWithCaaNoTypes.js:32
+#: ../root/report/ReportsIndex.js:359
+msgid "Releases in the Cover Art Archive where no cover art piece has types"
+msgstr ""
+
+#: ../root/report/ReleasesWithDownloadRelationships.js:24
+msgid ""
+"This report shows releases that have relationships that only apply to "
+"digital media releases (download/streaming), but have media whose format is "
+"not “Digital Media”. Generally, these should be moved to the appropriate "
+"digital media release. If one doesn’t exist yet, feel free to add it."
+msgstr ""
+
+#: ../root/report/ReleasesWithDownloadRelationships.js:34
+#: ../root/report/ReportsIndex.js:389
+msgid "Non-digital releases with digital relationships"
+msgstr ""
+
+#: ../root/report/ReleasesWithEmptyMediums.js:24
+msgid ""
+"This report shows releases with at least one medium that is missing a "
+"tracklist. If you can find the tracklist, please help complete the data!"
+msgstr ""
+
+#: ../root/report/ReleasesWithEmptyMediums.js:31
+#: ../root/report/ReportsIndex.js:409
+msgid "Releases with empty mediums"
+msgstr ""
+
+#: ../root/report/ReleasesWithMailOrderRelationships.js:24
+msgid ""
+"This report shows releases that have mail order relationships (which by "
+"definition only apply to physical media releases), but only have media whose "
+"format is “Digital Media”. Generally, these should be moved to the "
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
+msgstr ""
+
+#: ../root/report/ReleasesWithMailOrderRelationships.js:33
+#: ../root/report/ReportsIndex.js:393
+msgid "Digital releases with mail order relationships"
+msgstr ""
+
+#: ../root/report/ReleasesWithNoMediums.js:24
+msgid "This report shows releases without any mediums (no tracklist)."
+msgstr ""
+
+#: ../root/report/ReleasesWithNoMediums.js:29
+#: ../root/report/ReportsIndex.js:405
+msgid "Releases with no mediums"
+msgstr ""
+
+#: ../root/report/ReleasesWithUnlikelyLanguageScript.js:28
+msgid ""
+"This report shows releases that have an unlikely combination of language and "
+"script properties, such as German and Ethiopic."
+msgstr ""
+
+#: ../root/report/ReleasesWithUnlikelyLanguageScript.js:34
+#: ../root/report/ReportsIndex.js:373
+msgid "Releases with unlikely language/script pairs"
+msgstr ""
+
+#: ../root/report/ReleasesWithoutVaCredit.js:24
+msgid ""
+"This report shows releases linked to the Various Artists entity without "
+"\"Various Artists\" as the credited name."
+msgstr ""
+
+#: ../root/report/ReleasesWithoutVaCredit.js:30
+#: ../root/report/ReportsIndex.js:414
+msgid "Releases not credited to \"Various Artists\" but linked to VA"
+msgstr ""
+
+#: ../root/report/ReleasesWithoutVaLink.js:24
+msgid ""
+"This report shows releases with \"Various Artists\" as the credited name but "
+"not linked to the Various Artists entity."
+msgstr ""
+
+#: ../root/report/ReleasesWithoutVaLink.js:30
+#: ../root/report/ReportsIndex.js:420
+msgid "Releases credited to \"Various Artists\" but not linked to VA"
+msgstr ""
+
+#: ../root/report/ReportNotAvailable.js:18
+msgid "We are sorry, but data for this report is not available right now."
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:45
+msgid ""
+"If you'd like to participate in the editing process, but do not know where "
+"to start, the following reports should be useful. These reports scour the "
+"database looking for data that might require fixing, either to comply with "
+"the {style|style guidelines}, or in other cases where administrative \"clean "
+"up\" tasks are required."
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:75
+msgid "Artists which have collaboration relationships"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:79
+msgid "Artists which look like collaborations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:107
+msgid "Artists with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:127
+msgid "Editors"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:142
+msgid "Events with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:146
+msgid "Possibly duplicate events"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:167
+msgid "Instruments without a link to Wikidata"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:190
+msgid "Labels with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:199
+msgid "Release groups"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:203
+msgid "Release groups that might need to be merged"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:231
+msgid "Release groups with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:268
+msgid "Releases which have unexpected Amazon URLs"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:272
+msgid "Releases which have multiple ASINs"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:276
+msgid "Releases which have multiple Discogs links"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:288
+msgid "Releases which have part of set relationships"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:292
+msgid "Discs entered as separate releases"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:296
+msgid "Tracks whose names include their sequence numbers"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:300
+msgid "Releases with non-sequential track numbers"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:304
+#: ../root/report/SuperfluousDataTracks.js:39
+msgid "Releases with superfluous data tracks"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:317
+msgid "Releases where some (but not all) mediums have no format set"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:338
+msgid ""
+"Translated/Transliterated Pseudo-Releases marked as the original version"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:345
+msgid ""
+"Translated/Transliterated Pseudo-Releases not linked to an original version"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:369
+msgid "Releases with non-sequential mediums"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:377 ../root/report/TracksWithoutTimes.js:30
+msgid "Releases with unknown track times"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:385
+#: ../root/report/SingleMediumReleasesWithMediumTitles.js:31
+msgid "Releases with a single medium that has a name"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:401
+msgid "Releases with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:433 ../root/report/ShouldNotHaveDiscIds.js:32
+msgid "Releases that have disc IDs, but shouldn’t"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:462
+#: ../root/report/ShowNotesButNotBroadcast.js:37
+msgid "Non-broadcast releases with linked show notes"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:496
+msgid "Recordings with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:533
+msgid "Recordings with dates in the future"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:537
+#: ../root/report/VideosInNonVideoMediums.js:40
+msgid "Video recordings in non-video mediums"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:550
+msgid "Places with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:563
+msgid "Series with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:580
+msgid "Works with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:584 ../root/report/WorkSameTypeAsParent.js:35
+msgid "Works with the same type as their parent"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:589
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:37
+msgid "URLs"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:601
+#: ../root/report/WikidataLinksWithMultipleEntities.js:48
+msgid "Wikidata URLs linked to multiple entities"
+msgstr ""
+
+#: ../root/report/SeparateDiscs.js:24
+msgid ""
+"This report shows releases which have (disc n) or (bonus disc) in the title."
+msgstr ""
+
+#: ../root/report/SeparateDiscs.js:29
+msgid ""
+"For instructions on how to fix them, please see the documentation about "
+"{howto|how to merge releases}."
+msgstr ""
+
+#: ../root/report/SeparateDiscs.js:35
+msgid "Discs as separate releases"
+msgstr ""
+
+#: ../root/report/SetInDifferentRg.js:24
+msgid ""
+"This report shows release groups with releases that are linked to releases "
+"in different release groups by part-of-set or transliteration relationships. "
+"If a pair of release groups are listed here, you should probably merge them. "
+"If the releases are discs linked with \"part of set\" relationships, you "
+"might want to merge them too into one multi-disc release (see "
+"{how_to_merge_releases|How to Merge Releases})."
+msgstr ""
+
+#: ../root/report/SetInDifferentRg.js:36
+msgid "Mismatched release groups"
+msgstr ""
+
+#: ../root/report/ShouldNotHaveDiscIds.js:24
+msgid ""
+"This report shows releases that have at least one medium with a format that "
+"does not support disc IDs, yet have disc IDs attached. Usually this means "
+"the disc IDs ended up here because of a bug and should be moved or removed."
+msgstr ""
+
+#: ../root/report/ShowNotesButNotBroadcast.js:24
+msgid ""
+"This report shows releases that have a {doc|show notes relationship}, but "
+"are not in a release group of type Broadcast. Show notes are meant for "
+"podcasts and similar shows, and should not be used to link to some random "
+"notes about any sort of release, yet the relationship often gets used in "
+"that way. If that is the case, the relationship should be either switched to "
+"a better type or removed if nothing is a good fit. If the release is indeed "
+"a podcast, the release group type should be set to Broadcast."
+msgstr ""
+
+#: ../root/report/SingleMediumReleasesWithMediumTitles.js:24
+msgid ""
+"This report shows releases that have a single medium, where this medium also "
+"has a specific name. Usually, this is not necessary and is duplicate "
+"information which can be removed."
+msgstr ""
+
+#: ../root/report/SomeFormatsUnset.js:24
+msgid ""
+"This report shows releases where some of the medium formats are set, but "
+"others are unset. In most cases, it should be easy to find out which the "
+"correct formats are (don't just assume that they're all CDs because one is "
+"though!)."
+msgstr ""
+
+#: ../root/report/SomeFormatsUnset.js:32
+msgid "Releases with some formats unset"
+msgstr ""
+
+#: ../root/report/SuperfluousDataTracks.js:24
+msgid ""
+"This report lists releases without any disc IDs that probably contain data "
+"tracks (like videos) at the end of a medium, but have no tracks marked as "
+"data tracks. A data track should be marked as such if it is the last track "
+"of the CD and contains audio or video. Otherwise, it should just be removed. "
+"See the {data_track_guidelines|data track guidelines}."
+msgstr ""
+
+#: ../root/report/TracksNamedWithSequence.js:24
+msgid ""
+"This report aims to identify releases where track names include their own "
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
+msgstr ""
+
+#: ../root/report/TracksNamedWithSequence.js:33
+msgid "Releases where track names start with their track number"
+msgstr ""
+
+#: ../root/report/TracksWithSequenceIssues.js:24
+msgid ""
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
+msgstr ""
+
+#: ../root/report/TracksWithSequenceIssues.js:31
+msgid "Releases with track number issues"
+msgstr ""
+
+#: ../root/report/TracksWithoutTimes.js:24
+msgid ""
+"This report lists all releases where some or all tracks have unknown track "
+"lengths."
+msgstr ""
+
+#: ../root/report/UnlinkedPseudoReleases.js:24
+msgid ""
+"This report shows releases with status Pseudo-Release that aren’t linked via "
+"the translation/transliteration relationship to an original version. This "
+"could be because the original version is missing, or just because the "
+"release status is wrongly set."
+msgstr ""
+
+#: ../root/report/UnlinkedPseudoReleases.js:32
+msgid "Unlinked pseudo-releases"
+msgstr ""
+
+#: ../root/report/VideosInNonVideoMediums.js:24
+msgid ""
+"This report shows recordings marked as video, but that appear in at least "
+"one medium that does not support videos."
+msgstr ""
+
+#: ../root/report/VideosInNonVideoMediums.js:29
+msgid ""
+"There are two main possibilities here: either the recording being marked as "
+"a video is correct, but the format is not (a CD should be a VCD, for "
+"example), or the recording is being used for both a video and and audio-only "
+"recording, in which case the two should be split since video recordings "
+"should always be separate. If you split the recordings, consider whether it "
+"makes sense to link them with a {doc_link|music video relationship}."
+msgstr ""
+
+#: ../root/report/WikidataLinksWithMultipleEntities.js:40
+msgid ""
+"This report shows Wikidata URLs that are linked to multiple entities. In "
+"general, Wikidata entities should match 1 to 1 with MusicBrainz entities, so "
+"most of these should indicate either an error in MusicBrainz or a too-wide "
+"Wikidata page."
+msgstr ""
+
+#: ../root/report/WorkSameTypeAsParent.js:24
+msgid ""
+"This report shows works with at least one parent work that has the same work "
+"type as them (such as a work marked as a sonata which is part of another "
+"sonata). In most cases, that means these works should have a different type "
+"or (most likely) no type at all, as per {work_style_doc|the work "
+"guidelines}. Sometimes the parent work type might be the one that needs to "
+"be changed."
+msgstr ""
+
+#: ../root/report/components/ArtistCreditList.js:46
+msgid "This artist credit no longer exists."
+msgstr ""
+
+#: ../root/report/components/LabelUrlList.js:75
+msgid "This label no longer exists."
+msgstr ""
+
+#: ../root/report/components/ReleaseUrlList.js:83
+msgid "This release no longer exists."
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:19
+msgid "Total artists found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:20
+msgid "Total artist credits found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:21
+msgid "Total discIDs found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:22
+msgid "Total editors found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:23
+msgid "Total events found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:24
+msgid "Total instruments found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:25
+msgid "Total ISRCs found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:26
+msgid "Total ISWCs found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:27
+msgid "Total labels found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:28
+msgid "Total places found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:29
+msgid "Total recordings found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:30
+msgid "Total relationships found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:31
+msgid "Total releases found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:32
+msgid "Total release groups found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:33
+msgid "Total series found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:34
+msgid "Total URLs found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:35
+msgid "Total works found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:85
+msgid "Generated on {date}"
+msgstr ""
+
+#: ../root/report/constants.js:11
+msgid ""
+"If you see something in these annotations that can be represented with a "
+"relationship instead, please add a relationship and remove that part of the "
+"annotation. If something is marked as “sub-optimal”, consider checking if a "
+"better way to store that data has been added in the meantime."
+msgstr ""
+
+#: ../root/report/hooks/useAnnotationColumns.js:34
+msgid "Last edited"
+msgstr ""
+
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
+#: ../root/search/SearchIndex.js:32
+msgid "Tag lookup"
+msgstr ""
+
+#: ../root/search/SearchIndex.js:34
+msgid "Other lookups"
+msgstr ""
+
+#: ../root/search/components/AreaResults.js:66
+#: ../root/search/components/ArtistResults.js:56
+#: ../root/search/components/LabelResults.js:70
+#: ../root/search/components/PlaceResults.js:67
+#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
+msgid "Begin"
+msgstr ""
+
+#: ../root/search/components/AreaResults.js:76
+msgid "Alternatively, you may {uri|add a new area}."
+msgstr ""
+
+#: ../root/search/components/ArtistResults.js:85
+msgid "Alternatively, you may {uri|add a new artist}."
+msgstr ""
+
+#: ../root/search/components/DocResults.js:16
+#: ../root/search/components/DocResults.js:18
+msgid "Documentation Search"
+msgstr ""
+
+#: ../root/search/components/EventResults.js:78
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
+msgid "Location"
+msgstr ""
+
+#: ../root/search/components/EventResults.js:87
+msgid "Alternatively, you may {uri|add a new event}."
+msgstr ""
+
+#: ../root/search/components/InstrumentResults.js:64
+msgid "Alternatively, you may {uri|add a new instrument}."
+msgstr ""
+
+#: ../root/search/components/LabelResults.js:80
+msgid "Alternatively, you may {uri|add a new label}."
+msgstr ""
+
+#: ../root/search/components/PaginatedSearchResults.js:54
+msgid "The last page of results is page {last_page}."
+msgstr ""
+
+#: ../root/search/components/PlaceResults.js:77
+msgid "Alternatively, you may {uri|add a new place}."
+msgstr ""
+
+#: ../root/search/components/RecordingResults.js:120
+msgid "(standalone recording)"
+msgstr ""
+
+#: ../root/search/components/RecordingResults.js:178
+msgid "Alternatively, you may {uri|add a new recording}."
+msgstr ""
+
+#: ../root/search/components/ReleaseGroupResults.js:74
+msgid "Alternatively, you may {uri|add a new release group}."
+msgstr ""
+
+#: ../root/search/components/ReleaseResults.js:151
+msgid "Alternatively, you may {uri|add a new release}."
+msgstr ""
+
+#: ../root/search/components/ResultsLayout.js:38
+msgid "Last updated: {date}"
+msgstr ""
+
+#: ../root/search/components/SearchError.js:24
+msgid "Search Error"
+msgstr ""
+
+#: ../root/search/components/SearchError.js:28
+msgid ""
+"For assistance in writing effective advanced search queries, read the {doc|"
+"syntax documentation}."
+msgstr ""
+
+#: ../root/search/components/SearchForm.js:28
+#: ../root/search/components/SearchForm.js:29
+#: ../root/search/components/SearchForm.js:30
+msgid "Up to {n}"
+msgstr ""
+
+#: ../root/search/components/SearchForm.js:62
+msgid "Indexed search with {doc|advanced query syntax}"
+msgstr ""
+
+#: ../root/search/components/SearchForm.js:90
+msgid "Results per page:"
+msgstr ""
+
+#: ../root/search/components/SearchForm.js:96
+msgid "Search method:"
+msgstr ""
+
+#: ../root/search/components/SeriesResults.js:67
+msgid "Alternatively, you may {uri|add a new series}."
+msgstr ""
+
+#: ../root/search/components/WorkResults.js:68
+msgid "Alternatively, you may {uri|add a new work}."
+msgstr ""
+
+#: ../root/search/error/General.js:24
+msgid ""
+"Sorry, but your query “({query}
)” could not be performed, due "
+"to an error which we are not quite able to identify."
+msgstr ""
+
+#: ../root/search/error/InternalError.js:23
+msgid ""
+"The search server could not fulfill your request due to an internal error. "
+"This is usually only temporary, so please retry your search again later."
+msgstr ""
+
+#: ../root/search/error/Invalid.js:21
+msgid "Your search query was deemed invalid by our ruthless search server."
+msgstr ""
+
+#: ../root/search/error/NoInfo.js:24
+msgid ""
+"Sorry, your query “({query}
)” does not contain enough "
+"information to carry out a search."
+msgstr ""
+
+#: ../root/search/error/NoResults.js:26
+msgid ""
+"Sorry, but your query “({query}
)” did not find any results of "
+"the type “{type}”. Please check you used the correct spelling. Sometimes "
+"searching for fewer or different words may also help."
+msgstr ""
+
+#: ../root/search/error/RateLimited.js:24
+msgid ""
+"Sorry, but your query “({query}
)” could not be performed, "
+"because it appears you've been rate-limited. Either the server is overloaded "
+"or you're making a lot of requests all at once!."
+msgstr ""
+
+#: ../root/search/error/UriTooLarge.js:20
+msgid "Sorry, your query was too large."
+msgstr ""
+
+#: ../root/series/SeriesIndex.js:142
+msgid "This series is currently empty."
+msgstr ""
+
+#: ../root/series/SeriesMerge.js:32
+msgid ""
+"You are about to merge all these series into a single one. Please select the "
+"series all others should be merged into:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/ApplicationForm.js:95
+msgid "Callback URL"
+msgstr ""
+
+#: ../root/static/scripts/account/components/ApplicationForm.js:103
+msgid ""
+"Callback URI is optional for installed applications. If set, its scheme must "
+"be a custom reverse-DNS string, as in org.example.app://auth
, "
+"for installed applications."
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
+msgid ""
+"This is a development server. Your email address is not private or secure. "
+"Proceed with caution!"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
+msgid "If you change your email address, you will be required to verify it."
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
+msgid ""
+"You can pick the level you prefer here: your country, region or city. Be as "
+"specific as you want to!"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
+msgid "Birth date:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
+msgid ""
+"We will use your birth date to display your age in years on your profile "
+"page."
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
+msgid "Languages Known:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
+msgid "Add a language"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:157
+msgid "Regional settings"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:166
+msgid "Guess timezone"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:171
+msgid "Timezone:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:179
+msgid "Date/time format:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:193
+msgid "Allow other users to see my subscriptions"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:198
+msgid "Allow other users to see my tags"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:203
+msgid "Allow other users to see my ratings"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:212
+msgid ""
+"Mail me when one of my edits gets a \"no\" vote. (Note: the email is only "
+"sent for the first \"no\" vote, not each one)"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:221
+msgid "When I add a note to an edit, mail me all future notes for that edit."
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:229
+msgid "When I vote on an edit, mail me all future notes for that edit."
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:236
+msgid "Send me mails with edits to my subscriptions:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:245
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:250
+msgid "Automatically subscribe me to labels I add."
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:255
+msgid "Automatically subscribe me to series I add."
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:70
+msgid "Your username will be publicly visible."
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:81
+msgid ""
+"The username you have entered looks like an email address. This is allowed, "
+"but please keep in mind that everyone will be able to see it. Only use an "
+"email address as your username if you are completely sure you are happy with "
+"that."
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:92
+#: ../root/user/Login.js:107
+msgid "Password:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:113
+msgid ""
+"You must provide a working email address if you wish to contribute to the "
+"database."
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:119
+msgid "Captcha"
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:126
+msgid ""
+"Please review the {coc|MusicBrainz Code of Conduct} before creating an "
+"account."
+msgstr ""
+
+#: ../root/static/scripts/alias/AliasEditForm.js:293
+msgid "Alias Details"
+msgstr ""
+
+#: ../root/static/scripts/alias/AliasEditForm.js:300
+msgid "Alias name:"
+msgstr ""
+
+#: ../root/static/scripts/alias/AliasEditForm.js:324
+msgid "This is the primary alias for this locale"
+msgstr ""
+
+#: ../root/static/scripts/alias/AliasEditForm.js:339
+msgid "This alias is no longer current."
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
+msgid "Old"
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
+msgid "New"
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
+msgid "Version History"
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:149
+msgid "View this version"
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:154
+msgid "no changelog specified"
+msgstr ""
+
+#: ../root/static/scripts/area/places-map.js:95
+msgid "… and {place_count} other"
+msgid_plural "… and {place_count} others"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/area/places-map.js:107
+msgid "No type"
+msgstr ""
+
+#: ../root/static/scripts/area/places-map.js:109
+msgid "{place_name} (closed)"
+msgstr ""
+
+#: ../root/static/scripts/area/places-map.js:125
+msgid "{place_type}: {place_link} (closed)"
+msgstr ""
+
+#: ../root/static/scripts/area/places-map.js:130
+msgid "{place_type}: {place_link}"
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:220
+msgid ""
+"Please select the {doc|artist credits} that you want to rename to follow the "
+"new artist name."
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:226
+msgid ""
+"This will enter additional edits to change each specific credit to use the "
+"new name. Only use this if you are sure the existing credits are incorrect "
+"(such as for typos)."
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
+msgid ""
+"Keep in mind artist credits should generally follow what is printed on "
+"releases. If an artist has changed their name, but old releases were "
+"credited to the existing name, do not change the artist credit."
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:255
+msgid "Show less artist credits"
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:257
+#: ../root/static/scripts/common/components/Collapsible.js:76
+msgid "Show less..."
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:269
+msgid "Show more artist credits"
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
+#: ../root/static/scripts/common/components/Collapsible.js:76
+msgid "Show more..."
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
+msgid "Collection details"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
+msgid "Allow other users to see this collection"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
+msgid "Update collection"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
+msgid "Add collaborator"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
+msgid "Remove collaborator"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:88
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:94
+msgid "An error occurred while searching. Click here to try again."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:93
+msgid "Try with direct search instead."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:94
+msgid "Try with indexed search instead."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
+msgid "Type to search, or paste an MBID"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:217
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:49
+msgid "Clear recent items"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
+msgid "Not found? Try again with direct search."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
+msgid "Slow? Switch back to indexed search."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
+msgid "standalone recording"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
+msgid "{release_group_type} by {artist}"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
+msgid "Performers"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditList.js:45
+msgid "Vote on all edits:"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
+
+#: ../root/static/scripts/common/artworkViewer.js:76
+msgid "Image {current} of {total}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/AcoustIdCell.js:116
+#: ../root/static/scripts/common/components/FingerprintTable.js:114
+#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:108
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:101
+#: ../root/static/scripts/edit/components/withLoadedTypeInfo.js:144
+msgid "Loading..."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:55
+msgid "This annotation is blank."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:73
+msgid "(no changelog)"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:83
+msgid "Annotation last modified by {user} on {date}."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:102
+msgid ""
+"This is an {history|old revision} of this annotation, as edited by {user} on "
+"{date}. {current|View current revision}."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:114
+msgid "Annotation last modified on {date}."
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
+msgid "This artist credit has {edit_search|open edits}."
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
+msgid "This artist credit has open edits."
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistRoles.js:29
+msgid "{artist} ({roles})"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistRoles.js:46
+msgid "Artist Roles"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistRoles.js:50
+#: ../root/static/scripts/common/components/WorkArtists.js:31
+msgid "Show all artists"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistRoles.js:51
+#: ../root/static/scripts/common/components/WorkArtists.js:32
+msgid "Show less artists"
+msgstr ""
+
+#: ../root/static/scripts/common/components/AttributeList.js:69
+msgid "Show all attributes"
+msgstr ""
+
+#: ../root/static/scripts/common/components/AttributeList.js:70
+msgid "Show less attributes"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:55
+msgid "Recent items"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:64
+msgid "Try again with direct search."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:70
+msgid "Try again with indexed search."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:76
+msgid "An error occurred while looking up the MBID you entered."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:82
+msgid "The type of entity you pasted isn’t supported here."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:127
+msgid "Search for an area"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:129
+msgid "Search for an editor"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:130
+msgid "Search for an event"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:131
+msgid "Search for a genre"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:132
+msgid "Search for an instrument"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:133
+msgid "Search for a label"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:135
+msgid "Search for a relationship type"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:136
+msgid "Search for a place"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:137
+msgid "Search for a recording"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:138
+msgid "Search for a release"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:139
+msgid "Search for a release group"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:140
+msgid "Search for a series"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:141
+msgid "Search for a work"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
+msgid "{forward_link_phrase} / {backward_link_phrase}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
+msgid "by {artist}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
+msgid "{first_list_item} … {last_list_item}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/reducer.js:159
+msgid "Hide descriptions"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/reducer.js:160
+msgid "Show descriptions"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/reducer.js:255
+msgid ""
+"1 result found. Press enter to select, or use the up and down arrow keys to "
+"navigate."
+msgid_plural ""
+"{n} results found. Press enter to select, or use the up and down arrow keys "
+"to navigate."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/common/components/Cardinality.js:20
+msgid "Few relationships"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Cardinality.js:23
+msgid "Many relationships"
+msgstr ""
+
+#: ../root/static/scripts/common/components/CollapsibleList.js:87
+msgid "show {n} more"
+msgstr ""
+
+#: ../root/static/scripts/common/components/CollapsibleList.js:109
+msgid "show less"
+msgstr ""
+
+#: ../root/static/scripts/common/components/CommonsImage.js:47
+msgid "Image from Wikimedia Commons"
+msgstr ""
+
+#: ../root/static/scripts/common/components/CritiqueBrainzReview.js:37
+msgid "{review_link|Review} by {author} on {date}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EditorLink.js:19
+msgid ""
+"This editor is missing from this server, and cannot be displayed correctly."
+msgstr ""
+
+#: ../root/static/scripts/common/components/EditorLink.js:23
+msgid "[missing editor]"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:125
+#: ../root/url/UrlIndex.js:31
+msgid ""
+"This link has been temporarily disabled because it has been reported as "
+"potentially harmful."
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:337
+msgid "This release has artwork in the Cover Art Archive"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:351
+msgid "This release group has artwork in the Cover Art Archive"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:367
+msgid ""
+"High quality: All available data has been added, if possible including cover "
+"art with liner info that proves it"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:380
+msgid ""
+"Low quality: The release needs serious fixes, or its existence is hard to "
+"prove (but it’s not clearly fake)"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Filter.js:64
+msgid "Filter"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:44
+msgid "Filter events"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:46
+msgid "Filter recordings"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:48
+msgid "Filter releases"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:50
+msgid "Filter release groups"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:52
+msgid "Filter works"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:99
+msgid "Secondary type"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:118
+msgid "Artist credit"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:242
+msgid "Setlist contains"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FingerprintTable.js:69
+msgid "Error loading AcoustIDs: {error}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FingerprintTable.js:105
+msgid "Unlink"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FingerprintTable.js:113
+msgid "This recording does not have any associated AcoustIDs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IrombookImage.js:42
+msgid "IROMBOOK image/IROMBOOKのイラスト"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IsrcList.js:48
+msgid "Show all ISRCs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IsrcList.js:49
+msgid "Show less ISRCs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IswcList.js:48
+msgid "Show all ISWCs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IswcList.js:49
+msgid "Show less ISWCs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/MediumDescription.js:19
+msgid "{medium_format} {position}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/MediumLink.js:21
+msgid "{medium} on {release}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/OrderableDirection.js:25
+msgid "Forward"
+msgstr ""
+
+#: ../root/static/scripts/common/components/OrderableDirection.js:28
+msgid "Backward"
+msgstr ""
+
+#: ../root/static/scripts/common/components/PostParameters.js:47
+msgid "Data submitted with this request"
+msgstr ""
+
+#: ../root/static/scripts/common/components/RelatedSeries.js:35
+msgid "Related series"
+msgstr ""
+
+#: ../root/static/scripts/common/components/RelatedWorks.js:35
+msgid "Related works"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Relationships.js:109
+msgid ""
+"{link} only has event relationships, which are displayed in the Events tab."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Relationships.js:120
+msgid "{link} has no relationships."
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseEvents.js:52
+msgid "Missing country"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseEvents.js:69
+msgid "Missing date"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseEvents.js:94
+msgid "Show all release events"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseEvents.js:95
+msgid "Show less release events"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseGroupAppearances.js:36
+msgid "and another {num} release group"
+msgid_plural "and another {num} release groups"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:27
+msgid "{start_track}–{end_track}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:93
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:276
+msgid "{num}. {relationship}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:98
+msgid "{relationship} (order: {num})"
+msgstr ""
+
+#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:110
+msgid "track {tracks}"
+msgid_plural "tracks {tracks}"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:105
+msgid "Withdraw vote"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:127
+msgid "You’ve upvoted this tag"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:131
+msgid "Upvote"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:141
+msgid "You’ve downvoted this tag"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:145
+msgid "Downvote"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:549
+#: ../root/user/UserTagList.js:94
+msgid "There are no genres to show."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:559
+#: ../root/user/UserTagList.js:115
+msgid "There are no other tags to show."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:563
+msgid "Nobody has tagged this yet."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:574
+msgid ""
+"Tags with a score of zero or below, and tags that you’ve downvoted are "
+"hidden."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:580
+msgid "Tags with a score of zero or below are hidden."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:588
+msgid "Show all tags."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:597
+msgid "All tags are being shown."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:606
+msgid ""
+"Hide tags with a score of zero or below, and tags that you’ve downvoted."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:617
+msgid "Hide tags with a score of zero or below."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:626
+msgid "Add Tags"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:629
+msgid ""
+"You can add your own {tagdocs|tags} below. Use commas to separate multiple "
+"tags."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:643
+msgid "Submit tags"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:689
+msgid "see all tags"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:705
+msgctxt "verb"
+msgid "Tag"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TaggerIcon.js:79
+msgid "Open in tagger"
+msgstr ""
+
+#: ../root/static/scripts/common/components/WikipediaExtract.js:64
+msgid "Wikipedia"
+msgstr ""
+
+#: ../root/static/scripts/common/components/WikipediaExtract.js:70
+msgid "Continue reading at Wikipedia..."
+msgstr ""
+
+#: ../root/static/scripts/common/components/WikipediaExtract.js:75
+msgid ""
+"Wikipedia content provided under the terms of the {license_link|Creative "
+"Commons BY-SA license}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/WorkArtists.js:27
+msgid "Work Artists"
+msgstr ""
+
+#: ../root/static/scripts/common/entity.js:256
+msgid "You selected {label}."
+msgstr ""
+
+#: ../root/static/scripts/common/entity.js:262
+msgid "Label code: {code}"
+msgstr ""
+
+#: ../root/static/scripts/common/entity.js:289
+msgid "You selected {area}."
+msgstr ""
+
+#: ../root/static/scripts/common/entity.js:382
+msgid "You selected {releasegroup}."
+msgstr ""
+
+#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:138
+msgid "Failed to load the medium."
+msgstr ""
+
+#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:209
+msgid ""
+"This medium has too many tracks to load at once; currently showing "
+"{loaded_track_count} out of {total_track_count} total."
+msgstr ""
+
+#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:226
+msgid "Load all tracks..."
+msgstr ""
+
+#: ../root/static/scripts/common/i18n/hyphenateTitle.js:14
+msgid "{title} - {subtitle}"
+msgstr ""
+
+#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:25
+msgid "{semicolon_only_list_item}; {rest}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/bracketed.js:19
+msgid "[{text}]"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/bracketed.js:22
+msgid "({text})"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:22
+msgid " – ????"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:31
+msgid "{begin_date} – {end_date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:37
+msgid "– {end_date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:42
+msgid "{begin_date} – ????"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:43
+msgid "{begin_date} –"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:35
+#: ../root/tag/TagLayout.js:33
+msgctxt "plural"
+msgid "Series"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
+msgid "on {date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
+msgid "in {date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
+msgid "from {begin_date} until {end_date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
+msgid "from {date} to ????"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
+msgid "from {date} to present"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
+msgid "until {date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
+msgid "ended"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/tableColumns.js:24
+msgid "AcoustIDs"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/yesNo.js:11
+msgid "Yes"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/yesNo.js:11
+msgid "No"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:51
+msgid "Began:"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
+msgid "This person is deceased."
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:74
+msgid "Dissolved:"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:75
+msgid "This group has dissolved."
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:77
+msgid "Founded in:"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:77
+msgid "Dissolved in:"
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:383
+msgid ""
+"Please link to a channel, not a specific video. Videos should be linked to "
+"the appropriate recordings or releases instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:389
+msgid ""
+"This is a link to a search result. Please link to any page in the results "
+"that is relevant to this entity instead, if available."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:394
+msgid ""
+"Please link to a specific video. Add channel pages to the relevant artist, "
+"label, etc. instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:399
+msgid ""
+"This is a lyrics site. As such, links to the site should be added at the "
+"release group level with the “lyrics” relationship, rather than directly to "
+"any specific release."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:571
+msgid ""
+"Allmusic “{album_url_pattern}” links should be added to release groups. To "
+"find the appropriate release link for this release, please check the "
+"Releases tab from {album_url|your link}."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:658
+#: ../root/static/scripts/edit/URLCleanup.js:921
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
+msgid ""
+"This is a redirect link. Please follow {redirect_url|your link} and add the "
+"link it redirects to instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:676
+msgid ""
+"This is a link to a user video and should not be added. Please add the "
+"product link instead, if relevant."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:881
+msgid ""
+"Only Apple Books audiobooks can be added to MusicBrainz. Consider adding "
+"books to {bookbrainz_url|BookBrainz} instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1130
+msgid ""
+"Please link to the main page for the artist, not to a specific album or "
+"track."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1147
+msgid ""
+"Please link to the main page for the label, not to a specific album or track."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1169
+msgid ""
+"This is a Bandcamp profile, not a page for a specific recording. Even if it "
+"shows a single recording right now, that can change when the artist releases "
+"another. Please find and add the appropriate recording page "
+"(“{single_url_pattern}”) instead, and feel free to add this profile link to "
+"the appropriate artist or label."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1197
+msgid ""
+"This is a Bandcamp profile, not a page for a specific release. Even if it "
+"shows this release right now, that can change when the artist releases "
+"another. Please find and add the appropriate release page "
+"(“{album_url_pattern}” or “{single_url_pattern}”) instead, and feel free to "
+"add this profile link to the appropriate artist or label."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1505
+msgid "Please link to the main page for the artist, not a specific product."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1507
+msgid "Please link to the main page for the label, not a specific product."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:2251
+msgid ""
+"Discogs “{master_url_pattern}” links group several releases, so this should "
+"be added to the release group instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:2929
+msgid ""
+"Only IMSLP “{category_url_pattern}” links are allowed for artists. Please "
+"link work pages to the specific work in question."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:2947
+msgid ""
+"IMSLP “{category_url_pattern}” links are only allowed for artists. Please "
+"link the specific work page to this work instead, if available."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:2992
+msgid ""
+"Instagram “{explore_url_pattern}” links are not allowed. Please link to a "
+"profile instead, if there is one."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:3020
+msgid ""
+"Please do not link directly to images, link to the appropriate Instagram "
+"profile page instead. If you want to link to a video, {url|add a standalone "
+"recording} for it instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:3045
+msgid "This is an internal Instagram page and should not be added."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:4087
+msgid ""
+"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
+"release groups, and linking to them is currently disallowed. Please consider "
+"adding Musixmatch links to the relevant artists and works instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:4711
+msgid "Only RYM music videos can be linked to recordings."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:4773
+msgid ""
+"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
+"your link}, make sure the link it redirects to is still the correct one and, "
+"if so, add that link instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5350
+msgid "Please link to Threads profiles, not threads."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5737
+msgid "This is not a profile, but a Twitter documentation page."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5751
+msgid "Please link to Twitter profiles, not tweets."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5769
+msgid "This site does not allow direct links to their images."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5975
+msgid ""
+"Please link to the “{allowed_url_pattern}” page rather than this "
+"“{current_url_pattern}” link."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6058
+msgid ""
+"There is an unencoded “?” or “#” character in this URL. Please check whether "
+"it is useless and should be removed, or whether it is an error and the URL "
+"is misencoded."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6078
+msgid ""
+"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
+"Link to the appropriate WhoSampled artist, track or album page instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6099
+msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6117
+msgid "Please link WhoSampled artist pages to artists."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6129
+msgid "Please link WhoSampled track pages to recordings."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6196
+msgid ""
+"Links to specific sections of Wikipedia articles are not allowed. Please "
+"remove “{fragment}” if still appropriate. See the {url|guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6221
+msgid ""
+"Links to Wikipedia user pages are not allowed. Please link only to actual "
+"Wikipedia articles."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6341
+msgid ""
+"This is a playlist link, which isn’t a video channel and is not guaranteed "
+"to be officially approved. Please link to the official channel for this "
+"entity, if it exists, instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6381
+msgid "Only video and playlist links are allowed on releases."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6413
+msgid ""
+"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
+"links to a release is currently blocked. Please add this Wikipedia link to "
+"the release group instead, if appropriate."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6425
+msgid ""
+"Wikidata normally has no entries for specific releases, so adding Wikidata "
+"links to a release is currently blocked. Please add this Wikidata link to "
+"the release group instead, if appropriate."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6636
+msgid "Some relationship types are missing for this URL."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6653
+#: ../root/static/scripts/edit/externalLinks.js:1022
+msgid "This relationship type combination is invalid."
+msgstr ""
+
+#: ../root/static/scripts/edit/check-duplicates.js:156
+#: ../root/static/scripts/edit/externalLinks.js:703
+#: ../root/static/scripts/release/components/EditWorkDialog.js:175
+msgid "Required field."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:15
+msgid "Add a new area"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:16
+msgid "Add a new artist"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:17
+msgid "Add a new event"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:18
+msgid "Add a new instrument"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:19
+msgid "Add a new label"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:20
+msgid "Add a new place"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:22
+msgid "Add a new release group"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:23
+msgid "Add a new series"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:24
+msgid "Add a new work"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
+msgid ""
+"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
+"documentation for more information."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
+msgid "[missing track name]"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
+msgid "You haven’t entered a track name yet."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
+msgid "Artist in MusicBrainz:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+msgid "Artist as credited:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+msgid "Join phrase:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
+msgid "Add Artist Credit"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
+msgid "Change all artists on this release that match “{name}”"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
+msgid "Change all artists on this release that are currently empty"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
+msgid "Copy Credits"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
+msgid "Paste Credits"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditNameEditor.js:130
+msgid "Remove Artist Credit"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:201
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:179
+msgid "Copy to end date"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/EnterEditNote.js:53
+msgid ""
+"Entering an {note|edit note} that describes where you got your information "
+"is highly recommended. Not only does it make your sources clear (both now "
+"and to users who see the edit years later), but it can also encourage other "
+"users to vote on the edit — thus making it get applied faster."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
+msgid "This entity has {edits_link|open edits}."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
+msgid "This entity has open edits."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:202
+msgid "This relationship has ended."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/NewNotesAlertCheckbox.js:35
+msgid "Show me an alert whenever I receive a new edit note."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PartialDateInput.js:56
+msgid "The date you've entered is not valid"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PossibleDuplicates.js:24
+msgid "Possible Duplicates"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PossibleDuplicates.js:25
+msgid "We found the following entities with very similar names:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PossibleDuplicates.js:38
+msgid "Yes, I still want to enter “{entity_name}”."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PossibleDuplicates.js:45
+msgid ""
+"Please enter a {doc_disambiguation|disambiguation} to help distinguish this "
+"entity from the others."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
+msgid "This relationship has {edit_search|open edits}."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
+msgid "This relationship has open edits."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
+msgid ""
+"Using this merge strategy, all mediums from all releases will be used. You "
+"may specify the new order of mediums. The order does not have to be "
+"continuous, but all medium positions must be positive, and multiple mediums "
+"cannot be in the same position"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:90
+msgid "New position:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:107
+msgid "New disc title:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:127
+msgid "(was medium {position}: {name} on release {release})"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:141
+msgid "(was medium {position} on release {release})"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:197
+msgid ""
+"This merge strategy will merge all mediums together into a single set of "
+"mediums. Recordings between mediums will also be merged, into the recordings "
+"used on the target mediums."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:203
+msgid ""
+"This requires that corresponding mediums have the same number of tracks."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:207
+msgid ""
+"Make sure all mediums in the releases being merged are in the correct "
+"position. For example, to merge a medium into medium 2 of a release, it will "
+"need to be set as medium 2 of the release being merged."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:217
+msgid ""
+"The recording artists do not match! Perhaps you meant to use the \"append "
+"mediums\" merge strategy?"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:222
+msgid ""
+"The recordings that will be merged if you continue with the current merge "
+"strategy include the following, whose artists differ:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/URLInputPopover.js:97
+msgid "Cleaned up to"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/forms.js:104
+#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
+#: ../root/static/scripts/release-editor/init.js:271
+msgid "All of your changes will be lost if you leave this page."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:708
+msgid "Please enter a valid URL, such as “{example_url}”."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:715
+msgid ""
+"“{example_url}” is just an example. Please enter the actual link you want to "
+"add."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:723
+msgid ""
+"Links to MusicBrainz URLs are not allowed. Did you mean to paste something "
+"else?"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:730
+msgid ""
+"Please don’t enter CritiqueBrainz links — reviews are automatically linked "
+"from the “{reviews_tab_name}” tab."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:738
+msgid ""
+"Links to this website are not allowed because it is known to host malware."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:744
+msgid ""
+"Please don’t enter bundled/shortened URLs, enter the destination URL(s) "
+"instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:750
+msgid ""
+"Please don’t enter Google AMP links, since they are effectively an extra "
+"redirect. Enter the destination URL instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:757
+msgid ""
+"Please don’t enter links to search results. If you’ve found any links "
+"through your search that seem useful, do enter those instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:764
+msgid "Please select a link type for the URL you’ve entered."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:784
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:987
+#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:526
+msgid "This relationship already exists."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:796
+#: ../root/static/scripts/relationship-editor/components/DialogSourceEntity.js:61
+msgid ""
+"This URL is not allowed for the selected link type, or is incorrectly "
+"formatted."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:801
+msgid "This URL is not allowed for the selected link type."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:807
+msgid "This URL is not allowed for areas."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:810
+msgid "This URL is not allowed for artists."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:813
+msgid "This URL is not allowed for events."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:816
+msgid "This URL is not allowed for instruments."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:819
+msgid "This URL is not allowed for labels."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:822
+msgid "This URL is not allowed for places."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:825
+msgid "This URL is not allowed for recordings."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:828
+msgid "This URL is not allowed for releases."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:831
+msgid "This URL is not allowed for release groups."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:835
+msgid "This URL is not allowed for series."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:838
+msgid "This URL is not allowed for works."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1146
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:322
+msgid "{description} ({url|more documentation})"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1195
+msgid "Remove Relationship"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1282
+msgid "video"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1413
+msgid "Remove Link"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1443
+msgid "Add link"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1446
+msgid "Add another link"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1555
+msgid "Add another relationship"
+msgstr ""
+
+#: ../root/static/scripts/genre/components/GenreEditForm.js:140
+msgid "Genre details"
+msgstr ""
+
+#: ../root/static/scripts/guess-case/MB/Control/GuessCase.js:25
+msgid "Guess Case Options"
+msgstr ""
+
+#: ../root/static/scripts/guess-case/modes.js:313
+msgid ""
+"This mode capitalises almost all words, with some words (mainly articles and "
+"short prepositions) lowercased. Some words may need to be manually "
+"capitalised to follow the {url|English capitalisation guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/guess-case/modes.js:350
+msgid ""
+"This mode capitalises titles as sentence mode, but also inserts spaces "
+"before semicolons, colons, exclamation marks and question marks, and inside "
+"guillemets. Some words may need to be manually capitalised to follow the "
+"{url|French capitalisation guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/guess-case/modes.js:374
+msgid ""
+"This mode capitalises the first word of a sentence, most other words are "
+"lowercased. Some words, often proper nouns, may need to be manually fixed "
+"according to the {url|relevant language guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/guess-case/modes.js:389
+msgid ""
+"This mode handles the Turkish capitalisation of 'i' ('İ') and 'ı' ('I'). "
+"Some words may need to be manually corrected according to the {url|Turkish "
+"language guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/main/components/ConfirmSeedButtons.js:31
+msgid "Continue"
+msgstr ""
+
+#: ../root/static/scripts/main/components/ConfirmSeedButtons.js:47
+msgid "Leave"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:40
+msgid "Add vocal"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:164
+msgid "This attribute is required."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:200
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:208
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:212
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:216
+msgid "Credited as"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:236
+msgctxt "relationship attribute"
+msgid "Add another"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:217
+msgid ""
+"If you want to set the relationship as happening on one specific date, just "
+"set the same end date and start date. You can use the arrow button to copy "
+"the begin date to the end date."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:223
+msgid ""
+"If you do not know the end date, but you know the relationship has ended and "
+"this seems like useful information to store (for example, if someone is no "
+"longer a member of a band), you can indicate it with the checkbox above."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:124
+msgid "Change credits for other {entity} relationships on the page."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:133
+msgid ""
+"Some tracks/mediums haven’t been loaded yet. If you want to use this option, "
+"please close this dialog and load all tracks/mediums beforehand."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:149
+msgid "All of these relationships."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:161
+msgid "Only relationships to {entity_type} entities."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:179
+msgid "Only “{relationship_type}” relationships to {entity_type} entities."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:204
+msgid ""
+"A credited name is optional. You can leave this field blank to keep the "
+"current name."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkOrder.js:44
+msgid "Order"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkOrder.js:56
+msgid ""
+"If this relationship has a specific order among others of the same type, you "
+"may set its position in the list here (as an alternative to the up- and down-"
+"arrow buttons)."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:66
+msgid ""
+"Please select a subtype of the currently selected relationship type. The "
+"selected relationship type is only used for grouping subtypes."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:88
+msgid "This relationship type is not allowed with the current series type."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:126
+msgid "Type or click to search"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:294
+msgid "Relationship type"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:309
+msgid "Please select a relationship type. ({url|more documentation})"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:157
+msgid "Old order"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:161
+msgid "New order"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:224
+msgid "Please fill out all required fields."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:236
+msgid "Change direction"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:61
+msgid "The series you’ve selected is for artists."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:62
+msgid "The series you’ve selected is for events."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:63
+msgid "The series you’ve selected is for recordings."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:64
+msgid "The series you’ve selected is for releases."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:65
+msgid "The series you’ve selected is for release groups."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:66
+msgid "The series you’ve selected is for works."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:100
+msgid "Entities in a relationship cannot be the same."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetType.js:52
+msgid "Related type"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
+msgid ""
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
+msgid "This will add a relationship to all checked recordings."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1010
+msgid "This will add a relationship to all checked works."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:111
+msgid "no entity"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:117
+msgid "{target} (as {credited_name})"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:188
+msgid "Edit Relationship"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:254
+msgid "Move entity down"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:261
+msgid "Move entity up"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:33
+msgid "Add another area"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:34
+msgid "Add another artist"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:35
+msgid "Add another event"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:36
+msgid "Add another genre"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:37
+msgid "Add another instrument"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:38
+msgid "Add another label"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:39
+msgid "Add another place"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:40
+msgid "Add another recording"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:41
+msgid "Add another release"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:42
+msgid "Add another release group"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:43
+msgid "Add another series"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:45
+msgid "Add another work"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:170
+#: ../root/static/scripts/relationship-editor/components/RelationshipTargetTypeGroups.js:54
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:70
+#: ../root/static/scripts/release/components/TrackRelationshipEditor.js:408
+msgid "Add Relationship"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:272
+msgid "no type"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:311
+msgid "These relationships have a specific ordering"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/utility/getBatchSelectionMessage.js:19
+msgid "{n} recording selected"
+msgid_plural "{n} recordings selected"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/relationship-editor/utility/getBatchSelectionMessage.js:27
+msgid "{n} work selected"
+msgid_plural "{n} works selected"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/release-editor/actions.js:279
+msgid ""
+"This tracklist has artist credits with information that will be lost if you "
+"swap artist credits with track titles. This cannot be undone. Do you wish to "
+"continue?"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/bindingHandlers.js:31
+msgid ""
+"This medium has one or more discids which prevent this information from "
+"being changed."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/dialogs.js:265
+msgid "Page {page} of {total}"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:760
+msgid "Medium {position}: {title}"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:766
+msgid "Medium {position}"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:775
+msgid "I confirm this medium is actually titled “{medium_title}”."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:790
+msgid ""
+"“{matched_text}” seems to indicate medium ordering rather than a medium "
+"title. If this is the case, please use the up/down arrows on the right side "
+"to set the medium position instead of adding a title (see {release_style|the "
+"guidelines}). Otherwise, please confirm that this is the actual title using "
+"the checkbox below."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:892
+msgid "You haven’t selected a label for “{name}”."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/init.js:36
+msgid "Error loading release: {error}"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/init.js:220
+#: ../root/static/scripts/release-editor/init.js:221
+msgid "Add Release"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/init.js:224
+#: ../root/static/scripts/release-editor/init.js:225
+msgid "Edit Release"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:136
+msgid ""
+"The following releases with that barcode are already in the MusicBrainz "
+"database. Please make sure you are not adding an exact duplicate of any of "
+"these:"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:178
+msgid "The check digit is {checkdigit}."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:179
+msgid "Please double-check the barcode on the release."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:184
+msgid ""
+"The barcode you entered looks like a UPC code with the check digit missing."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:194
+msgid "The barcode you entered is a valid UPC code."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:199
+msgid ""
+"The barcode you entered is either an invalid UPC code, or an EAN code with "
+"the check digit missing."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:213
+msgid "The barcode you entered is a valid EAN code."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:217
+msgid "The barcode you entered is not a valid EAN code."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:224
+msgid "The barcode you entered is not a valid UPC or EAN code."
+msgstr ""
+
+#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
+msgid ""
+"This will add a new work for each checked recording that has no work "
+"already. The work names will be the same as their respective recording."
+msgstr ""
+
+#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
+msgid ""
+"Only use this option after you’ve tried searching for the work(s) you want "
+"to add, and are certain they do not already exist on MusicBrainz."
+msgstr ""
+
+#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:94
+msgid "To use this tool, select some recordings using the checkboxes below."
+msgstr ""
+
+#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
+msgid "Batch-add new works"
+msgstr ""
+
+#: ../root/static/scripts/release/components/EditWorkDialog.js:162
+msgid "Edit Work"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumTable.js:101
+msgid ""
+"This medium has too many tracks to load at once, so it’s been paginated."
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumToolbox.js:42
+msgid "Expand all mediums"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumToolbox.js:57
+msgid "Collapse all mediums"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumToolbox.js:92
+msgid "Display Credits Inline"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumToolbox.js:93
+msgid "Display Credits at Bottom"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumTrackRow.js:64
+msgid "Recording artist:"
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:101
+msgid "To use this tool, select some works using the checkboxes below."
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:145
+msgid "Batch-add a relationship to recordings"
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:147
+msgid "[selected recording]"
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:173
+msgid "Batch-add a relationship to works"
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:175
+msgid "[selected work]"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
+msgid "An error occurred:"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
+msgid "Track Relationships"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
+msgid ""
+"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
+"operations on these, please fully load them first."
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
+msgid "Related Works"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
+msgid "We have no information about this release’s media and tracklist."
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
+msgid "Release Relationships"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
+msgid "Release Group Relationships"
+msgstr ""
+
+#: ../root/static/scripts/release/components/TrackRelationshipEditor.js:343
+msgid "Error loading work relationships: {error}"
+msgstr ""
+
+#: ../root/static/scripts/release/components/TrackRelationshipEditor.js:428
+msgid "Add related work"
+msgstr ""
+
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:381
+msgid "Credits"
+msgstr ""
+
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:387
+msgid ""
+"The credits listed below may be incomplete, as some tracks/mediums haven’t "
+"been loaded yet."
+msgstr ""
+
+#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:81
+#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:147
+msgid "Add lyrics language"
+msgstr ""
+
+#: ../root/static/scripts/work/edit.js:340
+msgid "Add Language"
+msgstr ""
+
+#: ../root/static/scripts/work/edit.js:352
+msgid "Remove Language"
+msgstr ""
+
+#: ../root/tag/EntityList.js:26
+msgid "Areas tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:27
+msgid "Artists tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:28
+msgid "Events tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:29
+msgid "Instruments tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:30
+msgid "Labels tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:31
+msgid "Places tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:32
+msgid "Recordings tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:33
+msgid "Releases tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:34
+msgid "Release groups tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:35
+msgctxt "plural series"
+msgid "Series tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:36
+msgid "Works tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:40
+msgid "Areas {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:41
+msgid "Artists {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:42
+msgid "Events {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:43
+msgid "Instruments {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:44
+msgid "Labels {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:45
+msgid "Places {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:46
+msgid "Recordings {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:47
+msgid "Releases {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:48
+msgid "Release groups {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:49
+msgctxt "plural series"
+msgid "Series {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:50
+msgid "Works {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:54
+msgid "Areas where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:55
+msgid "Artists where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:56
+msgid "Events where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:57
+msgid "Instruments where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:58
+msgid "Labels where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:59
+msgid "Places where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:60
+msgid "Recordings where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:61
+msgid "Releases where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:62
+msgid "Release groups where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:63
+msgid "Series where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:64
+msgid "Works where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:70
+msgid "{num} area found"
+msgid_plural "{num} areas found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:71
+msgid "{num} artist found"
+msgid_plural "{num} artists found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:72
+msgid "{num} event found"
+msgid_plural "{num} events found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:73
+msgid "{num} instrument found"
+msgid_plural "{num} instruments found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:74
+msgid "{num} label found"
+msgid_plural "{num} labels found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:75
+msgid "{num} place found"
+msgid_plural "{num} places found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:82
+msgid "{num} series found"
+msgid_plural "{num} series found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:83
+msgid "{num} work found"
+msgid_plural "{num} works found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/NotFound.js:17
+msgid "Tag Not Used"
+msgstr ""
+
+#: ../root/tag/NotFound.js:20
+msgid "No MusicBrainz entities have yet been tagged with \"{tag}\"."
+msgstr ""
+
+#: ../root/tag/NotFound.js:26
+msgid ""
+"If you wish to use this tag, please {url|search} for the entity first and "
+"apply the tag using the sidebar."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:62
+msgid "'{tag}' has been used {num} times"
+msgstr ""
+
+#: ../root/tag/TagCloud.js:107
+msgid "These are the most used genres and other tags in the database."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:111
+msgid "Show as a cloud instead."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:113
+msgid "Show as a list instead."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:123
+msgid "No genre tags have been used yet."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:130
+msgid "No non-genre tags have been used yet."
+msgstr ""
+
+#: ../root/tag/TagIndex.js:38
+msgid "This tag is associated with the genre {genre}."
+msgstr ""
+
+#: ../root/tag/TagLayout.js:47 ../root/tag/TagLayout.js:48
+#: ../root/tag/TagLayout.js:54
+msgid "Tag “{tag}”"
+msgstr ""
+
+#: ../root/tag/TagLayout.js:56
+msgid "Tag"
+msgstr ""
+
+#: ../root/taglookup/Form.js:45
+msgid "Duration"
+msgstr ""
+
+#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
+msgid "Tag Lookup"
+msgstr ""
+
+#: ../root/taglookup/Nag.js:13
+msgid "The users make MusicBrainz happen and we appreciate your help!"
+msgstr ""
+
+#: ../root/taglookup/Nag.js:17
+msgid ""
+"However, we still have to pay the bills and hosting this site costs "
+"{finances|more than $1000 per month}. We need our users to help us make ends "
+"meet and hopefully have money left over to sponsor more development. The "
+"{metabrainz_foundation|MetaBrainz Foundation}, a California based 501(c)3 "
+"tax-exempt non-profit, operates the MusicBrainz project which makes all "
+"donations tax deductible for US taxpayers. And it's simply "
+"good karma everywhere else!"
+msgstr ""
+
+#: ../root/taglookup/Nag.js:33
+msgid ""
+"If you donate $4 you will not get this nag text for a "
+"month. We encourage people to donate $12 to make the nag "
+"screen disappear for 3 months. Or even better, sign up for a recurring "
+"donation every three months to not have to think about or see this nag again."
+msgstr ""
+
+#: ../root/taglookup/Nag.js:42
+msgid "Make a donation now!"
+msgstr ""
+
+#: ../root/taglookup/Nag.js:46
+msgid "I just donated! Why am I seeing this?"
+msgstr ""
+
+#: ../root/taglookup/NotFound.js:13
+msgid "Tag Lookup Error"
+msgstr ""
+
+#: ../root/taglookup/NotFound.js:16
+msgid ""
+"That search can't be performed, because you must provide at least one of "
+"'recording', 'track number', 'duration', 'release', or 'artist'."
+msgstr ""
+
+#: ../root/taglookup/NotFound.js:22
+msgid "Please {search|try again}, providing at least one of these parameters"
+msgstr ""
+
+#: ../root/taglookup/Results.js:19 ../root/taglookup/Results.js:21
+msgid "Tag Lookup Results"
+msgstr ""
+
+#: ../root/url/UrlIndex.js:21
+msgid "URL Information"
+msgstr ""
+
+#: ../root/url/UrlIndex.js:22
+msgid "URL Details"
+msgstr ""
+
+#: ../root/user/ContactUser.js:53
+msgid "Subject:"
+msgstr ""
+
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
+msgid "Message"
+msgstr ""
+
+#: ../root/user/ContactUser.js:68
+msgid "Reveal my email address"
+msgstr ""
+
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
+msgid "Send a copy to my own email address"
+msgstr ""
+
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
+msgid "Send"
+msgstr ""
+
+#: ../root/user/Login.js:56
+msgid "You need to be logged in to view this page."
+msgstr ""
+
+#: ../root/user/Login.js:62
+msgid "Don't have an account? {uri|Create one now}!"
+msgstr ""
+
+#: ../root/user/Login.js:73
+msgid "Incorrect username or password"
+msgstr ""
+
+#: ../root/user/Login.js:83
+msgid ""
+"You cannot log in because this account has been marked as a spam account."
+msgstr ""
+
+#: ../root/user/Login.js:116
+msgid "This is a development server; all passwords have been reset to \"mb\"."
+msgstr ""
+
+#: ../root/user/Login.js:124
+msgid "Keep me logged in"
+msgstr ""
+
+#: ../root/user/Login.js:136
+msgid "Forgot your {link1|username} or {link2|password}?"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:33 ../root/user/PrivilegedUsers.js:35
+msgid "Privileged user accounts"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:37
+msgid "Auto-editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:40
+msgid ""
+"Auto-editors are trusted users who have been given {url|auto-editor} "
+"privileges. These privileges allow them to make select edits that are "
+"automatically approved without going through the normal voting process, as "
+"well as the ability to instantly approve other users' edits."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:50
+msgid "The following {count} users have auto-editor privileges:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:56
+msgid "Relationship editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:59
+msgid ""
+"Relationship editors are users who can add or modify relationship types in "
+"the database. If you would like to propose a new relationship, you must "
+"follow our {url|proposal system}. Relationship editors will only make "
+"changes that have been accepted through the proposal system."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:69
+msgid "The following {count} users are relationship editors:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:75
+msgid "Transclusion editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:78
+msgid ""
+"Transclusion editors are users who add and maintain entries in the {uri|"
+"WikiDocs} transclusion table."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:85
+msgid "The following {count} users are transclusion editors:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:91
+msgid "Location editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:94
+msgid "Location editors are users who can add or modify {uri|areas}."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:100
+msgid "The following {count} users are location editors:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:106
+msgid "Banner message editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:108
+msgid ""
+"Banner message editors are users who can set a message that is shown in a "
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:114
+msgid "The following {count} users are banner message editors:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:120
+msgid "Account administrators"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:121
+msgid "Account administrators can edit and delete user accounts."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:124
+msgid "The following {count} users are account administrators:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:130
+msgid "Bots"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:133
+msgid "The following {count} user accounts are bots:"
+msgstr ""
+
+#: ../root/user/ReportUser.js:83 ../root/user/ReportUser.js:85
+msgid "Report User"
+msgstr ""
+
+#: ../root/user/ReportUser.js:90
+msgid ""
+"This user account has already been deleted, so there’s probably no need to "
+"report it. If you feel there’s a problem that still needs action, please "
+"{link|contact us}."
+msgstr ""
+
+#: ../root/user/ReportUser.js:101
+msgid "Please review our {uri|Code of Conduct} before sending a report."
+msgstr ""
+
+#: ../root/user/ReportUser.js:109
+msgid ""
+"Your report will be sent to our {uri|account administrators}, who will "
+"decide what action to take."
+msgstr ""
+
+#: ../root/user/ReportUser.js:119
+msgid ""
+"Be sure to provide direct links to examples of the behaviour you’re "
+"reporting (for example, use “https://musicbrainz.org/edit/23
” "
+"instead of “edit #23”, and use “https://musicbrainz.org/edit/42
"
+"and https://musicbrainz.org/edit/43
” instead of “https://"
+"musicbrainz.org/user/SomeUser/edits
”). Providing links makes it much "
+"easier for the recipients of the report to look into the issues; a report "
+"without links is unlikely to be acted on fast, since it will require a lot "
+"of additional research."
+msgstr ""
+
+#: ../root/user/ReportUser.js:157
+msgid ""
+"If you don’t want our admins to contact you further regarding this report, "
+"you can uncheck the checkbox above. {discid}
is not a valid disc ID."
msgstr "Vabandust, {discid}
pole kehtiv plaadi-ID."
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
-msgstr "Otsi üles artist, kelle alla uus väljalase peaks minema."
+msgid "Please search for the artist you wish to add a new release for:"
+msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
msgid "Import CD stub"
@@ -7714,7 +7705,7 @@ msgstr ""
"code>” {format} {pos}-le väljalaskel „{release}” artistilt {artist}?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7734,15 +7725,6 @@ msgstr ""
msgid "CD TOC details"
msgstr "CD sisukorra üksikasjad"
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr "Plaadi-ID:"
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "FreeDB:"
@@ -7752,8 +7734,9 @@ msgid "Track details:"
msgstr "Raja üksikasjad:"
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Rada"
@@ -7762,21 +7745,13 @@ msgid "Start"
msgstr "Algus"
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Lõpp"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr "Aeg"
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7820,11 +7795,9 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
-"Kui sa ei näe otsitavat artisti, võid ikkagi uue väljalaske lisada. Artist "
-"luuakse väljalaske lisamise käigus."
#: ../root/cdtoc/SetTracklistDurations.js:46
#: ../root/cdtoc/SetTracklistDurations.js:47
@@ -7863,15 +7836,15 @@ msgstr "vaata kõiki oma kogusid"
msgid "See all of {editor}'s public collections"
msgstr "vaata kõiki tema avalikke kogusid"
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr "Koostöölised"
@@ -7964,8 +7937,8 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "Loo uus kogu"
+msgid "Add a new collection"
+msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -7979,20 +7952,10 @@ msgstr "Kas oled kindel, et soovid eemaldada kogu „{collection}”?"
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "Alias"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr "Nimi sortimisel"
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr "Alguskuupäev"
@@ -8193,7 +8156,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Hinded"
@@ -8239,7 +8202,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8350,6 +8313,7 @@ msgstr "Jälgimisloend"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr "Jälgijad"
@@ -8406,26 +8370,10 @@ msgid "About to close"
msgstr "lõppemas"
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr "Sortimisnimi"
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Sugu"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "Alguspiirkond"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "Lõpp-piirkond"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8437,13 +8385,6 @@ msgstr "Roll"
msgid "Code"
msgstr "Kood"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "Aadress"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr "määramata tüüpi"
@@ -8452,22 +8393,16 @@ msgstr "määramata tüüpi"
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Staatus"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr "Autorid"
@@ -8600,7 +8535,7 @@ msgid "There was a problem cancelling {edit}."
msgstr "{edit} tühistamine ei õnnestunud."
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8824,7 +8759,7 @@ msgid "None"
msgstr "Puudub"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr "Hääletamine"
@@ -8849,7 +8784,8 @@ msgid_plural "Found {n} edits"
msgstr[0] "Leiti {n} toimetus"
msgstr[1] "Leiti {n} toimetust"
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8874,7 +8810,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8883,15 +8819,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8917,51 +8853,41 @@ msgstr "Lisa toimetusmärge"
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr "Hetkel ei saa sa sellele toimetusele märget lisada. ({url|Üksikasjad})"
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "Olek:"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr "Loodud:"
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "Suletud:"
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr "Kiirema sulgemise eeldus"
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] "1 hääl"
msgstr[1] "{n} üksmeelset häält"
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr "Häälteta jäämise korral"
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr "Selle toimetuse toorandmed"
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr "Lisateave:"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr "Hääletamise KKK"
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr "Toimetamise KKK"
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Lisa märge"
@@ -8981,12 +8907,6 @@ msgstr "See kasutaja on automaat."
msgid "bot"
msgstr "bot"
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "Väljalasked:"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -9103,39 +9023,15 @@ msgstr "See annotatsioon on tühi."
msgid "Summary"
msgstr "Kokkuvõte"
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr "Alguskuupäev"
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "Lõppkuupäev"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
-msgstr "Pole enam aktiivselt kasutusel"
+msgstr ""
#: ../root/edit/details/AddCoverArt.js:39
#: ../root/edit/details/RemoveCoverArt.js:39
@@ -9145,18 +9041,21 @@ msgstr "(pole)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Failinimi:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr "Failinimi"
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr "Helikandja:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "Kommentaar:"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
-msgstr "Esitatud lood"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
msgid "Client:"
@@ -9179,20 +9078,20 @@ msgstr "ISRC „{isrc}” salvestisele „{recording}”"
msgid "ISWC {iswc} to {work}"
msgstr "ISWC „{iswc}” teosele „{work}”"
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
-msgstr "Artistiloend:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr "Nimekujud"
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
-msgstr "Seos:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddRelationship.js:33
msgid "Link order:"
@@ -9251,30 +9150,24 @@ msgstr "(pole)"
msgid "(new release group)"
msgstr "(uus väljalaskerühm)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "Staatus:"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr "Väljalaskesündmus"
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "Katalooginumber:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "Katalooginumber"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9286,17 +9179,17 @@ msgstr "vaata kõiki aliaseid"
msgid "Primary for locale"
msgstr "Lokaadi esmane"
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
-msgstr "Järjestuse tüüp"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr "Sõnade keeled"
@@ -9304,7 +9197,7 @@ msgstr "Sõnade keeled"
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "Andmekvaliteet"
@@ -9345,14 +9238,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr "Selle raja MBID muutub, kui toimetus rakendatakse."
@@ -9377,11 +9262,6 @@ msgstr "Vana salvestis"
msgid "New recording"
msgstr "Uus salvestis"
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr "Nimekujud"
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "Vana artist"
@@ -9407,25 +9287,10 @@ msgstr ""
msgid "Deprecated:"
msgstr "Iganenud:"
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr "Märkus"
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "Katalooginumber"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9449,6 +9314,7 @@ msgid "Search for the target URL."
msgstr "Otsi siht-URL-i"
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9461,8 +9327,9 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "Mestitakse:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -9580,8 +9447,8 @@ msgid "New positions:"
msgstr "Uued asukohad:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
-msgstr "Helikandjad:"
+msgid "Mediums"
+msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
@@ -9602,8 +9469,8 @@ msgstr "Helikandja {new} (uus helikandja)"
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
"Helikandja {new} (teisaldati asukohalt {old})"
@@ -9647,20 +9514,6 @@ msgstr "See toimetus teeb rajapikkustes alla-sekundilisi parandusi."
msgid "CD TOC:"
msgstr "CD sisukord:"
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "Seosed:"
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr "Väljalaskesündmused:"
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Katalooginumber"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9671,11 +9524,6 @@ msgstr "Loo number"
msgid "Artist name:"
msgstr "Artisti nimi:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr "Väljalaskerühm:"
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "Vanad seosed:"
@@ -9685,9 +9533,9 @@ msgid "New relationships:"
msgstr "Uued seosed:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
-msgstr "Vana:"
+msgctxt "release type and status"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
msgid "Type: {type}, status: {status}"
@@ -9702,16 +9550,24 @@ msgid "New Status:"
msgstr "Uus staatus:"
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "Lisatud"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
-msgstr "Eemaldatud"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
-msgstr "Muudetud"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
@@ -9753,41 +9609,39 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "Alias:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr "Lugu:"
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Kandidaat:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Kandidaat"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
-msgstr "Ettepaneku tegija:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr "Ettepaneku tegija"
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
-msgstr "1. sekundant:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
-msgstr "2. sekundant:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:59
msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "Poolthääli:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "Poolt"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "Vastuhääli:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "Vastu"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -9803,46 +9657,18 @@ msgid ""
msgstr "häältearvestust näidatakse pärast valimise lõppu"
#: ../root/elections/ElectionDetails.js:89
-msgctxt "election status"
-msgid "Status:"
-msgstr "Tulemus:"
-
-#: ../root/elections/ElectionTable/ElectionTableRows.js:60
-msgid "View details"
-msgstr "Vaata täpsemalt"
-
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Kandidaat"
-
#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status"
-msgstr "Tulemus"
-
-#: ../root/elections/ElectionTable/index.js:24
-msgid "Start date"
-msgstr "Alguskuupäev"
-
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr "Ettepaneku tegija"
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr "1. sekundant"
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr "2. sekundant"
+msgid "Status"
+msgstr "Tulemus"
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "Poolt"
+#: ../root/elections/ElectionTable/ElectionTableRows.js:60
+msgid "View details"
+msgstr "Vaata täpsemalt"
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "Vastu"
+#: ../root/elections/ElectionTable/index.js:24
+msgid "Start date"
+msgstr "Alguskuupäev"
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
@@ -10574,7 +10400,7 @@ msgstr "Vanemtoimetajate valimised"
msgid "Privileged User Accounts"
msgstr "Eriõigustega kasutajad"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Statistika"
@@ -10726,7 +10552,7 @@ msgstr "Dokumentatsiooniregister"
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "Seosetüübid"
@@ -10893,39 +10719,33 @@ msgstr "Piirkonna teave"
msgid "Artist information"
msgstr "Artisti teave"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "Lisa salvestis"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "Eralda mitmeks artistiks"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "Lisatud:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr "Viimati muudetud:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
-msgstr "Päringute arv:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
-msgstr "Muutmiste arv:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr "Impordi MusicBrainzi väljalaskena"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "Lisa plaadi-ID olemasolevale väljalaskele"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr "Otsi seda CD-d andmebaasist"
@@ -11041,11 +10861,11 @@ msgstr "Toimetamiseks logi sisse"
msgid "Event information"
msgstr "Sündmuse teave"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr "Alguskuupäev:"
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr "Lõppkuupäev:"
@@ -11098,10 +10918,6 @@ msgctxt "place"
msgid "Closed"
msgstr "Suletud"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "Koordinaadid:"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -11114,7 +10930,7 @@ msgstr ""
msgid "Recording information"
msgstr "Salvestise teave"
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -11147,27 +10963,27 @@ msgstr "Näita kõiki kaanepilte"
msgid "No cover art available."
msgstr "Kaanepilti pole lisatud."
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "Lisateave"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr "Väljalaskerühma hinne"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr "Väljalaskerühma arvustused"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr "Väljalaskerühma välislingid"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr "Toimeta seoseid"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr "Muuda andmekvaliteeti"
@@ -11175,21 +10991,13 @@ msgstr "Muuda andmekvaliteeti"
msgid "Series information"
msgstr "Seeria teave"
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "IPI-kood:"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "ISNI-kood:"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Litsents"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Hinne"
@@ -11336,7 +11144,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr "Vabandust, otsitud lehte pole olemas."
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Veateade: "
@@ -11441,13 +11249,7 @@ msgstr "Kasutajaliidese keel:"
msgid "Request data:"
msgstr "Päringuandmed:"
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] "Viga:"
-msgstr[1] "Vead:"
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Üksikasju vea kohta pole saadaval)"
@@ -11598,7 +11400,7 @@ msgstr "Kehtetu MBID"
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11822,7 +11624,7 @@ msgstr "Seoseatribuut on kasutuses"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11830,11 +11632,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "ID:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11846,6 +11643,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11879,17 +11677,13 @@ msgstr "puudub"
msgid "Add child"
msgstr "Lisa alamobjekt"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr "Võimalikud väärtused:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "Ühtki seoseatribuuti ei leitud."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
-msgstr "Loo uus seoseatribuut"
+msgid "Add a new relationship attribute"
+msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
@@ -11909,7 +11703,7 @@ msgstr "Seosetüüp on kasutuses"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11983,8 +11777,8 @@ msgid "{type0}-{type1} relationship types"
msgstr "{type0}–{type1} seosetüübid"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
-msgstr "Uue {type0}–{type1} seose loomine"
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
msgid "Expand all descriptions"
@@ -12002,7 +11796,7 @@ msgstr "Ühtegi {type0}–{type1} seosetüüpi ei leitud."
msgid "{type0}-{type1}"
msgstr "{type0}–{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -12117,8 +11911,8 @@ msgstr ""
"väljalaskelt „{release}”?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "väljalaskerühm ~ {artist}"
@@ -12353,8 +12147,8 @@ msgstr "Vigased Amazoni URL-id"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -12364,10 +12158,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12405,7 +12199,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12414,7 +12208,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12747,16 +12541,10 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
-"See aruanne loetleb väga sarnaste pealkirjade ja artistidega "
-"väljalaskerühmad. Kui väljalasked neis peaks olema kokku rühmitatud (vaata "
-"{url|juhiseid}), tuleks rühmad mestida. Kui väljalasked ei peaks olema kokku "
-"rühmitatud ja neil on erinev väljalaskerühma tüüp, nt kui on tegu sama "
-"pealkirjaga albumi ja singliga, pole vaja midagi muuta. Muudel juhtudel võib "
-"abi olla täpsustusmärke lisamisest."
#: ../root/report/DuplicateReleaseGroups.js:52
#: ../root/report/ReportsIndex.js:227
@@ -12846,7 +12634,7 @@ msgstr "Näita ainult mind huvitavaid tulemusi"
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12983,11 +12771,9 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
-"See aruanne loetleb kõik väljalasked, kus helikandjanumbrid pole "
-"järjestikused (nt puudub helikandja nr 2, kuigi 1 ja 3 on olemas)."
#: ../root/report/MediumsWithSequenceIssues.js:30
msgid "Releases with medium number issues"
@@ -13185,13 +12971,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr "Salvestised, millel on „varaseima väljalaske” seoseid"
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -13382,7 +13168,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -13406,8 +13192,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13636,20 +13421,6 @@ msgstr "URL-id"
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRC-d"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr "ISWC-d"
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13745,15 +13516,10 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
-"Selle aruande eesmärk on tuvastada väljalasked, kus loonimed algavad "
-"järjekorranumbriga, nt „Mingi laulu” asemel „1) Mingi laul”. Pane tähele, et "
-"mõnikord võib (järjekorra)numbriga algav pealkiri põhjendatud ja õige olla, "
-"seega ei tohi neid kõiki masinlikult ära muuta. Kui oled aga kindel, et tegu "
-"on veaga, siis palun paranda see ära."
#: ../root/report/TracksNamedWithSequence.js:33
msgid "Releases where track names start with their track number"
@@ -13761,13 +13527,10 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
-"See aruanne loetleb kõik väljalasked, kus loonumbrid pole järjestikused (nt "
-"puudub lugu nr 2, kuigi 1 ja 3 on olemas) või kus mõnda loonumbrit on mitu "
-"(nt on kaks lugu, mille järjenumber on 4)."
#: ../root/report/TracksWithSequenceIssues.js:31
msgid "Releases with track number issues"
@@ -13927,6 +13690,10 @@ msgstr ""
msgid "Last edited"
msgstr "Viimati muudetud"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Katalooginumber"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr "Sildipäring"
@@ -13936,7 +13703,7 @@ msgid "Other lookups"
msgstr "Muud päringud"
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13947,7 +13714,7 @@ msgstr "Algus"
msgid "Alternatively, you may {uri|add a new area}."
msgstr "Võid ka {uri|lisada uue piirkonna}."
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "Võid ka {uri|lisada uue artisti}."
@@ -13957,11 +13724,12 @@ msgid "Documentation Search"
msgstr "Dokumentatsiooni otsing"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Asukoht"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13995,7 +13763,7 @@ msgstr "Võid ka {uri|lisada uue salvestise}."
msgid "Alternatively, you may {uri|add a new release group}."
msgstr "Võid ka {uri|lisada uue väljalaskerühma}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr "Võid ka {uri|lisada uue väljalaske}."
@@ -14083,7 +13851,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr "Vabandust, su päring oli liiga pikk."
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr "See seeria on hetkel tühi."
@@ -14104,7 +13872,7 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
@@ -14112,37 +13880,38 @@ msgstr ""
"See on arendusserver. Sinu e-posti aadressi ei hoita privaatselt ega "
"turvaliselt. Jätka ettevaatlikult!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr "Kui muudad oma e-posti aadressi, pead selle uuesti kinnitama."
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
-msgstr "Asukoht:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
"Vastavalt soovitud täpsusastmele saab valida riigi, maakonna või linna."
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "Sünnikuupäev:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr "Seda kasutatakse kasutajalehel vanuse näitamiseks."
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "Keeleoskus:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Lisa keel"
@@ -14199,16 +13968,16 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr "Kirju jälgimisloendile tehtud toimetustest saadetakse:"
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
-msgstr "Lisatavate artistide automaatne jälgimine"
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
-msgstr "Lisatavate plaadifirmade automaatne jälgimine"
+msgid "Automatically subscribe me to labels I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
-msgstr "Lisatavate seeriate automaatne jälgimine"
+msgid "Automatically subscribe me to series I add."
+msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
msgid "Your username will be publicly visible."
@@ -14262,12 +14031,14 @@ msgid "This alias is no longer current."
msgstr "See alias pole enam aktiivselt kasutusel"
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
-msgstr "Vana"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "Uus"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -14313,7 +14084,7 @@ msgstr "Palun vali {doc|nimekujud}, mis peaks artisti uut nime järgima."
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -14337,33 +14108,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "Näita rohkem..."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "Kogu üksikasjad"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "Teised kasutajad tohivad seda kogu näha"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "Loo kogu"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr "Uuenda kogu"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr "Lisa koostööline"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr "Eemalda koostööline"
@@ -14381,7 +14152,7 @@ msgid "Try with indexed search instead."
msgstr "Proovi selle asemel indekseeritud otsinguga."
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr "Kirjuta otsitav sõna või kopeeri MBID"
@@ -14390,32 +14161,27 @@ msgstr "Kirjuta otsitav sõna või kopeeri MBID"
msgid "Clear recent items"
msgstr "Puhasta loend"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr "Tulemusteta? Proovi otsese otsinguga."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr "Aeglane? Lülita tagasi indekseeritud otsingule."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr "{release_group_type} ~ {artist}"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -14425,8 +14191,14 @@ msgid "Vote on all edits:"
msgstr "Hääl kõigil avatud toimetustel:"
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
-msgstr "Kustuta märge"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
@@ -14465,11 +14237,11 @@ msgid "Annotation last modified on {date}."
msgstr "Annotatsiooni muudeti viimati {date}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14570,15 +14342,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr "Artist: {artist}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr "{first_list_item} … {last_list_item}"
@@ -14689,8 +14461,8 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
-msgstr "Artisti nimekuju:"
+msgid "Artist credit"
+msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
msgid "Setlist contains"
@@ -14990,31 +14762,31 @@ msgctxt "plural"
msgid "Series"
msgstr "Seeriad"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr "{date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr "{date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr "alates {begin_date} kuni {end_date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr "alates {date} kuni ?"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr "alates {date} kuni praeguseni"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr "kuni {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr "lõppenud"
@@ -15035,8 +14807,9 @@ msgid "Began:"
msgstr "Algus:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "Lõpp:"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -15092,8 +14865,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -15183,113 +14956,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -15336,7 +15109,7 @@ msgstr "Lisa uus seeria"
msgid "Add a new work"
msgstr "Lisa uus teos"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
@@ -15344,47 +15117,47 @@ msgstr ""
"Koostööde sisestamiseks kasuta järgnevaid välju. Lisateabe saamiseks loe "
"dokumentatsioonilehekülge {ac|Artisti nimekuju}."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr "Artist MusicBrainzis:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr "Artisti nimekuju:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr "Liitefraas:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr "Lisa artist"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr "Muudatus kehtib kõigile samanimelistele ({name}) sel väljalaskel"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr "Kopeeri artistiteave"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr "Aseta artistiteave"
@@ -15406,11 +15179,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -15447,11 +15220,11 @@ msgstr ""
"eristada."
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -15526,10 +15299,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr "Väljalaskesündmused:"
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15876,11 +15646,9 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
-"Hoiatus: sel seosel on ootel toimetusi. Nende nägemiseks {show|klõpsa siin} "
-"ja siis vaata, et nad poleks sinu tehtavaga vastuolus."
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
msgid "This will add a relationship to all checked recordings."
@@ -16092,20 +15860,15 @@ msgstr "Sisestatud vöötkood ei ole korrektne UPC- ega EAN-kood."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
-"Luuakse uus teos iga märgitud salvestise jaoks, mis pole veel ühegi teosega "
-"seostatud. Loodavate teoste pealkirjadena kasutatakse vastavate salvestiste "
-"pealkirju."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
-"Kasuta seda valikut ainult siis, kui oled soovitud teoseid tulutult otsinud "
-"ja oled kindel, et neid MusicBrainzis olemas ei ole."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:94
@@ -16113,8 +15876,8 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
-msgstr "Korraga mitme uue teose lisamine"
+msgid "Batch-add new works"
+msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
msgid "Edit Work"
@@ -16165,34 +15928,34 @@ msgstr "Sama seose lisamine korraga mitmele teosele"
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr "Lugude seosed"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr "Seotud teosed"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "Väljalaske seosed"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr "Väljalaskerühma seosed"
@@ -16219,15 +15982,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr "Teose tüüp:"
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr "Lisa keel"
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr "Eemalda keel"
@@ -16470,10 +16229,6 @@ msgstr ""
msgid "Duration"
msgstr "Kestus"
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr "Failinimi"
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "Sildipäring"
@@ -16541,23 +16296,23 @@ msgstr "URL-i teave"
msgid "URL Details"
msgstr "URL-i üksikasjad"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr "Teema:"
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr "Sõnum"
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr "Saaja näeb mu e-posti aadressi"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr "Koopia mu enda e-posti aadressile"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "Saada"
@@ -16671,11 +16426,9 @@ msgstr "Päisesõnumitoimetajad"
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
-"Päisesõnumitoimetajad on kasutajad, kes saavad määrata sõnumi, mida "
-"näidatakse kõigi lehekülgede ülaosas, näiteks et teavitada kasutajaid "
-"eelolevatest hooldustöödest saidil."
#: ../root/user/PrivilegedUsers.js:114
msgid "The following {count} users are banner message editors:"
@@ -16905,10 +16658,6 @@ msgstr ""
msgid "General Information"
msgstr "Üldinfo"
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "E-post:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(peidetud)"
@@ -16950,191 +16699,185 @@ msgstr "esita vanemtoimetaja kandidaadiks"
msgid "Age:"
msgstr "Vanus:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "Liitunud:"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "Viimati sisse loginud:"
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "Kirjeldus"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr "polegi veel sisse loginud"
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr "Koduleht:"
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr "Jälgijaid:"
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr "{count} ({url|vaata nimekirja})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr "lõpeta jälgimine"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr "jälgi"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "Keeled:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr "{count} ({view_url|vaata})"
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Toimetused"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Kokku"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Vastuvõetud"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr "Kohetoimetusi"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr "Rakendatud toimetusi kokku"
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr "Mahahääletatud"
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr "Nurjunud"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr "Viimase 24 tunni jooksul"
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr "See tabel näitab selle toimetaja antud häälte kokkuvõtet."
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr "Hääled ({view_url|vaata})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr "Viimase 28 päeva jooksul"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr "Üldse"
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr "Teata halvasti käituvast kasutajast"
@@ -17384,12 +17127,9 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
-"See toimetus nurjus, kuna andmeid, mida see puudutas, muudeti pärast selle "
-"toimetuse loomist. Nii võib juhtuda siis, kui sama toimetus kaks korda "
-"sisestatakse — üks rakendatakse, aga teine nurjub."
#: ../root/utility/edit.js:86
msgid ""
@@ -17403,7 +17143,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr "See toimetus on tühistatud."
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr "Jälgitav"
@@ -17628,6 +17368,488 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Address:"
+#~ msgstr "Aadress:"
+
+#~ msgid "Annotation:"
+#~ msgstr "Annotatsioon:"
+
+#~ msgid "Area:"
+#~ msgstr "Piirkond:"
+
+#~ msgid "Artist:"
+#~ msgstr "Artist:"
+
+#~ msgid "Attributes:"
+#~ msgstr "Atribuudid:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Vöötkood:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "Alguspiirkond:"
+
+#~ msgid "Begin date:"
+#~ msgstr "Alguskuupäev:"
+
+#~ msgid "Child order:"
+#~ msgstr "Alamobjektide järjestus:"
+
+#~ msgid "Country:"
+#~ msgstr "Maa:"
+
+#~ msgid "Created"
+#~ msgstr "Loodud"
+
+#~ msgid "Date:"
+#~ msgstr "Kuupäev:"
+
+#~ msgid "Delete"
+#~ msgstr "Kustuta"
+
+#~ msgid "Description:"
+#~ msgstr "Kirjeldus:"
+
+#~ msgid "Documentation:"
+#~ msgstr "Dokumentatsioon:"
+
+#~ msgid "End Area:"
+#~ msgstr "Lõpp-piirkond:"
+
+#~ msgid "End date:"
+#~ msgstr "Lõppkuupäev:"
+
+#~ msgid "Format:"
+#~ msgstr "Formaat:"
+
+#~ msgid "Gender:"
+#~ msgstr "Sugu:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "IPI-koodid:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "ISNI-koodid:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRC-d:"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWC-d:"
+
+#~ msgid "Label code:"
+#~ msgstr "Plaadifirma kood:"
+
+#~ msgid "Label:"
+#~ msgstr "Plaadifirma:"
+
+#~ msgid "Language:"
+#~ msgstr "Keel:"
+
+#~ msgid "Length:"
+#~ msgstr "Pikkus:"
+
+#~ msgid "Merge"
+#~ msgstr "Mesti"
+
+#~ msgid "Name:"
+#~ msgstr "Nimi:"
+
+#~ msgid "Note:"
+#~ msgstr "Pane tähele:"
+
+#~ msgid ""
+#~ "Note: only searches edits that: add or edit relationships, created after "
+#~ "2011-05-16; or which remove relationships, created after 2013-07-08; or "
+#~ "which reorder relationships."
+#~ msgstr ""
+#~ "Pane tähele, et otsida saab ainult seoste lisamise või muutmise "
+#~ "toimetusi, mis on sisestatud pärast 16.05.2011, ja seoste eemaldamise "
+#~ "toimetusi, mis on sisestatud pärast 08.07.2013, ning seoste järjestuse "
+#~ "muutmise toimetusi."
+
+#~ msgid "Ordering Type:"
+#~ msgstr "Järjestuse tüüp:"
+
+#~ msgid "Packaging:"
+#~ msgstr "Ümbris:"
+
+#~ msgid "Parent:"
+#~ msgstr "Ülemobjekt:"
+
+#~ msgid "Position:"
+#~ msgstr "Järjestus:"
+
+#~ msgid "Release Group:"
+#~ msgstr "Väljalaskerühm:"
+
+#~ msgid "Release:"
+#~ msgstr "Väljalase:"
+
+#~ msgid "Script:"
+#~ msgstr "Kirjasüsteem:"
+
+#~ msgid "Search:"
+#~ msgstr "Otsing:"
+
+#~ msgid "Set track durations"
+#~ msgstr "Määra loopikkused"
+
+#~ msgid "Setlist:"
+#~ msgstr "Esitatud lood:"
+
+#~ msgid "Sort name:"
+#~ msgstr "Nimi sortimisel:"
+
+#~ msgid "Status:"
+#~ msgstr "Staatus:"
+
+#~ msgid "This entity will be created by this edit."
+#~ msgstr "See olem luuakse selle toimetuse sisestamisel."
+
+#~ msgid "Time:"
+#~ msgstr "Kellaaeg:"
+
+#~ msgid "Title:"
+#~ msgstr "Pealkiri:"
+
+#~ msgid ""
+#~ "To create a new tracklist, use an existing medium or import a disc from a "
+#~ "CD stub, select the appropriate tab."
+#~ msgstr ""
+#~ "Uue lugude nimekirja loomiseks olemasoleva helikandja järgi või plaadi "
+#~ "importimiseks CD-mustandist vali vastav kaart."
+
+#~ msgid "Tracks:"
+#~ msgstr "Lood:"
+
+#~ msgid "URL:"
+#~ msgstr "URL:"
+
+#~ msgid "Warning:"
+#~ msgstr "Hoiatus:"
+
+#~ msgid "appears on:"
+#~ msgstr "Väljalasetel:"
+
+#~ msgid "Cancelled"
+#~ msgstr "tühistatud"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Sisesta korrektne URL, nagu nt „http://google.com/”"
+
+#~ msgid "Bio:"
+#~ msgstr "Enesetutvustus:"
+
+#~ msgid "Create"
+#~ msgstr "Loo"
+
+#~ msgid "Preview:"
+#~ msgstr "Eelvaade:"
+
+#~ msgid "Preview"
+#~ msgstr "Eelvaade"
+
+#~ msgid "Please search for the artist you wish to create a new release for:"
+#~ msgstr "Otsi üles artist, kelle alla uus väljalase peaks minema."
+
+#~ msgid "Disc ID:"
+#~ msgstr "Plaadi-ID:"
+
+#~ msgid ""
+#~ "If you don't see the artist you are looking for, you can still add a new "
+#~ "release. This will allow you to create this artist and a release at the "
+#~ "same time"
+#~ msgstr ""
+#~ "Kui sa ei näe otsitavat artisti, võid ikkagi uue väljalaske lisada. "
+#~ "Artist luuakse väljalaske lisamise käigus."
+
+#~ msgid "Create a new collection"
+#~ msgstr "Loo uus kogu"
+
+#~ msgid "Status"
+#~ msgstr "Staatus"
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "Olek:"
+
+#~ msgid "Closed:"
+#~ msgstr "Suletud:"
+
+#~ msgid "Releases:"
+#~ msgstr "Väljalasked:"
+
+#~ msgid "Ended"
+#~ msgstr "Pole enam aktiivselt kasutusel"
+
+#~ msgid "Filename:"
+#~ msgstr "Failinimi:"
+
+#~ msgid "Medium:"
+#~ msgstr "Helikandja:"
+
+#~ msgid "Artist Credits:"
+#~ msgstr "Artistiloend:"
+
+#~ msgid "Relationship:"
+#~ msgstr "Seos:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "Staatus:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "Katalooginumber:"
+
+#~ msgid "Merge:"
+#~ msgstr "Mestitakse:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Helikandjad:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Seosed:"
+
+#~ msgid "Release Events:"
+#~ msgstr "Väljalaskesündmused:"
+
+#~ msgid "Release group:"
+#~ msgstr "Väljalaskerühm:"
+
+#~ msgid "Old:"
+#~ msgstr "Vana:"
+
+#~ msgid "Added"
+#~ msgstr "Lisatud"
+
+#~ msgid "Removed"
+#~ msgstr "Eemaldatud"
+
+#~ msgid "Edited"
+#~ msgstr "Muudetud"
+
+#~ msgid "Alias:"
+#~ msgstr "Alias:"
+
+#~ msgid "Track:"
+#~ msgstr "Lugu:"
+
+#~ msgid "Candidate:"
+#~ msgstr "Kandidaat:"
+
+#~ msgid "Proposer:"
+#~ msgstr "Ettepaneku tegija:"
+
+#~ msgid "1st seconder:"
+#~ msgstr "1. sekundant:"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "2. sekundant:"
+
+#~ msgid "Votes for:"
+#~ msgstr "Poolthääli:"
+
+#~ msgid "Votes against:"
+#~ msgstr "Vastuhääli:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Tulemus:"
+
+#~ msgid "Seconder 1"
+#~ msgstr "1. sekundant"
+
+#~ msgid "Seconder 2"
+#~ msgstr "2. sekundant"
+
+#~ msgid "Added:"
+#~ msgstr "Lisatud:"
+
+#~ msgid "Last modified:"
+#~ msgstr "Viimati muudetud:"
+
+#~ msgid "Lookup count:"
+#~ msgstr "Päringute arv:"
+
+#~ msgid "Modify count:"
+#~ msgstr "Muutmiste arv:"
+
+#~ msgid "Coordinates:"
+#~ msgstr "Koordinaadid:"
+
+#~ msgid "IPI code:"
+#~ msgstr "IPI-kood:"
+
+#~ msgid "ISNI code:"
+#~ msgstr "ISNI-kood:"
+
+#~ msgid "Error:"
+#~ msgid_plural "Errors:"
+#~ msgstr[0] "Viga:"
+#~ msgstr[1] "Vead:"
+
+#~ msgid "ID:"
+#~ msgstr "ID:"
+
+#~ msgid "Possible values:"
+#~ msgstr "Võimalikud väärtused:"
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "Loo uus seoseatribuut"
+
+#~ msgid "Create a new {type0}-{type1} relationship"
+#~ msgstr "Uue {type0}–{type1} seose loomine"
+
+#~ msgid ""
+#~ "This report lists release groups with very similar names and artists. If "
+#~ "the releases in the release groups should be grouped together (see the "
+#~ "{url|guidelines}), they can be merged. If they shouldn't be grouped "
+#~ "together but they can be distinguished by the release group types, e.g. "
+#~ "when an artist has an album and single with the same name, then there is "
+#~ "usually no need to change anything. In other cases, a disambiguation "
+#~ "comment may be helpful."
+#~ msgstr ""
+#~ "See aruanne loetleb väga sarnaste pealkirjade ja artistidega "
+#~ "väljalaskerühmad. Kui väljalasked neis peaks olema kokku rühmitatud "
+#~ "(vaata {url|juhiseid}), tuleks rühmad mestida. Kui väljalasked ei peaks "
+#~ "olema kokku rühmitatud ja neil on erinev väljalaskerühma tüüp, nt kui on "
+#~ "tegu sama pealkirjaga albumi ja singliga, pole vaja midagi muuta. Muudel "
+#~ "juhtudel võib abi olla täpsustusmärke lisamisest."
+
+#~ msgid ""
+#~ "This report lists all releases with gaps in the medium numbers (e.g. "
+#~ "there is a medium 1 and 3 but no medium 2)."
+#~ msgstr ""
+#~ "See aruanne loetleb kõik väljalasked, kus helikandjanumbrid pole "
+#~ "järjestikused (nt puudub helikandja nr 2, kuigi 1 ja 3 on olemas)."
+
+#~ msgid ""
+#~ "This report aims to identify releases where track names include their own "
+#~ "track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). "
+#~ "Notice that sometimes this is justified and correct, don't automatically "
+#~ "assume it is a mistake! If you confirm it is a mistake, please correct it."
+#~ msgstr ""
+#~ "Selle aruande eesmärk on tuvastada väljalasked, kus loonimed algavad "
+#~ "järjekorranumbriga, nt „Mingi laulu” asemel „1) Mingi laul”. Pane tähele, "
+#~ "et mõnikord võib (järjekorra)numbriga algav pealkiri põhjendatud ja õige "
+#~ "olla, seega ei tohi neid kõiki masinlikult ära muuta. Kui oled aga "
+#~ "kindel, et tegu on veaga, siis palun paranda see ära."
+
+#~ msgid ""
+#~ "This report lists all releases where the track numbers are not continuous "
+#~ "(e.g. there is no \"track 2\"), or with duplicated track numbers (e.g. "
+#~ "there are two \"track 4\"s)."
+#~ msgstr ""
+#~ "See aruanne loetleb kõik väljalasked, kus loonumbrid pole järjestikused "
+#~ "(nt puudub lugu nr 2, kuigi 1 ja 3 on olemas) või kus mõnda loonumbrit on "
+#~ "mitu (nt on kaks lugu, mille järjenumber on 4)."
+
+#~ msgid "Location"
+#~ msgstr "Asukoht"
+
+#~ msgid "Location:"
+#~ msgstr "Asukoht:"
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "Lisatavate artistide automaatne jälgimine"
+
+#~ msgid "Automatically subscribe me to labels I create."
+#~ msgstr "Lisatavate plaadifirmade automaatne jälgimine"
+
+#~ msgid "Automatically subscribe me to series I create."
+#~ msgstr "Lisatavate seeriate automaatne jälgimine"
+
+#~ msgid "Old"
+#~ msgstr "Vana"
+
+#~ msgid "New"
+#~ msgstr "Uus"
+
+#~ msgid "Create collection"
+#~ msgstr "Loo kogu"
+
+#~ msgid "Delete Note"
+#~ msgstr "Kustuta märge"
+
+#~ msgid "Artist credit:"
+#~ msgstr "Artisti nimekuju:"
+
+#~ msgid "Ended:"
+#~ msgstr "Lõpp:"
+
+#~ msgid "Release events:"
+#~ msgstr "Väljalaskesündmused:"
+
+#~ msgid ""
+#~ "Warning: This relationship has pending edits. {show|Click here} to view "
+#~ "these edits and make sure they do not conflict with your own."
+#~ msgstr ""
+#~ "Hoiatus: sel seosel on ootel toimetusi. Nende nägemiseks {show|klõpsa "
+#~ "siin} ja siis vaata, et nad poleks sinu tehtavaga vastuolus."
+
+#~ msgid ""
+#~ "This will create a new work for each checked recording that has no work "
+#~ "already. The work names will be the same as their respective recording."
+#~ msgstr ""
+#~ "Luuakse uus teos iga märgitud salvestise jaoks, mis pole veel ühegi "
+#~ "teosega seostatud. Loodavate teoste pealkirjadena kasutatakse vastavate "
+#~ "salvestiste pealkirju."
+
+#~ msgid ""
+#~ "Only use this option after you’ve tried searching for the work(s) you "
+#~ "want to create, and are certain they do not already exist on MusicBrainz."
+#~ msgstr ""
+#~ "Kasuta seda valikut ainult siis, kui oled soovitud teoseid tulutult "
+#~ "otsinud ja oled kindel, et neid MusicBrainzis olemas ei ole."
+
+#~ msgid "Batch-create new works"
+#~ msgstr "Korraga mitme uue teose lisamine"
+
+#~ msgid "Work Type:"
+#~ msgstr "Teose tüüp:"
+
+#~ msgid ""
+#~ "Banner message editors are users who can set a message that is shown in a "
+#~ "banner on all pages, e.g. to warn users about upcoming site maintenance."
+#~ msgstr ""
+#~ "Päisesõnumitoimetajad on kasutajad, kes saavad määrata sõnumi, mida "
+#~ "näidatakse kõigi lehekülgede ülaosas, näiteks et teavitada kasutajaid "
+#~ "eelolevatest hooldustöödest saidil."
+
+#~ msgid "Email:"
+#~ msgstr "E-post:"
+
+#~ msgid "Member since:"
+#~ msgstr "Liitunud:"
+
+#~ msgid "Last login:"
+#~ msgstr "Viimati sisse loginud:"
+
+#~ msgid "Subscribers:"
+#~ msgstr "Jälgijaid:"
+
+#~ msgid "Languages:"
+#~ msgstr "Keeled:"
+
+#~ msgid ""
+#~ "This edit failed because the data it was changing was modified after this "
+#~ "edit was created. This may happen when the same edit is entered in twice; "
+#~ "one will pass but the other will fail."
+#~ msgstr ""
+#~ "See toimetus nurjus, kuna andmeid, mida see puudutas, muudeti pärast "
+#~ "selle toimetuse loomist. Nii võib juhtuda siis, kui sama toimetus kaks "
+#~ "korda sisestatakse — üks rakendatakse, aga teine nurjub."
+
#~ msgid "Artist {n}:"
#~ msgstr "Artist {n}:"
diff --git a/po/mb_server.fi.po b/po/mb_server.fi.po
index ea0469bc40b..cae10f8fd76 100644
--- a/po/mb_server.fi.po
+++ b/po/mb_server.fi.po
@@ -33,7 +33,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-24 14:27+0000\n"
"Last-Translator: Philipp Wolfer {discid}
is not a valid disc ID."
msgstr "Levyn tunniste {discid}
ei ole kelvollinen."
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
-msgstr "Etsi artisti, jolle olet luomassa uutta julkaisua:"
+msgid "Please search for the artist you wish to add a new release for:"
+msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
msgid "Import CD stub"
@@ -7783,7 +7774,7 @@ msgstr ""
"{artist} julkaisuun {release}, tallenteeseen {format} kohdassa {pos}?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7803,15 +7794,6 @@ msgstr ""
msgid "CD TOC details"
msgstr "Lisätietoja CD-levyn sisällysluettelosta"
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr "Levyn tunniste:"
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "FreeDB:"
@@ -7821,8 +7803,9 @@ msgid "Track details:"
msgstr "Kappaleen lisätiedot:"
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Kappale"
@@ -7831,21 +7814,13 @@ msgid "Start"
msgstr "Aloita"
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Lopetus"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr "Aika"
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7890,11 +7865,9 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
-"Jos et näe etsimääsi artistia, voit silti lisätä uuden julkaisun. Näin saat "
-"luotua sekä uuden artistin että julkaisun samanaikaisesti."
#: ../root/cdtoc/SetTracklistDurations.js:46
#: ../root/cdtoc/SetTracklistDurations.js:47
@@ -7933,8 +7906,8 @@ msgstr "Näytä kaikki kokoelmasi"
msgid "See all of {editor}'s public collections"
msgstr "Näytä kaikki käyttäjän {editor} julkiset kokoelmat"
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
@@ -7943,7 +7916,7 @@ msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -8036,8 +8009,8 @@ msgstr "Vahvista"
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "Luo uusi kokoelma"
+msgid "Add a new collection"
+msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -8051,20 +8024,10 @@ msgstr "Haluatko varmasti poistaa kokoelman {collection}?"
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "Alias"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr "Lajittelunimi"
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr "Alkanut"
@@ -8268,7 +8231,7 @@ msgstr "Arvostelut"
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Arvosteluja"
@@ -8314,7 +8277,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8425,6 +8388,7 @@ msgstr "Seuratut kohteet"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr "Seuraajat"
@@ -8481,26 +8445,10 @@ msgid "About to close"
msgstr "Kohta sulkeutumassa"
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr "Lajittelunimi"
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Sukupuoli"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "Aloitusalue"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "Lopetusalue"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8512,13 +8460,6 @@ msgstr "Rooli"
msgid "Code"
msgstr "Koodi"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "Osoite"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr "Määrittelemätön tyyppi"
@@ -8527,22 +8468,16 @@ msgstr "Määrittelemätön tyyppi"
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr "[puuttuva tallenne]"
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Tila"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr "Tekijät"
@@ -8676,7 +8611,7 @@ msgid "There was a problem cancelling {edit}."
msgstr "Tapahtui virhe peruttaessa muokkausta {edit}."
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8903,7 +8838,7 @@ msgid "None"
msgstr "Ei mitään"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr "Äänestys"
@@ -8928,7 +8863,8 @@ msgid_plural "Found {n} edits"
msgstr[0] "{n} muokkaus löytyi"
msgstr[1] "{n} muokkausta löytyi"
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8953,7 +8889,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8962,15 +8898,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8994,51 +8930,41 @@ msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
"Et voi lisätä tällä hetkellä merkintöjä tähän muokkaukseen. ({url|Tietoja})"
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "Tila:"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr "Avattu:"
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "Suljettu:"
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] "1 ääni"
msgstr[1] "{n} yksimielistä ääntä"
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr "Muokkauksen tietokonekielinen muoto"
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr "Lisätietojen saamiseksi:"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr "UKK äänestämisestä"
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr "UKK muokkaamisesta"
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Lisää merkintä"
@@ -9058,12 +8984,6 @@ msgstr "Tämä on automatisoitu käyttäjä."
msgid "bot"
msgstr "botti"
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "Julkaisut:"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -9180,39 +9100,15 @@ msgstr "Tämä lisätietokenttä on tyhjä."
msgid "Summary"
msgstr "Yhteenveto"
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr "Alkanut"
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "Päättynyt"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
-msgstr "Päättynyt"
+msgstr ""
#: ../root/edit/details/AddCoverArt.js:39
#: ../root/edit/details/RemoveCoverArt.js:39
@@ -9222,18 +9118,21 @@ msgstr "(ei mitään)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Tiedostonimi:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr "Tiedostonimi"
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr "Tallenne:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "Kommentti:"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
-msgstr "Soittolista"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
msgid "Client:"
@@ -9256,20 +9155,20 @@ msgstr "ISRC-koodi {isrc} äänitteelle {recording}"
msgid "ISWC {iswc} to {work}"
msgstr "ISWC-koodi{iswc} teokselle {work}"
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
-msgstr "Levymerkki-tunnus"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
-msgstr "Artistin tekijänimet:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr "Artistin tekijänimet"
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
-msgstr "Yhteys:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddRelationship.js:33
msgid "Link order:"
@@ -9329,30 +9228,24 @@ msgstr "(ei mitään)"
msgid "(new release group)"
msgstr "(uusi julkaisuryhmä)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "Tila:"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr "Pakkaus"
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr "Julkaisutapahtumat"
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "Luettelonumero:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "Luettelonumero"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9364,17 +9257,17 @@ msgstr "Näytä kaikki aliakset"
msgid "Primary for locale"
msgstr "Ensisijainen lokaalille"
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
-msgstr "Järjestystapa"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr "Sanoituksen kielet"
@@ -9382,7 +9275,7 @@ msgstr "Sanoituksen kielet"
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "Datan laatu"
@@ -9423,14 +9316,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr "IPI-koodit"
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr "ISNI-koodit"
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr "Tämä kappaleen MBID muuttuu, kun tämä muokkaus otetaan käyttöön."
@@ -9455,11 +9340,6 @@ msgstr "Vanha äänite"
msgid "New recording"
msgstr "Uusi äänite"
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr "Artistin tekijänimet"
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "Vanha artisti"
@@ -9485,25 +9365,10 @@ msgstr ""
msgid "Deprecated:"
msgstr "Vanhentunut:"
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr "Huomio"
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr "Tämä muokkaus muutti myös kappaleen artisteja."
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "Luettelonumero"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9527,6 +9392,7 @@ msgid "Search for the target URL."
msgstr "Etsi kohteena olevaa web-osoitetta."
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9539,8 +9405,9 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "Sulauta:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -9656,8 +9523,8 @@ msgid "New positions:"
msgstr "Uudet sijainnit:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
-msgstr "Tallenteet:"
+msgid "Mediums"
+msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
@@ -9677,11 +9544,11 @@ msgstr "Tallenne {new} (uusi tallenne)"
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
-"Tallenne {new} (siirretty paikasta {old})"
+"Tallenne {new} (siirretty paikasta {old})"
#: ../root/edit/details/ReorderRelationships.js:21
msgid "Old Order"
@@ -9723,20 +9590,6 @@ msgstr ""
msgid "CD TOC:"
msgstr "CD-levyn sisällysluettelo:"
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "Yhteydet:"
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr "Julkaisutapahtumia:"
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Luettelonumero"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9747,11 +9600,6 @@ msgstr "Kappalenumero"
msgid "Artist name:"
msgstr "Artistin nimi:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr "Julkaisuryhmä:"
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "Vanhat yhteydet:"
@@ -9761,9 +9609,9 @@ msgid "New relationships:"
msgstr "Uudet yhteydet:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
-msgstr "Vanha:"
+msgctxt "release type and status"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
msgid "Type: {type}, status: {status}"
@@ -9778,16 +9626,24 @@ msgid "New Status:"
msgstr "Uusi tila:"
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "Lisätty"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
-msgstr "Poistettu"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
-msgstr "Muokattu"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
@@ -9829,41 +9685,39 @@ msgstr ""
msgid "Change track artists:"
msgstr "Vaihda kappaleen artisteja:"
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "Alias:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr "Kappale:"
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Ehdokas:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Ehdokas"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
-msgstr "Ehdottaja:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr "Ehdottaja"
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
-msgstr "1. kannattaja"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
-msgstr "2. kannattaja"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:59
msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "Äänet puolesta:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "Äänet puolesta"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "Äänet vastaan:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "Äänet vastaan"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -9879,46 +9733,18 @@ msgid ""
msgstr "Äänestystulos julkaistaan vasta kun vaalit ovat päättyneet."
#: ../root/elections/ElectionDetails.js:89
-msgctxt "election status"
-msgid "Status:"
-msgstr "Tila:"
-
-#: ../root/elections/ElectionTable/ElectionTableRows.js:60
-msgid "View details"
-msgstr "Näytä lisätiedot"
-
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Ehdokas"
-
#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
msgid "Status"
-msgstr "Tila"
-
-#: ../root/elections/ElectionTable/index.js:24
-msgid "Start date"
-msgstr "Aloitus"
-
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr "Ehdottaja"
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr "Kannattaja 1"
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr "Kannattaja 2"
+msgstr "Tila"
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "Äänet puolesta"
+#: ../root/elections/ElectionTable/ElectionTableRows.js:60
+msgid "View details"
+msgstr "Näytä lisätiedot"
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "Äänet vastaan"
+#: ../root/elections/ElectionTable/index.js:24
+msgid "Start date"
+msgstr "Aloitus"
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
@@ -10638,7 +10464,7 @@ msgstr "Auto-editori-vaalit"
msgid "Privileged User Accounts"
msgstr "Erikoiskäyttäjät"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Tilastot"
@@ -10790,7 +10616,7 @@ msgstr "Dokumentaation hakemisto"
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "Yhteyksien tyypit"
@@ -10957,39 +10783,33 @@ msgstr "Tietoja alueesta"
msgid "Artist information"
msgstr "Tietoja artistista"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "Lisää äänite"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "Jaa erillisiksi artisteiksi"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "Lisätty:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr "Viimeksi muokattu:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
-msgstr "Hakujen määrä:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
-msgstr "Muokkauskerrat:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr "Tuo MusicBrainz-julkaisuna"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "Lisää levyn tunniste olemassa olevaan julkaisuun"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr "Etsi tietokannasta tätä CD-levyä"
@@ -11105,11 +10925,11 @@ msgstr "Sisäänkirjaudu muokataksesi"
msgid "Event information"
msgstr "Tapahtuman tiedot"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr "Aloitusajankohta:"
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr "Päättymisajankohta:"
@@ -11162,10 +10982,6 @@ msgctxt "place"
msgid "Closed"
msgstr "Suljettu"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "Koordinaatit:"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr "ListenBrainz"
@@ -11178,7 +10994,7 @@ msgstr "Toista ListenBrainzissa"
msgid "Recording information"
msgstr "Tietoja äänitteestä"
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr "Ensimmäinen julkaisuvuosi"
@@ -11213,27 +11029,27 @@ msgstr "Näytä kaikki kansitaide"
msgid "No cover art available."
msgstr "Kansitaidetta ei saatavilla."
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "Tarkempaa lisätietoa"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr "Julkaisuryhmän arvostelu"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr "Julkaisuryhmän arvostelut"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr "Julkaisuryhmän linkit ulkopuolisiin palveluihin"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr "Muokkaa yhteyksiä"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr "Vaihda datan laatuluokitusta"
@@ -11241,21 +11057,13 @@ msgstr "Vaihda datan laatuluokitusta"
msgid "Series information"
msgstr "Tietoja sarjasta"
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "IPI-koodi:"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "ISNI-koodi:"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Lisenssi"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Arvostelu"
@@ -11402,7 +11210,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr "Hakemaasi sivua ei löydy."
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Virheilmoitus: "
@@ -11507,13 +11315,7 @@ msgstr "Käyttöliittymän kieli:"
msgid "Request data:"
msgstr "Pyynnön tiedot:"
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] "Virhe:"
-msgstr[1] "Virheitä:"
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Lisätietoja tästä virheestä ei ole saatavilla)"
@@ -11670,7 +11472,7 @@ msgstr "Virheellinen MBID"
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11891,7 +11693,7 @@ msgstr "Yhteyden määrite käytössä"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11899,11 +11701,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "Tunniste:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11915,6 +11712,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11948,17 +11746,13 @@ msgstr "ei mitään"
msgid "Add child"
msgstr "Lisää lapsi"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr "Mahdolliset arvot:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "Yhteyden määritteitä ei löytynyt."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
-msgstr "Lisää uusi yhteyden määrite"
+msgid "Add a new relationship attribute"
+msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
@@ -11977,7 +11771,7 @@ msgstr "Yhteyden tyyppi käytössä"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -12051,8 +11845,8 @@ msgid "{type0}-{type1} relationship types"
msgstr "{type0}-{type1} yhteystyypit"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
-msgstr "Lisää uusi {type0}-{type1}-yhteys"
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
msgid "Expand all descriptions"
@@ -12070,7 +11864,7 @@ msgstr "{type0}-{type1}-yhteystyyppejä ei löytynyt."
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -12185,8 +11979,8 @@ msgstr ""
"julkaisusta {release}?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "Julkaisuryhmä artistilta {artist}"
@@ -12422,8 +12216,8 @@ msgstr "Virheelliset Amazon web-osoitteet"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -12433,10 +12227,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12474,7 +12268,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12483,7 +12277,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12800,16 +12594,10 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
-"Tämä raportti listaa julkaisuryhmät, joilla on hyvin samankaltaiset nimet ja "
-"artistit. Jos julkaisuryhmien julkaisujen tulisi olla samassa ryhmässä "
-"(katso {url|ohjeistus}), ne voidaan yhdistää. Jos niiden ei tule olla "
-"samassa ryhmässä, vaan ne voidaan erottaa julkaisuryhmän tyypin mukaan, "
-"esim. samannimiset albumi ja single, niin silloin tuskin tarvitsee tehdä "
-"mitään. Muissa tapauksissa täsmennyskommentti voi auttaa."
#: ../root/report/DuplicateReleaseGroups.js:52
#: ../root/report/ReportsIndex.js:227
@@ -12888,7 +12676,7 @@ msgstr "Näytä kaikki tulokset liittyen tilauksiini."
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -13024,11 +12812,9 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
-"Tämä raportti listaa julkaisut, joissa on rakoja tallenteiden numeroissa "
-"(esimerkiksi tallenteet 1 ja 3 mutta ei tallennetta 2)."
#: ../root/report/MediumsWithSequenceIssues.js:30
msgid "Releases with medium number issues"
@@ -13217,9 +13003,9 @@ msgid ""
"recordings blindly just because the lengths fit, and do not merge recordings "
"with very different times!"
msgstr ""
-"Tämä raportti näyttää äänitteet, joilla on vanhentunut \"ensimmäinen julkaisu"
-"\"-yhteystyyppi. Ne tulisi sulauttaa, jos ne todellakin ovat täysin sama "
-"äänite. Jos ne eivät ole, yhteys tulee poistaa. Älä sulauta äänitteitä "
+"Tämä raportti näyttää äänitteet, joilla on vanhentunut \"ensimmäinen "
+"julkaisu\"-yhteystyyppi. Ne tulisi sulauttaa, jos ne todellakin ovat täysin "
+"sama äänite. Jos ne eivät ole, yhteys tulee poistaa. Älä sulauta äänitteitä "
"varmistamatta vain sen takia että niiden kestot ovat samat, äläkä sulauta "
"äänitteitä joilla on hyvinkin poikkeavat kestot!"
@@ -13228,13 +13014,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr "Äänitteet, joissa aiempi julkaisu -yhteys"
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -13451,7 +13237,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -13475,8 +13261,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13714,20 +13499,6 @@ msgstr "Web-osoitteet"
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRC-koodit"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr "ISWC-koodit"
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13823,15 +13594,10 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
-"Tämä raportti pyrkii tunnistamaan julkaisut, joissa kappaleiden nimissä on "
-"kappalenumerot. esim. \"1) Kappaleen nimi\" (eikä \"Kappaleen nimi\"). "
-"Huomioi, että joskus tämä on oikeutettua ja oikein. Älä oleta "
-"automaattisesti näiden olevan väärin! Jos pystyt varmistamaan virheet, niin "
-"korjaa ne."
#: ../root/report/TracksNamedWithSequence.js:33
msgid "Releases where track names start with their track number"
@@ -13839,13 +13605,10 @@ msgstr "Julkaisut, joiden kappalenimet alkavat kappalenumeroilla"
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
-"Tämä raportti listaa kaikki julkaisut, joissa kappalenumerot eivät ole "
-"yhtäjaksoisesti (esim. \"kappale 2\" puuttuu), tai niissä on kahdentunut "
-"kappalenumero (esim. kaksi kertaa \"kappale 4\")."
#: ../root/report/TracksWithSequenceIssues.js:31
msgid "Releases with track number issues"
@@ -14001,6 +13764,10 @@ msgstr ""
msgid "Last edited"
msgstr "Viimeksi muokattu"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Luettelonumero"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr "Luokitushaku"
@@ -14010,7 +13777,7 @@ msgid "Other lookups"
msgstr "Muut haut"
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -14021,7 +13788,7 @@ msgstr "Aloitus"
msgid "Alternatively, you may {uri|add a new area}."
msgstr "Vaihtoehtoisesti voit {uri|lisätä uuden alueen}."
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "Vaihtoehtoisesti voit {uri|lisätä uuden artistin}."
@@ -14031,11 +13798,12 @@ msgid "Documentation Search"
msgstr "Etsi dokumentaatiosta"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Sijainti"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -14069,7 +13837,7 @@ msgstr "Vaihtoehtoisesti voit {uri|lisätä uuden äänitteen}."
msgid "Alternatively, you may {uri|add a new release group}."
msgstr "Vaihtoehtoisesti voit {uri|lisätä uuden julkaisuryhmän}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr "Vaihtoehtoisesti voit {uri|lisätä uuden julkaisun}."
@@ -14157,7 +13925,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr "Hakusi sai liian monta tulosta."
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr "Tämä sarja on tällä hetkellä tyhjä."
@@ -14178,7 +13946,7 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
@@ -14186,16 +13954,17 @@ msgstr ""
"Tämä on sovelluskehitykseen tarkoitettu palvelin. Sähköpostiosoitteesi ei "
"pysy yksityisenä tai turvassa. Olethan varovainen!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr "Jos vaihdat sähköpostiosoitteesi, sinun täytyy vahvistaa se."
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
-msgstr "Sijainti: "
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
@@ -14203,21 +13972,21 @@ msgstr ""
"Valitse haluamasi tarkkuus: maa, alue, kaupunki. Määrittele niin tarkasti "
"kuin haluat!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "Syntymäpäivä:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr "Syntymäaikaasi käytetään näyttämään ikäsi vuosina profiilisivullasi."
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "Kieliosaaminen:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Lisää kieli"
@@ -14274,16 +14043,16 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr "Lähetä sähköpostia muokkauksista seuraamiini kohteisiin:"
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
-msgstr "Seuraa automaattisesti artisteja, jotka luon."
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
-msgstr "Seuraa automaattisesti levymerkkejä, jotka luon."
+msgid "Automatically subscribe me to labels I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
-msgstr "Seuraa automaattisesti sarjoja, jotka luon."
+msgid "Automatically subscribe me to series I add."
+msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
msgid "Your username will be publicly visible."
@@ -14338,12 +14107,14 @@ msgid "This alias is no longer current."
msgstr "Tämä alias ei ole enää ajantasainen."
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
-msgstr "Vanha"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "Uusi"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -14389,7 +14160,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -14413,33 +14184,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "Näytä lisää..."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "Lisätietoja kokoelmasta"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "Salli muiden käyttäjien nähdä tämä kokoelma"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "Luo kokoelma"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr "Päivitä kokoelma"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -14457,7 +14228,7 @@ msgid "Try with indexed search instead."
msgstr "Kokeile indeksoidulla haulla sen sijaan."
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr "Kirjoita etsiäksesi, tai liitä MBID-tunniste"
@@ -14466,32 +14237,27 @@ msgstr "Kirjoita etsiäksesi, tai liitä MBID-tunniste"
msgid "Clear recent items"
msgstr "Tyhjennä viimeaikaiset"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr "Ei löytynyt? Kokeile uudelleen suoralla haulla."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr "Hidasta? Vaihda takaisin indeksoituun hakuun."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr "julkaisulla"
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr "yksittäinen äänite"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr "{release_group_type} artistilta {artist}"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr "Esiintyjät"
@@ -14501,8 +14267,14 @@ msgid "Vote on all edits:"
msgstr "Äänestä kaikista muokkauksista:"
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
-msgstr "Poista merkintä"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
@@ -14541,11 +14313,11 @@ msgid "Annotation last modified on {date}."
msgstr "Muokattu viimeksi {date}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14646,15 +14418,15 @@ msgstr ""
msgid "Search for a work"
msgstr "Etsi teosta"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr "artistilta {artist}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14768,8 +14540,8 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
-msgstr "Artistin tekijänimi:"
+msgid "Artist credit"
+msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
msgid "Setlist contains"
@@ -15071,31 +14843,31 @@ msgctxt "plural"
msgid "Series"
msgstr "Sarjat"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr "päivänä {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr "{date} aikana"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr "{begin_date} alkaen {end_date} asti"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr "{date} alkaen ???? asti"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr "{date} alkaen nykyhetkeen asti"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr "kunnes {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr "päättynyt"
@@ -15116,8 +14888,9 @@ msgid "Began:"
msgstr "Alkoi:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "Päättynyt:"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -15173,8 +14946,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -15264,72 +15037,72 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
@@ -15337,42 +15110,42 @@ msgstr ""
"Linkit Wikipedian artikkeleiden kohtiin ovat kiellettyjä. Poista "
"“{fragment}” mikäli se vielä jäljellä. Katso {url|ohjeistus}."
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -15419,7 +15192,7 @@ msgstr "Lisää uusi sarja"
msgid "Add a new work"
msgstr "Lisää uusi teos"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
@@ -15427,47 +15200,47 @@ msgstr ""
"Käytä seuraavia kenttiä syöttääksesi yhteistyön. Katso {ac|artistin "
"tekijätiedot} dokumentaatiosta lisää tietoa."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr "[puuttuva kappaleen nimi]"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr "Artisti MusicBrainzissa:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr "Artistin tekijänimi:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr "Liitefraasi:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr "Lisää artistille tekijänimi"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr "Muuta kaikki artistit tässä julkaisussa, jotka vastaavat \"{name}\""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr "Kopioi tekijätiedot"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr "Liitä tekijätiedot"
@@ -15489,11 +15262,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -15530,11 +15303,11 @@ msgstr ""
"muista."
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -15611,10 +15384,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr "Julkaisutapahtumat:"
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15966,11 +15736,9 @@ msgstr "Yhteyden kohteen tyyppi"
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
-"Varoitus: Tällä yhteydellä on avoimia muokkauksia. {show|Näytä} avoimet "
-"muokkaukset ja varmista etteivät ne ole ristiriidassa omiisi."
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
msgid "This will add a relationship to all checked recordings."
@@ -16183,19 +15951,15 @@ msgstr "Syöttämäsi viivakoodi ei ole kelvollinen UPC- tai EAN-koodi."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
-"Tämä luo uuden teoksen kaikille valituille äänitteille, jolla ei vielä ole "
-"teosta. Teoksien nimiksi tulee kunkin äänitteen nimi."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
-"Käytä tätä vaihtoehtoa vain jos olet jo etsinyt vastaavaa teosta ja olet "
-"varma ettei sitä vielä löydy MusicBrainzista."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:94
@@ -16203,8 +15967,8 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
-msgstr "Luo uusi teos kaikille valituille äänitteille"
+msgid "Batch-add new works"
+msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
msgid "Edit Work"
@@ -16255,34 +16019,34 @@ msgstr "Lisää yhteys kaikkiin valittuihin teoksiin"
msgid "[selected work]"
msgstr "[valittu teos]"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr "Kappaleen yhteydet"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr "Yhdistetyt teokset"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr "Meillä ei ole tietoa tämän julkaisun tallenteesta ja kappalelistasta."
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "Julkaisun yhteydet"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr "Julkaisuryhmän yhteydet"
@@ -16309,15 +16073,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr "Lisää sanoituksen kieli"
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr "Teoksen tyyppi:"
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr "Lisää kieli"
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr "Poista kieli"
@@ -16560,10 +16320,6 @@ msgstr ""
msgid "Duration"
msgstr "Kesto"
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr "Tiedostonimi"
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "Luokitushaku"
@@ -16635,23 +16391,23 @@ msgstr "Tietoja web-osoitteesta"
msgid "URL Details"
msgstr "Lisätietoja web-osoitteesta"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr "Aihe:"
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr "Viesti"
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr "Paljasta sähköpostiosoitteeni"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr "Lähetä kopio sähköpostiini"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "Lähetä"
@@ -16764,11 +16520,9 @@ msgstr "Banneriviestieditorit"
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
-"Banneriviestieditorit ovat käyttäjiä, jotka voivat asettaa viestin joka "
-"näytetään bannerissa kaikilla sivuilla, esimerkiksi varoittamaan sivuston "
-"tulevasta huoltokatkosta."
#: ../root/user/PrivilegedUsers.js:114
msgid "The following {count} users are banner message editors:"
@@ -16997,10 +16751,6 @@ msgstr ""
msgid "General Information"
msgstr "Yleistä tietoa"
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "Sähköpostiosoite:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(piilotettu)"
@@ -17042,191 +16792,185 @@ msgstr "ehdota auto-editoriksi"
msgid "Age:"
msgstr "Ikä:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "Liittynyt jäseneksi:"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "Viimeksi sisäänkirjauduttu:"
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "Kuvaus"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr "Ei ole kirjautunut vielä"
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr "Valtuutetut sovellukset"
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr "Kotisivu:"
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr "Seuraajia:"
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr "{count} ({url|näytä lista})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr "Lopeta muutosten seuraaminen"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr "Seuraa muutoksia"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "Kielet:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr "{count} ({view_url|näytä})"
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Muokkaukset"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Yhteensä"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Hyväksytty"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr "Automaattiset"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr "Kumotut"
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr "Epäonnistuneet"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr "Viimeiset 24 tuntia"
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr "Taulukko näyttää yhteenvedon tämän editorin antamista äänistä."
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr "Äänet ({view_url|näytä})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr "Viimeiset 28 päivää"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr "Yhteensä"
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr "Lisättyjä kohteita"
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
-msgstr "Tämä käyttäjä ei ole luonut yhtään kohdetta."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
+msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr "Tunnisteita ja arvosteluja"
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr "Ilmoita käyttäjästä huonon käytöksen takia"
@@ -17478,12 +17222,9 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
-"Tämä muokkaus epäonnistui, sillä kohteena oleva tieto ehti muuttua tämän "
-"muokkauksen jälkeen. Näin käy esimerkiksi silloin, kun sama muokkaus "
-"syötetään kahdesti: toinen onnistuu ja toinen epäonnistuu."
#: ../root/utility/edit.js:86
msgid ""
@@ -17497,7 +17238,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr "Tämä muokkaus peruttiin."
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr "Seurattuna"
@@ -17722,6 +17463,486 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Address:"
+#~ msgstr "Osoite:"
+
+#~ msgid "Annotation:"
+#~ msgstr "Lisätiedot:"
+
+#~ msgid "Area:"
+#~ msgstr "Alue:"
+
+#~ msgid "Artist:"
+#~ msgstr "Artisti:"
+
+#~ msgid "Attributes:"
+#~ msgstr "Määritteet:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Viivakoodi:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "Aloitusalue:"
+
+#~ msgid "Begin date:"
+#~ msgstr "Alkanut:"
+
+#~ msgid "Child order:"
+#~ msgstr "Lapsijärjestys:"
+
+#~ msgid "Country:"
+#~ msgstr "Maa:"
+
+#~ msgid "Created"
+#~ msgstr "Luotu"
+
+#~ msgid "Date:"
+#~ msgstr "Päiväys:"
+
+#~ msgid "Delete"
+#~ msgstr "Poista"
+
+#~ msgid "Description:"
+#~ msgstr "Kuvaus:"
+
+#~ msgid "Documentation:"
+#~ msgstr "Dokumentaatio:"
+
+#~ msgid "End Area:"
+#~ msgstr "Lopetusalue:"
+
+#~ msgid "End date:"
+#~ msgstr "Päättynyt:"
+
+#~ msgid "Format:"
+#~ msgstr "Tallenteen muoto:"
+
+#~ msgid "Gender:"
+#~ msgstr "Sukupuoli:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "IPI-koodit:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "ISNI-koodit:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRC-koodit:"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWC-koodit:"
+
+#~ msgid "Label code:"
+#~ msgstr "Levymerkki-tunnus:"
+
+#~ msgid "Label:"
+#~ msgstr "Levymerkki:"
+
+#~ msgid "Language:"
+#~ msgstr "Kieli:"
+
+#~ msgid "Length:"
+#~ msgstr "Kesto:"
+
+#~ msgid "Merge"
+#~ msgstr "Sulauta"
+
+#~ msgid "Name:"
+#~ msgstr "Nimi:"
+
+#~ msgid "Note:"
+#~ msgstr "Huomio:"
+
+#~ msgid ""
+#~ "Note: only searches edits that: add or edit relationships, created after "
+#~ "2011-05-16; or which remove relationships, created after 2013-07-08; or "
+#~ "which reorder relationships."
+#~ msgstr ""
+#~ "Huomio: etsii vain muokkauksia, jotka: lisäsivät tai muokkasivat "
+#~ "yhteyksiä 2011-05-16 jälkeen; tai jotka poistivat yhteyksiä 2013-07-08 "
+#~ "jälkeen; tai jotka vaihtavat yhteyksien suuntaa."
+
+#~ msgid "Ordering Type:"
+#~ msgstr "Järjestystapa:"
+
+#~ msgid "Packaging:"
+#~ msgstr "Pakkaus:"
+
+#~ msgid "Parent:"
+#~ msgstr "Vanhempi:"
+
+#~ msgid "Position:"
+#~ msgstr "Sijainti:"
+
+#~ msgid "Release Group:"
+#~ msgstr "Julkaisuryhmä:"
+
+#~ msgid "Release:"
+#~ msgstr "Julkaisu:"
+
+#~ msgid "Script:"
+#~ msgstr "Merkistö:"
+
+#~ msgid "Search:"
+#~ msgstr "Etsi:"
+
+#~ msgid "Set track durations"
+#~ msgstr "Aseta kappaleiden kestot"
+
+#~ msgid "Setlist:"
+#~ msgstr "Soittolista:"
+
+#~ msgid "Sort name:"
+#~ msgstr "Lajittelunimi:"
+
+#~ msgid "Status:"
+#~ msgstr "Tila:"
+
+#~ msgid "Time:"
+#~ msgstr "Aika:"
+
+#~ msgid "Title:"
+#~ msgstr "Otsikko:"
+
+#~ msgid ""
+#~ "To create a new tracklist, use an existing medium or import a disc from a "
+#~ "CD stub, select the appropriate tab."
+#~ msgstr ""
+#~ "Luodaksesi uuden kappalelistan, käytä olemassa olevaa tallennetta tai tuo "
+#~ "levy CD-tyngästä ja valitse sopiva välilehti."
+
+#~ msgid "Tracks:"
+#~ msgstr "Kappaleet:"
+
+#~ msgid "URL:"
+#~ msgstr "Web-osoite:"
+
+#~ msgid "Warning:"
+#~ msgstr "Varoitus:"
+
+#~ msgid "appears on:"
+#~ msgstr "julkaisulla: "
+
+#~ msgid "Cancelled"
+#~ msgstr "Peruutettu"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Syötä kelvollinen web-osoite, esimerkiksi \"http://google.com/\""
+
+#~ msgid "Bio:"
+#~ msgstr "Elämäkerta:"
+
+#~ msgid "Create"
+#~ msgstr "Luo"
+
+#~ msgid "Preview:"
+#~ msgstr "Esikatselu:"
+
+#~ msgid "Preview"
+#~ msgstr "Esikatselu"
+
+#~ msgid "Please search for the artist you wish to create a new release for:"
+#~ msgstr "Etsi artisti, jolle olet luomassa uutta julkaisua:"
+
+#~ msgid "Disc ID:"
+#~ msgstr "Levyn tunniste:"
+
+#~ msgid ""
+#~ "If you don't see the artist you are looking for, you can still add a new "
+#~ "release. This will allow you to create this artist and a release at the "
+#~ "same time"
+#~ msgstr ""
+#~ "Jos et näe etsimääsi artistia, voit silti lisätä uuden julkaisun. Näin "
+#~ "saat luotua sekä uuden artistin että julkaisun samanaikaisesti."
+
+#~ msgid "Create a new collection"
+#~ msgstr "Luo uusi kokoelma"
+
+#~ msgid "Status"
+#~ msgstr "Tila"
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "Tila:"
+
+#~ msgid "Closed:"
+#~ msgstr "Suljettu:"
+
+#~ msgid "Releases:"
+#~ msgstr "Julkaisut:"
+
+#~ msgid "Ended"
+#~ msgstr "Päättynyt"
+
+#~ msgid "Filename:"
+#~ msgstr "Tiedostonimi:"
+
+#~ msgid "Medium:"
+#~ msgstr "Tallenne:"
+
+#~ msgid "Artist Credits:"
+#~ msgstr "Artistin tekijänimet:"
+
+#~ msgid "Relationship:"
+#~ msgstr "Yhteys:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "Tila:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "Luettelonumero:"
+
+#~ msgid "Merge:"
+#~ msgstr "Sulauta:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Tallenteet:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Yhteydet:"
+
+#~ msgid "Release Events:"
+#~ msgstr "Julkaisutapahtumia:"
+
+#~ msgid "Release group:"
+#~ msgstr "Julkaisuryhmä:"
+
+#~ msgid "Old:"
+#~ msgstr "Vanha:"
+
+#~ msgid "Added"
+#~ msgstr "Lisätty"
+
+#~ msgid "Removed"
+#~ msgstr "Poistettu"
+
+#~ msgid "Edited"
+#~ msgstr "Muokattu"
+
+#~ msgid "Alias:"
+#~ msgstr "Alias:"
+
+#~ msgid "Track:"
+#~ msgstr "Kappale:"
+
+#~ msgid "Candidate:"
+#~ msgstr "Ehdokas:"
+
+#~ msgid "Proposer:"
+#~ msgstr "Ehdottaja:"
+
+#~ msgid "1st seconder:"
+#~ msgstr "1. kannattaja"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "2. kannattaja"
+
+#~ msgid "Votes for:"
+#~ msgstr "Äänet puolesta:"
+
+#~ msgid "Votes against:"
+#~ msgstr "Äänet vastaan:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Tila:"
+
+#~ msgid "Seconder 1"
+#~ msgstr "Kannattaja 1"
+
+#~ msgid "Seconder 2"
+#~ msgstr "Kannattaja 2"
+
+#~ msgid "Added:"
+#~ msgstr "Lisätty:"
+
+#~ msgid "Last modified:"
+#~ msgstr "Viimeksi muokattu:"
+
+#~ msgid "Lookup count:"
+#~ msgstr "Hakujen määrä:"
+
+#~ msgid "Modify count:"
+#~ msgstr "Muokkauskerrat:"
+
+#~ msgid "Coordinates:"
+#~ msgstr "Koordinaatit:"
+
+#~ msgid "IPI code:"
+#~ msgstr "IPI-koodi:"
+
+#~ msgid "ISNI code:"
+#~ msgstr "ISNI-koodi:"
+
+#~ msgid "Error:"
+#~ msgid_plural "Errors:"
+#~ msgstr[0] "Virhe:"
+#~ msgstr[1] "Virheitä:"
+
+#~ msgid "ID:"
+#~ msgstr "Tunniste:"
+
+#~ msgid "Possible values:"
+#~ msgstr "Mahdolliset arvot:"
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "Lisää uusi yhteyden määrite"
+
+#~ msgid "Create a new {type0}-{type1} relationship"
+#~ msgstr "Lisää uusi {type0}-{type1}-yhteys"
+
+#~ msgid ""
+#~ "This report lists release groups with very similar names and artists. If "
+#~ "the releases in the release groups should be grouped together (see the "
+#~ "{url|guidelines}), they can be merged. If they shouldn't be grouped "
+#~ "together but they can be distinguished by the release group types, e.g. "
+#~ "when an artist has an album and single with the same name, then there is "
+#~ "usually no need to change anything. In other cases, a disambiguation "
+#~ "comment may be helpful."
+#~ msgstr ""
+#~ "Tämä raportti listaa julkaisuryhmät, joilla on hyvin samankaltaiset nimet "
+#~ "ja artistit. Jos julkaisuryhmien julkaisujen tulisi olla samassa ryhmässä "
+#~ "(katso {url|ohjeistus}), ne voidaan yhdistää. Jos niiden ei tule olla "
+#~ "samassa ryhmässä, vaan ne voidaan erottaa julkaisuryhmän tyypin mukaan, "
+#~ "esim. samannimiset albumi ja single, niin silloin tuskin tarvitsee tehdä "
+#~ "mitään. Muissa tapauksissa täsmennyskommentti voi auttaa."
+
+#~ msgid ""
+#~ "This report lists all releases with gaps in the medium numbers (e.g. "
+#~ "there is a medium 1 and 3 but no medium 2)."
+#~ msgstr ""
+#~ "Tämä raportti listaa julkaisut, joissa on rakoja tallenteiden numeroissa "
+#~ "(esimerkiksi tallenteet 1 ja 3 mutta ei tallennetta 2)."
+
+#~ msgid ""
+#~ "This report aims to identify releases where track names include their own "
+#~ "track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). "
+#~ "Notice that sometimes this is justified and correct, don't automatically "
+#~ "assume it is a mistake! If you confirm it is a mistake, please correct it."
+#~ msgstr ""
+#~ "Tämä raportti pyrkii tunnistamaan julkaisut, joissa kappaleiden nimissä "
+#~ "on kappalenumerot. esim. \"1) Kappaleen nimi\" (eikä \"Kappaleen nimi\"). "
+#~ "Huomioi, että joskus tämä on oikeutettua ja oikein. Älä oleta "
+#~ "automaattisesti näiden olevan väärin! Jos pystyt varmistamaan virheet, "
+#~ "niin korjaa ne."
+
+#~ msgid ""
+#~ "This report lists all releases where the track numbers are not continuous "
+#~ "(e.g. there is no \"track 2\"), or with duplicated track numbers (e.g. "
+#~ "there are two \"track 4\"s)."
+#~ msgstr ""
+#~ "Tämä raportti listaa kaikki julkaisut, joissa kappalenumerot eivät ole "
+#~ "yhtäjaksoisesti (esim. \"kappale 2\" puuttuu), tai niissä on kahdentunut "
+#~ "kappalenumero (esim. kaksi kertaa \"kappale 4\")."
+
+#~ msgid "Location"
+#~ msgstr "Sijainti"
+
+#~ msgid "Location:"
+#~ msgstr "Sijainti: "
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "Seuraa automaattisesti artisteja, jotka luon."
+
+#~ msgid "Automatically subscribe me to labels I create."
+#~ msgstr "Seuraa automaattisesti levymerkkejä, jotka luon."
+
+#~ msgid "Automatically subscribe me to series I create."
+#~ msgstr "Seuraa automaattisesti sarjoja, jotka luon."
+
+#~ msgid "Old"
+#~ msgstr "Vanha"
+
+#~ msgid "New"
+#~ msgstr "Uusi"
+
+#~ msgid "Create collection"
+#~ msgstr "Luo kokoelma"
+
+#~ msgid "Delete Note"
+#~ msgstr "Poista merkintä"
+
+#~ msgid "Artist credit:"
+#~ msgstr "Artistin tekijänimi:"
+
+#~ msgid "Ended:"
+#~ msgstr "Päättynyt:"
+
+#~ msgid "Release events:"
+#~ msgstr "Julkaisutapahtumat:"
+
+#~ msgid ""
+#~ "Warning: This relationship has pending edits. {show|Click here} to view "
+#~ "these edits and make sure they do not conflict with your own."
+#~ msgstr ""
+#~ "Varoitus: Tällä yhteydellä on avoimia muokkauksia. {show|Näytä} avoimet "
+#~ "muokkaukset ja varmista etteivät ne ole ristiriidassa omiisi."
+
+#~ msgid ""
+#~ "This will create a new work for each checked recording that has no work "
+#~ "already. The work names will be the same as their respective recording."
+#~ msgstr ""
+#~ "Tämä luo uuden teoksen kaikille valituille äänitteille, jolla ei vielä "
+#~ "ole teosta. Teoksien nimiksi tulee kunkin äänitteen nimi."
+
+#~ msgid ""
+#~ "Only use this option after you’ve tried searching for the work(s) you "
+#~ "want to create, and are certain they do not already exist on MusicBrainz."
+#~ msgstr ""
+#~ "Käytä tätä vaihtoehtoa vain jos olet jo etsinyt vastaavaa teosta ja olet "
+#~ "varma ettei sitä vielä löydy MusicBrainzista."
+
+#~ msgid "Batch-create new works"
+#~ msgstr "Luo uusi teos kaikille valituille äänitteille"
+
+#~ msgid "Work Type:"
+#~ msgstr "Teoksen tyyppi:"
+
+#~ msgid ""
+#~ "Banner message editors are users who can set a message that is shown in a "
+#~ "banner on all pages, e.g. to warn users about upcoming site maintenance."
+#~ msgstr ""
+#~ "Banneriviestieditorit ovat käyttäjiä, jotka voivat asettaa viestin joka "
+#~ "näytetään bannerissa kaikilla sivuilla, esimerkiksi varoittamaan sivuston "
+#~ "tulevasta huoltokatkosta."
+
+#~ msgid "Email:"
+#~ msgstr "Sähköpostiosoite:"
+
+#~ msgid "Member since:"
+#~ msgstr "Liittynyt jäseneksi:"
+
+#~ msgid "Last login:"
+#~ msgstr "Viimeksi sisäänkirjauduttu:"
+
+#~ msgid "Subscribers:"
+#~ msgstr "Seuraajia:"
+
+#~ msgid "Languages:"
+#~ msgstr "Kielet:"
+
+#~ msgid "This user has not created any entities."
+#~ msgstr "Tämä käyttäjä ei ole luonut yhtään kohdetta."
+
+#~ msgid ""
+#~ "This edit failed because the data it was changing was modified after this "
+#~ "edit was created. This may happen when the same edit is entered in twice; "
+#~ "one will pass but the other will fail."
+#~ msgstr ""
+#~ "Tämä muokkaus epäonnistui, sillä kohteena oleva tieto ehti muuttua tämän "
+#~ "muokkauksen jälkeen. Näin käy esimerkiksi silloin, kun sama muokkaus "
+#~ "syötetään kahdesti: toinen onnistuu ja toinen epäonnistuu."
+
#~ msgid "Artist {n}:"
#~ msgstr "Aristi {n}:"
diff --git a/po/mb_server.fr.po b/po/mb_server.fr.po
index 940d085eb92..61a1a1b4d77 100644
--- a/po/mb_server.fr.po
+++ b/po/mb_server.fr.po
@@ -65,8 +65,8 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
-"PO-Revision-Date: 2023-09-28 12:27+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
+"PO-Revision-Date: 2023-11-10 20:27+0000\n"
"Last-Translator: yvanzo {discid}
is not a valid disc ID."
msgstr "Désolé, {discid}
n’est pas un ID de disque valide."
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
"Veuillez chercher l’artiste pour lequel vous souhaitez créer une nouvelle "
-"parution :"
+"parution :"
#: ../root/cdstub/ImportCDStub.js:100
msgid "Import CD stub"
@@ -8211,7 +8185,7 @@ msgstr ""
"à {format} {pos} de {release} par {artist} ?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr "Comparaison des durée des pistes"
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -8233,15 +8207,6 @@ msgstr "Durée des pistes du support"
msgid "CD TOC details"
msgstr "Détails de la TOC (table des matières) du CD"
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr "ID de disque :"
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "FreeDB :"
@@ -8251,8 +8216,9 @@ msgid "Track details:"
msgstr "Détails de la piste :"
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Piste"
@@ -8261,21 +8227,13 @@ msgid "Start"
msgstr "Début"
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Fin (date)"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr "Heure"
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -8321,12 +8279,12 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
-"Si vous ne voyez pas l’artiste que vous cherchez, vous pouvez créer une "
-"nouvelle parution. Cela vous permettra de créer l’artiste et la parution en "
-"même temps"
+"Si vous ne voyez pas l’artiste que vous cherchez, vous pouvez quand même "
+"créer une nouvelle parution. Cela vous permettra de créer l’artiste et la "
+"parution en même temps"
#: ../root/cdtoc/SetTracklistDurations.js:46
#: ../root/cdtoc/SetTracklistDurations.js:47
@@ -8366,8 +8324,8 @@ msgstr "Afficher toutes vos collections"
msgid "See all of {editor}'s public collections"
msgstr "Afficher toutes les collections publiques de {editor}"
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
@@ -8376,7 +8334,7 @@ msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr "Collaborateurs"
@@ -8485,8 +8443,8 @@ msgstr "Confirmer"
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "Créer une nouvelle collection"
+msgid "Add a new collection"
+msgstr "Ajouter une nouvelle collection"
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -8500,19 +8458,9 @@ msgstr "Êtes-vous certain de vouloir supprimer la collection {collection} ?"
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
-msgstr "Alias"
-
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr "Nom de tri"
+msgstr "Alias"
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
@@ -8724,7 +8672,7 @@ msgstr "Critiques"
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Évaluations"
@@ -8770,7 +8718,7 @@ msgstr "L’ID de type de relation fourni n’est pas valide."
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8890,6 +8838,7 @@ msgstr "Abonnements"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr "Abonnés"
@@ -8946,26 +8895,10 @@ msgid "About to close"
msgstr "Sur le point de fermer"
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr "Nom de tri"
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Genre"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "Début (région)"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "Fin (région)"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8977,13 +8910,6 @@ msgstr "Rôle"
msgid "Code"
msgstr "Code"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "Adresse"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr "Type non spécifié"
@@ -8992,22 +8918,16 @@ msgstr "Type non spécifié"
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr "[support manquant]"
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Statut"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr "Écrivains"
@@ -9141,8 +9061,8 @@ msgid "There was a problem cancelling {edit}."
msgstr "Un problème est survenu à la suppression de la modification {edit}."
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
-msgstr "Seul l’éditeur qui a créé une modification peut l’annuler."
+msgid "Only the editor who entered an edit can cancel it."
+msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
msgid "Error Voting on Edits"
@@ -9385,7 +9305,7 @@ msgid "None"
msgstr "Aucun"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr "Vote"
@@ -9412,7 +9332,8 @@ msgstr[0] "Trouvé {n} modification"
msgstr[1] "Trouvé {n} modifications"
msgstr[2] "Trouvé {n} modifications"
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr "Envoyer vos votes & notes de modification"
@@ -9445,7 +9366,7 @@ msgstr ""
"raison n’a été donnée."
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr "voir tous les changements"
@@ -9456,17 +9377,17 @@ msgstr ""
"Dernièrement changé par l’auteur de la note ({time}). Raison donnée : "
"« {reason} »."
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr "Dernièrement changé par l’auteur de la note ({time})."
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
"Dernièrement changé par un administrateur ({time}). Raison donnée : "
"« {reason} »."
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr "Dernièrement changé par un administrateur ({time})."
@@ -9494,52 +9415,42 @@ msgstr ""
"Vous ne pouvez actuellement ajouter de note à cette modification. ({url|"
"Details})"
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "Statut :"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr "Ouverte : "
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "Fermé : "
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr "Pour une fin anticipée"
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] "1 vote"
msgstr[1] "{n} votes unanimes"
msgstr[2] "{n} votes unanimes"
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr "Si personne ne vote"
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr "Données de modification brutes pour cette modification"
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr "Pour plus d’information :"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr "FAQ du vote"
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr "FAQ de l’éditeur"
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Ajouter une note"
@@ -9559,12 +9470,6 @@ msgstr "Cet utilisateur est automatique."
msgid "bot"
msgstr "robot"
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "Parutions :"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -9683,39 +9588,15 @@ msgstr "Cette annotation est vide."
msgid "Summary"
msgstr "Résumé"
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr "Début (date)"
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "Fin (date)"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
-msgstr "Fin"
+msgstr ""
#: ../root/edit/details/AddCoverArt.js:39
#: ../root/edit/details/RemoveCoverArt.js:39
@@ -9725,18 +9606,21 @@ msgstr "(aucun)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Nom du fichier :"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr "Nom du fichier"
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr "Support :"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "Commentaire :"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
-msgstr "Programme"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
msgid "Client:"
@@ -9759,20 +9643,20 @@ msgstr "ISRC {isrc} pour {recording}"
msgid "ISWC {iswc} to {work}"
msgstr "Code ISWC {iswc} pour {work}"
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
-msgstr "Code du label"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
-msgstr "Crédits d’artiste :"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr "Crédits"
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
-msgstr "Relation :"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddRelationship.js:33
msgid "Link order:"
@@ -9832,30 +9716,24 @@ msgstr "(aucune)"
msgid "(new release group)"
msgstr "(nouveau groupe de parution)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "Statut :"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr "Emballage"
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr "Événements de parution"
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "No dans le catalogue :"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "Numéro dans le catalogue"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9867,17 +9745,17 @@ msgstr "voir tous les alias"
msgid "Primary for locale"
msgstr "Principal pour cette locale"
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
-msgstr "Type de tri"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr "Langues des paroles"
@@ -9885,7 +9763,7 @@ msgstr "Langues des paroles"
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "Qualité des données"
@@ -9926,14 +9804,6 @@ msgstr "Crédit d’artiste"
msgid "See all uses of the artist credit being changed."
msgstr "Voir tous les usages du crédit d’artiste en cours de modification."
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr "Codes IPI"
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr "Code ISNI"
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9959,11 +9829,6 @@ msgstr "Ancien enregistrement"
msgid "New recording"
msgstr "Nouvel enregistrement"
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr "Crédits"
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "Ancien artiste"
@@ -9994,25 +9859,10 @@ msgstr ""
msgid "Deprecated:"
msgstr "Obsolète :"
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr "Note"
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr "Cette modification a aussi changé les artistes des pistes."
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "Numéro dans le catalogue"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -10037,6 +9887,7 @@ msgid "Search for the target URL."
msgstr "Rechercher l’URL cible."
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr "Type d’œuvre"
@@ -10049,8 +9900,9 @@ msgstr "Type d’œuvre"
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "Fusion : "
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -10174,8 +10026,8 @@ msgid "New positions:"
msgstr "Nouvelles positions : "
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
-msgstr "Supports :"
+msgid "Mediums"
+msgstr "Supports"
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
@@ -10195,11 +10047,11 @@ msgstr "Support {new} (nouveau support)"
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
-"Support {new} (déplacé de la position {old})"
+"Support {new} (déplacé de la position {old})"
#: ../root/edit/details/ReorderRelationships.js:21
msgid "Old Order"
@@ -10244,20 +10096,6 @@ msgstr ""
msgid "CD TOC:"
msgstr "TOC (table des matières) du CD :"
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "Relations : "
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr "Événements de parution :"
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Numéro dans le catalogue"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -10268,11 +10106,6 @@ msgstr "Numéro de piste"
msgid "Artist name:"
msgstr "Nom de l’artiste :"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr "Groupe de parution :"
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "Anciennes relations : "
@@ -10282,9 +10115,9 @@ msgid "New relationships:"
msgstr "Nouvelles relations : "
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
-msgstr "Ancien :"
+msgctxt "release type and status"
+msgid "Old"
+msgstr "Anciennement"
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
msgid "Type: {type}, status: {status}"
@@ -10299,17 +10132,25 @@ msgid "New Status:"
msgstr "Nouveau statut : "
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr "Ajouté"
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr "Enlevé"
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr "Modifié"
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr "Ancienne"
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr "Langue : {language}, système d’écriture : {script}"
@@ -10350,41 +10191,39 @@ msgstr ""
msgid "Change track artists:"
msgstr "Changer les artistes des pistes :"
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "Alias :"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr "Piste :"
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Candidat :"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Candidat"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
-msgstr "Proposeur :"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr "Proposant"
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
-msgstr "1er appuyeur :"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr "1er appui"
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
-msgstr "2ème appuyeur :"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr "2ème appui"
#: ../root/elections/ElectionDetails.js:59
msgid "Total votes"
msgstr "Total des votes"
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "Votes pour :"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "Votes pour"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "Votes contre :"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "Votes contre"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -10400,47 +10239,19 @@ msgid ""
msgstr "Le décompte des votes ne sera affiché qu’à la fin de l’élection."
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "Statut :"
+msgid "Status"
+msgstr "Statut"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "Voir les détails"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Candidat"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "Statut"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr "Date de début"
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr "Proposeur"
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr "1er appuyeur"
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr "2ème appuyeur"
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "Votes pour"
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "Votes contre"
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr "Voter"
@@ -10476,8 +10287,8 @@ msgid ""
msgstr ""
"Le vote n’est pas encore ouvert. Si vous voulez soutenir ce candidat, vous "
"pouvez appuyer sa nomination. Si vous ne soutenez pas ce candidat vous ne "
-"pouvez pas voter « Non » (ou vous abstenir) tant que deux personnes "
-"l’appuyant soient trouvées."
+"pouvez pas voter « Non » (ou vous abstenir) avant que deux personnes l’"
+"appuyant ne soient trouvées."
#: ../root/elections/ElectionVoting.js:53
msgid "Voting is closed."
@@ -11225,7 +11036,7 @@ msgstr "Élections des auto-éditeurs"
msgid "Privileged User Accounts"
msgstr "Comptes utilisateur privilégié"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Statistiques"
@@ -11377,7 +11188,7 @@ msgstr "Index de la documentation"
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "Types de relation"
@@ -11544,39 +11355,33 @@ msgstr "Informations sur la région"
msgid "Artist information"
msgstr "Informations sur l’artiste"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "Ajouter un enregistrement"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "Scinder en des artistes distincts"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "Ajouté :"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr "Modifier en dernier :"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
-msgstr "Nombre de recherche : "
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
-msgstr "Nombre de modifications :"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr "Importer sous forme de parution MusicBrainz"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "Ajouter un ID de disque à une parution existante"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr "Chercher ce CD dans la base de données"
@@ -11626,7 +11431,7 @@ msgstr "Vous n’avez aucune collection d’œuvres !"
#: ../root/layout/components/sidebar/CollectionLinks.js:44
msgid "Add to a new collection"
-msgstr "Ajouter une nouvelle collection"
+msgstr "Ajouter à une nouvelle collection"
#: ../root/layout/components/sidebar/CollectionLinks.js:46
#: ../root/user/UserCollections.js:203
@@ -11693,11 +11498,11 @@ msgstr "Connectez-vous pour modifier"
msgid "Event information"
msgstr "Informations sur l’événement"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr "Date de début :"
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr "Fin (date) :"
@@ -11750,10 +11555,6 @@ msgctxt "place"
msgid "Closed"
msgstr "Fermé"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "Coordonnées :"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr "ListenBrainz"
@@ -11766,7 +11567,7 @@ msgstr "Écouter sur ListenBrainz"
msgid "Recording information"
msgstr "Informations d’enregistrement"
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr "Première année de parution"
@@ -11801,27 +11602,27 @@ msgstr "Voir toutes les illustrations"
msgid "No cover art available."
msgstr "Aucune Illustration."
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "Détails additionnels"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr "Évaluation du groupe de parution"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr "Critiques de groupe de parution"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr "Liens externes du groupe de parution"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr "Modifier les relations"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr "Modifier la qualité des données"
@@ -11829,21 +11630,13 @@ msgstr "Modifier la qualité des données"
msgid "Series information"
msgstr "Informations sur la série"
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "Code IPI :"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "Code ISNI :"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Licence"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Évaluation"
@@ -12003,7 +11796,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr "Désolé, la page que vous cherchez n’existe pas."
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Message d’erreur : "
@@ -12116,14 +11909,7 @@ msgstr "Langue de l’interface :"
msgid "Request data:"
msgstr "Requête de données :"
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] "Erreur :"
-msgstr[1] "Erreurs : "
-msgstr[2] "Erreurs : "
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Aucun détail sur cette erreur)"
@@ -12280,7 +12066,7 @@ msgstr "MBID invalide"
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -12489,10 +12275,9 @@ msgid ""
"different ISRCs. Please make sure they are indeed the same recordings and "
"you wish to continue with the merge."
msgstr ""
-"Avertissement : Certains enregistrements que vous vous "
-"apprêtez à fusionner ont des ISRC différents. Veuillez vous assurez que ce "
-"sont vraiment les mêmes enregistrements et que vous voulez continuer la "
-"fusion."
+"Attention : Certains enregistrements que vous vous apprêtez "
+"à fusionner ont des ISRC différents. Veuillez vous assurez que ce sont "
+"vraiment les mêmes enregistrements et que vous voulez continuer la fusion."
#: ../root/relationship/RelationshipsHeader.js:23
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:87
@@ -12519,21 +12304,14 @@ msgstr "Attributs de relation utilisés"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
-"Le type d’attribut de relation « {type} » ne peut pas être effacé car il est "
-"encore utilisé."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:77
msgid "Relationship Attribute"
msgstr "Attribut de relation"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "ID :"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -12545,6 +12323,7 @@ msgid "Parent attribute"
msgstr "Attribut parent"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr "Valeurs possibles"
@@ -12581,17 +12360,13 @@ msgstr "aucun"
msgid "Add child"
msgstr "Ajouter un enfant"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr "Valeurs possibles :"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "Aucun attribut de relation de trouvé."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
-msgstr "Créer un nouvel attribut de relation"
+msgid "Add a new relationship attribute"
+msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
@@ -12612,10 +12387,8 @@ msgstr "Type de relation utilisé"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
-"Le type de relation « {type} » ne peut pas être effacé car il est encore "
-"utilisé."
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
msgid "This relationship type doesn't allow any attributes."
@@ -12691,8 +12464,8 @@ msgid "{type0}-{type1} relationship types"
msgstr "{type0}-{type1} types de relation"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
-msgstr "Créer une nouvelle relation {type0}-{type1}"
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
msgid "Expand all descriptions"
@@ -12710,7 +12483,7 @@ msgstr "Aucune relation de type {type0}-{type1} de trouvée."
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -12836,8 +12609,8 @@ msgstr ""
"parution {release} par {artist} ?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "Groupe de parution par {artist}"
@@ -13084,13 +12857,9 @@ msgstr "Mauvaises URLs d’Amazon"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
-"Ce rapport montre les ID de disque dont la durée totale est beaucoup plus "
-"longue que ce qu’un CD standard permet (au moins 88 minutes pour un CD, et "
-"30 minutes pour un mini-CD). Cela signifie généralement qu’un ID de disque a "
-"été créé pour le mauvais format (SACD) et/ou avec un outil bogué."
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
msgid "Disc IDs with dubious duration"
@@ -13099,19 +12868,12 @@ msgstr "ID de disque avec une durée douteuse"
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
-"Ce rapport montre les ID de disque attaché à une parution mais qui n’y sont "
-"pas appliqués car au moins une durée de piste est inconnue pour cette "
-"parution. Ce rapport est restreint aux supports où un seul ID de disque est "
-"attaché, donc il est plutôt vraisemblable que l’ID de disque peut être "
-"appliqué sans dommages. Assurez vous tout de même qu’aucune durée n’est en "
-"conflit avec l’ID de disque, ou sinon que ces conflits sont indiscutablement "
-"des erreurs."
#: ../root/report/CDTocNotApplied.js:34 ../root/report/ReportsIndex.js:632
msgid "Disc IDs attached but not applied"
@@ -13154,7 +12916,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr "Parutions avec des numéros de catalogue qui ressemblent à des ISRC"
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -13170,7 +12932,7 @@ msgstr ""
"label), enlevez-le, ou mieux encore, essayez de trouver et d’ajouter le "
"véritable numéro de catalogue."
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -13509,18 +13271,10 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
-"Ce rapport liste des groupes de parution ayant des noms et des artistes très "
-"semblables. Si les parutions dans les groupes de parution devraient être "
-"regroupées ( voir les {url|directives}), elles peuvent être fusionnées. Si "
-"elles ne devraient pas être regroupées mais qu’elles peuvent être "
-"distinguées par leur type de groupe de parution, p. ex. si un artiste à un "
-"album et un single portant le même nom, il n’y a habituellement rien à "
-"changer. Dans les autres cas, un commentaire de désambiguïsation pourrait "
-"être utile."
#: ../root/report/DuplicateReleaseGroups.js:52
#: ../root/report/ReportsIndex.js:227
@@ -13621,10 +13375,8 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
-"Ce rapport liste les instruments sans relation d’image à StaticBrainz (c.-à.-"
-"d.. sans image IROMBOOOK)."
#: ../root/report/InstrumentsWithoutAnImage.js:30
#: ../root/report/ReportsIndex.js:163
@@ -13778,11 +13530,9 @@ msgstr "Parutions dont les supports sont nommés selon leur position"
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
-"Ce rapport liste toutes les parutions qui présentent des trous dans les "
-"nombres des supports (p. ex. il y a un support 1 et 3 mais pas de support 2)."
#: ../root/report/MediumsWithSequenceIssues.js:30
msgid "Releases with medium number issues"
@@ -14014,16 +13764,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr "Enregistrements avec des relations de parution la plus ancienne"
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-"Ce rapport liste les enregistrements qui ont des relations utilisant "
-"uniquement des dates du futur. Ce sont généralement des fautes de frappe (p. "
-"ex. 2109 au lieu de 2019)."
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr "Enregistrements avec des relations ayant des dates du futur"
@@ -14261,13 +14008,8 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
-"Ce rapport montre les parutions avec des relations qui ne s’appliquent "
-"qu’aux supports de parution en ligne (téléchargement / diffusion en flux), "
-"mais dont au moins un support n’est pas en ligne. Généralement, ces liens "
-"doivent être déplacés vers la parution en ligne appropriée. Si aucune "
-"n’existe, n’hésitez pas à en ajouter une."
#: ../root/report/ReleasesWithDownloadRelationships.js:34
#: ../root/report/ReportsIndex.js:389
@@ -14293,14 +14035,8 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
-"Ce rapport montre les parutions qui ont un lien d’achat par correspondance "
-"(qui par définition ne s’applique qu’aux parutions sur support physique), "
-"mais qui n’ont que des supports de type “Support numérique”. Généralement, "
-"ces liens doivent être déplacés vers la parution sur support physique "
-"appropriée. Si aucune n’existe, n’hésitez pas à en ajouter une."
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
#: ../root/report/ReportsIndex.js:393
@@ -14543,20 +14279,6 @@ msgstr "URLs"
msgid "Wikidata URLs linked to multiple entities"
msgstr "URL Wikidata liées à de multiple entités"
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRC"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr "ISWC"
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -14662,15 +14384,10 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
-"Ce rapport tend a identifier les parutions dont les noms de piste inclus "
-"leur propre numéro de piste, p. ex. « 1) Un nom » (au lieu de juste « Un "
-"nom »). Veuillez prendre note que cela est parfois justifié et correct. Ne "
-"pas assumer automatiquement que cela est faux ! Si vous confirmez que cela "
-"est faux, veuillez le corriger."
#: ../root/report/TracksNamedWithSequence.js:33
msgid "Releases where track names start with their track number"
@@ -14680,13 +14397,10 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
-"Ce rapport liste toutes les parutions pour lesquelles les numéros de piste "
-"ne sont pas continus (p. ex. il n’y a pas de « piste 2 »), ou avec des "
-"pistes en double (par exemple il y a deux « piste 4 »)."
#: ../root/report/TracksWithSequenceIssues.js:31
msgid "Releases with track number issues"
@@ -14870,6 +14584,10 @@ msgstr ""
msgid "Last edited"
msgstr "Dernière modification"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Numéro dans le catalogue"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr "Recherche par balise"
@@ -14879,7 +14597,7 @@ msgid "Other lookups"
msgstr "Autres recherches"
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -14890,7 +14608,7 @@ msgstr "Début (date)"
msgid "Alternatively, you may {uri|add a new area}."
msgstr "Autrement, vous pouvez {uri|ajouter une nouvelle région}."
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "Autrement, vous pouvez {uri|ajouter un nouvel artiste}."
@@ -14900,9 +14618,10 @@ msgid "Documentation Search"
msgstr "Recherche dans la documentation"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr "Localisation"
@@ -14938,7 +14657,7 @@ msgstr "Autrement, vous pouvez {uri|ajouter un nouvel enregistrement}."
msgid "Alternatively, you may {uri|add a new release group}."
msgstr "Autrement, vous pouvez {uri|créer un groupe de parution}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr "Autrement, vous pouvez {uri|ajouter une nouvelle parution}."
@@ -15039,7 +14758,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr "Désolé, votre requête est trop grosse."
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr "Cette série est actuellement vide."
@@ -15065,7 +14784,7 @@ msgstr ""
"son protocole doit être un nom de domaine inverse sur mesure, comme dans "
"org.exemple.app://auth
, pour les applications installées."
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
@@ -15073,17 +14792,18 @@ msgstr ""
"Ceci est un serveur de développement. Votre adresse courriel n’est ni privée "
"ni en sécurité. Avancer avec précaution !"
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
"Si vous changez votre adresse courriel, il vous sera demander de la valider."
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
-msgstr "Localisation :"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr "Localisation"
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
@@ -15091,11 +14811,11 @@ msgstr ""
"Vous pouvez choisir ici le niveau que vous préférez : votre pays, région ou "
"ville. Soyez aussi précis que vous le désirez !"
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "Date de naissance :"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
@@ -15103,11 +14823,11 @@ msgstr ""
"Nous utiliserons votre date de naissance pour afficher votre âge en années "
"sur votre page de profil."
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "Langues connues :"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Ajouter une langue"
@@ -15167,16 +14887,16 @@ msgstr ""
"abonnements"
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
-msgstr "Abonnez-moi automatiquement aux artistes que je crée."
+msgid "Automatically subscribe me to artists I add."
+msgstr "Abonnez-moi automatiquement aux artistes que j’ajoute."
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
-msgstr "Abonnez-moi automatiquement aux labels que je crée."
+msgid "Automatically subscribe me to labels I add."
+msgstr "Abonnez-moi automatiquement aux labels que j’ajoute."
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
-msgstr "Abonnez-moi automatiquement aux séries que je crée."
+msgid "Automatically subscribe me to series I add."
+msgstr "Abonnez-moi automatiquement aux séries que j’ajoute."
#: ../root/static/scripts/account/components/RegisterForm.js:70
msgid "Your username will be publicly visible."
@@ -15236,12 +14956,14 @@ msgid "This alias is no longer current."
msgstr "L’alias n’est plus à jour."
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
-msgstr "Ancien"
+msgstr "Ancienne"
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "Nouveau"
+msgstr "Nouvelle"
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -15290,12 +15012,8 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
-"Ceci va entrer des modifications complémentaires pour que chaque crédit "
-"d’artiste utilise le nouveau nom. N’utilisez cette option que si vous êtes "
-"sûr(e) que les crédits existants sont incorrects (p. ex. avec une faute de "
-"frappe)."
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
msgid ""
@@ -15322,33 +15040,33 @@ msgid "Show more artist credits"
msgstr "Montrer plus de crédits d’artiste"
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "En afficher plus..."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "Détails de la collection"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "Autoriser les autres utilisateurs à voir cette collection"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "Créer une collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr "Ajouter une collection"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr "Mettre à jour la collection"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr "Ajouter un collaborateur"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr "Retirer un collaborateur"
@@ -15367,7 +15085,7 @@ msgid "Try with indexed search instead."
msgstr "Essayez plutôt une recherche indexée."
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr "Essayer de rechercher ou de coller un MBID"
@@ -15376,32 +15094,27 @@ msgstr "Essayer de rechercher ou de coller un MBID"
msgid "Clear recent items"
msgstr "Effacer les éléments récents"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr "Introuvable ? Essayez à nouveau avec la recherche directe."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr "Lent ? Revenez à la recherche indexée."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr "apparaît dans"
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr "enregistrement isolé"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr "{release_group_type} par {artist}"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr "Interprètes"
@@ -15411,8 +15124,14 @@ msgid "Vote on all edits:"
msgstr "Voter pour toutes les modifications :"
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
-msgstr "Supprimer la note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr "Enlever la note"
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr "Ajouter une note"
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
@@ -15451,12 +15170,12 @@ msgid "Annotation last modified on {date}."
msgstr "Annotation modifiée en dernier le {date}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
-msgstr "Ce crédit d’artiste a des {edit_search|modifications en attente}."
+msgid "This artist credit has {edit_search|open edits}."
+msgstr "Ce crédit d’artiste a des {edit_search|modifications ouvertes}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
-msgstr "Ce crédit d’artiste a des modifications en attente."
+msgid "This artist credit has open edits."
+msgstr "Ce crédit d’artiste a des modifications ouvertes."
#: ../root/static/scripts/common/components/ArtistRoles.js:29
msgid "{artist} ({roles})"
@@ -15557,15 +15276,15 @@ msgstr "Chercher une série"
msgid "Search for a work"
msgstr "Chercher une œuvre"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr "{forward_link_phrase} / {backward_link_phrase}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr "par {artist}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr "{first_list_item} … {last_list_item}"
@@ -15692,8 +15411,8 @@ msgid "Secondary type"
msgstr "Type secondaire"
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
-msgstr "Crédits :"
+msgid "Artist credit"
+msgstr "Crédit d’artiste"
#: ../root/static/scripts/common/components/FilterForm.js:242
msgid "Setlist contains"
@@ -16000,31 +15719,31 @@ msgctxt "plural"
msgid "Series"
msgstr "Série"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr "le {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr "le {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr "du {begin_date} au {end_date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr "du {date} à ????"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr "du {date} à ce jour"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr "jusqu’au {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr "terminé"
@@ -16045,8 +15764,9 @@ msgid "Began:"
msgstr "A commencé par :"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "Terminé le : "
+msgctxt "artist end date"
+msgid "Ended"
+msgstr "Fin"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -16114,8 +15834,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -16242,7 +15962,7 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr "C’est une page interne à Instagram et ne doit donc pas être ajoutée."
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
@@ -16254,11 +15974,11 @@ msgstr ""
"liens de Musixmatch directement aux artistes et œuvres correspondants de "
"MusicBrainz."
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr "Seul les clips RYM peuvent être liés à des enregistrements."
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
@@ -16268,23 +15988,23 @@ msgstr ""
"suivre {ra_url|votre lien} et d’ajouter le lien final à la place, si "
"approprié."
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr "Merci de lier à un profil Threads, pas à un fil."
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr "Cet n’est pas un profil, mais une page de documentation Twitter."
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr "Merci de lier au profil Twitter, pas à un tweet."
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr "Ce site n’autorise pas les liens directs vers ses images."
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
@@ -16292,7 +16012,7 @@ msgstr ""
"Merci de lier à la page en « {allowed_url_pattern} » plutôt que ce lien en "
"« {current_url_pattern} »."
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
@@ -16302,7 +16022,7 @@ msgstr ""
"vérifier si il est inutile et doit être supprimé ou si c’est une erreur et "
"que l’URL est mal encodée."
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
@@ -16311,21 +16031,21 @@ msgstr ""
"WhoSampled. À la place, liez à la page WhoSampled de l’artiste, de la piste, "
"ou de l’album concerné."
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
"Merci de lier les pages « {album_url_pattern} » de WhoSampled aux groupes de "
"parution."
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr "Merci de lier les pages d’artiste de WhoSampled aux artistes."
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr "Merci de lier les pages de pistes de WhoSampled aux enregistrements."
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
@@ -16334,7 +16054,7 @@ msgstr ""
"autorisés. Veuillez supprimer « {fragment} » si cela reste approprié. Voir "
"les {url|directives}."
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
@@ -16342,7 +16062,7 @@ msgstr ""
"Les liens vers les pages utilisateur Wikipédia ne sont pas autorisés. "
"Veuillez n’entrer de lien que vers les articles de Wikipédia."
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
@@ -16353,13 +16073,13 @@ msgstr ""
"entrer à la place un lien vers le canal officiel de cette entité, si il "
"existe."
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
"Seuls les liens vers des vidéos ou des listes de lecture sont autorisés pour "
"les parutions."
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
@@ -16369,7 +16089,7 @@ msgstr ""
"les liens Wikpédia sont bloqués pour les parutions. À la place, merci "
"d’ajouter ce lien Wikpédia au groupe de parution, si approprié."
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
@@ -16379,11 +16099,11 @@ msgstr ""
"les liens Wikidata sont bloqués pour les parutions. À la place, merci "
"d’ajouter ce lien Wikidata au groupe de parution, si approprié."
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr "Certains types de relation sont manquants pour cette URL."
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr "Cette combinaison de types de relation est invalide."
@@ -16430,7 +16150,7 @@ msgstr "Ajouter une nouvelle série"
msgid "Add a new work"
msgstr "Ajouter une nouvelle œuvre"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
@@ -16438,50 +16158,50 @@ msgstr ""
"Utiliser les champs suivants pour saisir les collaborations, voir la "
"documentation sur le {ac|crédit d’artiste} pour plus d’informations."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr "[nom de piste manquant]"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr "Vous n’avez pas encore saisi de nom de piste."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
-msgstr "Cette piste n’a pas encore été créée."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
+msgstr "Cette piste n’a pas encore été ajoutée."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr "Artiste dans MusicBrainz :"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr "Artiste comme il est crédité :"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr "Phrase de jointure :"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr "Ajouter un crédit d’artiste"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
"Changer tous les artistes pour cette parution qui correspondent à « {name} »"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
"Changer tous les artistes pour cette parution qui sont actuellement "
"manquants."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr "Copier les crédits"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr "Coller les crédits"
@@ -16509,12 +16229,12 @@ msgstr ""
"rapidement."
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
-msgstr "Cette entité a des {edits_link|modifications en attente}."
+msgid "This entity has {edits_link|open edits}."
+msgstr "Cette entité a des {edits_link|modifications ouvertes}."
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
-msgstr "Cette entité a des modifications en attente."
+msgid "This entity has open edits."
+msgstr "Cette entité a des modifications ouvertes."
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:202
@@ -16551,12 +16271,12 @@ msgstr ""
"distinguer cette entité des autres."
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
-msgstr "Cette relation a des {edit_search|modifications en attente}."
+msgid "This relationship has {edit_search|open edits}."
+msgstr "Cette relation a des {edit_search|modifications ouvertes}."
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
-msgstr "Cette relation a des modifications en attente."
+msgid "This relationship has open edits."
+msgstr "Cette relation a des modifications ouvertes."
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
msgid ""
@@ -16634,10 +16354,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr "Formatée en"
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr "Événements de parution :"
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -16645,7 +16362,7 @@ msgstr "Tous vos changements seront perdus si vous quittez cette page."
#: ../root/static/scripts/edit/externalLinks.js:708
msgid "Please enter a valid URL, such as “{example_url}”."
-msgstr "Veuillez entrer un URL valide, tel que « {example_url} »"
+msgstr "Veuillez entrer un URL valide, tel que « {example_url} »."
#: ../root/static/scripts/edit/externalLinks.js:715
msgid ""
@@ -17026,11 +16743,11 @@ msgstr "Type de relation"
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
-"Avertissement : cette relation a des modifications en attente. {show|Cliquez "
-"ici} pour voir ces modifications et vous assurez qu’elles n’entrent pas en "
+"Attention : Cette relation a des modifications en attente. {show|Cliquez ici}"
+" pour voir ces modifications et vous assurez qu’elles n’entrent pas en "
"conflit avec les vôtres."
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -17256,20 +16973,20 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
-"Ceci créera une nouvelle œuvre pour chaque enregistrement coché qui n’en a "
-"pas déjà. Les noms d’œuvre seront identique aux enregistrements."
+"Ceci ajoutera une nouvelle œuvre pour chaque enregistrement coché qui n’en a "
+"pas déjà. Les noms des œuvres seront identiques à ceux des enregistrements."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
-"N’utiliser cette fonction qu’après avoir cherché l’œuvre(s) que vous voulez "
-"créer et que vous êtes certain quelle(s) n’existe(nt) pas déjà sur "
-"MusicBrainz"
+"N’utilisez cette fonction qu’après avoir cherché l’œuvre(s) que vous voulez "
+"ajouter et que vous êtes certain quelle(s) n’existe(nt) pas déjà sur "
+"MusicBrainz."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:94
@@ -17279,8 +16996,8 @@ msgstr ""
"cases ci-dessous."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
-msgstr "Création par lot de nouvelles œuvres"
+msgid "Batch-add new works"
+msgstr "Ajouter de nouvelles œuvres par lot"
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
msgid "Edit Work"
@@ -17335,15 +17052,15 @@ msgstr "Ajout par lot de relations aux œuvres"
msgid "[selected work]"
msgstr "[œuvre sélectionnée]"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr "Une erreur est survenue :"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr "Relations de piste"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
@@ -17352,20 +17069,20 @@ msgstr ""
"opérations de traitement par lot avec, veuillez les charger entièrement "
"d’abord."
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr "Œuvres connexes"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr "Nous n’avons pas d’information à propos des supports et des pistes."
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "Relations de parution"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr "Relations de groupe de parution"
@@ -17394,15 +17111,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr "Ajouter une/la langue des paroles"
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr "Type d’œuvre :"
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr "Ajouter une langue"
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr "Supprimer la langue"
@@ -17655,10 +17368,6 @@ msgstr "Tag"
msgid "Duration"
msgstr "Durée"
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr "Nom du fichier"
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "Recherche par balise"
@@ -17739,23 +17448,23 @@ msgstr "Information de l’URL"
msgid "URL Details"
msgstr "Détails de l’URL"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr "Sujet :"
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr "Message"
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr "Montrer mon adresse courriel"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr "Envoyer une copie à mon adresse courriel personnelle"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "Envoyer"
@@ -17876,11 +17585,12 @@ msgstr "Éditeurs de messages de bannière"
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
"Les éditeurs de messages de bannière sont des utilisateurs qui peuvent "
-"définir un message qui est montré en bannière dans toutes les pages, p. ex. "
-"pour avertir les utilisateurs d’une maintenance du site à venir."
+"définir un message qui est montré en bannière dans toutes les pages, par "
+"exemple pour avertir les utilisateurs d’une maintenance du site à venir."
#: ../root/user/PrivilegedUsers.js:114
msgid "The following {count} users are banner message editors:"
@@ -18132,10 +17842,6 @@ msgstr ""
msgid "General Information"
msgstr "Information Générale"
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "Courriel :"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(caché)"
@@ -18177,176 +17883,168 @@ msgstr "nominer à l’auto-édition"
msgid "Age:"
msgstr "Âge :"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "Membre depuis :"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "Dernière connexion :"
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
+msgstr "Restrictions"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr "Ne s’est encore jamais connecté"
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr "Applications autorisées"
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr "voir la liste"
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr "Applications de développeur"
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr "Page d’accueil :"
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr "Abonnés :"
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr "{count} ({url|voir la liste})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr "se désabonner"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr "s’abonner"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "Langues : "
-
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr "Langues"
+
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr "{count} ({view_url|voir})"
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Modifications"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Total"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Acceptée"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr "Automatiques"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr "Total appliqué"
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr "Rejetées par vote"
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr "Échec"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr "Les dernières 24 heures"
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr "Cette table affiche un résumé des votes effectués par cet éditeur."
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr "Votes ({view_url|voir})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr "Les 28 derniers jours"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr "Global"
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr "Cette table affiche un résumé des entités ajoutées par cet éditeur."
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
"Les modifications fraîchement appliquées peuvent n’apparaître qu’après 24h."
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr "Entités ajoutées"
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
-msgstr "Cet utilisateur n’a créé aucune entité."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
+msgstr "Cet utilisateur n’a ajouté aucune entité."
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
"Cette table affiche un résumé des données secondaires ajoutées par cet "
"éditeur."
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr "Balises et évaluations"
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr "Balises votées pour"
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr "Les tags sont supprimés quand un éditeur est supprimé."
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr "Supprimés"
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr "Balises votées contre"
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr "Les évaluations sont supprimées quand un éditeur est supprimé."
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr "Supprimées"
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr "Compte spam bloqué"
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
@@ -18356,14 +18054,14 @@ msgstr ""
"considéré comme spammeur. Si vous voyez du spam dans MusicBrainz, veuillez "
"nous le faire savoir en signalant le spammeur depuis sa page utilisateur."
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
"Cet utilisateur est marqué comme spammeur et est bloqué pour tous les "
"utilisateurs non-administrateurs."
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
@@ -18371,7 +18069,7 @@ msgstr ""
"Les droits d’édition de cet utilisateur ont été restreints. Restrictions "
"active : {restrictions}."
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr "Signaler cet utilisateur pour mauvais comportement"
@@ -18637,12 +18335,12 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
"La modification a échoué car les données qu’elle modifiait ont été modifiées "
-"après que cette modification soit créée. Cela peut arriver si une "
-"modification est saisie deux fois ; une réussira mais la suivante échouera."
+"après que cette modification soit entrée. Cela peut arriver si une "
+"modification est entrée deux fois ; une réussira mais la suivante échouera."
#: ../root/utility/edit.js:86
msgid ""
@@ -18656,7 +18354,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr "La modification a été annulée."
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr "Abonné"
@@ -18986,9 +18684,741 @@ msgid ""
"ISWCs. Please make sure they are indeed the same works and you wish to "
"continue with the merge."
msgstr ""
-"Avertissement : Certaines œuvres vous vous apprêtez à "
-"fusionner ont des ISWC différents. Veuillez vous assurez que ce sont "
-"vraiment les mêmes œuvres et que vous voulez continuer la fusion."
+"Attention : Certaines œuvres vous vous apprêtez à fusionner "
+"ont des ISWC différents. Veuillez vous assurez que ce sont vraiment les "
+"mêmes œuvres et que vous voulez continuer la fusion."
+
+#~ msgid "Address:"
+#~ msgstr "Adresse :"
+
+#~ msgid "Annotation:"
+#~ msgstr "Annotation :"
+
+#~ msgid "Area:"
+#~ msgstr "Région :"
+
+#~ msgid "Artist:"
+#~ msgstr "Artiste :"
+
+#~ msgid "Attributes:"
+#~ msgstr "Attributs :"
+
+#~ msgid "Barcode:"
+#~ msgstr "Code-barres :"
+
+#~ msgid "Begin Area:"
+#~ msgstr "Début (région) :"
+
+#~ msgid "Begin date:"
+#~ msgstr "Début (date) :"
+
+#~ msgid "Catalog#:"
+#~ msgstr "No dans le catalogue :"
+
+#~ msgid "Child order:"
+#~ msgstr "Ordre des enfants :"
+
+#~ msgid "Country:"
+#~ msgstr "Pays : "
+
+#~ msgid "Created"
+#~ msgstr "Créé"
+
+#~ msgid "Date:"
+#~ msgstr "Date : "
+
+#~ msgid "Delete"
+#~ msgstr "Supprimer"
+
+#~ msgid "Description:"
+#~ msgstr "Description :"
+
+#~ msgid "Documentation:"
+#~ msgstr "Documentation :"
+
+#~ msgid "End Area:"
+#~ msgstr "Fin (région) :"
+
+#~ msgid "End date:"
+#~ msgstr "Fin (date) :"
+
+#~ msgid "Format:"
+#~ msgstr "Format : "
+
+#~ msgid "Gender:"
+#~ msgstr "Genre :"
+
+#~ msgid "IPI codes:"
+#~ msgstr "Codes IPI :"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "Codes ISNI :"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1 :"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2 :"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3 :"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRC :"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWC :"
+
+#~ msgid ""
+#~ "If you don’t select an existing release group, a new one will be created "
+#~ "with the types selected below."
+#~ msgstr ""
+#~ "Si vous ne sélectionnez pas de groupe de parution existant, un nouveau "
+#~ "sera créé du/des type(s) sélectionné(s) ci-dessous."
+
+#~ msgid ""
+#~ "Keep in mind that recording durations are {doc_link|recalculated from "
+#~ "tracks} once the duration of a track changes. As such, if you correct the "
+#~ "duration of a track whose recording is only used in this release, just "
+#~ "reuse the old recording, don’t create a new one. If the recording is also "
+#~ "used elsewhere and the durations are significantly different, consider "
+#~ "creating a new recording instead."
+#~ msgstr ""
+#~ "Gardez à l’esprit que les durées d’un enregistrement sont {doc_link|"
+#~ "recalculées à partir des pistes} lorsque la durée d’une piste change. "
+#~ "Donc si vous corrigez la durée d’une piste dont l’enregistrement apparaît "
+#~ "uniquement dans cette parution, réutilisez simplement le même "
+#~ "enregistrement, n’en créez pas un nouveau. Si l’enregistrement apparaît "
+#~ "également par ailleurs et les durées sont significativement différentes, "
+#~ "veuillez créer un nouvel enregistrement à la place."
+
+#~ msgid ""
+#~ "Keep in mind that unselecting this will delete the track if the medium "
+#~ "has a disc ID! If you unselect it by mistake, please readd the pregap "
+#~ "track before submitting."
+#~ msgstr ""
+#~ "Gardez à l’esprit que déselectionner ceci effacera la piste si le support "
+#~ "a un ID de disque ! Si vous la déselectionnez par erreur, merci d’ajouter "
+#~ "à nouveau la piste de prégap avant de soumettre."
+
+#~ msgid ""
+#~ "Keep in mind that unselecting this will delete the tracks if the medium "
+#~ "has a disc ID! If you unselect it by mistake, please readd the data "
+#~ "tracks before submitting."
+#~ msgstr ""
+#~ "Gardez à l’esprit que déselectionner ceci effacera les pistes si le "
+#~ "support a un ID de disque ! Si vous la déselectionnez par erreur, merci "
+#~ "d’ajouter à nouveau les pistes de données avant de soumettre."
+
+#~ msgid "Label code:"
+#~ msgstr "Code du label :"
+
+#~ msgid "Label:"
+#~ msgstr "Label :"
+
+#~ msgid "Language:"
+#~ msgstr "Langue :"
+
+#~ msgid "Length:"
+#~ msgstr "Durée :"
+
+#~ msgid "Merge"
+#~ msgstr "Fusionner"
+
+#~ msgid "Name:"
+#~ msgstr "Nom : "
+
+#~ msgid "Note:"
+#~ msgstr "Note :"
+
+#~ msgid ""
+#~ "Note: only searches edits that: add or edit relationships, created after "
+#~ "2011-05-16; or which remove relationships, created after 2013-07-08; or "
+#~ "which reorder relationships."
+#~ msgstr ""
+#~ "Note : recherche seulement des modifications qui : ajoutent ou modifient "
+#~ "des relations, créés après le 16-05-2011 ; ou qui suppriment des "
+#~ "relations, créées après le 08-07-2013; ou qui réordonnent les relations."
+
+#~ msgid "Ordering Type:"
+#~ msgstr "Type de tri"
+
+#~ msgid "Packaging:"
+#~ msgstr "Emballage :"
+
+#~ msgid "Parent:"
+#~ msgstr "Parent : "
+
+#~ msgid "Position:"
+#~ msgstr "Position :"
+
+#~ msgid "Release Group:"
+#~ msgstr "Groupe de parution :"
+
+#~ msgid "Release:"
+#~ msgstr "Parution :"
+
+#~ msgid "Script:"
+#~ msgstr "Système d’écriture :"
+
+#~ msgid "Search:"
+#~ msgstr "Recherche :"
+
+#~ msgid "Set track durations"
+#~ msgstr "Saisir la durée des pistes"
+
+#~ msgid "Setlist:"
+#~ msgstr "Programme :"
+
+#~ msgid "Sort name:"
+#~ msgstr "Nom de tri :"
+
+#~ msgid "Status:"
+#~ msgstr "État :"
+
+#~ msgid "This entity will be created by this edit."
+#~ msgstr "Cette entité sera créée par cette modification."
+
+#~ msgid "Time:"
+#~ msgstr "Heure :"
+
+#~ msgid "Title:"
+#~ msgstr "Titre : "
+
+#~ msgid ""
+#~ "To create a new tracklist, use an existing medium or import a disc from a "
+#~ "CD stub, select the appropriate tab."
+#~ msgstr ""
+#~ "Afin de créer une nouvelle liste de pistes, utiliser un support existant "
+#~ "ou importer un disque à partir d’une ébauche de CD, sélectionnez l’onglet "
+#~ "approprié."
+
+#~ msgid "Tracks:"
+#~ msgstr "Pistes :"
+
+#~ msgid "URL:"
+#~ msgstr "URL : "
+
+#~ msgid "Warning:"
+#~ msgstr "Attention :"
+
+#~ msgid ""
+#~ "You can use the checkboxes under the parser to deactivate some sections. "
+#~ "For example, you can deactivate “{lines_have_artists}” if your data has "
+#~ "no track artists, or “{use_track_lengths}” if you have track durations "
+#~ "but want the parser to ignore them."
+#~ msgstr ""
+#~ "Vous pouvez utiliser les cases à cocher sous le parseur pour désactiver "
+#~ "certaines sections. Par exemple, vous pouvez désactiver "
+#~ "« {lines_have_artists} » si vos données n’ont pas d’artistes par piste, "
+#~ "ou « {use_track_lengths} » si vous havez les durées par piste mais que "
+#~ "vous souhaitez que le parseur les ignore."
+
+#~ msgid ""
+#~ "You must select an artist for every track (the background color of every "
+#~ "artist field should be green). If you’ve entered an artist but the "
+#~ "background remains uncolored, click the magnifying glass to match the "
+#~ "name to a MusicBrainz artist. If the artist doesn’t exist yet, you can "
+#~ "create it by selecting “{add_a_new_artist}” from the bottom of the search "
+#~ "results drop-down."
+#~ msgstr ""
+#~ "Vous devez sélectionner un artiste pour chaque piste (la couleur de fond "
+#~ "de chaque champ artiste doit être verte). Si vous avez entré le nom d’un "
+#~ "artiste mais que le fond reste incolore, cliquez sur la loupe pour "
+#~ "chercher un artiste dans MusicBrainz avec ce nom. Si cet artiste n’existe "
+#~ "pas encore, vous pouvez le créer en sélectionnant « {add_a_new_artist} » "
+#~ "au bas de la liste déroulant pour les résultats de recherche.."
+
+#~ msgid ""
+#~ "You must select an artist for the release (the background color of the "
+#~ "artist field should be green). If you’ve entered an artist but the "
+#~ "background remains uncolored, click the magnifying glass to match the "
+#~ "name to a MusicBrainz artist. If the artist doesn’t exist yet, you can "
+#~ "create it by selecting “{add_a_new_artist}” from the bottom of the search "
+#~ "results drop-down."
+#~ msgstr ""
+#~ "Vous devez sélectionner un artiste pour la parution (la couleur de fond "
+#~ "du champ artiste doit être verte). Si vous avez entré le nom d’un artiste "
+#~ "mais que le fond reste incolore, cliquez sur la loupe pour chercher un "
+#~ "artiste dans MusicBrainz avec ce nom. Si cet artiste n’existe pas encore, "
+#~ "vous pouvez le créer en sélectionnant « {add_a_new_artist} » au bas de la "
+#~ "liste déroulant pour les résultats de recherche.."
+
+#~ msgid "appears on:"
+#~ msgstr "apparaît dans :"
+
+#, perl-brace-format
+#~ msgid ""
+#~ "“{id}” is not a valid row ID; the entity might have been merged or "
+#~ "deleted."
+#~ msgstr ""
+#~ "« {id} » n‘est pas un identifiant de ligne valide ; Si il a correspondu a "
+#~ "une entité, celle-ci a été fusionnée ou supprimée."
+
+#~ msgid "Cancelled"
+#~ msgstr "Annulée"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Saisir une URL valide, p. ex. « http://google.com/ »"
+
+#~ msgid "Bio:"
+#~ msgstr "Bio :"
+
+#~ msgid "Create"
+#~ msgstr "Créer"
+
+#~ msgid "Preview:"
+#~ msgstr "Aperçu :"
+
+#~ msgid "Preview"
+#~ msgstr "Aperçu"
+
+#~ msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+#~ msgstr ""
+#~ "La case à cocher ci-dessus ne devrait être utilisée que pour corriger des "
+#~ "erreurs (p. ex. des typos)."
+
+#~ msgid "Please search for the artist you wish to create a new release for:"
+#~ msgstr ""
+#~ "Veuillez chercher l’artiste pour lequel vous souhaitez créer une nouvelle "
+#~ "parution :"
+
+#~ msgid "Track duration comparison"
+#~ msgstr "Comparaison des durée des pistes"
+
+#~ msgid "Disc ID:"
+#~ msgstr "ID de disque :"
+
+#~ msgid ""
+#~ "If you don't see the artist you are looking for, you can still add a new "
+#~ "release. This will allow you to create this artist and a release at the "
+#~ "same time"
+#~ msgstr ""
+#~ "Si vous ne voyez pas l’artiste que vous cherchez, vous pouvez créer une "
+#~ "nouvelle parution. Cela vous permettra de créer l’artiste et la parution "
+#~ "en même temps"
+
+#~ msgid "Create a new collection"
+#~ msgstr "Créer une nouvelle collection"
+
+#~ msgid "Status"
+#~ msgstr "Statut"
+
+#~ msgid "Only the editor who created an edit can cancel it."
+#~ msgstr "Seul l’éditeur qui a créé une modification peut l’annuler."
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "Statut :"
+
+#~ msgid "Closed:"
+#~ msgstr "Fermé : "
+
+#~ msgid "Releases:"
+#~ msgstr "Parutions :"
+
+#~ msgid "Ended"
+#~ msgstr "Fin"
+
+#~ msgid "Filename:"
+#~ msgstr "Nom du fichier :"
+
+#~ msgid "Medium:"
+#~ msgstr "Support :"
+
+#~ msgid "Artist Credits:"
+#~ msgstr "Crédits d’artiste :"
+
+#~ msgid "Relationship:"
+#~ msgstr "Relation :"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "Statut :"
+
+#~ msgid "Catalog number:"
+#~ msgstr "No dans le catalogue :"
+
+#~ msgid "Merge:"
+#~ msgstr "Fusion : "
+
+#~ msgid "Mediums:"
+#~ msgstr "Supports :"
+
+#~ msgid "Relationships:"
+#~ msgstr "Relations : "
+
+#~ msgid "Release Events:"
+#~ msgstr "Événements de parution :"
+
+#~ msgid "Release group:"
+#~ msgstr "Groupe de parution :"
+
+#~ msgid "Old:"
+#~ msgstr "Ancien :"
+
+#~ msgid "Added"
+#~ msgstr "Ajouté"
+
+#~ msgid "Removed"
+#~ msgstr "Enlevé"
+
+#~ msgid "Edited"
+#~ msgstr "Modifié"
+
+#~ msgid "Alias:"
+#~ msgstr "Alias :"
+
+#~ msgid "Track:"
+#~ msgstr "Piste :"
+
+#~ msgid "Candidate:"
+#~ msgstr "Candidat :"
+
+#~ msgid "Proposer:"
+#~ msgstr "Proposeur :"
+
+#~ msgid "1st seconder:"
+#~ msgstr "1er appuyeur :"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "2ème appuyeur :"
+
+#~ msgid "Votes for:"
+#~ msgstr "Votes pour :"
+
+#~ msgid "Votes against:"
+#~ msgstr "Votes contre :"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Statut :"
+
+#~ msgid "Seconder 1"
+#~ msgstr "1er appuyeur"
+
+#~ msgid "Seconder 2"
+#~ msgstr "2ème appuyeur"
+
+#~ msgid "Added:"
+#~ msgstr "Ajouté :"
+
+#~ msgid "Last modified:"
+#~ msgstr "Modifier en dernier :"
+
+#~ msgid "Lookup count:"
+#~ msgstr "Nombre de recherche : "
+
+#~ msgid "Modify count:"
+#~ msgstr "Nombre de modifications :"
+
+#~ msgid "Coordinates:"
+#~ msgstr "Coordonnées :"
+
+#~ msgid "IPI code:"
+#~ msgstr "Code IPI :"
+
+#~ msgid "ISNI code:"
+#~ msgstr "Code ISNI :"
+
+#~ msgid "Error:"
+#~ msgid_plural "Errors:"
+#~ msgstr[0] "Erreur :"
+#~ msgstr[1] "Erreurs : "
+#~ msgstr[2] "Erreurs : "
+
+#~ msgid ""
+#~ "No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
+#~ "Either it’s incorrect, it was for an entity that has since been deleted, "
+#~ "or it is an ID for something else than an entity (for example, a "
+#~ "{rel_type_table|relationship type})."
+#~ msgstr ""
+#~ "Aucune {entity_doc|entité} MusicBrainz ne correspond au {mbid_doc|MBID} "
+#~ "{mbid}. Soit il est erroné, soit l’entité correspondante a été supprimée, "
+#~ "ou encore c’est un identifiant pour autre chose qu’une entité (par "
+#~ "exemple, un {rel_type_table|type de relation})."
+
+#~ msgid ""
+#~ "The relationship attribute type “{type}” can’t be deleted because it’s "
+#~ "still in use."
+#~ msgstr ""
+#~ "Le type d’attribut de relation « {type} » ne peut pas être effacé car il "
+#~ "est encore utilisé."
+
+#~ msgid "ID:"
+#~ msgstr "ID :"
+
+#~ msgid "Possible values:"
+#~ msgstr "Valeurs possibles :"
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "Créer un nouvel attribut de relation"
+
+#~ msgid ""
+#~ "The relationship type \"{type}\" can’t be deleted because it’s still in "
+#~ "use."
+#~ msgstr ""
+#~ "Le type de relation « {type} » ne peut pas être effacé car il est encore "
+#~ "utilisé."
+
+#~ msgid "Create a new {type0}-{type1} relationship"
+#~ msgstr "Créer une nouvelle relation {type0}-{type1}"
+
+#~ msgid ""
+#~ "This report shows disc IDs indicating a total duration much longer than "
+#~ "what a standard CD allows (at least 88 minutes for a CD, or 30 minutes "
+#~ "for a mini-CD). This usually means a disc ID was created for the wrong "
+#~ "format (SACD) or with a buggy tool."
+#~ msgstr ""
+#~ "Ce rapport montre les ID de disque dont la durée totale est beaucoup plus "
+#~ "longue que ce qu’un CD standard permet (au moins 88 minutes pour un CD, "
+#~ "et 30 minutes pour un mini-CD). Cela signifie généralement qu’un ID de "
+#~ "disque a été créé pour le mauvais format (SACD) et/ou avec un outil bogué."
+
+#~ msgid ""
+#~ "This report shows disc IDs attached to a release but obviously not "
+#~ "applied because at least one track duration is unknown on the release. "
+#~ "The report is also restricted to mediums where only one disc ID is "
+#~ "attached, so it is highly likely that the disc ID can be applied without "
+#~ "any worries. Do make sure though that no existing durations clash with "
+#~ "the disc ID, or that any clashes are clear mistakes."
+#~ msgstr ""
+#~ "Ce rapport montre les ID de disque attaché à une parution mais qui n’y "
+#~ "sont pas appliqués car au moins une durée de piste est inconnue pour "
+#~ "cette parution. Ce rapport est restreint aux supports où un seul ID de "
+#~ "disque est attaché, donc il est plutôt vraisemblable que l’ID de disque "
+#~ "peut être appliqué sans dommages. Assurez vous tout de même qu’aucune "
+#~ "durée n’est en conflit avec l’ID de disque, ou sinon que ces conflits "
+#~ "sont indiscutablement des erreurs."
+
+#~ msgid ""
+#~ "This report lists release groups with very similar names and artists. If "
+#~ "the releases in the release groups should be grouped together (see the "
+#~ "{url|guidelines}), they can be merged. If they shouldn't be grouped "
+#~ "together but they can be distinguished by the release group types, e.g. "
+#~ "when an artist has an album and single with the same name, then there is "
+#~ "usually no need to change anything. In other cases, a disambiguation "
+#~ "comment may be helpful."
+#~ msgstr ""
+#~ "Ce rapport liste des groupes de parution ayant des noms et des artistes "
+#~ "très semblables. Si les parutions dans les groupes de parution devraient "
+#~ "être regroupées ( voir les {url|directives}), elles peuvent être "
+#~ "fusionnées. Si elles ne devraient pas être regroupées mais qu’elles "
+#~ "peuvent être distinguées par leur type de groupe de parution, p. ex. si "
+#~ "un artiste à un album et un single portant le même nom, il n’y a "
+#~ "habituellement rien à changer. Dans les autres cas, un commentaire de "
+#~ "désambiguïsation pourrait être utile."
+
+#~ msgid ""
+#~ "This report shows instruments without an image relationship to "
+#~ "StaticBrainz (i.e. without an IROMBOOK image)."
+#~ msgstr ""
+#~ "Ce rapport liste les instruments sans relation d’image à StaticBrainz (c.-"
+#~ "à.-d.. sans image IROMBOOOK)."
+
+#~ msgid ""
+#~ "This report lists all releases with gaps in the medium numbers (e.g. "
+#~ "there is a medium 1 and 3 but no medium 2)."
+#~ msgstr ""
+#~ "Ce rapport liste toutes les parutions qui présentent des trous dans les "
+#~ "nombres des supports (p. ex. il y a un support 1 et 3 mais pas de support "
+#~ "2)."
+
+#~ msgid ""
+#~ "This report shows recordings with relationships using dates in the "
+#~ "future. Those are probably typos (e.g. 2109 instead of 2019)."
+#~ msgstr ""
+#~ "Ce rapport liste les enregistrements qui ont des relations utilisant "
+#~ "uniquement des dates du futur. Ce sont généralement des fautes de frappe "
+#~ "(p. ex. 2109 au lieu de 2019)."
+
+#~ msgid ""
+#~ "This report shows releases that have relationships that only apply to "
+#~ "digital media releases (download/streaming), but have media whose format "
+#~ "is not “Digital Media”. Generally, these should be moved to the "
+#~ "appropriate digital media release. If one doesn’t exist yet, feel free to "
+#~ "create it."
+#~ msgstr ""
+#~ "Ce rapport montre les parutions avec des relations qui ne s’appliquent "
+#~ "qu’aux supports de parution en ligne (téléchargement / diffusion en "
+#~ "flux), mais dont au moins un support n’est pas en ligne. Généralement, "
+#~ "ces liens doivent être déplacés vers la parution en ligne appropriée. Si "
+#~ "aucune n’existe, n’hésitez pas à en ajouter une."
+
+#~ msgid ""
+#~ "This report shows releases that have mail order relationships (which by "
+#~ "definition only apply to physical media releases), but only have media "
+#~ "whose format is “Digital Media”. Generally, these should be moved to the "
+#~ "appropriate physical release. If one doesn’t exist yet, feel free to "
+#~ "create it."
+#~ msgstr ""
+#~ "Ce rapport montre les parutions qui ont un lien d’achat par "
+#~ "correspondance (qui par définition ne s’applique qu’aux parutions sur "
+#~ "support physique), mais qui n’ont que des supports de type “Support "
+#~ "numérique”. Généralement, ces liens doivent être déplacés vers la "
+#~ "parution sur support physique appropriée. Si aucune n’existe, n’hésitez "
+#~ "pas à en ajouter une."
+
+#~ msgid ""
+#~ "This report aims to identify releases where track names include their own "
+#~ "track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). "
+#~ "Notice that sometimes this is justified and correct, don't automatically "
+#~ "assume it is a mistake! If you confirm it is a mistake, please correct it."
+#~ msgstr ""
+#~ "Ce rapport tend a identifier les parutions dont les noms de piste inclus "
+#~ "leur propre numéro de piste, p. ex. « 1) Un nom » (au lieu de juste « Un "
+#~ "nom »). Veuillez prendre note que cela est parfois justifié et correct. "
+#~ "Ne pas assumer automatiquement que cela est faux ! Si vous confirmez que "
+#~ "cela est faux, veuillez le corriger."
+
+#~ msgid ""
+#~ "This report lists all releases where the track numbers are not continuous "
+#~ "(e.g. there is no \"track 2\"), or with duplicated track numbers (e.g. "
+#~ "there are two \"track 4\"s)."
+#~ msgstr ""
+#~ "Ce rapport liste toutes les parutions pour lesquelles les numéros de "
+#~ "piste ne sont pas continus (p. ex. il n’y a pas de « piste 2 »), ou avec "
+#~ "des pistes en double (par exemple il y a deux « piste 4 »)."
+
+#~ msgid "Location"
+#~ msgstr "Localisation"
+
+#~ msgid "Location:"
+#~ msgstr "Localisation :"
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "Abonnez-moi automatiquement aux artistes que je crée."
+
+#~ msgid "Automatically subscribe me to labels I create."
+#~ msgstr "Abonnez-moi automatiquement aux labels que je crée."
+
+#~ msgid "Automatically subscribe me to series I create."
+#~ msgstr "Abonnez-moi automatiquement aux séries que je crée."
+
+#~ msgid "Old"
+#~ msgstr "Ancien"
+
+#~ msgid "New"
+#~ msgstr "Nouveau"
+
+#~ msgid ""
+#~ "This will enter additional edits to change each specific credit to use "
+#~ "the new name. Only use this if you are sure the existing credits are "
+#~ "incorrect (e.g. for typos)."
+#~ msgstr ""
+#~ "Ceci va entrer des modifications complémentaires pour que chaque crédit "
+#~ "d’artiste utilise le nouveau nom. N’utilisez cette option que si vous "
+#~ "êtes sûr(e) que les crédits existants sont incorrects (p. ex. avec une "
+#~ "faute de frappe)."
+
+#~ msgid "Create collection"
+#~ msgstr "Créer une collection"
+
+#~ msgid "Delete Note"
+#~ msgstr "Supprimer la note"
+
+#~ msgid "This artist credit has {edit_search|pending edits}."
+#~ msgstr "Ce crédit d’artiste a des {edit_search|modifications en attente}."
+
+#~ msgid "This artist credit has pending edits."
+#~ msgstr "Ce crédit d’artiste a des modifications en attente."
+
+#~ msgid "Artist credit:"
+#~ msgstr "Crédits :"
+
+#~ msgid "Ended:"
+#~ msgstr "Terminé le : "
+
+#~ msgid "This track hasn’t been created yet."
+#~ msgstr "Cette piste n’a pas encore été créée."
+
+#~ msgid "This entity has {edits_link|pending edits}."
+#~ msgstr "Cette entité a des {edits_link|modifications en attente}."
+
+#~ msgid "This entity has pending edits."
+#~ msgstr "Cette entité a des modifications en attente."
+
+#~ msgid "This relationship has {edit_search|pending edits}."
+#~ msgstr "Cette relation a des {edit_search|modifications en attente}."
+
+#~ msgid "This relationship has pending edits."
+#~ msgstr "Cette relation a des modifications en attente."
+
+#~ msgid "Release events:"
+#~ msgstr "Événements de parution :"
+
+#~ msgid ""
+#~ "Warning: This relationship has pending edits. {show|Click here} to view "
+#~ "these edits and make sure they do not conflict with your own."
+#~ msgstr ""
+#~ "Avertissement : cette relation a des modifications en attente. {show|"
+#~ "Cliquez ici} pour voir ces modifications et vous assurez qu’elles "
+#~ "n’entrent pas en conflit avec les vôtres."
+
+#~ msgid ""
+#~ "This will create a new work for each checked recording that has no work "
+#~ "already. The work names will be the same as their respective recording."
+#~ msgstr ""
+#~ "Ceci créera une nouvelle œuvre pour chaque enregistrement coché qui n’en "
+#~ "a pas déjà. Les noms d’œuvre seront identique aux enregistrements."
+
+#~ msgid ""
+#~ "Only use this option after you’ve tried searching for the work(s) you "
+#~ "want to create, and are certain they do not already exist on MusicBrainz."
+#~ msgstr ""
+#~ "N’utiliser cette fonction qu’après avoir cherché l’œuvre(s) que vous "
+#~ "voulez créer et que vous êtes certain quelle(s) n’existe(nt) pas déjà sur "
+#~ "MusicBrainz"
+
+#~ msgid "Batch-create new works"
+#~ msgstr "Création par lot de nouvelles œuvres"
+
+#~ msgid "Work Type:"
+#~ msgstr "Type d’œuvre :"
+
+#~ msgid ""
+#~ "Banner message editors are users who can set a message that is shown in a "
+#~ "banner on all pages, e.g. to warn users about upcoming site maintenance."
+#~ msgstr ""
+#~ "Les éditeurs de messages de bannière sont des utilisateurs qui peuvent "
+#~ "définir un message qui est montré en bannière dans toutes les pages, p. "
+#~ "ex. pour avertir les utilisateurs d’une maintenance du site à venir."
+
+#~ msgid "Email:"
+#~ msgstr "Courriel :"
+
+#~ msgid "Member since:"
+#~ msgstr "Membre depuis :"
+
+#~ msgid "Last login:"
+#~ msgstr "Dernière connexion :"
+
+#~ msgid "Subscribers:"
+#~ msgstr "Abonnés :"
+
+#~ msgid "Languages:"
+#~ msgstr "Langues : "
+
+#~ msgid "This user has not created any entities."
+#~ msgstr "Cet utilisateur n’a créé aucune entité."
+
+#~ msgctxt "tags"
+#~ msgid "Deleted"
+#~ msgstr "Supprimés"
+
+#~ msgctxt "ratings"
+#~ msgid "Deleted"
+#~ msgstr "Supprimées"
+
+#~ msgid ""
+#~ "This edit failed because the data it was changing was modified after this "
+#~ "edit was created. This may happen when the same edit is entered in twice; "
+#~ "one will pass but the other will fail."
+#~ msgstr ""
+#~ "La modification a échoué car les données qu’elle modifiait ont été "
+#~ "modifiées après que cette modification soit créée. Cela peut arriver si "
+#~ "une modification est saisie deux fois ; une réussira mais la suivante "
+#~ "échouera."
#~ msgid "Artist {n}:"
#~ msgstr "Artiste {n} :"
diff --git a/po/mb_server.gl.po b/po/mb_server.gl.po
index abf4328cb02..2acd6956cbd 100644
--- a/po/mb_server.gl.po
+++ b/po/mb_server.gl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:56+0000\n"
"Last-Translator: Anonymous {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7438,7 +7434,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7458,15 +7454,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7476,8 +7463,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7486,21 +7474,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7538,7 +7518,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7577,15 +7557,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7678,7 +7658,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7693,20 +7673,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7877,7 +7847,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7923,7 +7893,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8034,6 +8004,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8078,26 +8049,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8109,13 +8064,6 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8124,22 +8072,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr ""
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8264,7 +8206,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8482,7 +8424,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8507,7 +8449,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8532,7 +8475,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8541,15 +8484,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8572,51 +8515,41 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8636,12 +8569,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8758,37 +8685,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8800,17 +8703,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8834,19 +8740,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8905,29 +8811,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8940,17 +8840,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8958,7 +8858,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -8999,14 +8899,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9031,11 +8923,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9061,25 +8948,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9101,6 +8973,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9113,7 +8986,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9226,7 +9100,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9245,8 +9119,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9288,20 +9162,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9312,11 +9172,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9326,8 +9181,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9343,17 +9198,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9392,28 +9255,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9421,11 +9280,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9442,47 +9303,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10166,7 +9999,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10318,7 +10151,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10485,39 +10318,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10633,11 +10460,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10690,10 +10517,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10706,7 +10529,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10737,27 +10560,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10765,21 +10588,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Puntuación"
@@ -10918,7 +10733,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11017,13 +10832,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11157,7 +10966,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11371,7 +11180,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11379,11 +11188,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11395,6 +11199,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11428,16 +11233,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11457,7 +11258,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11531,7 +11332,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11550,7 +11351,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11659,8 +11460,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11866,8 +11667,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11877,10 +11678,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11914,7 +11715,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11923,7 +11724,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12203,7 +12004,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12283,7 +12084,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12410,8 +12211,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12582,13 +12383,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12766,7 +12567,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12790,8 +12591,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13010,20 +12810,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13102,9 +12888,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13113,9 +12899,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13270,6 +13056,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13279,7 +13069,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13290,7 +13080,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13300,9 +13090,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13338,7 +13129,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13422,7 +13213,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13443,42 +13234,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13529,15 +13321,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13590,10 +13382,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13641,7 +13435,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13665,33 +13459,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13709,7 +13503,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13718,32 +13512,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13753,7 +13542,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13791,11 +13586,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13896,15 +13691,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14015,7 +13810,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14310,31 +14105,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14355,7 +14150,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14412,8 +14208,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14503,113 +14299,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14656,53 +14452,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14724,11 +14520,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14763,11 +14559,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14829,10 +14625,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15167,8 +14960,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15374,14 +15167,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15390,7 +15183,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15442,34 +15235,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15496,15 +15289,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15745,10 +15534,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15810,23 +15595,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15928,7 +15713,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16155,10 +15941,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16200,191 +15982,183 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
msgstr ""
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16631,7 +16405,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16645,7 +16419,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16869,3 +16643,6 @@ msgid ""
"ISWCs. Please make sure they are indeed the same works and you wish to "
"continue with the merge."
msgstr ""
+
+#~ msgid "Artist:"
+#~ msgstr "Artista:"
diff --git a/po/mb_server.he.po b/po/mb_server.he.po
index 98eff834c2d..e6b9dce4a3a 100644
--- a/po/mb_server.he.po
+++ b/po/mb_server.he.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-09-05 14:27+0000\n"
"Last-Translator: reosarevok {discid}
is not a valid disc ID."
msgstr "למרבה הצער, {discid}
אינו מזהה תקליטור תקין."
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7582,11 +7576,11 @@ msgid ""
"Are you sure that you wish to attach the disc ID {discid}
to "
"{format} {pos} of {release} by {artist}?"
msgstr ""
-"האם לצרף מזהה תקליטור {discid}
ל {format} {pos} של {release} על־"
-"ידי {artist}?"
+"האם לצרף מזהה תקליטור {discid}
ל {format} {pos} של {release} "
+"על־ידי {artist}?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7606,15 +7600,6 @@ msgstr "משך רצועות מדיה:"
msgid "CD TOC details"
msgstr "פרטי תוכן עניינים תקליטור"
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr "מזהה תקליטור:"
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "פרידיבי:"
@@ -7624,8 +7609,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "רצועה"
@@ -7634,21 +7620,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "סיים"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7688,7 +7666,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7729,15 +7707,15 @@ msgstr "הצגת כל האוספים שלי"
msgid "See all of {editor}'s public collections"
msgstr "הצגת כל האוספים הציבוריים של {editor}"
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr "משתפי פעולה"
@@ -7836,8 +7814,8 @@ msgstr "אישור"
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "יצירת אוסף חדש"
+msgid "Add a new collection"
+msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -7851,20 +7829,10 @@ msgstr "האם להסיר אוסף {collection}?"
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "כינוי"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr "שם מיון"
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr "תאריך התחלה"
@@ -8043,7 +8011,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "דֵּרוּגים"
@@ -8089,7 +8057,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8218,6 +8186,7 @@ msgstr "מינויים"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8280,26 +8249,10 @@ msgid "About to close"
msgstr "אודות הסגירה"
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr "שם מיון"
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "מגדר"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "אזור התחלה"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "אזור סיום"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8311,13 +8264,6 @@ msgstr ""
msgid "Code"
msgstr "קוד"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "כתובת"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8326,22 +8272,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "מצב"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8466,7 +8406,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8686,7 +8626,7 @@ msgid "None"
msgstr "ללא"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr "הצבעות"
@@ -8715,7 +8655,8 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8740,7 +8681,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8749,15 +8690,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8780,24 +8721,15 @@ msgstr "הוספת הערת עריכה"
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "מצב:"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr "פתוח:"
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "סגור:"
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] "{n} הצבעה פֶּה אֶחָד "
@@ -8805,28 +8737,27 @@ msgstr[1] "{n} הצבעות פֶּה אֶחָד"
msgstr[2] "{n} הצבעות פֶּה אֶחָד"
msgstr[3] "{n} הצבעות פֶּה אֶחָד "
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr "עריכת שו\"ת"
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "הוספת הערה"
@@ -8846,12 +8777,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "הוצאות:"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8968,39 +8893,15 @@ msgstr "שדה הביאור ריק."
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr "תאריך התחלה"
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "תאריך סיום"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
-msgstr "הסתיים"
+msgstr ""
#: ../root/edit/details/AddCoverArt.js:39
#: ../root/edit/details/RemoveCoverArt.js:39
@@ -9010,17 +8911,20 @@ msgstr "(ללא)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "שם קובץ:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr "שם קובץ"
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr "מדיה:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "הערה"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -9044,20 +8948,20 @@ msgstr "ISRC {isrc} ל־ {recording}"
msgid "ISWC {iswc} to {work}"
msgstr "ISWC {iswc} ל־ {work}"
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
-msgstr "קוד חברת תקליטים"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
-msgstr "מזכה אמן:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr "מזכה אמן"
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
-msgstr "קשר־גומלין:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddRelationship.js:33
msgid "Link order:"
@@ -9116,30 +9020,24 @@ msgstr "(ללא)"
msgid "(new release group)"
msgstr "(קבוצת הוצאה חדשה)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "מצב:"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "מספר קטלוגי:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "מספר קטלוגי"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9151,17 +9049,17 @@ msgstr "הצגת כל הכינויים"
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr "שפת תמליל"
@@ -9169,7 +9067,7 @@ msgstr "שפת תמליל"
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "איכות נתונים"
@@ -9210,14 +9108,6 @@ msgstr "מזכה אמן"
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr "קודי IPI"
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr "קודי ISNI"
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9242,11 +9132,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr "מזכה אמן"
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "אמן קודם"
@@ -9272,25 +9157,10 @@ msgstr ""
msgid "Deprecated:"
msgstr "הוצא משימוש:"
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr "הערה"
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "מספר קטלוגי"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9314,6 +9184,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr "סוג יצירה"
@@ -9326,8 +9197,9 @@ msgstr "סוג יצירה"
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "מיזוג:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -9439,8 +9311,8 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
-msgstr "מדיה:"
+msgid "Mediums"
+msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
@@ -9458,8 +9330,8 @@ msgstr "מדיה {new} (מדיה חדשה)"
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
"מדיה {new} (עברה ממיקום {old}"
")"
@@ -9503,20 +9375,6 @@ msgstr ""
msgid "CD TOC:"
msgstr "תוכן ענינים תקליטור:"
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "קשרי־גומלין:"
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "מספר קטלוגי"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9527,11 +9385,6 @@ msgstr "מספר רצועה"
msgid "Artist name:"
msgstr "שם אמן:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "קשרי־גומלין ישנים:"
@@ -9541,8 +9394,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9558,16 +9411,24 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "התווסף"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
-msgstr "הוסר"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
-msgstr "נערך"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
@@ -9607,41 +9468,39 @@ msgstr ""
msgid "Change track artists:"
msgstr "שינוי אמן רצועה:"
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "כִּנּוּי:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr "רצועות:"
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "מועמד:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "מועמד"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
-msgstr "מציע:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr "מציע"
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
-msgstr "תומך ראשון:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
-msgstr "תומך שני:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:59
msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "הצבעות בעד:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "הצבעות ל"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "הצבעות נגד:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "הצבעות נגד"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -9657,47 +9516,19 @@ msgid ""
msgstr "סיכום ההצבעה יוצג רק לאחר סיום ההצבעה."
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "מצב:"
+msgid "Status"
+msgstr "מצב"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "הצגת פרטים"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "מועמד"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "מצב"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr "תאריך התחלה"
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr "מציע"
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr "תומך 1"
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr "תומך 2"
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "הצבעות ל"
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "הצבעות נגד"
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr "הצבעה"
@@ -10451,7 +10282,7 @@ msgstr "בְּחִירָת עורך־אוטומטי"
msgid "Privileged User Accounts"
msgstr "חשבונות משתמש מועדפים"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "סטטיסטיקה"
@@ -10603,7 +10434,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "סוגי קשרי־גומלין"
@@ -10770,39 +10601,33 @@ msgstr ""
msgid "Artist information"
msgstr "מידע אמן"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "הוספת הקלטה"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "פיצול לאמנים נפרדים"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "התווסף:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
-msgstr "הסגלת ספירה"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "הוספת מזהה תקליטור להוצאה קיימת"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr "תיפוש תקליטור במסד הנתונים"
@@ -10920,11 +10745,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10977,10 +10802,6 @@ msgctxt "place"
msgid "Closed"
msgstr "סגור"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "קואורדינטות:"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10993,7 +10814,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr "שנת הוצאה ראשונה"
@@ -11025,27 +10846,27 @@ msgstr "הצגת כל תמונות העטיפה"
msgid "No cover art available."
msgstr "תמונות עטיפה לא זמינה."
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "פרטים נוספים"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr "עריכת קשרי־גומלין"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -11053,21 +10874,13 @@ msgstr ""
msgid "Series information"
msgstr "מידע סדרה"
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "קוד IPI:"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "קוד ISNI:"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "רשיון"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "דֵּרוּג"
@@ -11211,7 +11024,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr "למרבה הצער, העמוד אותו חפשתם אינו קיים."
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "הודעת שגיאה:"
@@ -11314,15 +11127,7 @@ msgstr ""
msgid "Request data:"
msgstr "בקשת מידע:"
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] "שגיאה:"
-msgstr[1] "שגיאות:"
-msgstr[2] "שגיאות:"
-msgstr[3] "שגיאות:"
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(אין פרטים זמינים לגבי שגיאה זו)"
@@ -11458,13 +11263,10 @@ msgstr "MBID לא תקין"
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
-"אין {entity_doc|entities} מוזיקבריינז התואמים ל־{mbid_doc|MBID} {mbid}. זה "
-"עשוי להיות שגוי, או שנועד לישות שנמחקה מאז, או שזה מזהה למשהו אחר מאשר לישות "
-"(לדוגמה, {rel_type_table|relationship type})."
#: ../root/mbid/NotFound.js:39
msgid "{mbid} is not a valid {mbid_doc|MBID}."
@@ -11681,20 +11483,14 @@ msgstr "תכונת קשר־גומלין בשימוש"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
-"לא ניתן למחוק סוג תכונת קשר־גומלין \"{type}\" מכיוון שהוא עדיין בשימוש."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:77
msgid "Relationship Attribute"
msgstr "תכונת קשר־גומלין"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11706,6 +11502,7 @@ msgid "Parent attribute"
msgstr "תכונת הורה"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr "ערכים אפשרים"
@@ -11739,17 +11536,13 @@ msgstr ""
msgid "Add child"
msgstr "הוספת צאצא"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "לא נמצאו תכונות קשר־גומלין"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
-msgstr "יצירת תכונה קשר־גומלין חדש"
+msgid "Add a new relationship attribute"
+msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
@@ -11768,7 +11561,7 @@ msgstr "סוגי קשרי־גומלין בשימוש"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11842,8 +11635,8 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
-msgstr "יצירת קשר־גומלין {type0}-{type1} חדש"
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
msgid "Expand all descriptions"
@@ -11861,7 +11654,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11974,8 +11767,8 @@ msgid ""
msgstr "האם להסיר תמונת עטיפה מטה מ־ {release} על־ידי {artist}?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "קבוצת הוצאה על־ידי {artist}"
@@ -12200,8 +11993,8 @@ msgstr "מעני url אמזון שגויים"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -12211,10 +12004,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12251,7 +12044,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12260,7 +12053,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr "הוצאות עם מספר קטלוגי דומה לקוד חברת תקליטים"
@@ -12502,8 +12295,8 @@ msgid ""
"This report lists labels which have multiple relationships to the same "
"entity using the same relationship type."
msgstr ""
-"הדוח מפרט חברות תקליטים עם קשרי־גומלין מרובים לאותה הישות המשתמשים בסוג קשר־"
-"גומלין זהה."
+"הדוח מפרט חברות תקליטים עם קשרי־גומלין מרובים לאותה הישות המשתמשים בסוג "
+"קשר־גומלין זהה."
#: ../root/report/DuplicateRelationshipsLabels.js:30
#: ../root/report/ReportsIndex.js:182
@@ -12528,8 +12321,8 @@ msgid ""
"This report lists release groups which have multiple relationships to the "
"same entity using the same relationship type."
msgstr ""
-"הדוח מפרט קבוצות הוצאה עם קשרי־גומלין מרובים לאותה הישות המשתמשים בסוג קשר־"
-"גומלין זהה."
+"הדוח מפרט קבוצות הוצאה עם קשרי־גומלין מרובים לאותה הישות המשתמשים בסוג "
+"קשר־גומלין זהה."
#: ../root/report/DuplicateRelationshipsReleaseGroups.js:30
#: ../root/report/ReportsIndex.js:218
@@ -12568,15 +12361,10 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
-"הדוח מפרט קבוצות הוצאה עם שמות ואמנים דומים מאוד. אם יש לקבץ את ההוצאות "
-"בקבוצות הוצאה אחת (ראה {url|guidelines}), ניתן למזג אותן. אם אין לקבץ אותם "
-"יחד, אך ניתן להבחין ביניהם לפי סוגי קבוצות הוצאה, למשל. כאשר לאמן יש אלבום "
-"וחַדְשִׁיר בעלי אותו שם, לרוב אין צורך לשנות דבר. במקרים אחרים, הערת הבהרה עשויה "
-"להיות מועילה."
#: ../root/report/DuplicateReleaseGroups.js:52
#: ../root/report/ReportsIndex.js:227
@@ -12654,7 +12442,7 @@ msgstr "הצגת תוצאות מתוך הישויות המנויות שלי."
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12788,11 +12576,9 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
-"הדוח מפרט את כל ההוצאות עם פערים במספרם מדיה (כלומר, יש מדיה 1 ו־ 3 אך אין "
-"מדיה 2)."
#: ../root/report/MediumsWithSequenceIssues.js:30
msgid "Releases with medium number issues"
@@ -12982,13 +12768,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr "הקלטות עם קשרי־גומלין הוצאה ראשונה"
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -13174,7 +12960,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -13198,8 +12984,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13420,20 +13205,6 @@ msgstr "מעני url"
msgid "Wikidata URLs linked to multiple entities"
msgstr "מעני url ויקיפדיה מקושרים להוצאות מרובות ישויות"
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRC"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr "ISWCs"
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13517,9 +13288,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13528,12 +13299,10 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
-"הדוח מפרט את כל ההוצאות שבהן מספרי הרצועות אינם רציפים (כלומר, אין \"רצועה "
-"2\"), או עם מספרי רצועות כפולים (כלומר, קיימים שתי \"רצועה 4\")."
#: ../root/report/TracksWithSequenceIssues.js:31
msgid "Releases with track number issues"
@@ -13687,6 +13456,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "מספר קטלוגי"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr "חפוש תג"
@@ -13696,7 +13469,7 @@ msgid "Other lookups"
msgstr "חיפושים אחרים"
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13707,7 +13480,7 @@ msgstr "התחל"
msgid "Alternatively, you may {uri|add a new area}."
msgstr "לחלופין ניתן {uri|add a new area}."
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "לחלופין ניתן {uri|add a new artist}."
@@ -13717,11 +13490,12 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "מיקום"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13755,7 +13529,7 @@ msgstr "לחלופין ניתן {uri|add a new recording}."
msgid "Alternatively, you may {uri|add a new release group}."
msgstr "לחלופין ניתן {uri|add a new release group}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr "לחלופין ניתן {uri|add a new release}."
@@ -13847,7 +13621,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr "למרבה הצער, השאילתה גדולה מדי."
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr "הסדרה ריקה כרגע."
@@ -13873,42 +13647,43 @@ msgstr ""
"חייבת להיות מחרוזת DNS הופכית מותאמת אישית, כמו ב־ org.example.app://"
"auth,
עבור יישומים מותקנים."
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
-msgstr "מיקום:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "הוספת שפה"
@@ -13961,16 +13736,16 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
-msgstr "רישומו אותי אוטומטית לסדרות שאני יצרתי."
+msgid "Automatically subscribe me to series I add."
+msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
msgid "Your username will be publicly visible."
@@ -14022,12 +13797,14 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
-msgstr "ישן"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "חדש"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -14075,10 +13852,8 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
-"פעולה זו תזין עריכות נוספות לשינוי כל מזכה מסויים לשימוש בשם החדש. נא להשתמש "
-"בזה רק אם אתה בטוח שהמזכים הקיימים שגויים (למשל עבור שגיאות הקלדה)."
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
msgid ""
@@ -14101,33 +13876,33 @@ msgid "Show more artist credits"
msgstr "הצגת יותר זכויות אמן"
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "הצגת יותר..."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "פרטי אוסף"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "לאפשר למשתמשים אחרים לצפות באוסף זה"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "יצירת אוסף"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr "עדכון אוסף"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr "הוספת משתף פעולה"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr "הסרת משתף פעולה"
@@ -14145,7 +13920,7 @@ msgid "Try with indexed search instead."
msgstr "בצוע חיפוש מאונדקס במקום"
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr "הקלדה לחיפוש, או הדבקת קוד MBID"
@@ -14154,32 +13929,27 @@ msgstr "הקלדה לחיפוש, או הדבקת קוד MBID"
msgid "Clear recent items"
msgstr "ניקוי פריטים אחרונים"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr "לא נמצא? נסו שנית באזרת חיפוש ישיר."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr "איטי? חזרה לחיפוש מאונדקס."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr "מופיע ב"
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr "הקלטה עצמאית"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr "{release_group_type} על־ידי {artist}"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr "מבצעים"
@@ -14189,8 +13959,14 @@ msgid "Vote on all edits:"
msgstr "הצבעה לכל העריכות:"
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
-msgstr "מחיקת הערה"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
@@ -14229,11 +14005,11 @@ msgid "Annotation last modified on {date}."
msgstr "באור הוסגל לאחרונה ב {date}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14334,15 +14110,15 @@ msgstr "חיפוש סדרה"
msgid "Search for a work"
msgstr "חיפוש יצירה"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr "על־ידי {artist}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr "{first_list_item} … {last_list_item}"
@@ -14457,8 +14233,8 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
-msgstr "מזכה אמן:"
+msgid "Artist credit"
+msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
msgid "Setlist contains"
@@ -14760,31 +14536,31 @@ msgctxt "plural"
msgid "Series"
msgstr "סדרה"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr "ב־{date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr "ב־{date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr "מ־{date} עד ????"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr "מ־{date} עד עתה"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr "עד {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14805,8 +14581,9 @@ msgid "Began:"
msgstr "החל:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "הסתיים:"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -14862,8 +14639,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14959,18 +14736,18 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
@@ -14979,36 +14756,36 @@ msgstr ""
"קישור למתחם הישן של רזידנט אגויזר. נא לעקוב אחר {ra_url | הקישור שלכם}, "
"ולוודא שהקישור אליו הוא מפנה עדיין נכון, אם כן, הוספו קישור זה במקום."
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr "נא לקשר לפרופיל טוויטר, לא לציוצים."
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr "אתר זה אינו מאפשר קישור ישיר לתמונות שלהם."
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
@@ -15016,19 +14793,19 @@ msgstr ""
"נא לא לקשר ישירות לעמודי “{unwanted_url_pattern}” של הו־סאמפלד. יש לקשר "
"לעמוד לאמן, הרצועה או האלבום המתאימים בהו־סאמפלד."
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr "נא לקשר בין עמודי “{album_url_pattern}” ב־ WhoSampled לקבוצות הוצאה."
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr "נא לקשר בין עמודי האמנים ב־ WhoSampled לאמנים."
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr "נא לקשר בין עמודי רצועה ב־ WhoSampled להקלטות."
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
@@ -15036,42 +14813,42 @@ msgstr ""
"קישור למקטעים מסוימים במאמרי ויקיפדיה אינם אפשריים. נא להסיר את "
"\"{fragment}\" אם עדיין מתאים. נא לעיין ב־ {url | הנחיות}."
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr "רק קישורי חוזי ורשימת השמעה מותרים בהוצאות."
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -15118,53 +14895,53 @@ msgstr "הוספת סדרה חדשה"
msgid "Add a new work"
msgstr "הוספת יצירה חדשה"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr "[שם רצועה חסר]"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr "אמן במוזיקבריינז:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr "מזכה אמן:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr "ביטוי מצורף:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr "הוספת מזכה אמן"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr "העתקת מזכים"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr "הדבקת מזכים"
@@ -15189,11 +14966,11 @@ msgstr ""
"משתמשים אחרים להצביע על העריכה שלכם& — ובכך העריכה תוחל מהר יותר."
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -15230,11 +15007,11 @@ msgstr ""
"לאחרות."
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -15301,10 +15078,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15643,8 +15417,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15856,17 +15630,15 @@ msgstr "הברקוד שהוזן אינו קוד UPC או EMA תקין."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
-"נא להשתמש באפשרות זו רק לאחר חיפוש היצירות אותם רוצים ליצור, ווידוא שהם טרם "
-"קיימות במוזיקבריינז."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:94
@@ -15874,8 +15646,8 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
-msgstr "יצירת יצירות חדשות באצווה"
+msgid "Batch-add new works"
+msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
msgid "Edit Work"
@@ -15926,34 +15698,34 @@ msgstr "הוספת קשר־גומלין ליצירות באצווה"
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr "קשרי רצועה"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "קשרי־גומלין הוצאה"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr "קשרי־גומלין קבוצת הוצאה"
@@ -15980,15 +15752,11 @@ msgstr "רשימת המזכים מטה עשויה להיות חלקית, מאח
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr "הוספת שפה"
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr "הסרת שפה"
@@ -16245,10 +16013,6 @@ msgstr ""
msgid "Duration"
msgstr "משך"
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr "שם קובץ"
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "חפוש תג"
@@ -16312,23 +16076,23 @@ msgstr "מידע מען url"
msgid "URL Details"
msgstr "פרטי מען url"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr "מסר"
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr "הצגת כתובת הדוא\"ל שלי"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr "שליחת עותק לכתובת הדוא\"ל שלי"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -16438,10 +16202,9 @@ msgstr "עורכי הודעת כְּרָזָה"
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
-"עורכי הודעות כרזה הם משתמשים שיכולים להגדיר הודעה המוצגת ככרזה בכל הדפים, "
-"למשל כדי להתריע למשתמשים על תחזוקת אתר קרובה."
#: ../root/user/PrivilegedUsers.js:114
msgid "The following {count} users are banner message editors:"
@@ -16669,10 +16432,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "דוא\"ל:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(מוסתר)"
@@ -16714,191 +16473,185 @@ msgstr ""
msgid "Age:"
msgstr "גיל:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "תאור"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr "{count} ({url|הצגת רשימה})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "עריכות"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "סך כל"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "התקבל"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr "עריכות אוטומטיות"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr "סך כל הוחלו"
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr "הצבעה שלילית"
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr "כשל"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr "הצבעות ({view_url|view})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr "טבלה זו מציגה תקציר של ישויות שהתווספו על ידי עורך זה."
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr "עריכות שהוחלו לאחרונה עשויות להימשך 24 שעות עד הופעתן"
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr "ישויות שנוספו"
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
-msgstr "משתמש זה לא יצר ישויות כלל."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
+msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr "תגים ודירוגים"
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr "תגים שקיבלו הצבעה חיובית"
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr "תגים שקיבלו הצבעה שלילית"
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -17173,7 +16926,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -17187,7 +16940,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr "עריכה זו בוטלה."
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -17439,6 +17192,385 @@ msgstr ""
"אזהרה: לחלק מהיצירות שנבחרו למיזוג יש ISWCs שונה. נא וודא "
"שאכן מדובר באותן היצירות ורק אז להמשיך במיזוג."
+#~ msgid "Address:"
+#~ msgstr "כתובת:"
+
+#~ msgid "Annotation:"
+#~ msgstr "ביאור:"
+
+#~ msgid "Area:"
+#~ msgstr "אזור:"
+
+#~ msgid "Artist:"
+#~ msgstr "אמן:"
+
+#~ msgid "Attributes:"
+#~ msgstr "תכונות:"
+
+#~ msgid "Barcode:"
+#~ msgstr "ברקוד:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "אזור התחלה:"
+
+#~ msgid "Begin date:"
+#~ msgstr "תאריך התחלה:"
+
+#~ msgid "Catalog#:"
+#~ msgstr "קטלוג#:"
+
+#~ msgid "Child order:"
+#~ msgstr "סדר צאצאים:"
+
+#~ msgid "Country:"
+#~ msgstr "מדינה:"
+
+#~ msgid "Created"
+#~ msgstr " נוצר"
+
+#~ msgid "Date:"
+#~ msgstr "תאריך:"
+
+#~ msgid "Delete"
+#~ msgstr "מחיקה"
+
+#~ msgid "Description:"
+#~ msgstr "תאור:"
+
+#~ msgid "Documentation:"
+#~ msgstr "תיעוד:"
+
+#~ msgid "End Area:"
+#~ msgstr "אזור סיום:"
+
+#~ msgid "End date:"
+#~ msgstr "תאריך סיום:"
+
+#~ msgid "Format:"
+#~ msgstr "תבנית:"
+
+#~ msgid "Gender:"
+#~ msgstr "מגדר:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "קודי IPI:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "קודי ISNI:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRCs:"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWCs:"
+
+#~ msgid "Label code:"
+#~ msgstr "קוד חברת תקליטים:"
+
+#~ msgid "Label:"
+#~ msgstr "חברת תקליטים:"
+
+#~ msgid "Language:"
+#~ msgstr "שפה:"
+
+#~ msgid "Length:"
+#~ msgstr "אורך:"
+
+#~ msgid "Merge"
+#~ msgstr "מיזוג"
+
+#~ msgid "Name:"
+#~ msgstr "שם:"
+
+#~ msgid "Note:"
+#~ msgstr "הערה:"
+
+#~ msgid "Parent:"
+#~ msgstr "הורה:"
+
+#~ msgid "Position:"
+#~ msgstr "מיקום:"
+
+#~ msgid "Script:"
+#~ msgstr "תַּסְרִיט:"
+
+#~ msgid "Sort name:"
+#~ msgstr "שם מיון:"
+
+#~ msgid "Status:"
+#~ msgstr "מצב:"
+
+#~ msgid "This entity will be created by this edit."
+#~ msgstr "ישות זו תיווצר על־ידי עריכה זו."
+
+#~ msgid "Title:"
+#~ msgstr "כותרת:"
+
+#~ msgid ""
+#~ "To create a new tracklist, use an existing medium or import a disc from a "
+#~ "CD stub, select the appropriate tab."
+#~ msgstr ""
+#~ "ליצירת רשימת רצועות חדשה, נא להשתמש המדיה קיימת או בייבוא דיסק מספח "
+#~ "תקליטור, נא לבחור בלשונית המתאימה."
+
+#~ msgid "Tracks:"
+#~ msgstr "רצועות:"
+
+#~ msgid "URL:"
+#~ msgstr "מען url:"
+
+#~ msgid "Cancelled"
+#~ msgstr "בוטל"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "נא להזין מען url תקין. לדוגמה: \"http://google.com/\""
+
+#~ msgid "Bio:"
+#~ msgstr "ביו:"
+
+#~ msgid "Create"
+#~ msgstr "יצירה"
+
+#~ msgid "Preview:"
+#~ msgstr "תצוגה מקדימה:"
+
+#~ msgid "Preview"
+#~ msgstr "תצוגה מקדימה"
+
+#~ msgid "Disc ID:"
+#~ msgstr "מזהה תקליטור:"
+
+#~ msgid "Create a new collection"
+#~ msgstr "יצירת אוסף חדש"
+
+#~ msgid "Status"
+#~ msgstr "מצב"
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "מצב:"
+
+#~ msgid "Closed:"
+#~ msgstr "סגור:"
+
+#~ msgid "Releases:"
+#~ msgstr "הוצאות:"
+
+#~ msgid "Ended"
+#~ msgstr "הסתיים"
+
+#~ msgid "Filename:"
+#~ msgstr "שם קובץ:"
+
+#~ msgid "Medium:"
+#~ msgstr "מדיה:"
+
+#~ msgid "Artist Credits:"
+#~ msgstr "מזכה אמן:"
+
+#~ msgid "Relationship:"
+#~ msgstr "קשר־גומלין:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "מצב:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "מספר קטלוגי:"
+
+#~ msgid "Merge:"
+#~ msgstr "מיזוג:"
+
+#~ msgid "Mediums:"
+#~ msgstr "מדיה:"
+
+#~ msgid "Relationships:"
+#~ msgstr "קשרי־גומלין:"
+
+#~ msgid "Added"
+#~ msgstr "התווסף"
+
+#~ msgid "Removed"
+#~ msgstr "הוסר"
+
+#~ msgid "Edited"
+#~ msgstr "נערך"
+
+#~ msgid "Alias:"
+#~ msgstr "כִּנּוּי:"
+
+#~ msgid "Track:"
+#~ msgstr "רצועות:"
+
+#~ msgid "Candidate:"
+#~ msgstr "מועמד:"
+
+#~ msgid "Proposer:"
+#~ msgstr "מציע:"
+
+#~ msgid "1st seconder:"
+#~ msgstr "תומך ראשון:"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "תומך שני:"
+
+#~ msgid "Votes for:"
+#~ msgstr "הצבעות בעד:"
+
+#~ msgid "Votes against:"
+#~ msgstr "הצבעות נגד:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "מצב:"
+
+#~ msgid "Seconder 1"
+#~ msgstr "תומך 1"
+
+#~ msgid "Seconder 2"
+#~ msgstr "תומך 2"
+
+#~ msgid "Added:"
+#~ msgstr "התווסף:"
+
+#~ msgid "Modify count:"
+#~ msgstr "הסגלת ספירה"
+
+#~ msgid "Coordinates:"
+#~ msgstr "קואורדינטות:"
+
+#~ msgid "IPI code:"
+#~ msgstr "קוד IPI:"
+
+#~ msgid "ISNI code:"
+#~ msgstr "קוד ISNI:"
+
+#~ msgid "Error:"
+#~ msgid_plural "Errors:"
+#~ msgstr[0] "שגיאה:"
+#~ msgstr[1] "שגיאות:"
+#~ msgstr[2] "שגיאות:"
+#~ msgstr[3] "שגיאות:"
+
+#~ msgid ""
+#~ "No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
+#~ "Either it’s incorrect, it was for an entity that has since been deleted, "
+#~ "or it is an ID for something else than an entity (for example, a "
+#~ "{rel_type_table|relationship type})."
+#~ msgstr ""
+#~ "אין {entity_doc|entities} מוזיקבריינז התואמים ל־{mbid_doc|MBID} {mbid}. "
+#~ "זה עשוי להיות שגוי, או שנועד לישות שנמחקה מאז, או שזה מזהה למשהו אחר מאשר "
+#~ "לישות (לדוגמה, {rel_type_table|relationship type})."
+
+#~ msgid ""
+#~ "The relationship attribute type “{type}” can’t be deleted because it’s "
+#~ "still in use."
+#~ msgstr ""
+#~ "לא ניתן למחוק סוג תכונת קשר־גומלין \"{type}\" מכיוון שהוא עדיין בשימוש."
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "יצירת תכונה קשר־גומלין חדש"
+
+#~ msgid "Create a new {type0}-{type1} relationship"
+#~ msgstr "יצירת קשר־גומלין {type0}-{type1} חדש"
+
+#~ msgid ""
+#~ "This report lists release groups with very similar names and artists. If "
+#~ "the releases in the release groups should be grouped together (see the "
+#~ "{url|guidelines}), they can be merged. If they shouldn't be grouped "
+#~ "together but they can be distinguished by the release group types, e.g. "
+#~ "when an artist has an album and single with the same name, then there is "
+#~ "usually no need to change anything. In other cases, a disambiguation "
+#~ "comment may be helpful."
+#~ msgstr ""
+#~ "הדוח מפרט קבוצות הוצאה עם שמות ואמנים דומים מאוד. אם יש לקבץ את ההוצאות "
+#~ "בקבוצות הוצאה אחת (ראה {url|guidelines}), ניתן למזג אותן. אם אין לקבץ "
+#~ "אותם יחד, אך ניתן להבחין ביניהם לפי סוגי קבוצות הוצאה, למשל. כאשר לאמן יש "
+#~ "אלבום וחַדְשִׁיר בעלי אותו שם, לרוב אין צורך לשנות דבר. במקרים אחרים, הערת "
+#~ "הבהרה עשויה להיות מועילה."
+
+#~ msgid ""
+#~ "This report lists all releases with gaps in the medium numbers (e.g. "
+#~ "there is a medium 1 and 3 but no medium 2)."
+#~ msgstr ""
+#~ "הדוח מפרט את כל ההוצאות עם פערים במספרם מדיה (כלומר, יש מדיה 1 ו־ 3 אך "
+#~ "אין מדיה 2)."
+
+#~ msgid ""
+#~ "This report lists all releases where the track numbers are not continuous "
+#~ "(e.g. there is no \"track 2\"), or with duplicated track numbers (e.g. "
+#~ "there are two \"track 4\"s)."
+#~ msgstr ""
+#~ "הדוח מפרט את כל ההוצאות שבהן מספרי הרצועות אינם רציפים (כלומר, אין "
+#~ "\"רצועה 2\"), או עם מספרי רצועות כפולים (כלומר, קיימים שתי \"רצועה 4\")."
+
+#~ msgid "Location"
+#~ msgstr "מיקום"
+
+#~ msgid "Location:"
+#~ msgstr "מיקום:"
+
+#~ msgid "Automatically subscribe me to series I create."
+#~ msgstr "רישומו אותי אוטומטית לסדרות שאני יצרתי."
+
+#~ msgid "Old"
+#~ msgstr "ישן"
+
+#~ msgid "New"
+#~ msgstr "חדש"
+
+#~ msgid ""
+#~ "This will enter additional edits to change each specific credit to use "
+#~ "the new name. Only use this if you are sure the existing credits are "
+#~ "incorrect (e.g. for typos)."
+#~ msgstr ""
+#~ "פעולה זו תזין עריכות נוספות לשינוי כל מזכה מסויים לשימוש בשם החדש. נא "
+#~ "להשתמש בזה רק אם אתה בטוח שהמזכים הקיימים שגויים (למשל עבור שגיאות הקלדה)."
+
+#~ msgid "Create collection"
+#~ msgstr "יצירת אוסף"
+
+#~ msgid "Delete Note"
+#~ msgstr "מחיקת הערה"
+
+#~ msgid "Artist credit:"
+#~ msgstr "מזכה אמן:"
+
+#~ msgid "Ended:"
+#~ msgstr "הסתיים:"
+
+#~ msgid ""
+#~ "Only use this option after you’ve tried searching for the work(s) you "
+#~ "want to create, and are certain they do not already exist on MusicBrainz."
+#~ msgstr ""
+#~ "נא להשתמש באפשרות זו רק לאחר חיפוש היצירות אותם רוצים ליצור, ווידוא שהם "
+#~ "טרם קיימות במוזיקבריינז."
+
+#~ msgid "Batch-create new works"
+#~ msgstr "יצירת יצירות חדשות באצווה"
+
+#~ msgid ""
+#~ "Banner message editors are users who can set a message that is shown in a "
+#~ "banner on all pages, e.g. to warn users about upcoming site maintenance."
+#~ msgstr ""
+#~ "עורכי הודעות כרזה הם משתמשים שיכולים להגדיר הודעה המוצגת ככרזה בכל הדפים, "
+#~ "למשל כדי להתריע למשתמשים על תחזוקת אתר קרובה."
+
+#~ msgid "Email:"
+#~ msgstr "דוא\"ל:"
+
+#~ msgid "This user has not created any entities."
+#~ msgstr "משתמש זה לא יצר ישויות כלל."
+
#~ msgid "Artist {n}:"
#~ msgstr "אמן {n}:"
diff --git a/po/mb_server.hr.po b/po/mb_server.hr.po
index edeff0f0653..8ff64d18094 100644
--- a/po/mb_server.hr.po
+++ b/po/mb_server.hr.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 14:07+0000\n"
"Last-Translator: yvanzo {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7461,7 +7457,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7481,15 +7477,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7499,8 +7486,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "zvučni zapis"
@@ -7509,21 +7497,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7561,7 +7541,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7600,15 +7580,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7701,7 +7681,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7716,20 +7696,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7901,7 +7871,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7947,7 +7917,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8067,6 +8037,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8114,26 +8085,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8145,37 +8100,24 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
#: ../root/components/list/ReleaseList.js:95
#: ../root/edit/details/MergeReleases.js:53
-#: ../root/release_group/ReleaseGroupIndex.js:89
-#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
-msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
+#: ../root/release_group/ReleaseGroupIndex.js:89
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
msgstr ""
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8300,7 +8242,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8518,7 +8460,7 @@ msgid "None"
msgstr "Nijedan"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8545,7 +8487,8 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8570,7 +8513,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8579,15 +8522,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8610,52 +8553,42 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8675,12 +8608,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8797,37 +8724,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8839,17 +8742,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8873,19 +8779,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8944,29 +8850,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8979,17 +8879,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8997,7 +8897,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "Kvaliteta podataka"
@@ -9038,14 +8938,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9070,11 +8962,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9100,25 +8987,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9141,6 +9013,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9153,7 +9026,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9266,7 +9140,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9285,8 +9159,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9328,20 +9202,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9352,11 +9212,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9366,8 +9221,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9383,17 +9238,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9432,28 +9295,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9461,11 +9320,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9482,47 +9343,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10217,7 +10050,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10369,7 +10202,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10536,39 +10369,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10685,11 +10512,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10742,10 +10569,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10758,7 +10581,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10789,27 +10612,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10817,21 +10640,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -10971,7 +10786,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11070,14 +10885,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11211,7 +11019,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11425,7 +11233,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11433,11 +11241,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11449,6 +11252,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11482,16 +11286,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11511,7 +11311,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11585,7 +11385,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11604,7 +11404,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11714,8 +11514,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11921,8 +11721,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11932,10 +11732,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11969,7 +11769,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11978,7 +11778,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12258,7 +12058,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12338,7 +12138,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12465,8 +12265,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12637,13 +12437,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12821,7 +12621,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12845,8 +12645,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13065,20 +12864,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13157,9 +12942,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13168,9 +12953,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13325,6 +13110,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13334,7 +13123,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13345,7 +13134,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13355,9 +13144,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13393,7 +13183,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13477,7 +13267,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13498,42 +13288,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13584,15 +13375,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13645,10 +13436,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13697,7 +13490,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13721,33 +13514,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13765,7 +13558,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13774,32 +13567,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13809,7 +13597,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13847,11 +13641,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13952,15 +13746,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14072,7 +13866,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14369,31 +14163,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14414,7 +14208,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14471,8 +14266,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14562,113 +14357,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14715,53 +14510,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14783,11 +14578,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14822,11 +14617,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14888,10 +14683,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15226,8 +15018,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15435,14 +15227,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15451,7 +15243,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15503,34 +15295,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15557,15 +15349,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15814,10 +15602,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15879,23 +15663,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15997,7 +15781,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16224,10 +16009,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16269,191 +16050,183 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
msgstr ""
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16713,7 +16486,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16727,7 +16500,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16951,3 +16724,9 @@ msgid ""
"ISWCs. Please make sure they are indeed the same works and you wish to "
"continue with the merge."
msgstr ""
+
+#~ msgid "Artist:"
+#~ msgstr "Umjetnik:"
+
+#~ msgid "Merge"
+#~ msgstr "Spoji"
diff --git a/po/mb_server.hu.po b/po/mb_server.hu.po
index 111705650c7..910de1c8929 100644
--- a/po/mb_server.hu.po
+++ b/po/mb_server.hu.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:56+0000\n"
"Last-Translator: Anonymous {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7438,7 +7434,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7458,15 +7454,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7476,8 +7463,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7486,21 +7474,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7538,7 +7518,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7577,15 +7557,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7678,7 +7658,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7693,20 +7673,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7877,7 +7847,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7923,7 +7893,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8034,6 +8004,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8078,26 +8049,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8109,37 +8064,24 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
#: ../root/components/list/ReleaseList.js:95
#: ../root/edit/details/MergeReleases.js:53
-#: ../root/release_group/ReleaseGroupIndex.js:89
-#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
-msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
+#: ../root/release_group/ReleaseGroupIndex.js:89
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
msgstr ""
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8264,7 +8206,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8482,7 +8424,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8507,7 +8449,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8532,7 +8475,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8541,15 +8484,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8572,51 +8515,41 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8636,12 +8569,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8758,37 +8685,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8800,17 +8703,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8834,19 +8740,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8905,29 +8811,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8940,17 +8840,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8958,7 +8858,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -8999,14 +8899,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9031,11 +8923,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9061,25 +8948,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9101,6 +8973,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9113,7 +8986,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9226,7 +9100,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9245,8 +9119,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9288,20 +9162,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9312,11 +9172,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9326,8 +9181,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9343,17 +9198,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9392,28 +9255,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9421,11 +9280,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9442,47 +9303,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10166,7 +9999,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10318,7 +10151,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10485,39 +10318,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10633,11 +10460,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10690,10 +10517,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10706,7 +10529,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10737,27 +10560,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10765,21 +10588,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Értékelés"
@@ -10918,7 +10733,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11017,13 +10832,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11157,7 +10966,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11371,7 +11180,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11379,11 +11188,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11395,6 +11199,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11428,16 +11233,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11457,7 +11258,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11531,7 +11332,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11550,7 +11351,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11659,8 +11460,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11866,8 +11667,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11877,10 +11678,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11914,7 +11715,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11923,7 +11724,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12203,7 +12004,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12283,7 +12084,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12410,8 +12211,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12582,13 +12383,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12766,7 +12567,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12790,8 +12591,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13010,20 +12810,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13102,9 +12888,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13113,9 +12899,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13270,6 +13056,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13279,7 +13069,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13290,7 +13080,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13300,9 +13090,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13338,7 +13129,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13422,7 +13213,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13443,42 +13234,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13529,15 +13321,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13590,10 +13382,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13641,7 +13435,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13665,33 +13459,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13709,7 +13503,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13718,32 +13512,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13753,7 +13542,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13791,11 +13586,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13896,15 +13691,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14015,7 +13810,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14310,31 +14105,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14355,7 +14150,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14412,8 +14208,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14503,113 +14299,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14656,53 +14452,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14724,11 +14520,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14763,11 +14559,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14829,10 +14625,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15167,8 +14960,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15374,14 +15167,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15390,7 +15183,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15442,34 +15235,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15496,15 +15289,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15745,10 +15534,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15810,23 +15595,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15928,7 +15713,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16155,10 +15941,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16200,191 +15982,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Collections"
+msgid "Restrictions"
+msgstr "Gyüjtemény"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16631,7 +16407,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16645,7 +16421,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16869,3 +16645,6 @@ msgid ""
"ISWCs. Please make sure they are indeed the same works and you wish to "
"continue with the merge."
msgstr ""
+
+#~ msgid "Merge"
+#~ msgstr "Összevonás"
diff --git a/po/mb_server.id.po b/po/mb_server.id.po
index 58710d889c2..256e330a427 100644
--- a/po/mb_server.id.po
+++ b/po/mb_server.id.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:56+0000\n"
"Last-Translator: Anonymous {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7417,7 +7413,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7437,15 +7433,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7455,8 +7442,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7465,21 +7453,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7517,7 +7497,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7556,15 +7536,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7657,7 +7637,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7672,20 +7652,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7855,7 +7825,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7901,7 +7871,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8003,6 +7973,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8044,26 +8015,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8075,13 +8030,6 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8089,23 +8037,17 @@ msgstr ""
#: ../root/components/list/ReleaseList.js:95
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
-#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
-msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
msgstr ""
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8230,7 +8172,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8448,7 +8390,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8471,7 +8413,8 @@ msgid "Found {n} edit"
msgid_plural "Found {n} edits"
msgstr[0] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8496,7 +8439,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8505,15 +8448,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8536,50 +8479,40 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8599,12 +8532,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8721,37 +8648,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8763,17 +8666,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8797,19 +8703,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8868,29 +8774,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8903,17 +8803,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8921,7 +8821,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -8962,14 +8862,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -8994,11 +8886,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9024,25 +8911,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9063,6 +8935,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9075,7 +8948,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9188,7 +9062,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9207,8 +9081,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9250,20 +9124,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9274,11 +9134,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9288,8 +9143,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9305,17 +9160,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9354,28 +9217,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9383,11 +9242,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9404,47 +9265,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10117,7 +9950,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10269,7 +10102,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10436,39 +10269,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10583,11 +10410,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10640,10 +10467,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10656,7 +10479,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10687,27 +10510,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10715,21 +10538,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Peringkat"
@@ -10867,7 +10682,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -10966,12 +10781,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11105,7 +10915,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11319,7 +11129,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11327,11 +11137,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11343,6 +11148,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11376,16 +11182,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11405,7 +11207,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11479,7 +11281,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11498,7 +11300,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11606,8 +11408,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11813,8 +11615,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11824,10 +11626,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11861,7 +11663,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11870,7 +11672,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12150,7 +11952,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12230,7 +12032,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12357,8 +12159,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12529,13 +12331,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12713,7 +12515,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12737,8 +12539,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -12957,20 +12758,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13049,9 +12836,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13060,9 +12847,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13217,6 +13004,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13226,7 +13017,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13237,7 +13028,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13247,9 +13038,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13285,7 +13077,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13369,7 +13161,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13390,42 +13182,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13476,15 +13269,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13537,10 +13330,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13587,7 +13382,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13611,33 +13406,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13655,7 +13450,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13664,32 +13459,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13699,7 +13489,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13737,11 +13533,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13842,15 +13638,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -13960,7 +13756,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14253,31 +14049,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14298,7 +14094,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14355,8 +14152,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14446,113 +14243,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14599,53 +14396,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14667,11 +14464,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14706,11 +14503,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14772,10 +14569,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15110,8 +14904,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15315,14 +15109,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15331,7 +15125,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15383,34 +15177,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15437,15 +15231,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15678,10 +15468,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15743,23 +15529,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15861,7 +15647,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16088,10 +15875,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16133,191 +15916,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Collections"
+msgid "Restrictions"
+msgstr "Koleksi"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16551,7 +16328,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16565,7 +16342,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16789,3 +16566,12 @@ msgid ""
"ISWCs. Please make sure they are indeed the same works and you wish to "
"continue with the merge."
msgstr ""
+
+#~ msgid "Artist:"
+#~ msgstr "Artis:"
+
+#~ msgid "Merge"
+#~ msgstr "Gabung"
+
+#~ msgid "Cancelled"
+#~ msgstr "Dibatalkan"
diff --git a/po/mb_server.it.po b/po/mb_server.it.po
index 8aca73d0102..2fd1532893a 100644
--- a/po/mb_server.it.po
+++ b/po/mb_server.it.po
@@ -32,8 +32,8 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
-"PO-Revision-Date: 2023-09-23 15:27+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
+"PO-Revision-Date: 2023-11-12 21:27+0000\n"
"Last-Translator: \"salo.rock\" {discid}
is not a valid disc ID."
msgstr "Spiacenti, {discid}
non è un ID disco valido."
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
-msgstr "Cerca l'artista di cui vuoi creare una nuova pubblicazione:"
+msgid "Please search for the artist you wish to add a new release for:"
+msgstr "Cerca l'artista di cui vuoi aggiungere una nuova pubblicazione:"
#: ../root/cdstub/ImportCDStub.js:100
msgid "Import CD stub"
@@ -8151,7 +8153,7 @@ msgstr ""
"{pos} della pubblicazione {release} di {artist}?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr "Confronto durata tracce"
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -8173,15 +8175,6 @@ msgstr "Durata tracce supporto"
msgid "CD TOC details"
msgstr "Dettagli del CD TOC"
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr "ID disco:"
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "FreeDB:"
@@ -8191,8 +8184,9 @@ msgid "Track details:"
msgstr "Dettagli della traccia:"
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Traccia"
@@ -8201,21 +8195,13 @@ msgid "Start"
msgstr "Inizio"
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Fine"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr "Tempo"
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -8262,12 +8248,12 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
"Se non trovi l'artista che stavi cercando, puoi comunque aggiungere una "
-"nuova pubblicazione. Questo ti permetterà di creare l'artista e la "
-"pubblicazione contemporaneamente."
+"nuova pubblicazione. Questo ti permetterà di aggiungere contemporaneamente "
+"l'artista e la pubblicazione."
#: ../root/cdtoc/SetTracklistDurations.js:46
#: ../root/cdtoc/SetTracklistDurations.js:47
@@ -8308,8 +8294,8 @@ msgstr "Visualizza tutte le tue collezioni"
msgid "See all of {editor}'s public collections"
msgstr "Visualizza tutte le collezioni pubbliche di {editor}"
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
@@ -8318,7 +8304,7 @@ msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr "Collaboratori"
@@ -8425,8 +8411,8 @@ msgstr "Conferma"
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "Crea una nuova collezione"
+msgid "Add a new collection"
+msgstr "Aggiungi una nuova collezione"
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -8434,25 +8420,15 @@ msgid "Remove collection"
msgstr "Rimuovi collezione"
#: ../root/collection/DeleteCollection.js:30
-msgid "Are you sure you want to remove the collection {collection}?"
-msgstr "Sei sicuro di voler rimuovere la collezione {collection}?"
-
-#: ../root/components/Aliases/AliasTable.js:22
-#: ../root/edit/details/AddRemoveAlias.js:57
-#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
-msgid "Alias"
-msgstr "Alias"
-
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr "Nome di ordinamento"
+msgid "Are you sure you want to remove the collection {collection}?"
+msgstr "Sei sicuro di voler rimuovere la collezione {collection}?"
+
+#: ../root/components/Aliases/AliasTable.js:22
+#: ../root/edit/details/AddRemoveAlias.js:57
+#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
+msgid "Alias"
+msgstr "Alias"
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
@@ -8659,7 +8635,7 @@ msgstr "Recensioni"
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Valutazioni"
@@ -8705,7 +8681,7 @@ msgstr "L'ID del tipo di relazione fornito non è valido."
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8825,6 +8801,7 @@ msgstr "Iscrizioni"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr "Iscritti"
@@ -8881,26 +8858,10 @@ msgid "About to close"
msgstr "Prossimo alla chiusura"
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr "Nome di ordinamento"
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Genere"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "Area iniziale"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "Area finale"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8912,13 +8873,6 @@ msgstr "Ruolo"
msgid "Code"
msgstr "Codice"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "Indirizzo"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr "Tipo non specificato"
@@ -8927,22 +8881,16 @@ msgstr "Tipo non specificato"
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr "[supporti mancanti]"
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Status"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr "Autori"
@@ -9078,8 +9026,8 @@ msgid "There was a problem cancelling {edit}."
msgstr "C'è stato un problema nell'annullamento della modifica {edit}."
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
-msgstr "Solo l'editor che ha creato una modifica la può annullare."
+msgid "Only the editor who entered an edit can cancel it."
+msgstr "Solo l'editor che ha inserito una modifica la può annullare."
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
msgid "Error Voting on Edits"
@@ -9317,7 +9265,7 @@ msgid "None"
msgstr "Nessuno"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr "Votazione"
@@ -9344,7 +9292,8 @@ msgstr[0] "Trovata {n} modifica"
msgstr[1] "Trovate almeno {n} modifiche"
msgstr[2] "Trovate almeno {n} modifiche"
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr "Invia voti e note di modifica"
@@ -9377,7 +9326,7 @@ msgstr ""
"motivazione fornita."
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr "visualizza tutti i cambiamenti"
@@ -9388,17 +9337,17 @@ msgstr ""
"Ultima modifica dell'autore della nota ({time}). Motivazione fornita: "
"“{reason}”."
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr "Ultima modifica dell'autore della nota ({time})."
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
"Ultima modifica di un amministratore ({time}). Motivazione fornita: "
"“{reason}”."
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr "Ultima modifica di un amministratore ({time})."
@@ -9426,52 +9375,42 @@ msgstr ""
"Al momento non puoi aggiungere note a questa modifica. ({url|Maggiori "
"informazioni})"
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "Status:"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr "Creata il:"
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "Chiusa:"
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr "Chiusura rapida"
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] "1 voto"
msgstr[1] "{n} voti unanimi"
msgstr[2] "{n} voti unanimi"
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr "Se nessun voto espresso"
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr "Dati di modifica grezzi per questa modifica"
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr "Per maggiori informazioni:"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr "Domande frequenti sui voti"
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr "Domande frequenti sulle modifiche"
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Aggiungi nota"
@@ -9491,12 +9430,6 @@ msgstr "Questo utente è automatizzato."
msgid "bot"
msgstr "bot"
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "Pubblicazioni:"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -9615,39 +9548,15 @@ msgstr "Questa annotazione è vuota."
msgid "Summary"
msgstr "Riepilogo"
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr "Data iniziale"
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "Data finale"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr "Non più attuale"
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
-msgstr "Data finale"
+msgstr "Non più in attività"
#: ../root/edit/details/AddCoverArt.js:39
#: ../root/edit/details/RemoveCoverArt.js:39
@@ -9657,18 +9566,21 @@ msgstr "(nessuno)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Nome file:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr "Nome file"
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr "Supporto:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "Commento:"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
-msgstr "Scaletta"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr "Annullato"
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
msgid "Client:"
@@ -9691,20 +9603,20 @@ msgstr "ISRC {isrc} a {recording}"
msgid "ISWC {iswc} to {work}"
msgstr "ISWC {iswc} a {work}"
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
-msgstr "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
+msgstr "Non più in attività"
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
-msgstr "Accreditamenti artista:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr "Accreditamenti dell'artista"
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
-msgstr "Relazione:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr "Non più attuale"
#: ../root/edit/details/AddRelationship.js:33
msgid "Link order:"
@@ -9764,30 +9676,24 @@ msgstr "(nessuno)"
msgid "(new release group)"
msgstr "(nuovo gruppo di pubblicazioni)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "Status:"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr "Confezione"
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr "Eventi di pubblicazione"
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "Numero di catalogo:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "Numero di catalogo"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9799,17 +9705,17 @@ msgstr "visualizza tutti gli alias"
msgid "Primary for locale"
msgstr "Primario per l'ambiente linguistico"
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
-msgstr "Tipo di ordinamento"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
+msgstr "Non più attuale"
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr "Lingue del testo"
@@ -9817,7 +9723,7 @@ msgstr "Lingue del testo"
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "Qualità dati"
@@ -9860,14 +9766,6 @@ msgstr ""
"Visualizza tutti gli utilizzi dell'accreditamento artista in corso di "
"modifica."
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr "Codici IPI"
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr "Codici ISNI"
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9893,11 +9791,6 @@ msgstr "Vecchia registrazione"
msgid "New recording"
msgstr "Nuova registrazione"
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr "Accreditamenti dell'artista"
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "Vecchio artista"
@@ -9909,6 +9802,8 @@ msgstr "Nuovo artista"
#: ../root/edit/details/EditRecording.js:63
msgid "This edit makes subsecond changes to the recording length"
msgstr ""
+"Questa modifica apporta cambiamenti inferiori al secondo alla durata della "
+"registrazione"
#: ../root/edit/details/EditRelationshipType.js:146
#: ../root/edit/details/historic/EditRelationship.js:44
@@ -9927,25 +9822,10 @@ msgstr ""
msgid "Deprecated:"
msgstr "Obsoleto:"
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr "Nota"
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr "Questa modifica ha cambiato anche gli artisti delle tracce."
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "Numero di catalogo"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9970,6 +9850,7 @@ msgid "Search for the target URL."
msgstr "Cerca l'URL di destinazione."
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr "Tipo di opera"
@@ -9982,8 +9863,9 @@ msgstr "Tipo di opera"
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "Unisci:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr "Unione"
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -10107,8 +9989,8 @@ msgid "New positions:"
msgstr "Nuove posizioni:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
-msgstr "Supporti:"
+msgid "Mediums"
+msgstr "Supporti"
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
@@ -10128,8 +10010,8 @@ msgstr "Supporto {new} (nuovo supporto)"
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
"Supporto {new} (spostato dalla posizione {old})"
@@ -10177,20 +10059,6 @@ msgstr ""
msgid "CD TOC:"
msgstr "CD TOC:"
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "Relazioni:"
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr "Eventi di pubblicazione:"
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Numero di catalogo"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -10201,11 +10069,6 @@ msgstr "Numero di traccia"
msgid "Artist name:"
msgstr "Nome artista:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr "Gruppo di pubblicazioni:"
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "Vecchie relazioni:"
@@ -10215,9 +10078,9 @@ msgid "New relationships:"
msgstr "Nuove relazioni:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
-msgstr "Vecchio:"
+msgctxt "release type and status"
+msgid "Old"
+msgstr "Vecchio"
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
msgid "Type: {type}, status: {status}"
@@ -10232,17 +10095,25 @@ msgid "New Status:"
msgstr "Nuovo status:"
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr "Aggiunto"
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr "Rimosso"
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr "Modificato"
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr "Storico"
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr "Lingua: {language}, sistema di scrittura: {script}"
@@ -10283,41 +10154,39 @@ msgstr ""
msgid "Change track artists:"
msgstr "Cambia artisti tracce:"
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "Alias:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr "Traccia:"
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Candidato:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Candidato"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
-msgstr "Proponente:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr "Proponente"
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
-msgstr "1º sostenitore:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr "1º sostenitore"
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
-msgstr "2º sostenitore:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr "2º sostenitore"
#: ../root/elections/ElectionDetails.js:59
msgid "Total votes"
msgstr "Voti totali"
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "Voti a favore:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "Voti a favore"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "Voti contro:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "Voti contro"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -10334,47 +10203,19 @@ msgstr ""
"Il conteggio dei voti espressi sarà mostrato solo al termine dell'elezione."
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "Status:"
+msgid "Status"
+msgstr "Status"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "Visualizza dettagli"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Candidato"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "Status"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr "Data di inizio"
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr "Proponente"
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr "Sostenitore 1"
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr "Sostenitore 2"
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "Voti a favore"
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "Voti contro"
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr "Vota"
@@ -11142,7 +10983,7 @@ msgstr "Elezioni auto-editor"
msgid "Privileged User Accounts"
msgstr "Account utente con privilegi"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Statistiche"
@@ -11294,7 +11135,7 @@ msgstr "Indice documentazione"
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "Tipi di relazione"
@@ -11461,39 +11302,33 @@ msgstr "Informazioni sull'area"
msgid "Artist information"
msgstr "Informazioni sull'artista"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "Aggiungi registrazione"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "Dividi in artisti separati"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "Aggiunto:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr "Ultima modifica:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
-msgstr "Numero di ricerche:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr "Aggiunto"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
-msgstr "Numero di modifiche:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr "Ultima modifica"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr "Importa come pubblicazione di MusicBrainz"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "Aggiungi ID disco a una pubblicazione esistente"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr "Cerca questo CD nel database"
@@ -11610,11 +11445,11 @@ msgstr "Effettua l'accesso per modificare"
msgid "Event information"
msgstr "Informazioni sull'evento"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr "Data di inizio:"
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr "Data finale:"
@@ -11667,10 +11502,6 @@ msgctxt "place"
msgid "Closed"
msgstr "Chiuse"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "Coordinate:"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr "ListenBrainz"
@@ -11683,7 +11514,7 @@ msgstr "Riproduci su ListenBrainz"
msgid "Recording information"
msgstr "Informazioni sulla registrazione"
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr "Anno di prima pubblicazione"
@@ -11718,27 +11549,27 @@ msgstr "Visualizza tutte le copertine"
msgid "No cover art available."
msgstr "Nessuna copertina disponibile."
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "Dettagli aggiuntivi"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr "Valutazione del gruppo di pubblicazioni"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr "Recensioni del gruppo di pubblicazioni"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr "Collegamenti esterni del gruppo di pubblicazioni"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr "Modifica relazioni"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr "Cambia qualità dei dati"
@@ -11746,21 +11577,13 @@ msgstr "Cambia qualità dei dati"
msgid "Series information"
msgstr "Informazioni sulla serie"
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "Codice IPI:"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "Codice ISNI:"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Licenza"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Valutazione"
@@ -11919,7 +11742,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr "Spiacenti, la pagina che stai cercando non esiste."
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Messaggio di errore: "
@@ -12031,14 +11854,7 @@ msgstr "Lingua dell'interfaccia:"
msgid "Request data:"
msgstr "Richiesta di dati:"
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] "Errore:"
-msgstr[1] "Errori:"
-msgstr[2] "Errori:"
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Nessun dettaglio disponibile riguardo a questo errore)"
@@ -12194,13 +12010,13 @@ msgstr "MBID non valido"
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
"Nessun'{entity_doc|entità} di MusicBrainz corrisponde all'{mbid_doc|MBID} "
"{mbid}. L'MBID potrebbe non essere corretto, appartenere a un'entità che è "
-"stata eliminata o essere l'ID per qualcosa che non è un'entità (per es. un "
+"stata rimossa o essere l'ID per qualcosa che non è un'entità (per es. un "
"{rel_type_table|tipo di relazione})."
#: ../root/mbid/NotFound.js:39
@@ -12434,21 +12250,16 @@ msgstr "Attributo di relazione in uso"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
-"Il tipo di attributo di relazione \"{type}\" non può essere eliminato perché "
-"è ancora in uso."
+"Il tipo di attributo di relazione “{type}” non può essere rimosso perché è "
+"ancora in uso."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:77
msgid "Relationship Attribute"
msgstr "Attributo di relazione"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "ID:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -12460,6 +12271,7 @@ msgid "Parent attribute"
msgstr "Attributo di livello superiore"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr "Valori possibili"
@@ -12496,17 +12308,13 @@ msgstr "nessuno"
msgid "Add child"
msgstr "Aggiungi discendente"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr "Valori possibili:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "Nessun attributo di relazione trovato."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
-msgstr "Crea un nuovo attributo di relazione"
+msgid "Add a new relationship attribute"
+msgstr "Aggiungi un nuovo attributo di relazione"
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
@@ -12527,10 +12335,9 @@ msgstr "Tipo di relazione in uso"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
-"Il tipo di relazione \"{type}\" non può essere eliminato perché è ancora in "
-"uso."
+"Il tipo di relazione “{type}” non può essere rimosso perché è ancora in uso."
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
msgid "This relationship type doesn't allow any attributes."
@@ -12606,8 +12413,8 @@ msgid "{type0}-{type1} relationship types"
msgstr "Tipi di relazione {type0}-{type1}"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
-msgstr "Crea una nuova relazione {type0}-{type1}"
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr "Aggiungi un nuovo tipo di relazione {type0}-{type1}"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
msgid "Expand all descriptions"
@@ -12625,7 +12432,7 @@ msgstr "Nessuna relazione {type0}-{type1} trovata."
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -12750,8 +12557,8 @@ msgstr ""
"Sei sicuro di voler rimuovere la seguente copertina da {release} di {artist}?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "Gruppo di pubblicazioni di {artist}"
@@ -12997,13 +12804,13 @@ msgstr "URL di Amazon non validi"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
"Questo rapporto mostra gli ID disco con una durata totale molto più lunga di "
"quella consentita da un normale CD (almeno 88 minuti per un CD o 30 minuti "
-"per un mini-CD). Solitamente questo significa che un ID disco è stato creato "
-"per il formato sbagliato (SACD) o usando uno strumento con dei bug."
+"per un mini-CD). Solitamente questo significa che un ID disco è stato "
+"generato per il formato sbagliato (SACD) o usando uno strumento con dei bug."
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
msgid "Disc IDs with dubious duration"
@@ -13012,10 +12819,10 @@ msgstr "ID disco con durata dubbia"
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
"Questo rapporto mostra gli ID disco associati a una pubblicazione ma "
@@ -13067,7 +12874,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr "Pubblicazioni con numeri di catalogo che sembrano ISRC"
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -13083,7 +12890,7 @@ msgstr ""
"dell'etichetta per vedere se corrispondono) rimuovilo o, ancora meglio, "
"cerca di trovare il vero numero di catalogo."
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr "Pubblicazioni con numeri di catalogo che sembrano Label Code"
@@ -13097,8 +12904,8 @@ msgid ""
msgstr ""
"Questo rapporto elenca gli artisti che hanno relazioni di collaborazione ma "
"nessuna relazione con URL. Se la collaborazione possiede un proprio nome "
-"indipendente, non fare nulla. Se invece è nel formato \"X con Y\" o \"X & Y"
-"\", dovresti probabilmente dividerla. Controlla {how_to_split_artists|come "
+"indipendente, non fare nulla. Se invece è nel formato \"X con Y\" o \"X & "
+"Y\", dovresti probabilmente dividerla. Controlla {how_to_split_artists|come "
"dividere gli artisti}."
#: ../root/report/CollaborationRelationships.js:42
@@ -13422,18 +13229,17 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
"Questo rapporto elenca i gruppi di pubblicazioni con titoli e artisti molto "
-"simili. Se le pubblicazioni nei gruppi di pubblicazioni dovrebbero essere "
-"raggruppate insieme (consulta le {url|linee guida}), ti chiediamo di unirli. "
-"Se non dovrebbero essere raggruppate insieme ma possono essere distinte per "
-"il tipo di gruppo di pubblicazioni, per es. quando un artista ha un album e "
-"un singolo con lo stesso nome, non dovrebbe esserci bisogno di modificare "
-"niente. Negli altri casi, un commento di disambiguazione potrebbe essere di "
-"aiuto."
+"simili. Se le pubblicazioni nei gruppi di pubblicazioni vanno raggruppate "
+"insieme (consulta le {url|linee guida}), ti chiediamo di unirli. Se non "
+"vanno raggruppate insieme ma possono essere distinte attraverso il tipo di "
+"gruppo di pubblicazioni, per esempio se un artista ha un album e un singolo "
+"con lo stesso nome, di solito non c'è bisogno di modificare nulla. Negli "
+"altri casi, un commento di disambiguazione potrebbe essere di aiuto."
#: ../root/report/DuplicateReleaseGroups.js:52
#: ../root/report/ReportsIndex.js:227
@@ -13533,7 +13339,7 @@ msgstr "Mostra solo i risultati relativi ad entità a cui sono iscritto."
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
"Questo rapporto mostra gli strumenti senza una relazione immagine con "
"StaticBrainz (cioè senza un'immagine di IROMBOOK)."
@@ -13698,12 +13504,12 @@ msgstr "Pubblicazioni con supporti intitolati come la loro posizione"
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
"Questo rapporto elenca tutte le pubblicazioni con delle lacune nella "
-"numerazione dei supporti (es. c'è un \"supporto 1\" e un \"supporto 3\" ma "
-"nessun \"supporto 2\")."
+"numerazione dei supporti (per esempio, con un \"supporto 1\" e un \"supporto "
+"3\" ma nessun \"supporto 2\")."
#: ../root/report/MediumsWithSequenceIssues.js:30
msgid "Releases with medium number issues"
@@ -13936,15 +13742,15 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr "Registrazioni con relazioni di prima pubblicazione"
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
"Questo rapporto mostra le registrazioni con relazioni che usano date future. "
-"Queste date sono probabilmente refusi (per es. 2109 anziché 2019)."
+"Queste date sono probabilmente refusi (per esempio, 2109 anziché 2019)."
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr "Registrazioni con relazioni che hanno date future"
@@ -14182,13 +13988,13 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
"Questo rapporto mostra le pubblicazioni che hanno relazioni che si applicano "
"solo a pubblicazioni su supporto digitale (download/streaming), ma hanno "
"supporti il cui formato non è \"supporto digitale\". Generalmente queste "
"relazioni andrebbero spostate nella pubblicazione su supporto digitale "
-"appropriata. Se questa non esiste, non esitare a crearla."
+"appropriata. Se questa non esiste, non esitare ad aggiungerla."
#: ../root/report/ReleasesWithDownloadRelationships.js:34
#: ../root/report/ReportsIndex.js:389
@@ -14214,14 +14020,14 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
"Questo rapporto mostra le pubblicazioni che hanno relazioni di acquisto per "
"corrispondenza (che per definizione si applicano solo a pubblicazioni su "
-"supporto fisico), ma hanno solo supporti il cui formato è \"supporto digitale"
-"\". Generalmente queste relazioni andrebbero spostate nella pubblicazione su "
-"supporto fisico appropriata. Se questa non esiste, non esitare a crearla."
+"supporto fisico), ma hanno solo supporti il cui formato è \"supporto "
+"digitale\". Generalmente queste relazioni andrebbero spostate nella "
+"pubblicazione su supporto fisico appropriata. Se questa non esiste, non "
+"esitare ad aggiungerla."
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
#: ../root/report/ReportsIndex.js:393
@@ -14459,20 +14265,6 @@ msgstr "URL"
msgid "Wikidata URLs linked to multiple entities"
msgstr "URL di Wikidata collegati a più entità"
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRC"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr "ISWC"
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -14587,15 +14379,15 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
"Questo rapporto mira a identificare le pubblicazioni in cui i titoli delle "
-"tracce includono il loro numero di traccia, ad es. \"1) Nome\" anziché solo "
-"\"Nome\". Tieni in considerazione che a volte ciò è corretto, non ritenere "
-"automaticamente che sia un errore! Se hai la certezza che si tratti di un "
-"errore, correggilo."
+"tracce includono il loro numero di traccia, ad esempio \"1) Nome\" anziché "
+"solo \"Nome\". Tieni in considerazione che a volte ciò è corretto, non "
+"ritenere automaticamente che sia un errore! Se hai la certezza che si tratti "
+"di un errore, correggilo."
#: ../root/report/TracksNamedWithSequence.js:33
msgid "Releases where track names start with their track number"
@@ -14605,13 +14397,13 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
"Questo rapporto elenca tutte le pubblicazioni in cui i numeri di traccia non "
-"sono continui (es. non c'è una \"traccia 2\") o con numeri di traccia "
-"duplicati (es. ci sono due \"tracce 4\")."
+"sono continui (per esempio, non c'è una \"traccia 2\") o con numeri di "
+"traccia duplicati (per esempio, ci sono due \"tracce 4\")."
#: ../root/report/TracksWithSequenceIssues.js:31
msgid "Releases with track number issues"
@@ -14797,6 +14589,10 @@ msgstr ""
msgid "Last edited"
msgstr "Ultima modifica"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Numero di catalogo"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr "Ricerca tag"
@@ -14806,7 +14602,7 @@ msgid "Other lookups"
msgstr "Altre ricerche"
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -14817,7 +14613,7 @@ msgstr "Inizio"
msgid "Alternatively, you may {uri|add a new area}."
msgstr "In alternativa, puoi {uri|aggiungere una nuova area}."
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "In alternativa, puoi {uri|aggiungere un nuovo artista}."
@@ -14827,9 +14623,10 @@ msgid "Documentation Search"
msgstr "Cerca nella documentazione"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr "Posizione"
@@ -14866,7 +14663,7 @@ msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
"In alternativa, puoi {uri|aggiungere un nuovo gruppo di pubblicazioni}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr "In alternativa, puoi {uri|aggiungere una nuova pubblicazione}."
@@ -14968,7 +14765,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr "Spiacenti, ma la tua ricerca è troppo vasta."
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr "Al momento questa serie è vuota."
@@ -14994,7 +14791,7 @@ msgstr ""
"impostato, il suo schema deve essere una stringa DNS inversa personalizzata, "
"come in org.example.app://auth
, per le applicazioni installate."
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
@@ -15002,16 +14799,17 @@ msgstr ""
"Questo è un server di sviluppo. Il tuo indirizzo email non è privato né "
"protetto. Procedi con cautela!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr "Se cambi il tuo indirizzo email ti sarà richiesto di verificarlo."
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
-msgstr "Posizione:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr "Posizione"
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
@@ -15019,11 +14817,11 @@ msgstr ""
"Puoi scegliere il livello che preferisci: il tuo Paese, la tua regione o la "
"tua città. Decidi tu quanto essere specifico!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "Data di nascita:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
@@ -15031,11 +14829,11 @@ msgstr ""
"La tua data di nascita sarà utilizzata per visualizzare la tua età (in anni) "
"sulla pagina del tuo profilo."
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "Lingue parlate:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Aggiungi una lingua"
@@ -15093,16 +14891,16 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr "Inviami email con le modifiche alle mie iscrizioni:"
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
-msgstr "Iscrivimi automaticamente agli artisti che creo."
+msgid "Automatically subscribe me to artists I add."
+msgstr "Iscrivimi automaticamente agli artisti che aggiungo."
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
-msgstr "Iscrivimi automaticamente alle etichette che creo."
+msgid "Automatically subscribe me to labels I add."
+msgstr "Iscrivimi automaticamente alle etichette che aggiungo."
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
-msgstr "Iscrivimi automaticamente alle serie che creo."
+msgid "Automatically subscribe me to series I add."
+msgstr "Iscrivimi automaticamente alle serie che aggiungo."
#: ../root/static/scripts/account/components/RegisterForm.js:70
msgid "Your username will be publicly visible."
@@ -15160,12 +14958,14 @@ msgid "This alias is no longer current."
msgstr "Questo alias non è più attuale."
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
-msgstr "Vecchio"
+msgstr "Vecchia"
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "Nuovo"
+msgstr "Nuova"
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -15214,12 +15014,11 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
-"Questa opzione inserirà modifiche aggiuntive per cambiare ogni "
-"accreditamento secondo il nuovo nome. Utilizza questa opzione solo se sei "
-"sicuro che gli accreditamenti esistenti sono errati (per es. a causa di "
-"refusi)."
+"Quest'opzione inserirà modifiche aggiuntive per cambiare ogni accreditamento "
+"secondo il nuovo nome. Usa quest'opzione solo se sei sicuro che gli "
+"accreditamenti esistenti sono errati (per esempio a causa di refusi)."
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
msgid ""
@@ -15246,33 +15045,33 @@ msgid "Show more artist credits"
msgstr "Mostra più accreditamenti artista"
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "Mostra di più..."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "Dettagli della collezione"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "Permetti agli altri utenti di vedere questa collezione"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "Crea collezione"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr "Aggiungi collezione"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr "Aggiorna collezione"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr "Aggiungi collaboratore"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr "Rimuovi collaboratore"
@@ -15291,7 +15090,7 @@ msgid "Try with indexed search instead."
msgstr "Prova a usare la ricerca indicizzata."
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr "Digita per cercare o incolla un MBID"
@@ -15300,32 +15099,27 @@ msgstr "Digita per cercare o incolla un MBID"
msgid "Clear recent items"
msgstr "Cancella elementi recenti"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr "Non l'hai trovato? Riprova con la ricerca diretta."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr "Lento? Torna alla ricerca indicizzata."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr "compare in"
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr "registrazione a sé stante"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr "{release_group_type} di {artist}"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr "Esecutori"
@@ -15335,8 +15129,14 @@ msgid "Vote on all edits:"
msgstr "Vota tutte le modifiche:"
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
-msgstr "Elimina nota"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr "Rimuovi nota"
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr "Aggiungi nota"
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
@@ -15375,12 +15175,11 @@ msgid "Annotation last modified on {date}."
msgstr "Annotazione modificata l'ultima volta il {date}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
-msgstr ""
-"Quest'accreditamento artista ha delle {edit_search|modifiche in corso}."
+msgid "This artist credit has {edit_search|open edits}."
+msgstr "Quest'accreditamento artista ha delle {edit_search|modifiche in corso}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr "Quest'accreditamento artista ha delle modifiche in corso."
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -15482,15 +15281,15 @@ msgstr "Cerca una serie"
msgid "Search for a work"
msgstr "Cerca un'opera"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr "{forward_link_phrase} / {backward_link_phrase}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr "di {artist}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr "{first_list_item} … {last_list_item}"
@@ -15618,8 +15417,8 @@ msgid "Secondary type"
msgstr "Tipo secondario"
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
-msgstr "Accreditamento artista:"
+msgid "Artist credit"
+msgstr "Accreditamento artista"
#: ../root/static/scripts/common/components/FilterForm.js:242
msgid "Setlist contains"
@@ -15926,33 +15725,33 @@ msgctxt "plural"
msgid "Series"
msgstr "Serie"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr "il {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr "nel {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr "dal {begin_date} al {end_date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr "dal {date} al ????"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr "dal {date} a oggi"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr "fino al {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
-msgstr "inattivo"
+msgstr "conclusa"
#: ../root/static/scripts/common/utility/tableColumns.js:24
msgid "AcoustIDs"
@@ -15971,8 +15770,9 @@ msgid "Began:"
msgstr "Inizio:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "Fine:"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr "Non più in attività"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -16042,8 +15842,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -16173,7 +15973,7 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr "Questa è una pagina interna di Instagram e non va aggiunta."
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
@@ -16184,12 +15984,12 @@ msgstr ""
"consentito al momento. Potresti invece aggiungere collegamenti di Musixmatch "
"agli artisti e alle opere attinenti."
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
"Solo i video musicali di RYM possono essere collegati alle registrazioni."
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
@@ -16199,24 +15999,24 @@ msgstr ""
"{ra_url|il tuo collegamento}, assicurati che il collegamento a cui "
"reindirizza sia ancora quello corretto e, se è così, aggiungi quest'ultimo."
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr "Inserisci collegamenti a profili Thread, non a post."
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
"Questo non è un profilo, bensì una pagina di documentazione di Twitter."
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr "Inserisci collegamenti a profili Twitter, non a tweet."
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr "Questo sito non consente collegamenti diretti alle sue immagini."
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
@@ -16224,7 +16024,7 @@ msgstr ""
"Aggiungi un collegamento alla pagina “{allowed_url_pattern}” anziché a "
"questa pagina “{current_url_pattern}”."
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
@@ -16233,7 +16033,7 @@ msgstr ""
"Quest'URL contiene un carattere “?” o “#” non codificato. Controlla se va "
"rimosso perché inutile o se è un errore e l'URL è codificato in modo errato."
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
@@ -16242,21 +16042,21 @@ msgstr ""
"WhoSampled. Aggiungi collegamenti alla pagina artista, traccia o album di "
"WhoSampled appropriata."
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
"Collega le pagine “{album_url_pattern}” di WhoSampled ai gruppi di "
"pubblicazioni."
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr "Collega le pagine artista di WhoSampled agli artisti."
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr "Collega le pagine traccia di WhoSampled alle registrazioni."
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
@@ -16265,7 +16065,7 @@ msgstr ""
"consentiti. Se l'articolo è comunque pertinente, rimuovi “{fragment}”. "
"Consulta le {url|linee guida}."
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
@@ -16273,7 +16073,7 @@ msgstr ""
"I collegamenti a pagine utente di Wikipedia non sono consentiti. Aggiungi "
"solo collegamenti ad articoli di Wikipedia."
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
@@ -16283,12 +16083,12 @@ msgstr ""
"è detto che sia autorizzata in modo ufficiale. Aggiungi piuttosto un "
"collegamento al canale ufficiale di questa entità, se esiste."
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
"Solo collegamenti video e playlist sono consentiti sulle pubblicazioni."
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
@@ -16299,7 +16099,7 @@ msgstr ""
"pubblicazione. Aggiungi piuttosto questo collegamento a Wikipedia al gruppo "
"di pubblicazioni, se pertinente."
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
@@ -16310,11 +16110,11 @@ msgstr ""
"pubblicazione. Aggiungi piuttosto questo collegamento a Wikidata al gruppo "
"di pubblicazioni, se pertinente."
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr "Alcuni tipi di relazione per questo URL sono mancanti."
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr "Questa combinazione di tipi di relazione non è valida."
@@ -16361,7 +16161,7 @@ msgstr "Aggiungi una nuova serie"
msgid "Add a new work"
msgstr "Aggiungi una nuova opera"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
@@ -16369,50 +16169,50 @@ msgstr ""
"Utilizza i campi di seguito per inserire collaborazioni. Vai alla "
"documentazione sugli {ac|accreditamenti artista} per maggiori informazioni."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr "[nome traccia mancante]"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr "Non hai ancora inserito un nome della traccia."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
-msgstr "Questa traccia non è ancora stata creata."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
+msgstr "Questa traccia non è ancora stata aggiunta."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr "Artista su MusicBrainz:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr "Artista come accreditato:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr "Connettore:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr "Aggiungi accreditamento dell'artista"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
"Cambia tutti gli artisti che corrispondono a \"{name}\" su questa "
"pubblicazione"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
"Cambia tutti gli artisti su questa pubblicazione che sono attualmente vuoti"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr "Copia accreditamenti"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr "Incolla accreditamenti"
@@ -16440,12 +16240,12 @@ msgstr ""
"di essere applicata più velocemente."
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
-msgstr "Questa entità ha {edits_link|modifiche in corso}."
+msgid "This entity has {edits_link|open edits}."
+msgstr "Questa entità ha delle {edits_link|modifiche in corso}."
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
-msgstr "Questa entità ha modifiche in corso."
+msgid "This entity has open edits."
+msgstr "Questa entità ha delle modifiche in corso."
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:202
@@ -16481,11 +16281,11 @@ msgstr ""
"entità dalle altre."
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr "Questa relazione ha delle {edit_search|modifiche in corso}."
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr "Questa relazione ha delle modifiche in corso."
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -16564,10 +16364,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr "Ripulito in"
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr "Eventi di pubblicazione:"
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -16575,7 +16372,7 @@ msgstr "Se lasci questa pagina perderai tutte le tue modifiche."
#: ../root/static/scripts/edit/externalLinks.js:708
msgid "Please enter a valid URL, such as “{example_url}”."
-msgstr "Inserisci un URL valido, come per es. “{example_url}”."
+msgstr "Inserisci un URL valido, come “{example_url}”."
#: ../root/static/scripts/edit/externalLinks.js:715
msgid ""
@@ -16839,9 +16636,9 @@ msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to use this option, "
"please close this dialog and load all tracks/mediums beforehand."
msgstr ""
-"Alcune tracce/alcuni supporti non sono ancora stati caricati. Se vuoi usare "
-"questa opzione, chiudi questa finestra di dialogo e carica prima tutte le "
-"tracce/i supporti."
+"Alcune tracce/alcuni supporti non sono ancora stati caricati. Se vuoi "
+"utilizzare quest'opzione, chiudi questa finestra di dialogo e carica prima "
+"tutte le tracce/i supporti."
#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:149
msgid "All of these relationships."
@@ -16952,8 +16749,8 @@ msgstr "Tipo collegato"
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
"Attenzione: questa relazione ha delle modifiche in corso. {show|Clicca qui} "
"per visualizzare queste modifiche e assicurarti che non siano in conflitto "
@@ -17182,20 +16979,20 @@ msgstr "Il codice a barre inserito non è un codice UPC o EAN valido."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
-"Quest'operazione creerà una nuova opera per ogni registrazione selezionata "
-"che non possiede già un'opera. I nomi delle opere saranno gli stessi delle "
-"rispettive registrazioni."
+"Quest'operazione aggiungerà una nuova opera per ogni registrazione "
+"selezionata che non possiede già un'opera. I nomi delle opere saranno gli "
+"stessi delle rispettive registrazioni."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
-"Usa questa opzione solo dopo aver cercato l'opera/e che intendi creare e se "
-"sei certo che essa non esiste già su MusicBrainz."
+"Usa quest'opzione solo dopo aver cercato l'opera/e che intendi aggiungere ed "
+"esserti assicurato che non esista(no) già su MusicBrainz."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:94
@@ -17205,8 +17002,8 @@ msgstr ""
"caselle qui sotto."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
-msgstr "Crea nuove opere in blocco"
+msgid "Batch-add new works"
+msgstr "Aggiungi nuove opere in blocco"
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
msgid "Edit Work"
@@ -17261,15 +17058,15 @@ msgstr "Aggiungi relazioni in blocco alle opere"
msgid "[selected work]"
msgstr "[opera selezionata]"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr "Si è verificato un errore:"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr "Relazioni della traccia"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
@@ -17277,22 +17074,22 @@ msgstr ""
"Alcune tracce/alcuni supporti non sono ancora stati caricati. Se vuoi "
"effettuare modifiche in blocco su di essi, prima caricali tutti."
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr "Opere collegate"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
"Non abbiamo informazioni sui supporti e sull'elenco tracce di questa "
"pubblicazione."
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "Relazioni della pubblicazione"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr "Relazioni del gruppo di pubblicazioni"
@@ -17321,15 +17118,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr "Aggiungi lingua del testo"
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr "Tipo di opera:"
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr "Aggiungi lingua"
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr "Rimuovi lingua"
@@ -17580,10 +17373,6 @@ msgstr "Tag"
msgid "Duration"
msgstr "Durata"
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr "Nome file"
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "Ricerca tag"
@@ -17663,23 +17452,23 @@ msgstr "Informazioni sull'URL"
msgid "URL Details"
msgstr "Dettagli dell'URL"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr "Titolo:"
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr "Messaggio"
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr "Rivela il mio indirizzo email"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr "Invia una copia al mio indirizzo email"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "Invia"
@@ -17799,11 +17588,13 @@ msgstr "Editor dei messaggi del banner"
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
"Gli editor dei messaggi del banner sono utenti che possono impostare un "
"messaggio che verrà visualizzato in un banner esposto su tutte le pagine, "
-"per es. per avvertire gli utenti di una manutenzione programmata del sito."
+"per esempio per avvertire gli utenti di una manutenzione programmata del "
+"sito."
#: ../root/user/PrivilegedUsers.js:114
msgid "The following {count} users are banner message editors:"
@@ -18053,10 +17844,6 @@ msgstr ""
msgid "General Information"
msgstr "Informazioni generali"
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "Email:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(nascosta)"
@@ -18098,179 +17885,171 @@ msgstr "nomina al ruolo di auto-editor"
msgid "Age:"
msgstr "Età:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "Membro da:"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "Ultimo accesso:"
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
+msgstr "Restrizioni"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr "Non ha ancora effettuato l'accesso"
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr "Applicazioni autorizzate"
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr "visualizza elenco"
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr "Applicazioni per sviluppatori"
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr "Homepage:"
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr "Iscritti:"
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr "{count} ({url|visualizza elenco})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr "disiscriviti"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr "iscriviti"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "Lingue:"
-
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr "Lingue"
+
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr "{count} ({view_url|visualizza})"
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Modifiche"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Totale"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Accettate"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr "Auto-modifiche"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr "Totale applicate"
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr "Rifiutate"
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr "Fallite"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr "Ultime 24 ore"
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr "Questa tabella mostra un riassunto dei voti espressi da questo editor."
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr "Voti ({view_url|visualizza})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr "Ultimi 28 giorni"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr "Totali"
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
"Questa tabella mostra un riassunto delle entità aggiunte da questo editor."
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
"Le modifiche applicate da poco potrebbero essere conteggiate dopo 24 ore"
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr "Entità aggiunte"
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
-msgstr "Questo utente non ha creato nessuna entità."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
+msgstr "Questo utente non ha aggiunto nessuna entità."
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
"Questa tabella mostra un riassunto dei dati secondari aggiunti da questo "
"editor."
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr "Tag e valutazioni"
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr "Tag con voti a favore"
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
"Le etichette vengono rimosse quando l'account di un editor è eliminato."
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
-msgstr "Eliminate"
+msgid "Removed"
+msgstr "Rimossi"
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr "Tag con voti contro"
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
"Le valutazioni vengono rimosse quando l'account di un editor è eliminato."
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
-msgstr "Eliminate"
+msgid "Removed"
+msgstr "Rimosse"
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr "Account spam bloccato"
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
@@ -18280,14 +18059,14 @@ msgstr ""
"fosse uno spammer. Se trovi dello spam su MusicBrainz, faccelo sapere "
"segnalando lo spammer dalla sua pagina utente."
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
"Questo utente è contrassegnato come spammer ed è bloccato per tutti gli "
"utenti che non sono amministratori."
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
@@ -18295,7 +18074,7 @@ msgstr ""
"I permessi di modifica di questo utente sono stati limitati. Limitazioni "
"attive: {restrictions}."
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr "Segnala questo utente per comportamento scorretto"
@@ -18560,11 +18339,11 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
-"Questa modifica è fallita perché i dati che modificava sono cambiati dopo la "
-"sua creazione. Questo può succedere quando si inserisce la stessa modifica "
+"Questa modifica è fallita perché i dati che modificava sono cambiati dopo il "
+"suo inserimento. Questo può succedere quando si inserisce la stessa modifica "
"due volte: una sarà accettata, mentre l'altra fallirà."
#: ../root/utility/edit.js:86
@@ -18579,7 +18358,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr "Questa modifica è stata annullata."
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr "Iscritto"
@@ -18894,6 +18673,735 @@ msgstr ""
"diversi. Assicurati che si tratti davvero delle stesse opere prima di "
"proseguire."
+#~ msgid "Address:"
+#~ msgstr "Indirizzo:"
+
+#~ msgid "Annotation:"
+#~ msgstr "Annotazione:"
+
+#~ msgid "Area:"
+#~ msgstr "Area:"
+
+#~ msgid "Artist:"
+#~ msgstr "Artista:"
+
+#~ msgid "Attributes:"
+#~ msgstr "Attributi:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Codice a barre:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "Area iniziale:"
+
+#~ msgid "Begin date:"
+#~ msgstr "Data iniziale:"
+
+#~ msgid "Catalog#:"
+#~ msgstr "Nº di catalogo:"
+
+#~ msgid "Child order:"
+#~ msgstr "Ordine dei discendenti:"
+
+#~ msgid "Country:"
+#~ msgstr "Paese:"
+
+#~ msgid "Created"
+#~ msgstr "Create"
+
+#~ msgid "Date:"
+#~ msgstr "Data:"
+
+#~ msgid "Delete"
+#~ msgstr "Elimina"
+
+#~ msgid "Description:"
+#~ msgstr "Descrizione:"
+
+#~ msgid "Documentation:"
+#~ msgstr "Documentazione:"
+
+#~ msgid "End Area:"
+#~ msgstr "Area finale:"
+
+#~ msgid "End date:"
+#~ msgstr "Data finale:"
+
+#~ msgid "Format:"
+#~ msgstr "Formato:"
+
+#~ msgid "Gender:"
+#~ msgstr "Genere:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "Codici IPI:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "Codici ISNI:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRC:"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWC:"
+
+#~ msgid ""
+#~ "If you don’t select an existing release group, a new one will be created "
+#~ "with the types selected below."
+#~ msgstr ""
+#~ "Se non selezioni un gruppo di pubblicazioni esistente, ne sarà creato uno "
+#~ "nuovo con i tipi selezionati più in basso."
+
+#~ msgid ""
+#~ "Keep in mind that recording durations are {doc_link|recalculated from "
+#~ "tracks} once the duration of a track changes. As such, if you correct the "
+#~ "duration of a track whose recording is only used in this release, just "
+#~ "reuse the old recording, don’t create a new one. If the recording is also "
+#~ "used elsewhere and the durations are significantly different, consider "
+#~ "creating a new recording instead."
+#~ msgstr ""
+#~ "Tieni presente che la durata delle registrazioni è {doc_link|ricalcolata "
+#~ "a partire dalle tracce} ogni volta che la durata di una traccia è "
+#~ "modificata. Pertanto, se correggi la durata di una traccia la cui "
+#~ "registrazione è utilizzata solo su questa pubblicazione, riutilizza la "
+#~ "vecchia registrazione anziché crearne una nuova. Se, invece, la "
+#~ "registrazione è utilizzata anche altrove e le durate sono sensibilmente "
+#~ "differenti, valuta la possibilità di creare una nuova registrazione."
+
+#~ msgid ""
+#~ "Keep in mind that unselecting this will delete the track if the medium "
+#~ "has a disc ID! If you unselect it by mistake, please readd the pregap "
+#~ "track before submitting."
+#~ msgstr ""
+#~ "Tieni presente che deselezionare quest'opzione eliminerà la traccia se il "
+#~ "supporto ha un ID disco! Se la deselezioni per errore, ricordati di "
+#~ "riaggiungere la traccia pregap prima di cliccare su Invia."
+
+#~ msgid ""
+#~ "Keep in mind that unselecting this will delete the tracks if the medium "
+#~ "has a disc ID! If you unselect it by mistake, please readd the data "
+#~ "tracks before submitting."
+#~ msgstr ""
+#~ "Tieni presente che deselezionare quest'opzione eliminerà le tracce se il "
+#~ "supporto ha un ID disco! Se la deselezioni per errore, ricordati di "
+#~ "riaggiungere le tracce dati prima di cliccare su Invia."
+
+#~ msgid "Label code:"
+#~ msgstr "Label code:"
+
+#~ msgid "Label:"
+#~ msgstr "Etichetta:"
+
+#~ msgid "Language:"
+#~ msgstr "Lingua:"
+
+#~ msgid "Length:"
+#~ msgstr "Durata:"
+
+#~ msgid "Merge"
+#~ msgstr "Unisci"
+
+#~ msgid "Name:"
+#~ msgstr "Nome:"
+
+#~ msgid "Note:"
+#~ msgstr "Nota:"
+
+#~ msgid ""
+#~ "Note: only searches edits that: add or edit relationships, created after "
+#~ "2011-05-16; or which remove relationships, created after 2013-07-08; or "
+#~ "which reorder relationships."
+#~ msgstr ""
+#~ "Nota: cerca solo modifiche che: aggiungono o modificano relazioni, create "
+#~ "dopo il 16-05-2011; o che rimuovono relazioni, create dopo il 08-07-2013; "
+#~ "o che riordinano relazioni."
+
+#~ msgid "Ordering Type:"
+#~ msgstr "Tipo di ordinamento:"
+
+#~ msgid "Packaging:"
+#~ msgstr "Confezione:"
+
+#~ msgid "Parent:"
+#~ msgstr "Controllante:"
+
+#~ msgid "Position:"
+#~ msgstr "Posizione:"
+
+#~ msgid "Release Group:"
+#~ msgstr "Gruppo di pubblicazioni:"
+
+#~ msgid "Release:"
+#~ msgstr "Pubblicazione:"
+
+#~ msgid "Script:"
+#~ msgstr "Sistema di scrittura:"
+
+#~ msgid "Search:"
+#~ msgstr "Cerca:"
+
+#~ msgid "Set track durations"
+#~ msgstr "Imposta durata tracce"
+
+#~ msgid "Setlist:"
+#~ msgstr "Scaletta:"
+
+#~ msgid "Sort name:"
+#~ msgstr "Nome di ordinamento:"
+
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "This entity will be created by this edit."
+#~ msgstr "L'entità sarà creata con questa modifica."
+
+#~ msgid "Time:"
+#~ msgstr "Ora:"
+
+#~ msgid "Title:"
+#~ msgstr "Titolo:"
+
+#~ msgid ""
+#~ "To create a new tracklist, use an existing medium or import a disc from a "
+#~ "CD stub, select the appropriate tab."
+#~ msgstr ""
+#~ "Per creare un nuovo elenco tracce, usare un supporto esistente o "
+#~ "importare un disco da una bozza CD, seleziona la rispettiva scheda."
+
+#~ msgid "Tracks:"
+#~ msgstr "Tracce:"
+
+#~ msgid "URL:"
+#~ msgstr "URL:"
+
+#~ msgid "Warning:"
+#~ msgstr "Attenzione:"
+
+#~ msgid ""
+#~ "You can use the checkboxes under the parser to deactivate some sections. "
+#~ "For example, you can deactivate “{lines_have_artists}” if your data has "
+#~ "no track artists, or “{use_track_lengths}” if you have track durations "
+#~ "but want the parser to ignore them."
+#~ msgstr ""
+#~ "Puoi usare le caselle sotto l'analizzatore per disattivare alcune "
+#~ "sezioni. Per esempio, puoi disattivare “{lines_have_artists}” se il tuo "
+#~ "elenco non ha gli artisti delle tracce, o “{use_track_lengths}” se hai le "
+#~ "durate delle tracce ma vuoi che l'analizzatore le ignori."
+
+#~ msgid ""
+#~ "You must select an artist for every track (the background color of every "
+#~ "artist field should be green). If you’ve entered an artist but the "
+#~ "background remains uncolored, click the magnifying glass to match the "
+#~ "name to a MusicBrainz artist. If the artist doesn’t exist yet, you can "
+#~ "create it by selecting “{add_a_new_artist}” from the bottom of the search "
+#~ "results drop-down."
+#~ msgstr ""
+#~ "È necessario selezionare un artista per ogni traccia (cioè il colore di "
+#~ "sfondo di ogni campo artista deve essere verde). Se hai inserito un "
+#~ "artista ma lo sfondo non è colorato, clicca sulla lente di ingrandimento "
+#~ "per abbinare il nome a una voce artista di MusicBrainz. Se l'artista non "
+#~ "esiste, puoi crearlo selezionando “{add_a_new_artist}” dal fondo del menù "
+#~ "a tendina con i risultati di ricerca."
+
+#~ msgid ""
+#~ "You must select an artist for the release (the background color of the "
+#~ "artist field should be green). If you’ve entered an artist but the "
+#~ "background remains uncolored, click the magnifying glass to match the "
+#~ "name to a MusicBrainz artist. If the artist doesn’t exist yet, you can "
+#~ "create it by selecting “{add_a_new_artist}” from the bottom of the search "
+#~ "results drop-down."
+#~ msgstr ""
+#~ "È necessario selezionare un artista per la pubblicazione (cioè il colore "
+#~ "di sfondo del campo artista deve essere verde). Se hai inserito un "
+#~ "artista ma lo sfondo non è colorato, clicca sulla lente di ingrandimento "
+#~ "per abbinare il nome a una voce artista di MusicBrainz. Se l'artista non "
+#~ "esiste, puoi crearlo selezionando “{add_a_new_artist}” dal fondo del menù "
+#~ "a tendina con i risultati di ricerca."
+
+#~ msgid "appears on:"
+#~ msgstr "compare in:"
+
+#, perl-brace-format
+#~ msgid ""
+#~ "“{id}” is not a valid row ID; the entity might have been merged or "
+#~ "deleted."
+#~ msgstr ""
+#~ "“{id}” non è un ID di riga valido; l'entità potrebbe essere stata unita o "
+#~ "eliminata."
+
+#~ msgid "Cancelled"
+#~ msgstr "Annullate"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Inserisci un URL valido, ad es. \"http://google.com/\""
+
+#~ msgid "Bio:"
+#~ msgstr "Biografia:"
+
+#~ msgid "Create"
+#~ msgstr "Crea"
+
+#~ msgid "Preview:"
+#~ msgstr "Anteprima:"
+
+#~ msgid "Preview"
+#~ msgstr "Anteprima"
+
+#~ msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+#~ msgstr ""
+#~ "La casella qui sopra va spuntata solo se intendi correggere errori (per "
+#~ "es. refusi)."
+
+#~ msgid "Please search for the artist you wish to create a new release for:"
+#~ msgstr "Cerca l'artista di cui vuoi creare una nuova pubblicazione:"
+
+#~ msgid "Track duration comparison"
+#~ msgstr "Confronto durata tracce"
+
+#~ msgid "Disc ID:"
+#~ msgstr "ID disco:"
+
+#~ msgid ""
+#~ "If you don't see the artist you are looking for, you can still add a new "
+#~ "release. This will allow you to create this artist and a release at the "
+#~ "same time"
+#~ msgstr ""
+#~ "Se non trovi l'artista che stavi cercando, puoi comunque aggiungere una "
+#~ "nuova pubblicazione. Questo ti permetterà di creare l'artista e la "
+#~ "pubblicazione contemporaneamente."
+
+#~ msgid "Create a new collection"
+#~ msgstr "Crea una nuova collezione"
+
+#~ msgid "Status"
+#~ msgstr "Status"
+
+#~ msgid "Only the editor who created an edit can cancel it."
+#~ msgstr "Solo l'editor che ha creato una modifica la può annullare."
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Closed:"
+#~ msgstr "Chiusa:"
+
+#~ msgid "Releases:"
+#~ msgstr "Pubblicazioni:"
+
+#~ msgid "Ended"
+#~ msgstr "Data finale"
+
+#~ msgid "Filename:"
+#~ msgstr "Nome file:"
+
+#~ msgid "Medium:"
+#~ msgstr "Supporto:"
+
+#~ msgid "Artist Credits:"
+#~ msgstr "Accreditamenti artista:"
+
+#~ msgid "Relationship:"
+#~ msgstr "Relazione:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "Numero di catalogo:"
+
+#~ msgid "Merge:"
+#~ msgstr "Unisci:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Supporti:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Relazioni:"
+
+#~ msgid "Release Events:"
+#~ msgstr "Eventi di pubblicazione:"
+
+#~ msgid "Release group:"
+#~ msgstr "Gruppo di pubblicazioni:"
+
+#~ msgid "Old:"
+#~ msgstr "Vecchio:"
+
+#~ msgid "Added"
+#~ msgstr "Aggiunto"
+
+#~ msgid "Removed"
+#~ msgstr "Rimosso"
+
+#~ msgid "Edited"
+#~ msgstr "Modificato"
+
+#~ msgid "Alias:"
+#~ msgstr "Alias:"
+
+#~ msgid "Track:"
+#~ msgstr "Traccia:"
+
+#~ msgid "Candidate:"
+#~ msgstr "Candidato:"
+
+#~ msgid "Proposer:"
+#~ msgstr "Proponente:"
+
+#~ msgid "1st seconder:"
+#~ msgstr "1º sostenitore:"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "2º sostenitore:"
+
+#~ msgid "Votes for:"
+#~ msgstr "Voti a favore:"
+
+#~ msgid "Votes against:"
+#~ msgstr "Voti contro:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Seconder 1"
+#~ msgstr "Sostenitore 1"
+
+#~ msgid "Seconder 2"
+#~ msgstr "Sostenitore 2"
+
+#~ msgid "Added:"
+#~ msgstr "Aggiunto:"
+
+#~ msgid "Last modified:"
+#~ msgstr "Ultima modifica:"
+
+#~ msgid "Lookup count:"
+#~ msgstr "Numero di ricerche:"
+
+#~ msgid "Modify count:"
+#~ msgstr "Numero di modifiche:"
+
+#~ msgid "Coordinates:"
+#~ msgstr "Coordinate:"
+
+#~ msgid "IPI code:"
+#~ msgstr "Codice IPI:"
+
+#~ msgid "ISNI code:"
+#~ msgstr "Codice ISNI:"
+
+#~ msgid "Error:"
+#~ msgid_plural "Errors:"
+#~ msgstr[0] "Errore:"
+#~ msgstr[1] "Errori:"
+#~ msgstr[2] "Errori:"
+
+#~ msgid ""
+#~ "No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
+#~ "Either it’s incorrect, it was for an entity that has since been deleted, "
+#~ "or it is an ID for something else than an entity (for example, a "
+#~ "{rel_type_table|relationship type})."
+#~ msgstr ""
+#~ "Nessun'{entity_doc|entità} di MusicBrainz corrisponde all'{mbid_doc|MBID} "
+#~ "{mbid}. L'MBID potrebbe non essere corretto, appartenere a un'entità che "
+#~ "è stata eliminata o essere l'ID per qualcosa che non è un'entità (per es. "
+#~ "un {rel_type_table|tipo di relazione})."
+
+#~ msgid ""
+#~ "The relationship attribute type “{type}” can’t be deleted because it’s "
+#~ "still in use."
+#~ msgstr ""
+#~ "Il tipo di attributo di relazione \"{type}\" non può essere eliminato "
+#~ "perché è ancora in uso."
+
+#~ msgid "ID:"
+#~ msgstr "ID:"
+
+#~ msgid "Possible values:"
+#~ msgstr "Valori possibili:"
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "Crea un nuovo attributo di relazione"
+
+#~ msgid ""
+#~ "The relationship type \"{type}\" can’t be deleted because it’s still in "
+#~ "use."
+#~ msgstr ""
+#~ "Il tipo di relazione \"{type}\" non può essere eliminato perché è ancora "
+#~ "in uso."
+
+#~ msgid "Create a new {type0}-{type1} relationship"
+#~ msgstr "Crea una nuova relazione {type0}-{type1}"
+
+#~ msgid ""
+#~ "This report shows disc IDs indicating a total duration much longer than "
+#~ "what a standard CD allows (at least 88 minutes for a CD, or 30 minutes "
+#~ "for a mini-CD). This usually means a disc ID was created for the wrong "
+#~ "format (SACD) or with a buggy tool."
+#~ msgstr ""
+#~ "Questo rapporto mostra gli ID disco con una durata totale molto più lunga "
+#~ "di quella consentita da un normale CD (almeno 88 minuti per un CD o 30 "
+#~ "minuti per un mini-CD). Solitamente questo significa che un ID disco è "
+#~ "stato creato per il formato sbagliato (SACD) o usando uno strumento con "
+#~ "dei bug."
+
+#~ msgid ""
+#~ "This report shows disc IDs attached to a release but obviously not "
+#~ "applied because at least one track duration is unknown on the release. "
+#~ "The report is also restricted to mediums where only one disc ID is "
+#~ "attached, so it is highly likely that the disc ID can be applied without "
+#~ "any worries. Do make sure though that no existing durations clash with "
+#~ "the disc ID, or that any clashes are clear mistakes."
+#~ msgstr ""
+#~ "Questo rapporto mostra gli ID disco associati a una pubblicazione ma "
+#~ "evidentemente non applicati, poiché la durata di almeno una traccia della "
+#~ "pubblicazione è sconosciuta. Il rapporto è limitato ai supporti che hanno "
+#~ "solo un ID disco associato, e per questo motivo l'ID disco può molto "
+#~ "probabilmente essere applicato senza preoccupazioni. Assicurati, però, "
+#~ "che nessuna delle durate esistenti sia in conflitto con l'ID disco, o che "
+#~ "eventuali conflitti siano chiaramente degli errori."
+
+#~ msgid ""
+#~ "This report lists release groups with very similar names and artists. If "
+#~ "the releases in the release groups should be grouped together (see the "
+#~ "{url|guidelines}), they can be merged. If they shouldn't be grouped "
+#~ "together but they can be distinguished by the release group types, e.g. "
+#~ "when an artist has an album and single with the same name, then there is "
+#~ "usually no need to change anything. In other cases, a disambiguation "
+#~ "comment may be helpful."
+#~ msgstr ""
+#~ "Questo rapporto elenca i gruppi di pubblicazioni con titoli e artisti "
+#~ "molto simili. Se le pubblicazioni nei gruppi di pubblicazioni dovrebbero "
+#~ "essere raggruppate insieme (consulta le {url|linee guida}), ti chiediamo "
+#~ "di unirli. Se non dovrebbero essere raggruppate insieme ma possono essere "
+#~ "distinte per il tipo di gruppo di pubblicazioni, per es. quando un "
+#~ "artista ha un album e un singolo con lo stesso nome, non dovrebbe esserci "
+#~ "bisogno di modificare niente. Negli altri casi, un commento di "
+#~ "disambiguazione potrebbe essere di aiuto."
+
+#~ msgid ""
+#~ "This report shows instruments without an image relationship to "
+#~ "StaticBrainz (i.e. without an IROMBOOK image)."
+#~ msgstr ""
+#~ "Questo rapporto mostra gli strumenti senza una relazione immagine con "
+#~ "StaticBrainz (cioè senza un'immagine di IROMBOOK)."
+
+#~ msgid ""
+#~ "This report lists all releases with gaps in the medium numbers (e.g. "
+#~ "there is a medium 1 and 3 but no medium 2)."
+#~ msgstr ""
+#~ "Questo rapporto elenca tutte le pubblicazioni con delle lacune nella "
+#~ "numerazione dei supporti (es. c'è un \"supporto 1\" e un \"supporto 3\" "
+#~ "ma nessun \"supporto 2\")."
+
+#~ msgid ""
+#~ "This report shows recordings with relationships using dates in the "
+#~ "future. Those are probably typos (e.g. 2109 instead of 2019)."
+#~ msgstr ""
+#~ "Questo rapporto mostra le registrazioni con relazioni che usano date "
+#~ "future. Queste date sono probabilmente refusi (per es. 2109 anziché 2019)."
+
+#~ msgid ""
+#~ "This report shows releases that have relationships that only apply to "
+#~ "digital media releases (download/streaming), but have media whose format "
+#~ "is not “Digital Media”. Generally, these should be moved to the "
+#~ "appropriate digital media release. If one doesn’t exist yet, feel free to "
+#~ "create it."
+#~ msgstr ""
+#~ "Questo rapporto mostra le pubblicazioni che hanno relazioni che si "
+#~ "applicano solo a pubblicazioni su supporto digitale (download/streaming), "
+#~ "ma hanno supporti il cui formato non è \"supporto digitale\". "
+#~ "Generalmente queste relazioni andrebbero spostate nella pubblicazione su "
+#~ "supporto digitale appropriata. Se questa non esiste, non esitare a "
+#~ "crearla."
+
+#~ msgid ""
+#~ "This report shows releases that have mail order relationships (which by "
+#~ "definition only apply to physical media releases), but only have media "
+#~ "whose format is “Digital Media”. Generally, these should be moved to the "
+#~ "appropriate physical release. If one doesn’t exist yet, feel free to "
+#~ "create it."
+#~ msgstr ""
+#~ "Questo rapporto mostra le pubblicazioni che hanno relazioni di acquisto "
+#~ "per corrispondenza (che per definizione si applicano solo a pubblicazioni "
+#~ "su supporto fisico), ma hanno solo supporti il cui formato è \"supporto "
+#~ "digitale\". Generalmente queste relazioni andrebbero spostate nella "
+#~ "pubblicazione su supporto fisico appropriata. Se questa non esiste, non "
+#~ "esitare a crearla."
+
+#~ msgid ""
+#~ "This report aims to identify releases where track names include their own "
+#~ "track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). "
+#~ "Notice that sometimes this is justified and correct, don't automatically "
+#~ "assume it is a mistake! If you confirm it is a mistake, please correct it."
+#~ msgstr ""
+#~ "Questo rapporto mira a identificare le pubblicazioni in cui i titoli "
+#~ "delle tracce includono il loro numero di traccia, ad es. \"1) Nome\" "
+#~ "anziché solo \"Nome\". Tieni in considerazione che a volte ciò è "
+#~ "corretto, non ritenere automaticamente che sia un errore! Se hai la "
+#~ "certezza che si tratti di un errore, correggilo."
+
+#~ msgid ""
+#~ "This report lists all releases where the track numbers are not continuous "
+#~ "(e.g. there is no \"track 2\"), or with duplicated track numbers (e.g. "
+#~ "there are two \"track 4\"s)."
+#~ msgstr ""
+#~ "Questo rapporto elenca tutte le pubblicazioni in cui i numeri di traccia "
+#~ "non sono continui (es. non c'è una \"traccia 2\") o con numeri di traccia "
+#~ "duplicati (es. ci sono due \"tracce 4\")."
+
+#~ msgid "Location"
+#~ msgstr "Posizione"
+
+#~ msgid "Location:"
+#~ msgstr "Posizione:"
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "Iscrivimi automaticamente agli artisti che creo."
+
+#~ msgid "Automatically subscribe me to labels I create."
+#~ msgstr "Iscrivimi automaticamente alle etichette che creo."
+
+#~ msgid "Automatically subscribe me to series I create."
+#~ msgstr "Iscrivimi automaticamente alle serie che creo."
+
+#~ msgid "Old"
+#~ msgstr "Vecchio"
+
+#~ msgid "New"
+#~ msgstr "Nuovo"
+
+#~ msgid ""
+#~ "This will enter additional edits to change each specific credit to use "
+#~ "the new name. Only use this if you are sure the existing credits are "
+#~ "incorrect (e.g. for typos)."
+#~ msgstr ""
+#~ "Quest'opzione inserirà modifiche aggiuntive per cambiare ogni "
+#~ "accreditamento secondo il nuovo nome. Usa quest'opzione solo se sei "
+#~ "sicuro che gli accreditamenti esistenti sono errati (per es. a causa di "
+#~ "refusi)."
+
+#~ msgid "Create collection"
+#~ msgstr "Crea collezione"
+
+#~ msgid "Delete Note"
+#~ msgstr "Elimina nota"
+
+#~ msgid "This artist credit has {edit_search|pending edits}."
+#~ msgstr ""
+#~ "Quest'accreditamento artista ha delle {edit_search|modifiche in corso}."
+
+#~ msgid "This artist credit has pending edits."
+#~ msgstr "Quest'accreditamento artista ha delle modifiche in corso."
+
+#~ msgid "Artist credit:"
+#~ msgstr "Accreditamento artista:"
+
+#~ msgid "Ended:"
+#~ msgstr "Fine:"
+
+#~ msgid "This track hasn’t been created yet."
+#~ msgstr "Questa traccia non è ancora stata creata."
+
+#~ msgid "This entity has {edits_link|pending edits}."
+#~ msgstr "Questa entità ha {edits_link|modifiche in corso}."
+
+#~ msgid "This entity has pending edits."
+#~ msgstr "Questa entità ha modifiche in corso."
+
+#~ msgid "This relationship has {edit_search|pending edits}."
+#~ msgstr "Questa relazione ha delle {edit_search|modifiche in corso}."
+
+#~ msgid "This relationship has pending edits."
+#~ msgstr "Questa relazione ha delle modifiche in corso."
+
+#~ msgid "Release events:"
+#~ msgstr "Eventi di pubblicazione:"
+
+#~ msgid ""
+#~ "Warning: This relationship has pending edits. {show|Click here} to view "
+#~ "these edits and make sure they do not conflict with your own."
+#~ msgstr ""
+#~ "Attenzione: questa relazione ha delle modifiche in corso. {show|Clicca "
+#~ "qui} per visualizzare queste modifiche e assicurarti che non siano in "
+#~ "conflitto con la tua."
+
+#~ msgid ""
+#~ "This will create a new work for each checked recording that has no work "
+#~ "already. The work names will be the same as their respective recording."
+#~ msgstr ""
+#~ "Quest'operazione creerà una nuova opera per ogni registrazione "
+#~ "selezionata che non possiede già un'opera. I nomi delle opere saranno gli "
+#~ "stessi delle rispettive registrazioni."
+
+#~ msgid ""
+#~ "Only use this option after you’ve tried searching for the work(s) you "
+#~ "want to create, and are certain they do not already exist on MusicBrainz."
+#~ msgstr ""
+#~ "Usa quest'opzione solo dopo aver cercato l'opera/e che intendi creare ed "
+#~ "esserti assicurato che non esista(no) già su MusicBrainz."
+
+#~ msgid "Batch-create new works"
+#~ msgstr "Crea nuove opere in blocco"
+
+#~ msgid "Work Type:"
+#~ msgstr "Tipo di opera:"
+
+#~ msgid ""
+#~ "Banner message editors are users who can set a message that is shown in a "
+#~ "banner on all pages, e.g. to warn users about upcoming site maintenance."
+#~ msgstr ""
+#~ "Gli editor dei messaggi del banner sono utenti che possono impostare un "
+#~ "messaggio che verrà visualizzato in un banner esposto su tutte le pagine, "
+#~ "per es. per avvertire gli utenti di una manutenzione programmata del sito."
+
+#~ msgid "Email:"
+#~ msgstr "Email:"
+
+#~ msgid "Member since:"
+#~ msgstr "Membro da:"
+
+#~ msgid "Last login:"
+#~ msgstr "Ultimo accesso:"
+
+#~ msgid "Subscribers:"
+#~ msgstr "Iscritti:"
+
+#~ msgid "Languages:"
+#~ msgstr "Lingue:"
+
+#~ msgid "This user has not created any entities."
+#~ msgstr "Questo utente non ha creato nessuna entità."
+
+#~ msgctxt "tags"
+#~ msgid "Deleted"
+#~ msgstr "Eliminate"
+
+#~ msgctxt "ratings"
+#~ msgid "Deleted"
+#~ msgstr "Eliminate"
+
+#~ msgid ""
+#~ "This edit failed because the data it was changing was modified after this "
+#~ "edit was created. This may happen when the same edit is entered in twice; "
+#~ "one will pass but the other will fail."
+#~ msgstr ""
+#~ "Questa modifica è fallita perché i dati che modificava sono cambiati dopo "
+#~ "la sua creazione. Questo può succedere quando si inserisce la stessa "
+#~ "modifica due volte: una sarà accettata, mentre l'altra fallirà."
+
#~ msgid "Artist {n}:"
#~ msgstr "Artista {n}:"
diff --git a/po/mb_server.ja.po b/po/mb_server.ja.po
index fd6a0745fea..18447b81881 100644
--- a/po/mb_server.ja.po
+++ b/po/mb_server.ja.po
@@ -36,14 +36,14 @@
# 和田篤 {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7646,10 +7636,10 @@ msgid ""
"{format} {pos} of {release} by {artist}?"
msgstr ""
"本当に {artist} {release} の {format} {pos} にディスクID {discid}"
-"code> を付与してもよろしいですか?"
+"code> を付与してもよろしいですか?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7669,15 +7659,6 @@ msgstr "メディアトラック長"
msgid "CD TOC details"
msgstr "CD TOCの詳細"
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr "ディスク ID:"
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "FreeDB:"
@@ -7687,8 +7668,9 @@ msgid "Track details:"
msgstr "トラック詳細:"
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "トラック"
@@ -7697,21 +7679,13 @@ msgid "Start"
msgstr "スタート"
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "終了"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr "時間"
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7751,12 +7725,9 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
-"探しているアーティストが見当たらない場合でも、新しいリリースを追加することが"
-"できます。そうする場合、そのアーティストとリリースを同時に作成することとなり"
-"ます。"
#: ../root/cdtoc/SetTracklistDurations.js:46
#: ../root/cdtoc/SetTracklistDurations.js:47
@@ -7793,8 +7764,8 @@ msgstr "自分のすべてのコレクションを表示"
msgid "See all of {editor}'s public collections"
msgstr "{editor}の公開コレクションをすべて表示"
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
@@ -7803,7 +7774,7 @@ msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr "コラボレーター"
@@ -7896,8 +7867,8 @@ msgstr "確認"
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "新しいコレクションを作成"
+msgid "Add a new collection"
+msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -7911,20 +7882,10 @@ msgstr "本当にコレクション{collection}を削除しますか?"
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "別名"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr "ソート名"
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr "開始日"
@@ -8112,7 +8073,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "評価"
@@ -8158,7 +8119,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8260,6 +8221,7 @@ msgstr "購読中"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr "購読者"
@@ -8302,26 +8264,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr "ソート名"
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "性別"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "開始地域"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "終了地域"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8333,13 +8279,6 @@ msgstr "役割"
msgid "Code"
msgstr "コード"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "住所"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr "タイプ未定"
@@ -8348,22 +8287,16 @@ msgstr "タイプ未定"
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr "[missing media]"
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "ステータス"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr "作者"
@@ -8490,7 +8423,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8708,7 +8641,7 @@ msgid "None"
msgstr "なし"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr "投票"
@@ -8731,7 +8664,8 @@ msgid "Found {n} edit"
msgid_plural "Found {n} edits"
msgstr[0] "{n}件の編集が見つかりました"
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8756,7 +8690,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8765,15 +8699,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8796,50 +8730,40 @@ msgstr "編集メモを追加"
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr "あなたは現在この編集にメモを追加することができません。({url|詳細})"
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "ステータス:"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr "開始:"
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "終了:"
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr "即座に終了する"
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] "{n}件の満場一致投票"
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr "投票がない場合"
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr "この編集の生の編集データ"
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr "詳細:"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr "投票のよくある質問"
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr "編集の際によくある質問"
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "メモを追加"
@@ -8859,12 +8783,6 @@ msgstr "このユーザーはボットです。"
msgid "bot"
msgstr "ボット"
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "リリース:"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8981,39 +8899,15 @@ msgstr "注釈が空です。"
msgid "Summary"
msgstr "概要"
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr "開始日"
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "終了日"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
-msgstr "終了済み"
+msgstr ""
#: ../root/edit/details/AddCoverArt.js:39
#: ../root/edit/details/RemoveCoverArt.js:39
@@ -9023,18 +8917,21 @@ msgstr "(なし)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "ファイル名:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr "ファイル名"
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr "メディア:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "コメント:"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
-msgstr "セットリスト"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
msgid "Client:"
@@ -9057,20 +8954,20 @@ msgstr "ISRC「{isrc}」\t"
msgid "ISWC {iswc} to {work}"
msgstr "{work} の ISWC {iswc}"
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
-msgstr "レーベルコード"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
-msgstr "アーティストクレジット:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr "アーティストクレジット"
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
-msgstr "関係:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddRelationship.js:33
msgid "Link order:"
@@ -9128,30 +9025,24 @@ msgstr "(なし)"
msgid "(new release group)"
msgstr "(新たなリリースグループ)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "ステータス:"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr "パッケージ"
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr "リリースイベント"
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "カタログ番号:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "カタログ番号"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9163,17 +9054,17 @@ msgstr "すべての別名を表示"
msgid "Primary for locale"
msgstr "ロケールの主な別名"
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
-msgstr "並べ替えタイプ"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr "歌詞言語"
@@ -9181,7 +9072,7 @@ msgstr "歌詞言語"
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "データ品質"
@@ -9222,14 +9113,6 @@ msgstr "アーティストクレジット"
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr "IPIコード"
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr "ISNIコード"
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9254,11 +9137,6 @@ msgstr "前のレコーディング"
msgid "New recording"
msgstr "新しいレコーディング"
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr "アーティストクレジット"
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "前のアーティスト"
@@ -9284,25 +9162,10 @@ msgstr ""
msgid "Deprecated:"
msgstr "廃止:"
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr "ノート"
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "カタログ番号"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9323,6 +9186,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr "作品タイプ"
@@ -9335,8 +9199,9 @@ msgstr "作品タイプ"
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "マージ:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -9448,8 +9313,8 @@ msgid "New positions:"
msgstr "新しいポジション:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
-msgstr "メディア:"
+msgid "Mediums"
+msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
@@ -9469,8 +9334,8 @@ msgstr "メディア{new} (新しいメディア)
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
"メディア{new} ({old}か"
"ら移動)"
@@ -9514,20 +9379,6 @@ msgstr ""
msgid "CD TOC:"
msgstr "CD TOC:"
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "関係:"
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr "リリースイベント:"
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "カタログ番号"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9538,11 +9389,6 @@ msgstr "トラック番号"
msgid "Artist name:"
msgstr "アーティスト名:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr "リリースグループ:"
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "前の関係:"
@@ -9552,9 +9398,9 @@ msgid "New relationships:"
msgstr "新しい関係:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
-msgstr "前:"
+msgctxt "release type and status"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
msgid "Type: {type}, status: {status}"
@@ -9569,16 +9415,24 @@ msgid "New Status:"
msgstr "新しいステータス:"
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "追加しました"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
-msgstr "削除しました"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
-msgstr "編集"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
@@ -9618,41 +9472,39 @@ msgstr ""
msgid "Change track artists:"
msgstr "トラックのアーティストを変更"
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "別名:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr "トラック:"
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "候補:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "候補"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
-msgstr "推薦者:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr "推薦者"
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
-msgstr "第一賛成者:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
-msgstr "第二賛成者:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:59
msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "賛成投票数:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "賛成投票数"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "反対投票数:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "反対投票数"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -9668,47 +9520,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "ステータス:"
+msgid "Status"
+msgstr "ステータス"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "詳細を表示"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "候補"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "ステータス"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr "開始日"
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr "推薦者"
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr "第一賛成者"
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr "第二賛成者"
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "賛成投票数"
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "反対投票数"
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr "投票"
@@ -10415,7 +10239,7 @@ msgstr "自動編集者選挙"
msgid "Privileged User Accounts"
msgstr "特権ユーザーアカウント"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "統計"
@@ -10567,7 +10391,7 @@ msgstr "ドキュメントの目次"
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "関係タイプ"
@@ -10734,39 +10558,33 @@ msgstr "地域の情報"
msgid "Artist information"
msgstr "アーティストの情報"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "レコーディングを追加"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "別のアーティストに分割"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "追加した:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr "最終変更:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
-msgstr "検索件数: "
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
-msgstr "編集回数: "
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr "MusicBrainzのリリースをインポート"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "既存のリリースにディスクIDを追加"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10881,11 +10699,11 @@ msgstr "ログインして編集"
msgid "Event information"
msgstr "イベントの情報"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr "開始日:"
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr "終了日:"
@@ -10938,10 +10756,6 @@ msgctxt "place"
msgid "Closed"
msgstr "終了"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "座標:"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10954,7 +10768,7 @@ msgstr ""
msgid "Recording information"
msgstr "レコーディングの情報"
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr "最初のリリース年"
@@ -10985,27 +10799,27 @@ msgstr "全ての画像を見る"
msgid "No cover art available."
msgstr "カバーアートがありません。"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "その他の詳細"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr "リリースグループ評価"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr "リリースグループのレビュー"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr "リリースグループの外部リンク"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr "関係を編集"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr "データ品質を変更"
@@ -11013,21 +10827,13 @@ msgstr "データ品質を変更"
msgid "Series information"
msgstr "シリーズの情報"
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "IPI コード:"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "ISNIコード:"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "ライセンス"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "評価"
@@ -11167,7 +10973,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr "残念ですが、お探しのページは存在しません。"
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "エラーメッセージ:"
@@ -11272,12 +11078,7 @@ msgstr "インターフェース言語:"
msgid "Request data:"
msgstr "リクエストデータ:"
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] "エラー:"
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(このエラーについて詳細がありません)"
@@ -11428,7 +11229,7 @@ msgstr "不正なMBIDです"
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11644,7 +11445,7 @@ msgstr "使用中の関係属性"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11652,11 +11453,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "ID:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11668,6 +11464,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr "可能な値"
@@ -11701,17 +11498,13 @@ msgstr "なし"
msgid "Add child"
msgstr "子を追加"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr "可能な値:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "関係属性が見つかりません。"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
-msgstr "新たな関係属性を作成"
+msgid "Add a new relationship attribute"
+msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
@@ -11730,7 +11523,7 @@ msgstr "使用中の関係タイプ"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11804,8 +11597,8 @@ msgid "{type0}-{type1} relationship types"
msgstr "{type0}-{type1}の関係タイプ"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
-msgstr "新たな{type0}-{type1}関係を作成"
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
msgid "Expand all descriptions"
@@ -11823,7 +11616,7 @@ msgstr "{type0}・{type1}の関連タイプ見つかりません。"
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11933,8 +11726,8 @@ msgid ""
msgstr "本当に{artist}の{release}から以下のカバーアートを削除しますか?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "{artist}のリリースグループ"
@@ -12157,8 +11950,8 @@ msgstr "不正なAmazon URL"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -12168,10 +11961,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12208,7 +12001,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr "カタログ番号がISRCの形式になっているリリース"
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12217,7 +12010,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr "カタログ番号がレーベルコードの形式になっているリリース"
@@ -12498,7 +12291,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12578,7 +12371,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12707,8 +12500,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12879,13 +12672,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -13063,7 +12856,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -13087,8 +12880,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13310,20 +13102,6 @@ msgstr "URL"
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRC"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr "ISWC"
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13404,9 +13182,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13415,9 +13193,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13572,6 +13350,10 @@ msgstr ""
msgid "Last edited"
msgstr "最終編集"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "カタログ番号"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr "タグ検索"
@@ -13581,7 +13363,7 @@ msgid "Other lookups"
msgstr "他の探索"
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13592,7 +13374,7 @@ msgstr "開始"
msgid "Alternatively, you may {uri|add a new area}."
msgstr "または、{uri|新しい地域を追加}します。"
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "または、{uri|新しいアーティストを追加}します。"
@@ -13602,11 +13384,12 @@ msgid "Documentation Search"
msgstr "ドキュメントの検索"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "地域"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13640,7 +13423,7 @@ msgstr "または、{uri|新しいレコーディングを追加}します。"
msgid "Alternatively, you may {uri|add a new release group}."
msgstr "または、{uri|新しいリリースグループを追加}します。"
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr "または、{uri|新たなリリースを追加}します。"
@@ -13726,7 +13509,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr "申し訳ありません。クエリが大きすぎました。"
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr "このシリーズは現在空です。"
@@ -13747,42 +13530,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr "メールアドレスを変更する場合、確認が必要です。"
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
-msgstr "地域:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr "細かさは自由なので、市・県・国のいずれかを入力できます。"
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "生年月日:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr "プロフィールページに年齢を表示するのに生年月日を使用します。"
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "知っている言語:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "言語を追加"
@@ -13835,16 +13619,16 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr "購読中の項目が編集された際にメール通知する:"
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
-msgstr "自分が追加したアーティストを自動的に購読する。"
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
-msgstr "自分が追加したレーベルを自動的に購読する。"
+msgid "Automatically subscribe me to labels I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
-msgstr "自分が追加したシリーズを自動的に購読する。"
+msgid "Automatically subscribe me to series I add."
+msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
msgid "Your username will be publicly visible."
@@ -13896,12 +13680,14 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
-msgstr "前"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "新"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -13947,11 +13733,8 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
-"これにより編集が追加され、特定のクレジットが新しい名前に変更されます。既存の"
-"クレジットが間違っていることが確実な場合にのみこれを使用します(タイプミスな"
-"ど)。"
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
msgid ""
@@ -13978,33 +13761,33 @@ msgid "Show more artist credits"
msgstr "アーティスト・クレジットをさらに表示"
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "さらに表示..."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "コレクションの詳細"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "このコレクションを公開する"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "コレクションを作成"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr "コレクションを更新"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr "コラボレーターを追加"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr "コラボレーターを削除"
@@ -14022,7 +13805,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr "検索するか、MBIDを貼り付け"
@@ -14031,32 +13814,27 @@ msgstr "検索するか、MBIDを貼り付け"
msgid "Clear recent items"
msgstr "最近のアイテムを削除"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr "見つかりませんか? 直接検索を試す"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr "遅いですか? インデックス検索に戻す"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
-msgstr " スタンドアロンレコーディング"
+msgstr "スタンドアロンレコーディング"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr "{artist}の{release_group_type}"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -14066,8 +13844,14 @@ msgid "Vote on all edits:"
msgstr "全ての編集に投票"
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
-msgstr "ノートを削除"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
@@ -14106,12 +13890,12 @@ msgid "Annotation last modified on {date}."
msgstr "注釈は{date}に更新しました。"
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
-msgstr "このアーティスト・クレジットは編集保留中です。"
+msgid "This artist credit has open edits."
+msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
msgid "{artist} ({roles})"
@@ -14211,15 +13995,15 @@ msgstr "シリーズを検索"
msgid "Search for a work"
msgstr "作品を検索"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr "{first_list_item} … {last_list_item}"
@@ -14329,8 +14113,8 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
-msgstr "アーティストクレジット:"
+msgid "Artist credit"
+msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
msgid "Setlist contains"
@@ -14458,7 +14242,7 @@ msgstr "賛成投票"
#: ../root/static/scripts/common/components/TagEditor.js:141
msgid "You’ve downvoted this tag"
-msgstr " あなたはこのタグに反対投票をしました"
+msgstr "あなたはこのタグに反対投票をしました"
#: ../root/static/scripts/common/components/TagEditor.js:145
msgid "Downvote"
@@ -14626,31 +14410,31 @@ msgctxt "plural"
msgid "Series"
msgstr "シリーズ"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr "{begin_date} から {end_date} まで"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr "{date}から????まで"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr "{date}から現在まで"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr "{date} まで"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr "終了"
@@ -14671,8 +14455,9 @@ msgid "Began:"
msgstr "開始:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "終了:"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -14728,8 +14513,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14819,113 +14604,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr "ツイートではなくTwitterプロフィールにリンクしてください。"
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14972,7 +14757,7 @@ msgstr "新しいシリーズを追加"
msgid "Add a new work"
msgstr "新しい作品を追加"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
@@ -14980,47 +14765,47 @@ msgstr ""
"コラボを以下のフィールドに入力してください。 詳細は{ac|アーティストクレジッ"
"ト}を参照してください。"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr "MusicBrainz内のアーティスト:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr "アーティストのクレジット表記:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr "フレーズを結合"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr "アーティストクレジットの追加"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr "このリリースに表れる\"{name}\"にマッチする全てのアーティストを変更する"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr "クレジットをコピー"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr "クレジットを貼り付け"
@@ -15042,11 +14827,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -15083,11 +14868,11 @@ msgstr ""
"ださい。"
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -15149,10 +14934,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr "リリースイベント:"
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15487,8 +15269,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15694,14 +15476,14 @@ msgstr "入力したバーコードは、有効なUPCコードないしEANコー
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15710,8 +15492,8 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
-msgstr "新しい作品を一括作成"
+msgid "Batch-add new works"
+msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
msgid "Edit Work"
@@ -15762,34 +15544,34 @@ msgstr "作品に関係を一括追加"
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr "トラックの関係"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr "関係する作品"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr "このリリースメディアとトラックリストについての情報がありません。"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "リリースの関連"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr "リリースグループの関連"
@@ -15816,15 +15598,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr "作品タイプ:"
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr "言語を追加"
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr "言語を削除"
@@ -16057,10 +15835,6 @@ msgstr ""
msgid "Duration"
msgstr "再生時間"
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr "ファイル名"
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "タグ検索"
@@ -16122,23 +15896,23 @@ msgstr "URL情報"
msgid "URL Details"
msgstr "URL詳細"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr "件名:"
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr "メッセージ"
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr "メールアドレスを公開する"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr "自分のメールアドレスへも送信"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "送信"
@@ -16173,7 +15947,7 @@ msgstr "{link1|ユーザー名}あるいは{link2|パスワード}を忘れた
#: ../root/user/PrivilegedUsers.js:33 ../root/user/PrivilegedUsers.js:35
msgid "Privileged user accounts"
-msgstr " 特権ユーザーアカウント"
+msgstr "特権ユーザーアカウント"
#: ../root/user/PrivilegedUsers.js:37
msgid "Auto-editors"
@@ -16242,10 +16016,9 @@ msgstr "バナーメッセージ編集者"
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
-"バナーメッセージ編集者は、全てのページにバナーとして表示されるメッセージを設"
-"定することができます。例えばサイトメンテナンスの予定に関する注意などです。"
#: ../root/user/PrivilegedUsers.js:114
msgid "The following {count} users are banner message editors:"
@@ -16471,10 +16244,6 @@ msgstr ""
msgid "General Information"
msgstr "一般情報"
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "メール:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(非公開)"
@@ -16516,191 +16285,185 @@ msgstr "自動編集者として推薦します"
msgid "Age:"
msgstr "年齢:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "登録日:"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "最終ログイン:"
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "説明"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr "未ログイン"
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr "許可されたアプリケーション"
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr "リストを表示"
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr "ホームページ:"
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr "購読者:"
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr "{count} ({url|リスト表示})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr "購読を解除"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr "購読"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "言語:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr "{count} ({view_url|表示})"
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "編集"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "合計"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "承認済"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr "自動編集"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr "合計適用"
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr "否決"
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr "失敗"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr "最近24時間"
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr "この表はこの編集者が行った投票の概要を表示しています。"
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr "投票({view_url|表示})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr "最近28日間"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr "合計"
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr "この表はこの編集者により追加された項目の概要を表示しています。"
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr "追加した項目"
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr "タグと評価"
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr "賛成投票したタグ"
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr "反対投票したタグ"
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr "このユーザーの悪い行動を報告"
@@ -16934,7 +16697,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16948,7 +16711,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr "この編集はキャンセルされました。"
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr "購読"
@@ -17176,6 +16939,427 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Address:"
+#~ msgstr "住所:"
+
+#~ msgid "Annotation:"
+#~ msgstr "注釈:"
+
+#~ msgid "Area:"
+#~ msgstr "地域:"
+
+#~ msgid "Artist:"
+#~ msgstr "アーティスト:"
+
+#~ msgid "Attributes:"
+#~ msgstr "属性:"
+
+#~ msgid "Barcode:"
+#~ msgstr "バーコード:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "開始地域:"
+
+#~ msgid "Begin date:"
+#~ msgstr "開始日:"
+
+#~ msgid "Catalog#:"
+#~ msgstr "カタログ番号:"
+
+#~ msgid "Child order:"
+#~ msgstr "子順序:"
+
+#~ msgid "Country:"
+#~ msgstr "国:"
+
+#~ msgid "Created"
+#~ msgstr "作成時刻"
+
+#~ msgid "Date:"
+#~ msgstr "日付:"
+
+#~ msgid "Delete"
+#~ msgstr "削除"
+
+#~ msgid "Description:"
+#~ msgstr "説明:"
+
+#~ msgid "Documentation:"
+#~ msgstr "ドキュメント:"
+
+#~ msgid "End Area:"
+#~ msgstr "終了地域:"
+
+#~ msgid "End date:"
+#~ msgstr "終了日:"
+
+#~ msgid "Format:"
+#~ msgstr "フォーマット:"
+
+#~ msgid "Gender:"
+#~ msgstr "性別:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "IPI コード:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "ISNIコード:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRC:"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWC:"
+
+#~ msgid ""
+#~ "If you don’t select an existing release group, a new one will be created "
+#~ "with the types selected below."
+#~ msgstr ""
+#~ "既にあるリリースグループを選択するか、もしくは新しく作成するリリースグルー"
+#~ "プのタイプを指定してください。"
+
+#~ msgid "Label code:"
+#~ msgstr "レーベルコード:"
+
+#~ msgid "Label:"
+#~ msgstr "レーベル:"
+
+#~ msgid "Language:"
+#~ msgstr "言語:"
+
+#~ msgid "Length:"
+#~ msgstr "収録時間:"
+
+#~ msgid "Merge"
+#~ msgstr "マージ"
+
+#~ msgid "Name:"
+#~ msgstr "名前:"
+
+#~ msgid "Note:"
+#~ msgstr "メモ:"
+
+#~ msgid ""
+#~ "Note: only searches edits that: add or edit relationships, created after "
+#~ "2011-05-16; or which remove relationships, created after 2013-07-08; or "
+#~ "which reorder relationships."
+#~ msgstr ""
+#~ "メモ: 編集の検索が可能なのは、2011年5月16日より後の関係の追加か編集。2013"
+#~ "年7月8日より後の関係の削除か作成。または、関係の並び替えです。"
+
+#~ msgid "Ordering Type:"
+#~ msgstr "並べ替えタイプ:"
+
+#~ msgid "Packaging:"
+#~ msgstr "パッケージ:"
+
+#~ msgid "Parent:"
+#~ msgstr "親:"
+
+#~ msgid "Position:"
+#~ msgstr "ポジション:"
+
+#~ msgid "Release Group:"
+#~ msgstr "リリースグループ:"
+
+#~ msgid "Release:"
+#~ msgstr "リリース:"
+
+#~ msgid "Script:"
+#~ msgstr "文字:"
+
+#~ msgid "Search:"
+#~ msgstr "検索:"
+
+#~ msgid "Set track durations"
+#~ msgstr "トラックの長さを設定"
+
+#~ msgid "Setlist:"
+#~ msgstr "セットリスト:"
+
+#~ msgid "Sort name:"
+#~ msgstr "ソート名:"
+
+#~ msgid "Status:"
+#~ msgstr "ステータス:"
+
+#~ msgid "This entity will be created by this edit."
+#~ msgstr "この編集により項目が作成されます。"
+
+#~ msgid "Time:"
+#~ msgstr "時刻:"
+
+#~ msgid "Title:"
+#~ msgstr "タイトル:"
+
+#~ msgid ""
+#~ "To create a new tracklist, use an existing medium or import a disc from a "
+#~ "CD stub, select the appropriate tab."
+#~ msgstr ""
+#~ "新しいトラックリストを作成するには、既存のメディアを使用するかCDのスタブか"
+#~ "らディスクをインポートし、適切なタブを選択してください。"
+
+#~ msgid "Tracks:"
+#~ msgstr "トラック:"
+
+#~ msgid "URL:"
+#~ msgstr "URL:"
+
+#~ msgid "Warning:"
+#~ msgstr "警告:"
+
+#~ msgid "Cancelled"
+#~ msgstr "キャンセル済"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "有効な URL を入力してください。 例: \"http://google.com/\""
+
+#~ msgid "Bio:"
+#~ msgstr "プロフィール:"
+
+#~ msgid "Create"
+#~ msgstr "作成"
+
+#~ msgid "Preview:"
+#~ msgstr "プレビュー:"
+
+#~ msgid "Preview"
+#~ msgstr "プレビュー"
+
+#~ msgid "Disc ID:"
+#~ msgstr "ディスク ID:"
+
+#~ msgid ""
+#~ "If you don't see the artist you are looking for, you can still add a new "
+#~ "release. This will allow you to create this artist and a release at the "
+#~ "same time"
+#~ msgstr ""
+#~ "探しているアーティストが見当たらない場合でも、新しいリリースを追加すること"
+#~ "ができます。そうする場合、そのアーティストとリリースを同時に作成することと"
+#~ "なります。"
+
+#~ msgid "Create a new collection"
+#~ msgstr "新しいコレクションを作成"
+
+#~ msgid "Status"
+#~ msgstr "ステータス"
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "ステータス:"
+
+#~ msgid "Closed:"
+#~ msgstr "終了:"
+
+#~ msgid "Releases:"
+#~ msgstr "リリース:"
+
+#~ msgid "Ended"
+#~ msgstr "終了済み"
+
+#~ msgid "Filename:"
+#~ msgstr "ファイル名:"
+
+#~ msgid "Medium:"
+#~ msgstr "メディア:"
+
+#~ msgid "Artist Credits:"
+#~ msgstr "アーティストクレジット:"
+
+#~ msgid "Relationship:"
+#~ msgstr "関係:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "ステータス:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "カタログ番号:"
+
+#~ msgid "Merge:"
+#~ msgstr "マージ:"
+
+#~ msgid "Mediums:"
+#~ msgstr "メディア:"
+
+#~ msgid "Relationships:"
+#~ msgstr "関係:"
+
+#~ msgid "Release Events:"
+#~ msgstr "リリースイベント:"
+
+#~ msgid "Release group:"
+#~ msgstr "リリースグループ:"
+
+#~ msgid "Old:"
+#~ msgstr "前:"
+
+#~ msgid "Added"
+#~ msgstr "追加しました"
+
+#~ msgid "Removed"
+#~ msgstr "削除しました"
+
+#~ msgid "Edited"
+#~ msgstr "編集"
+
+#~ msgid "Alias:"
+#~ msgstr "別名:"
+
+#~ msgid "Track:"
+#~ msgstr "トラック:"
+
+#~ msgid "Candidate:"
+#~ msgstr "候補:"
+
+#~ msgid "Proposer:"
+#~ msgstr "推薦者:"
+
+#~ msgid "1st seconder:"
+#~ msgstr "第一賛成者:"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "第二賛成者:"
+
+#~ msgid "Votes for:"
+#~ msgstr "賛成投票数:"
+
+#~ msgid "Votes against:"
+#~ msgstr "反対投票数:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "ステータス:"
+
+#~ msgid "Seconder 1"
+#~ msgstr "第一賛成者"
+
+#~ msgid "Seconder 2"
+#~ msgstr "第二賛成者"
+
+#~ msgid "Added:"
+#~ msgstr "追加した:"
+
+#~ msgid "Last modified:"
+#~ msgstr "最終変更:"
+
+#~ msgid "Lookup count:"
+#~ msgstr "検索件数:"
+
+#~ msgid "Modify count:"
+#~ msgstr "編集回数: "
+
+#~ msgid "Coordinates:"
+#~ msgstr "座標:"
+
+#~ msgid "IPI code:"
+#~ msgstr "IPI コード:"
+
+#~ msgid "ISNI code:"
+#~ msgstr "ISNIコード:"
+
+#~ msgid "Error:"
+#~ msgid_plural "Errors:"
+#~ msgstr[0] "エラー:"
+
+#~ msgid "ID:"
+#~ msgstr "ID:"
+
+#~ msgid "Possible values:"
+#~ msgstr "可能な値:"
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "新たな関係属性を作成"
+
+#~ msgid "Create a new {type0}-{type1} relationship"
+#~ msgstr "新たな{type0}-{type1}関係を作成"
+
+#~ msgid "Location"
+#~ msgstr "地域"
+
+#~ msgid "Location:"
+#~ msgstr "地域:"
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "自分が追加したアーティストを自動的に購読する。"
+
+#~ msgid "Automatically subscribe me to labels I create."
+#~ msgstr "自分が追加したレーベルを自動的に購読する。"
+
+#~ msgid "Automatically subscribe me to series I create."
+#~ msgstr "自分が追加したシリーズを自動的に購読する。"
+
+#~ msgid "Old"
+#~ msgstr "前"
+
+#~ msgid "New"
+#~ msgstr "新"
+
+#~ msgid ""
+#~ "This will enter additional edits to change each specific credit to use "
+#~ "the new name. Only use this if you are sure the existing credits are "
+#~ "incorrect (e.g. for typos)."
+#~ msgstr ""
+#~ "これにより編集が追加され、特定のクレジットが新しい名前に変更されます。既存"
+#~ "のクレジットが間違っていることが確実な場合にのみこれを使用します(タイプミ"
+#~ "スなど)。"
+
+#~ msgid "Create collection"
+#~ msgstr "コレクションを作成"
+
+#~ msgid "Delete Note"
+#~ msgstr "ノートを削除"
+
+#~ msgid "This artist credit has pending edits."
+#~ msgstr "このアーティスト・クレジットは編集保留中です。"
+
+#~ msgid "Artist credit:"
+#~ msgstr "アーティストクレジット:"
+
+#~ msgid "Ended:"
+#~ msgstr "終了:"
+
+#~ msgid "Release events:"
+#~ msgstr "リリースイベント:"
+
+#~ msgid "Batch-create new works"
+#~ msgstr "新しい作品を一括作成"
+
+#~ msgid "Work Type:"
+#~ msgstr "作品タイプ:"
+
+#~ msgid ""
+#~ "Banner message editors are users who can set a message that is shown in a "
+#~ "banner on all pages, e.g. to warn users about upcoming site maintenance."
+#~ msgstr ""
+#~ "バナーメッセージ編集者は、全てのページにバナーとして表示されるメッセージを"
+#~ "設定することができます。例えばサイトメンテナンスの予定に関する注意などで"
+#~ "す。"
+
+#~ msgid "Email:"
+#~ msgstr "メール:"
+
+#~ msgid "Member since:"
+#~ msgstr "登録日:"
+
+#~ msgid "Last login:"
+#~ msgstr "最終ログイン:"
+
+#~ msgid "Subscribers:"
+#~ msgstr "購読者:"
+
+#~ msgid "Languages:"
+#~ msgstr "言語:"
+
#~ msgid "Artist {n}:"
#~ msgstr "アーティスト {n}:"
diff --git a/po/mb_server.ko.po b/po/mb_server.ko.po
index 00064b73a24..ba9f2db24b6 100644
--- a/po/mb_server.ko.po
+++ b/po/mb_server.ko.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:56+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Korean Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2074,15 +2101,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2130,7 +2154,7 @@ msgstr[0] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr "곡명"
@@ -2171,27 +2195,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2214,7 +2243,7 @@ msgstr "릴리즈 국가"
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2234,10 +2263,6 @@ msgstr "발매 그룹"
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2255,7 +2280,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2279,16 +2304,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2304,7 +2321,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2314,11 +2331,11 @@ msgstr "제거"
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2329,7 +2346,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2390,7 +2407,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2408,29 +2425,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "저장"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
-msgstr ""
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr "스크립트"
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2449,10 +2470,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2520,11 +2537,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2556,9 +2576,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2569,13 +2596,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr "상태"
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2583,11 +2618,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2600,9 +2635,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr "태그제공자"
@@ -2612,11 +2647,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2630,11 +2665,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2646,7 +2681,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2654,6 +2697,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2672,7 +2721,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2710,7 +2759,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2762,14 +2811,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2828,7 +2877,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2867,8 +2916,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2885,7 +2934,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2893,7 +2942,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2918,14 +2967,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2940,20 +2995,16 @@ msgstr ""
msgid "Title"
msgstr "제목"
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
-msgstr "타이틀"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
+msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2983,6 +3034,7 @@ msgid "Tracklist"
msgstr "곡 목록"
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -2990,7 +3042,7 @@ msgstr "곡 목록"
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "트랙"
@@ -3002,10 +3054,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3043,25 +3091,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr "유형"
@@ -3072,7 +3120,7 @@ msgstr "유형"
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3086,17 +3134,30 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
-msgstr ""
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr "URL"
#: ../root/release/edit/tracklist.tt:21
msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3173,7 +3234,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3185,23 +3246,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3257,7 +3315,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3295,11 +3353,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3315,7 +3373,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3342,8 +3400,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3352,8 +3410,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3437,8 +3495,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3921,12 +3981,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4011,25 +4071,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4142,15 +4202,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr "이메일 보내기"
@@ -4228,7 +4288,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4311,7 +4371,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4344,7 +4404,7 @@ msgstr "아티스트 제거"
msgid "Remove artist alias"
msgstr "아티스트 별칭 제거"
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr "아티스트 수정"
@@ -4386,8 +4446,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4399,7 +4459,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4433,7 +4493,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4455,8 +4515,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr ""
@@ -4485,14 +4545,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4513,7 +4573,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr ""
@@ -4565,11 +4625,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4621,7 +4676,7 @@ msgstr "레이블 추가"
msgid "Remove label"
msgstr "레이블 제거"
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr "레이블 편집"
@@ -4668,7 +4723,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4719,8 +4774,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr ""
@@ -4799,13 +4858,13 @@ msgstr ""
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr ""
@@ -4833,6 +4892,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr ""
@@ -4846,7 +4907,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr ""
@@ -4858,7 +4919,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -4933,7 +4994,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4946,24 +5007,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr "URL"
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -4981,6 +5025,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -4994,9 +5039,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5021,7 +5066,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5464,11 +5509,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr ""
@@ -5559,22 +5604,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr "고급"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5586,17 +5631,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr "주석"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5611,17 +5645,6 @@ msgctxt "noun"
msgid "Tag"
msgstr "태그"
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr "다큐먼트"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5861,19 +5884,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5881,7 +5904,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6000,9 +6023,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6360,12 +6384,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6399,14 +6423,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6422,7 +6447,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6459,20 +6484,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6501,26 +6512,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr ""
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr "스크립트"
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6528,15 +6521,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6591,6 +6579,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr ""
@@ -6603,10 +6592,6 @@ msgstr ""
msgid "Version:"
msgstr "버전:"
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr "생성"
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6694,6 +6679,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6743,8 +6729,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6753,8 +6742,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6820,10 +6808,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr "아티스트"
@@ -6862,7 +6850,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6911,7 +6899,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6925,7 +6916,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7090,7 +7084,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7369,10 +7363,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7405,7 +7401,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7419,7 +7415,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7439,15 +7435,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr "디스크 ID:"
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7457,8 +7444,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7467,21 +7455,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "종료"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7519,7 +7499,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7558,15 +7538,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7659,7 +7639,7 @@ msgstr "확인하기"
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7674,20 +7654,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7857,7 +7827,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "등급"
@@ -7903,7 +7873,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8005,6 +7975,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8046,26 +8017,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "성"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "시작 영역"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "종료 영역"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8077,13 +8032,6 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8092,22 +8040,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "상태"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8232,7 +8174,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8450,7 +8392,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8473,7 +8415,8 @@ msgid "Found {n} edit"
msgid_plural "Found {n} edits"
msgstr[0] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8498,7 +8441,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8507,15 +8450,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8538,50 +8481,40 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8598,13 +8531,7 @@ msgid "This user is automated."
msgstr ""
#: ../root/edit/components/EditorTypeInfo.js:40
-msgid "bot"
-msgstr ""
-
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
+msgid "bot"
msgstr ""
#: ../root/edit/components/IntentionallyRawIcon.js:17
@@ -8723,37 +8650,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8765,17 +8668,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8799,19 +8705,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8870,29 +8776,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8905,17 +8805,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8923,7 +8823,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -8964,14 +8864,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -8996,11 +8888,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9026,25 +8913,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9065,6 +8937,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9077,7 +8950,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9190,7 +9064,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9209,8 +9083,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9252,20 +9126,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "카탈로그 번호"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9276,11 +9136,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9290,8 +9145,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9307,17 +9162,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9356,28 +9219,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9385,11 +9244,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9406,47 +9267,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr ""
+msgid "Status"
+msgstr "상태"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "상태"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10119,7 +9952,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10271,7 +10104,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10438,39 +10271,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10585,11 +10412,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10642,10 +10469,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10658,7 +10481,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10689,27 +10512,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10717,21 +10540,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "라이선스"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "등급"
@@ -10869,7 +10684,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -10968,12 +10783,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11107,7 +10917,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11321,7 +11131,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11329,11 +11139,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11345,6 +11150,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11378,16 +11184,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11407,7 +11209,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11481,7 +11283,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11500,7 +11302,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11608,8 +11410,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11815,8 +11617,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11826,10 +11628,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11863,7 +11665,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11872,7 +11674,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12152,7 +11954,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12232,7 +12034,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12359,8 +12161,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12531,13 +12333,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12715,7 +12517,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12739,8 +12541,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -12959,20 +12760,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13051,9 +12838,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13062,9 +12849,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13219,6 +13006,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "카탈로그 번호"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13228,7 +13019,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13239,7 +13030,7 @@ msgstr "시작"
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13249,11 +13040,12 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "위치"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13287,7 +13079,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13371,7 +13163,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13392,42 +13184,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13478,15 +13271,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13539,12 +13332,14 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "새로운"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -13589,7 +13384,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13613,33 +13408,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13657,7 +13452,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13666,32 +13461,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13701,7 +13491,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13739,11 +13535,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13844,15 +13640,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -13962,7 +13758,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14255,31 +14051,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14300,7 +14096,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14357,8 +14154,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14448,113 +14245,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14601,53 +14398,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14669,11 +14466,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14708,11 +14505,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14774,10 +14571,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15112,8 +14906,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15317,14 +15111,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15333,7 +15127,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15385,34 +15179,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15439,15 +15233,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15680,10 +15470,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15745,23 +15531,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15863,7 +15649,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16090,10 +15877,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "이메일:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16135,191 +15918,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description:"
+msgid "Restrictions"
+msgstr "설명:"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16553,7 +16330,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16567,7 +16344,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16792,6 +16569,54 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Address:"
+#~ msgstr "주소:"
+
+#~ msgid "Annotation:"
+#~ msgstr "주석:"
+
+#~ msgid "Area:"
+#~ msgstr "지역:"
+
+#~ msgid "Artist:"
+#~ msgstr "아티스트:"
+
+#~ msgid "Barcode:"
+#~ msgstr "바코드:"
+
+#~ msgid "Country:"
+#~ msgstr "국가:"
+
+#~ msgid "Date:"
+#~ msgstr "날짜:"
+
+#~ msgid "Delete"
+#~ msgstr "삭제"
+
+#~ msgid "Merge"
+#~ msgstr "병합"
+
+#~ msgid "Title:"
+#~ msgstr "타이틀"
+
+#~ msgid "Create"
+#~ msgstr "생성"
+
+#~ msgid "Disc ID:"
+#~ msgstr "디스크 ID:"
+
+#~ msgid "Status"
+#~ msgstr "상태"
+
+#~ msgid "Location"
+#~ msgstr "위치"
+
+#~ msgid "New"
+#~ msgstr "새로운"
+
+#~ msgid "Email:"
+#~ msgstr "이메일:"
+
#~ msgid "Artist {n}:"
#~ msgstr "아티스트 {n}:"
diff --git a/po/mb_server.lt.po b/po/mb_server.lt.po
index 57ed5b8440e..73037fc24fb 100644
--- a/po/mb_server.lt.po
+++ b/po/mb_server.lt.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
-"PO-Revision-Date: 2023-09-24 15:27+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
+"PO-Revision-Date: 2023-10-09 22:27+0000\n"
"Last-Translator: \"Vac31.\" \n"
"Language-Team: Lithuanian \n"
@@ -71,8 +71,8 @@ msgstr "„YY“ – du paskutiniai registracijos metų skaitmenys."
#: ../root/edit/details/historic/AddRelease.js:88
#: ../root/recording/RecordingIndex.js:53
#: ../root/static/scripts/release/components/MediumTable.js:83
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1563
-#: ../root/utility/tableColumns.js:567
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1564
+#: ../root/utility/tableColumns.js:572
msgid "#"
msgstr "#"
@@ -121,8 +121,8 @@ msgstr "(jokio kito viršelio)"
#: ../root/edit/details/MergeReleases.js:239
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
-#: ../root/utility/tableColumns.js:508 ../root/utility/tableColumns.js:516
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/utility/tableColumns.js:513 ../root/utility/tableColumns.js:521
msgctxt "and"
msgid "/"
msgstr "/"
@@ -223,8 +223,8 @@ msgstr "Pridėti instrumentą"
msgid "Add Label"
msgstr "Pridėti leidykla"
-#: ../root/release/edit/information.tt:213
-#: ../root/release/edit/information.tt:214
+#: ../root/release/edit/information.tt:215
+#: ../root/release/edit/information.tt:216
#: ../root/layout/components/BottomMenu.js:248
msgctxt "button/menu"
msgid "Add Label"
@@ -244,8 +244,8 @@ msgctxt "header"
msgid "Add Release"
msgstr "Pridėti leidimą"
-#: ../root/release/edit/information.tt:169
-#: ../root/release/edit/information.tt:170
+#: ../root/release/edit/information.tt:171
+#: ../root/release/edit/information.tt:172
msgctxt "button/menu"
msgid "Add Release Event"
msgstr "Pridėti leidimo renginį"
@@ -290,7 +290,7 @@ msgstr ""
"Pridėk laikmeną spustelėję toliau esantį mygtuką „Pridėti laikmeną“ arba "
"pažymėk laukelį, patvirtinantį, kad takelių sąrašas nežinomas."
-#: ../root/release/edit/recordings.tt:212
+#: ../root/release/edit/recordings.tt:178
#: ../root/static/scripts/edit/components/AddEntityDialog.js:21
msgid "Add a new recording"
msgstr "Pridėti naują įrašą"
@@ -315,14 +315,17 @@ msgstr "Pridėti {item}"
msgid "Add {num} track(s)"
msgstr "Pridėti {num} takelį (-us)"
-#: ../root/release/edit/information.tt:245
+#: ../root/release/edit/information.tt:247
msgid "Additional information"
msgstr "Papildoma informacija"
-#: ../root/place/edit_form.tt:16
-#: ../root/layout/components/sidebar/PlaceSidebar.js:82
-msgid "Address:"
-msgstr "Adresas:"
+#: ../root/place/edit_form.tt:16 ../root/components/list/PlaceList.js:66
+#: ../root/edit/details/AddPlace.js:55 ../root/edit/details/EditPlace.js:68
+#: ../root/layout/components/sidebar/PlaceSidebar.js:84
+#: ../root/report/PlacesWithoutCoordinates.js:41
+#: ../root/search/components/PlaceResults.js:65
+msgid "Address"
+msgstr ""
#: ../root/release/edit/recordings.tt:3
msgid ""
@@ -346,9 +349,17 @@ msgstr ""
msgid "An error occurred: "
msgstr "Įvyko klaida: "
-#: ../root/release/edit/information.tt:249
-msgid "Annotation:"
-msgstr "Anotacija:"
+#: ../root/release/edit/information.tt:251
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
+#: ../root/annotation/AnnotationRevision.js:32
+#: ../root/annotation/EditAnnotation.js:74
+#: ../root/layout/components/Search.js:41
+#: ../root/report/hooks/useAnnotationColumns.js:28
+#: ../root/search/components/AnnotationResults.js:56
+#: ../root/search/components/SearchForm.js:45
+#: ../root/static/scripts/common/components/Annotation.js:51
+msgid "Annotation"
+msgstr ""
#: ../root/edit/search_macros.tt:423
msgid "Applied Edit Count of Editor"
@@ -360,7 +371,9 @@ msgctxt "vote"
msgid "Approve"
msgstr ""
-#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Area.pm:7
+#: ../root/artist/edit_form.tt:20 ../root/edit/search_macros.tt:423
+#: ../root/label/edit_form.tt:18 ../root/place/edit_form.tt:19
+#: ../lib/MusicBrainz/Server/Edit/Area.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:44
#: ../root/components/list/AreaList.js:46
#: ../root/components/list/ArtistList.js:92
@@ -370,8 +383,11 @@ msgstr ""
#: ../root/edit/details/AddPlace.js:61 ../root/edit/details/EditArea.js:43
#: ../root/edit/details/EditArtist.js:108 ../root/edit/details/EditLabel.js:119
#: ../root/edit/details/EditPlace.js:75 ../root/layout/components/Search.js:35
+#: ../root/layout/components/sidebar/ArtistSidebar.js:126
+#: ../root/layout/components/sidebar/LabelSidebar.js:90
+#: ../root/layout/components/sidebar/PlaceSidebar.js:91
#: ../root/report/PlacesWithoutCoordinates.js:42
-#: ../root/search/components/ArtistResults.js:56
+#: ../root/search/components/ArtistResults.js:55
#: ../root/search/components/LabelResults.js:69
#: ../root/search/components/PlaceResults.js:66
#: ../root/search/components/SearchForm.js:43
@@ -385,18 +401,12 @@ msgstr "Vietovė"
msgid "Area Details"
msgstr "Duomenys apie vietovę"
-#: ../root/artist/edit_form.tt:20 ../root/label/edit_form.tt:18
-#: ../root/place/edit_form.tt:19
-#: ../root/layout/components/sidebar/ArtistSidebar.js:120
-#: ../root/layout/components/sidebar/LabelSidebar.js:87
-#: ../root/layout/components/sidebar/PlaceSidebar.js:88
-msgid "Area:"
-msgstr "Vietovė:"
-
#: ../root/cdstub/cdstub.tt:7 ../root/cdtoc/attach_filter_release.tt:29
#: ../root/cdtoc/list.tt:8 ../root/cdtoc/lookup.tt:42
-#: ../root/edit/search_macros.tt:423 ../root/release/edit/tracklist.tt:163
-#: ../root/release/edit/tracklist.tt:453
+#: ../root/cdtoc/lookup.tt:75 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/information.tt:26 ../root/release/edit/tracklist.tt:110
+#: ../root/release/edit/tracklist.tt:163 ../root/release/edit/tracklist.tt:453
+#: ../root/release_group/set_cover_art.tt:32
#: ../lib/MusicBrainz/Server/Edit/Artist.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:38
#: ../root/cdstub/BrowseCDStubs.js:37 ../root/cdstub/CDStubInfo.js:28
@@ -421,8 +431,14 @@ msgstr "Vietovė:"
#: ../root/edit/details/historic/AddRelease.js:38
#: ../root/edit/details/historic/AddRelease.js:90
#: ../root/edit/details/historic/AddTrackKV.js:41
-#: ../root/edit/details/historic/EditTrack.js:35 ../root/isrc/Index.js:67
+#: ../root/edit/details/historic/ChangeArtistQuality.js:24
+#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
+#: ../root/edit/details/historic/EditTrack.js:35
+#: ../root/edit/details/historic/MoveRelease.js:30
+#: ../root/edit/details/historic/RemoveRelease.js:26 ../root/isrc/Index.js:67
#: ../root/layout/components/Search.js:24
+#: ../root/layout/components/sidebar/RecordingSidebar.js:49
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
#: ../root/release_group/ReleaseGroupIndex.js:168
#: ../root/report/DuplicateArtists.js:67
#: ../root/report/DuplicateReleaseGroups.js:59
@@ -439,11 +455,12 @@ msgstr "Vietovė:"
#: ../root/search/components/CDStubResults.js:45
#: ../root/search/components/RecordingResults.js:143
#: ../root/search/components/ReleaseGroupResults.js:64
-#: ../root/search/components/ReleaseResults.js:113
+#: ../root/search/components/ReleaseResults.js:112
#: ../root/search/components/SearchForm.js:37
#: ../root/static/scripts/common/constants.js:36
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:50
#: ../root/static/scripts/common/utility/formatSetlist.js:52
+#: ../root/static/scripts/edit/components/forms.js:29
#: ../root/static/scripts/release/components/MediumTable.js:86
#: ../root/taglookup/Form.js:25 ../root/user/UserProfile.js:50
msgid "Artist"
@@ -457,19 +474,6 @@ msgstr "Atlikėjo vietovė"
msgid "Artist Details"
msgstr "Duomenys apie atlikėją"
-#: ../root/cdtoc/lookup.tt:75 ../root/release/edit/information.tt:26
-#: ../root/release/edit/tracklist.tt:110
-#: ../root/release_group/set_cover_art.tt:32
-#: ../root/edit/details/historic/ChangeArtistQuality.js:24
-#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
-#: ../root/edit/details/historic/MoveRelease.js:30
-#: ../root/edit/details/historic/RemoveRelease.js:26
-#: ../root/layout/components/sidebar/RecordingSidebar.js:49
-#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
-#: ../root/static/scripts/edit/components/forms.js:29
-msgid "Artist:"
-msgstr "Atlikėjas (-a):"
-
#: ../root/cdtoc/attach_artist_releases.tt:40
#: ../root/cdtoc/attach_filter_release.tt:54
msgctxt "button/menu"
@@ -496,8 +500,19 @@ msgid "Attached to releases"
msgstr "Pridėta prie leidinių"
#: ../root/relationship/linktype/form.tt:52
-msgid "Attributes:"
-msgstr "Atributai:"
+#: ../root/admin/attributes/Attribute.js:72
+#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
+#: ../root/admin/attributes/Language.js:33
+#: ../root/admin/attributes/Script.js:33
+#: ../root/components/RelationshipsTable.js:336
+#: ../root/edit/details/AddRelationshipType.js:169
+#: ../root/edit/details/EditRelationshipType.js:297
+#: ../root/edit/details/RemoveRelationshipType.js:117
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
+#: ../root/utility/tableColumns.js:671
+msgid "Attributes"
+msgstr ""
#: ../root/edit/search_macros.tt:397
msgid "Auto-Editor"
@@ -506,6 +521,8 @@ msgstr "Autoredaktorius (-ė)"
#: ../root/cdtoc/attach_artist_releases.tt:19
#: ../root/cdtoc/attach_filter_release.tt:33 ../root/cdtoc/list.tt:13
#: ../root/cdtoc/lookup.tt:47 ../root/release/edit/duplicates.tt:17
+#: ../root/release/edit/information.tt:222
+#: ../root/release_group/set_cover_art.tt:62
#: ../root/components/list/ReleaseList.js:139
#: ../root/edit/details/AddRelease.js:112
#: ../root/edit/details/EditBarcodes.js:45
@@ -515,20 +532,15 @@ msgstr "Autoredaktorius (-ė)"
#: ../root/edit/details/MergeReleases.js:242
#: ../root/edit/details/historic/AddRelease.js:125
#: ../root/edit/details/historic/EditReleaseEvents.js:113
+#: ../root/layout/components/sidebar/CDStubSidebar.js:71
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:128
#: ../root/otherlookup/OtherLookupForm.js:62
#: ../root/release_group/ReleaseGroupIndex.js:174
#: ../root/report/ReleasesSameBarcode.js:40
-#: ../root/search/components/ReleaseResults.js:119
+#: ../root/search/components/ReleaseResults.js:118
msgid "Barcode"
msgstr "Brūkšninis kodas"
-#: ../root/release/edit/information.tt:220
-#: ../root/release_group/set_cover_art.tt:62
-#: ../root/layout/components/sidebar/CDStubSidebar.js:63
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:126
-msgid "Barcode:"
-msgstr "Brūkšninis kodas:"
-
#: ../root/cdtoc/lookup.tt:33
msgid ""
"Based on the above CD stub, we also found the following releases in "
@@ -547,15 +559,25 @@ msgstr ""
"egzistuoja šis panašus leidinys. Jei nori, kad tavo leidinys būtų paremtas "
"jau egzistuojančiu leidiniu, pasirink jį toliau."
-#: ../root/artist/edit_form.tt:42
-msgid "Begin Area:"
-msgstr "Pradžios vietovę:"
+#: ../root/artist/edit_form.tt:42 ../root/components/list/ArtistList.js:102
+#: ../root/search/components/ArtistResults.js:57
+msgid "Begin Area"
+msgstr ""
#: ../root/artist/edit_form.tt:38 ../root/components/forms.tt:212
#: ../root/event/edit_form.tt:36 ../root/artist/utils.js:34
+#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
+#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
+#: ../root/edit/details/AddRemoveAlias.js:90
+#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
+#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
+#: ../root/edit/details/EditPlace.js:93
#: ../root/layout/components/sidebar/AreaSidebar.js:58
-msgid "Begin date:"
-msgstr "Pradžios data:"
+#: ../root/report/RecordingsWithFutureDates.js:34
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
+msgid "Begin date"
+msgstr ""
#: ../root/release/add_cover_art.tt:95 ../root/search/error/InternalError.js:29
msgid ""
@@ -653,38 +675,33 @@ msgstr "Atšaukti"
msgid "Cardinality of {entity_placeholder}"
msgstr "Kardinalumas {entity_placeholder}"
-#: ../root/release/edit/information.tt:192
+#: ../root/release/edit/information.tt:194
msgid "Cat. No:"
msgstr "Kat. Nr:"
#: ../root/cdtoc/attach_artist_releases.tt:18
#: ../root/cdtoc/attach_filter_release.tt:32 ../root/cdtoc/list.tt:12
#: ../root/cdtoc/lookup.tt:46 ../root/release/edit/duplicates.tt:16
+#: ../root/release_group/set_cover_art.tt:56
#: ../root/edit/details/MergeReleases.js:241
#: ../root/recording/RecordingIndex.js:62
#: ../root/release_group/ReleaseGroupIndex.js:173
-#: ../root/search/components/ReleaseResults.js:118
-#: ../root/utility/tableColumns.js:482 ../root/utility/tableColumns.js:487
+#: ../root/search/components/ReleaseResults.js:117
+#: ../root/utility/tableColumns.js:487 ../root/utility/tableColumns.js:492
msgid "Catalog#"
msgstr "Katalogo#"
-#: ../root/release_group/set_cover_art.tt:56
-msgid "Catalog#:"
-msgstr "Katalogo#:"
-
-#: ../root/admin/attributes/form.tt:53 ../root/admin/attributes/Attribute.js:82
-#: ../root/edit/details/AddRelationshipAttribute.js:50
-#: ../root/edit/details/EditRelationshipAttribute.js:93
-msgid "Child order"
-msgstr ""
-
+#: ../root/admin/attributes/form.tt:53
#: ../root/relationship/linkattributetype/form.tt:7
#: ../root/relationship/linktype/form.tt:7
+#: ../root/admin/attributes/Attribute.js:82
+#: ../root/edit/details/AddRelationshipAttribute.js:50
+#: ../root/edit/details/EditRelationshipAttribute.js:93
#: ../root/edit/details/EditRelationshipType.js:241
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:122
#: ../root/relationship/linktype/RelationshipTypeIndex.js:162
#: ../root/relationship/linktype/RelationshipTypePairTree.js:58
-msgid "Child order:"
+msgid "Child order"
msgstr ""
#: ../root/release/edit/recordings.tt:114
@@ -696,6 +713,7 @@ msgid "Close"
msgstr "Uždaryti"
#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditHeader.js:155
+#: ../root/edit/components/EditSidebar.js:59
msgid "Closed"
msgstr "Uždaryta"
@@ -707,22 +725,15 @@ msgstr "Bendradarbiai šiame atlikėjui"
msgid "Collapse medium"
msgstr "Suskleisti laikmeną"
-#: ../root/cdstub/index.tt:3 ../root/cdstub/CDStubIndex.js:36
+#: ../root/cdstub/index.tt:3 ../root/release/add_cover_art.tt:69
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:71 ../root/cdstub/CDStubIndex.js:36
msgid "Comment"
msgstr "Komentaras"
-#: ../root/release/add_cover_art.tt:69 ../root/release/add_cover_art.tt:137
-#: ../root/release/reorder_cover_art.tt:19
-#: ../root/release_group/set_cover_art.tt:71
-#: ../root/edit/details/AddCoverArt.js:54
-#: ../root/edit/details/EditCoverArt.js:67
-#: ../root/edit/details/RemoveCoverArt.js:56
-#: ../root/release/CoverArtFields.js:93
-msgid "Comment:"
-msgstr ""
-
#: ../root/place/edit_form.tt:28 ../root/edit/details/AddPlace.js:67
#: ../root/edit/details/EditPlace.js:86
+#: ../root/layout/components/sidebar/PlaceSidebar.js:99
msgid "Coordinates"
msgstr ""
@@ -750,33 +761,26 @@ msgstr "Kopijuoti leidinio pavadinimą į leidinio grupę"
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:44 ../root/release/edit/duplicates.tt:14
+#: ../root/release/edit/information.tt:156
+#: ../root/release_group/set_cover_art.tt:41
#: ../root/edit/details/EditReleaseLabel.js:113
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:122
#: ../root/edit/details/historic/EditReleaseEvents.js:110
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/common/components/FilterForm.js:187
-#: ../root/utility/tableColumns.js:504 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:509 ../root/utility/tableColumns.js:521
msgid "Country"
msgstr "Šalis"
-#: ../root/release/edit/information.tt:154
-#: ../root/release_group/set_cover_art.tt:41
-msgid "Country:"
-msgstr "Šalis:"
-
#: ../root/release_group/set_cover_art.tt:67
#: ../root/components/EntityTabs.js:114 ../root/release/CoverArt.js:57
#: ../root/user/UserProfile.js:51
msgid "Cover Art"
msgstr "Viršelis"
-#: ../root/edit/search_macros.tt:423
-msgid "Created"
-msgstr "Sukurta"
-
#: ../root/release/add_cover_art.tt:85
msgid "Creating edit..."
msgstr "Kuriamas redagavimas..."
@@ -785,7 +789,7 @@ msgstr "Kuriamas redagavimas..."
msgid "Custom delimiter"
msgstr "Pasirinktinis riboženklis"
-#: ../root/release/edit/information.tt:146
+#: ../root/release/edit/information.tt:148
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:253
#: ../root/static/scripts/edit/components/PartialDateInput.js:186
msgid "DD"
@@ -800,6 +804,8 @@ msgstr "Duomenų takeliai"
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:43 ../root/release/edit/duplicates.tt:13
+#: ../root/release/edit/information.tt:130
+#: ../root/release_group/set_cover_art.tt:37
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:25
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:30
#: ../root/admin/statistics-events/StatisticsEventIndex.js:26
@@ -808,14 +814,16 @@ msgstr "Duomenų takeliai"
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:121
#: ../root/edit/details/historic/EditReleaseEvents.js:109
-#: ../root/elections/ElectionVotes.js:28 ../root/recording/RecordingIndex.js:60
+#: ../root/elections/ElectionVotes.js:28
+#: ../root/layout/components/sidebar/EventSidebar.js:61
+#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
#: ../root/search/components/EventResults.js:74
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:106
#: ../root/static/scripts/common/components/FilterForm.js:225
-#: ../root/utility/tableColumns.js:279 ../root/utility/tableColumns.js:284
-#: ../root/utility/tableColumns.js:510 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:284 ../root/utility/tableColumns.js:289
+#: ../root/utility/tableColumns.js:515 ../root/utility/tableColumns.js:521
msgid "Date"
msgstr "Data"
@@ -825,12 +833,6 @@ msgstr "Data"
msgid "Date Period"
msgstr "Datos laikotarpis"
-#: ../root/release/edit/information.tt:128
-#: ../root/release_group/set_cover_art.tt:37
-#: ../root/layout/components/sidebar/EventSidebar.js:59
-msgid "Date:"
-msgstr "Data:"
-
#: ../root/artist/edit_form.tt:36 ../root/components/forms.tt:210
#: ../root/event/edit_form.tt:34
#: ../root/static/scripts/edit/components/DateRangeFieldset.js:186
@@ -841,11 +843,10 @@ msgstr ""
"Datos pateikiamos formatu YYYY-MM-DD. Galima rašyti dalines datas, "
"pavyzdžiui, YYYY-MM arba tik YYYY, arba visiškai praleisti datą."
-#: ../root/edit/search_macros.tt:120
-msgid "Delete"
-msgstr "Ištrinti"
-
#: ../root/admin/attributes/form.tt:61 ../root/doc/edit_type.tt:23
+#: ../root/instrument/edit_form.tt:13
+#: ../root/relationship/linkattributetype/form.tt:15
+#: ../root/relationship/linktype/form.tt:20
#: ../root/admin/attributes/Attribute.js:80
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:33
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:42
@@ -865,19 +866,13 @@ msgstr "Ištrinti"
#: ../root/instrument/InstrumentIndex.js:34
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:110
#: ../root/relationship/linktype/RelationshipTypeIndex.js:146
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
#: ../root/search/components/InstrumentResults.js:55
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:206
-#: ../root/utility/tableColumns.js:676
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:209
+#: ../root/utility/tableColumns.js:681
msgid "Description"
msgstr "Aprašymas"
-#: ../root/instrument/edit_form.tt:13
-#: ../root/relationship/linkattributetype/form.tt:15
-#: ../root/relationship/linktype/form.tt:20
-#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
-msgid "Description:"
-msgstr "Aprašymas:"
-
#: ../root/doc/edit_type.tt:28 ../root/components/EntityTabs.js:146
#: ../root/elections/ElectionDetails.js:29 ../root/entity/Details.js:91
#: ../root/entity/Details.js:93
@@ -887,7 +882,7 @@ msgstr "Išsami informacija"
#: ../root/area/edit_form.tt:10 ../root/artist/edit_form.tt:14
#: ../root/event/edit_form.tt:13 ../root/instrument/edit_form.tt:10
#: ../root/label/edit_form.tt:13 ../root/place/edit_form.tt:13
-#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:256
+#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:258
#: ../root/release_group/edit_form.tt:15 ../root/series/edit_form.tt:13
#: ../root/work/edit_form.tt:13 ../root/edit/details/AddArea.js:54
#: ../root/edit/details/AddArtist.js:62 ../root/edit/details/AddEvent.js:44
@@ -910,7 +905,13 @@ msgstr "Išsami informacija"
msgid "Disambiguation"
msgstr "Išskyrimas"
-#: ../root/release/discids.tt:8 ../root/edit/details/SetTrackLengths.js:54
+#: ../root/release/discids.tt:8 ../root/cdtoc/CDTocInfo.js:32
+#: ../root/edit/details/AddDiscId.js:34 ../root/edit/details/MoveDiscId.js:26
+#: ../root/edit/details/RemoveDiscId.js:31
+#: ../root/edit/details/SetTrackLengths.js:54
+#: ../root/edit/details/historic/AddDiscId.js:27
+#: ../root/edit/details/historic/MoveDiscId.js:21
+#: ../root/edit/details/historic/RemoveDiscId.js:23
#: ../root/otherlookup/OtherLookupForm.js:112
#: ../root/utility/tableColumns.js:199 ../root/utility/tableColumns.js:204
msgid "Disc ID"
@@ -938,15 +939,23 @@ msgid "Do not use any of the above releases as a starting point"
msgstr "Nenaudoti nė vieno iš pirmiau minėtų leidinių kaip pradinio taško"
#: ../root/relationship/linktype/form.tt:65
-msgid "Documentation:"
-msgstr "Dokumentacija:"
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
+#: ../root/edit/details/AddRelationshipType.js:187
+#: ../root/edit/details/EditRelationshipType.js:327
+#: ../root/layout/components/BottomMenu.js:293
+#: ../root/layout/components/Search.js:51
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
+#: ../root/search/components/SearchForm.js:56
+msgid "Documentation"
+msgstr ""
#: ../root/layout.tt:112 ../root/layout/components/Footer.js:26
msgid "Donate"
msgstr "Aukoti"
#: ../root/release/edit/macros.tt:54
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:166
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:165
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:219
#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:64
#: ../root/static/scripts/edit/components/URLInputPopover.js:134
@@ -1023,12 +1032,12 @@ msgid "Edit Relationship Type"
msgstr "Redaguoti sąsajos tipą"
#: ../root/doc/edit_type.tt:18 ../root/doc/edit_types.tt:1
-#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:96
+#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:99
#: ../root/layout/components/BottomMenu.js:315
msgid "Edit Types"
msgstr "Redaguoti tipus"
-#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:28
+#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:26
#: ../root/static/scripts/edit/components/URLInputPopover.js:146
msgid "Edit URL"
msgstr "Redaguoti URL"
@@ -1060,15 +1069,26 @@ msgstr "Redaktoriaus (-ės) vardynas"
msgid "Enable vinyl track numbers"
msgstr "Įjungti vinilo takelių numerius"
-#: ../root/artist/edit_form.tt:56
-msgid "End Area:"
-msgstr "Pabaigos vietovė:"
+#: ../root/artist/edit_form.tt:56 ../root/components/list/ArtistList.js:112
+#: ../root/search/components/ArtistResults.js:59
+msgid "End Area"
+msgstr ""
#: ../root/artist/edit_form.tt:51 ../root/components/forms.tt:214
#: ../root/event/edit_form.tt:38 ../root/artist/utils.js:65
+#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
+#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
+#: ../root/edit/details/AddRemoveAlias.js:97
+#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
+#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
+#: ../root/edit/details/EditPlace.js:101
+#: ../root/elections/ElectionTable/index.js:25
#: ../root/layout/components/sidebar/AreaSidebar.js:64
-msgid "End date:"
-msgstr "Pabaigos data:"
+#: ../root/report/RecordingsWithFutureDates.js:39
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
+msgid "End date"
+msgstr ""
#: ../root/relationship/linktype/form.tt:112
msgid "Endpoint:"
@@ -1077,7 +1097,7 @@ msgstr "Galutinis taškas:"
#: ../root/components/forms.tt:258 ../root/components/forms.tt:283
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:113
msgid "English"
-msgstr "Anglų k."
+msgstr "Anglų"
#: ../root/release/edit/tracklist.tt:3
msgid "Enter a tracklist below:"
@@ -1106,6 +1126,10 @@ msgstr ""
"Įvesk skirtuką, kuris atskiria takelio pavadinimą nuo atlikėjo pavadinimo "
"(priimamos galiojančios {url|reguliariosios išraiškos})."
+#: ../root/edit/search_macros.tt:423
+msgid "Entered"
+msgstr ""
+
#: ../root/components/forms.tt:30
msgid ""
"Entering an {note|edit note} that describes where you got your information "
@@ -1172,7 +1196,7 @@ msgstr ""
#: ../root/area/edit_form.tt:22 ../root/artist/edit_form.tt:70
#: ../root/event/edit_form.tt:46 ../root/instrument/edit_form.tt:32
#: ../root/label/edit_form.tt:41 ../root/place/edit_form.tt:37
-#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:266
+#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:268
#: ../root/release_group/edit_form.tt:23 ../root/series/edit_form.tt:26
#: ../root/work/edit_form.tt:90
#: ../root/static/scripts/genre/components/GenreEditForm.js:160
@@ -1215,25 +1239,21 @@ msgid "For more information, check the {doc_doc|documentation}."
msgstr "Daugiau informacijos rasi {doc_doc|dokumentuose}."
#: ../root/cdtoc/list.tt:9 ../root/release/edit/duplicates.tt:11
+#: ../root/release/edit/tracklist.tt:305
+#: ../root/release_group/set_cover_art.tt:46
#: ../root/components/list/ReleaseList.js:98
-#: ../root/edit/details/EditMedium.js:485
+#: ../root/edit/details/AddMedium.js:136 ../root/edit/details/EditMedium.js:485
#: ../root/edit/details/EditReleaseLabel.js:131
#: ../root/edit/details/MergeReleases.js:237
#: ../root/edit/details/historic/AddRelease.js:126
#: ../root/edit/details/historic/EditReleaseEvents.js:114
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:137
#: ../root/release_group/ReleaseGroupIndex.js:169
#: ../root/report/components/CDTocList.js:49
-#: ../root/search/components/ReleaseResults.js:114
+#: ../root/search/components/ReleaseResults.js:113
msgid "Format"
msgstr "Formatas"
-#: ../root/release/edit/tracklist.tt:305
-#: ../root/release_group/set_cover_art.tt:46
-#: ../root/edit/details/AddMedium.js:136
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:132
-msgid "Format:"
-msgstr "Formatas:"
-
#: ../root/layout.tt:114 ../root/layout/components/Footer.js:28
#: ../root/main/index.js:212
msgid "Forums"
@@ -1281,12 +1301,14 @@ msgstr ""
msgid "Full TOC:"
msgstr ""
-#: ../root/artist/edit_form.tt:17
-#: ../root/layout/components/sidebar/ArtistSidebar.js:84
-#: ../root/static/scripts/account/components/EditProfileForm.js:207
+#: ../root/artist/edit_form.tt:17 ../root/components/list/ArtistList.js:87
+#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
+#: ../root/layout/components/sidebar/ArtistSidebar.js:89
+#: ../root/search/components/ArtistResults.js:54
+#: ../root/static/scripts/account/components/EditProfileForm.js:237
#: ../root/user/UserProfile.js:268
-msgid "Gender:"
-msgstr "Lytis:"
+msgid "Gender"
+msgstr ""
#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Genre.pm:7
#: ../root/edit/details/AddGenre.js:24 ../root/edit/details/EditGenre.js:28
@@ -1371,7 +1393,7 @@ msgstr ""
msgid "Historic"
msgstr ""
-#: ../root/release/edit/information.tt:325
+#: ../root/release/edit/information.tt:339
msgid "I confirm that this is the barcode as it appears on the release."
msgstr "Patvirtinu, kad šis brūkšninis kodas yra toks, koks nurodytas leidime."
@@ -1398,14 +1420,22 @@ msgstr ""
#: ../root/edit/search_macros.tt:423 ../root/admin/attributes/Attribute.js:78
#: ../root/admin/attributes/Language.js:39
#: ../root/admin/attributes/Script.js:40
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
msgid "ID"
msgstr "ID"
#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
#: ../root/edit/details/AddArtist.js:136 ../root/edit/details/AddLabel.js:102
+#: ../root/layout/components/sidebar/SidebarIpis.js:18
msgid "IPI code"
msgstr "IPI kodas"
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/EditArtist.js:162 ../root/edit/details/EditLabel.js:131
+msgid "IPI codes"
+msgstr ""
+
#: ../root/components/forms.tt:333
msgid ""
"IPI codes are assigned by CISAC to “interested parties” in musical rights "
@@ -1414,20 +1444,21 @@ msgstr ""
"IPI kodus suteikia CISAC „suinteresuotosioms organizacijoms“ muzikos teisių "
"valdymo srityje. Daugiau informacijos rasi {ipi_doc|dokumentuose}."
-#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
-#: ../root/edit/details/EditArtist.js:162
-msgid "IPI codes:"
-msgstr "IPI kodai:"
-
#: ../root/layout.tt:115
msgid "IRC"
msgstr "IRC"
#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
#: ../root/edit/details/AddArtist.js:145 ../root/edit/details/AddLabel.js:111
+#: ../root/layout/components/sidebar/SidebarIsnis.js:22
msgid "ISNI code"
msgstr "ISNI kodas"
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/EditArtist.js:170 ../root/edit/details/EditLabel.js:140
+msgid "ISNI codes"
+msgstr ""
+
#: ../root/components/forms.tt:342
msgid ""
"ISNI codes are an ISO standard used to uniquely identify persons and "
@@ -1436,41 +1467,24 @@ msgstr ""
"ISNI kodai yra ISO standartas, naudojamas unikaliai asmenų ir organizacijų "
"tapatybei nustatyti. Daugiau informacijos rasi {isni_doc|dokumentuose}."
-#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
-#: ../root/edit/details/EditArtist.js:170
-msgid "ISNI codes:"
-msgstr "ISNI kodai:"
-
#: ../root/area/edit_form.tt:12 ../root/edit/details/AddArea.js:68
#: ../root/edit/details/EditArea.js:82
+#: ../root/layout/components/sidebar/AreaSidebar.js:71
msgid "ISO 3166-1"
msgstr "ISO 3166-1"
-#: ../root/area/edit_form.tt:12
-#: ../root/layout/components/sidebar/AreaSidebar.js:71
-msgid "ISO 3166-1:"
-msgstr "ISO 3166-1:"
-
#: ../root/area/edit_form.tt:13 ../root/edit/details/AddArea.js:75
#: ../root/edit/details/EditArea.js:89
+#: ../root/layout/components/sidebar/AreaSidebar.js:81
msgid "ISO 3166-2"
msgstr "ISO 3166-2"
-#: ../root/area/edit_form.tt:13
-#: ../root/layout/components/sidebar/AreaSidebar.js:81
-msgid "ISO 3166-2:"
-msgstr "ISO 3166-2:"
-
#: ../root/area/edit_form.tt:14 ../root/edit/details/AddArea.js:82
#: ../root/edit/details/EditArea.js:96
+#: ../root/layout/components/sidebar/AreaSidebar.js:91
msgid "ISO 3166-3"
msgstr "ISO 3166-3"
-#: ../root/area/edit_form.tt:14
-#: ../root/layout/components/sidebar/AreaSidebar.js:91
-msgid "ISO 3166-3:"
-msgstr "ISO 3166-3:"
-
#: ../root/admin/attributes/form.tt:8 ../root/admin/attributes/Language.js:41
msgid "ISO 639-1"
msgstr "ISO 639-1"
@@ -1502,9 +1516,14 @@ msgstr "ISO numeris"
msgid "ISRC"
msgstr "ISRC"
-#: ../root/recording/edit_form.tt:45
-msgid "ISRCs:"
-msgstr "ISRC'ai:"
+#: ../root/recording/edit_form.tt:45 ../root/report/ReportsIndex.js:606
+#: ../root/search/components/RecordingResults.js:144
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:721
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:411
+#: ../root/static/scripts/common/components/IsrcList.js:44
+#: ../root/utility/tableColumns.js:694
+msgid "ISRCs"
+msgstr ""
#: ../root/work/edit_form.tt:16 ../root/edit/details/AddWork.js:47
#: ../root/edit/details/EditWork.js:66 ../root/edit/details/RemoveIswc.js:27
@@ -1512,13 +1531,14 @@ msgstr "ISRC'ai:"
#: ../root/report/IswcsWithManyWorks.js:49
#: ../root/search/components/WorkResults.js:57
#: ../root/static/scripts/common/components/IswcList.js:26
-#: ../root/utility/tableColumns.js:703
+#: ../root/utility/tableColumns.js:708
msgid "ISWC"
msgstr "ISWC"
-#: ../root/work/edit_form.tt:16
-msgid "ISWCs:"
-msgstr "ISWC'ai:"
+#: ../root/work/edit_form.tt:16 ../root/report/ReportsIndex.js:615
+#: ../root/static/scripts/common/components/IswcList.js:44
+msgid "ISWCs"
+msgstr ""
#: ../root/event/edit_form.tt:26
msgid ""
@@ -1533,7 +1553,7 @@ msgid ""
"for this release."
msgstr ""
-#: ../root/release/edit/information.tt:298
+#: ../root/release/edit/information.tt:300
msgid ""
"If this is an Amazon ASIN, please do not enter it in the catalog number "
"field, but add it as a URL relationship later."
@@ -1551,7 +1571,7 @@ msgstr ""
msgid "If you can't find what you're looking for, you can add a new release:"
msgstr ""
-#: ../root/release/edit/information.tt:316
+#: ../root/release/edit/information.tt:330
msgid ""
"If you do not know whether the release has a barcode or not, just leave this "
"blank."
@@ -1571,8 +1591,8 @@ msgstr "Jei nežinai šio subjekto kodo, palik lauką tuščią."
#: ../root/release/edit/information.tt:54
msgid ""
-"If you don’t select an existing release group, a new one will be created "
-"with the types selected below."
+"If you don’t select an existing release group, a new one will be added with "
+"the types selected below."
msgstr ""
#: ../root/release/edit/tracklist.tt:5
@@ -1652,26 +1672,21 @@ msgid ""
"Keep in mind that recording durations are {doc_link|recalculated from "
"tracks} once the duration of a track changes. As such, if you correct the "
"duration of a track whose recording is only used in this release, just reuse "
-"the old recording, don’t create a new one. If the recording is also used "
-"elsewhere and the durations are significantly different, consider creating a "
+"the old recording, don’t add a new one. If the recording is also used "
+"elsewhere and the durations are significantly different, consider adding a "
"new recording instead."
msgstr ""
-"Atmink, kad įrašymo trukmė yra {doc_link|perskaičiuojama iš takelių}, kai "
-"pasikeičia takelio trukmė. Todėl, jei pataisi trukmė takelio, kurio įrašas "
-"naudojamas tik šioje laidoje, tiesiog pakartotinai naudok senąjį įrašą, "
-"nekurk naujo. Jei įrašas naudojamas ir kitur, o trukmės labai skirtingos, "
-"verčiau sukurk naują įrašą."
#: ../root/release/edit/tracklist.tt:502
msgid ""
-"Keep in mind that unselecting this will delete the track if the medium has a "
+"Keep in mind that unselecting this will remove the track if the medium has a "
"disc ID! If you unselect it by mistake, please readd the pregap track before "
"submitting."
msgstr ""
#: ../root/release/edit/tracklist.tt:517
msgid ""
-"Keep in mind that unselecting this will delete the tracks if the medium has "
+"Keep in mind that unselecting this will remove the tracks if the medium has "
"a disc ID! If you unselect it by mistake, please readd the data tracks "
"before submitting."
msgstr ""
@@ -1680,12 +1695,16 @@ msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:31 ../root/cdtoc/list.tt:11
#: ../root/cdtoc/lookup.tt:45 ../root/edit/search_macros.tt:423
#: ../root/release/edit/duplicates.tt:15
+#: ../root/release/edit/information.tt:179
+#: ../root/release_group/set_cover_art.tt:52
#: ../lib/MusicBrainz/Server/Edit/Label.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:43
#: ../root/components/list/LabelList.js:54 ../root/edit/details/AddLabel.js:31
+#: ../root/edit/details/AddReleaseLabel.js:35
#: ../root/edit/details/EditLabel.js:43
#: ../root/edit/details/EditReleaseLabel.js:51
#: ../root/edit/details/MergeReleases.js:240
+#: ../root/edit/details/RemoveReleaseLabel.js:31
#: ../root/edit/details/historic/AddRelease.js:123
#: ../root/edit/details/historic/EditReleaseEvents.js:111
#: ../root/label/LabelHeader.js:25 ../root/layout/components/Search.js:37
@@ -1694,13 +1713,13 @@ msgstr ""
#: ../root/report/ReleaseLabelSameArtist.js:31
#: ../root/report/components/LabelList.js:47
#: ../root/report/components/LabelUrlList.js:35
-#: ../root/search/components/ReleaseResults.js:117
+#: ../root/search/components/ReleaseResults.js:116
#: ../root/search/components/SearchForm.js:42
#: ../root/static/scripts/common/components/FilterForm.js:168
#: ../root/static/scripts/common/constants.js:40
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:60
-#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:533
-#: ../root/utility/tableColumns.js:538
+#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:538
+#: ../root/utility/tableColumns.js:543
msgid "Label"
msgstr "Leidykla"
@@ -1712,28 +1731,31 @@ msgstr "Leidyklos vietove"
msgid "Label Details"
msgstr ""
-#: ../root/label/edit_form.tt:28
-#: ../root/layout/components/sidebar/LabelSidebar.js:81
-msgid "Label code:"
-msgstr "Leidyklos kodas:"
-
-#: ../root/release/edit/information.tt:177
-#: ../root/release_group/set_cover_art.tt:52
-#: ../root/edit/details/AddReleaseLabel.js:35
-#: ../root/edit/details/RemoveReleaseLabel.js:31
-msgid "Label:"
-msgstr "Leidykla:"
+#: ../root/label/edit_form.tt:28 ../root/edit/details/AddLabel.js:94
+#: ../root/edit/details/EditLabel.js:85
+#: ../root/layout/components/sidebar/LabelSidebar.js:83
+msgid "Label code"
+msgstr ""
#: ../root/release/edit/information.tt:114
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:177
-msgid "Language:"
-msgstr "Kalba:"
+#: ../root/admin/attributes/Language.js:31
+#: ../root/admin/attributes/Language.js:34
+#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
+#: ../root/edit/details/EditRelease.js:113
+#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:191
+#: ../root/report/IswcsWithManyWorks.js:54
+#: ../root/search/components/ReleaseResults.js:119
+#: ../root/utility/tableColumns.js:559
+msgid "Language"
+msgstr ""
#: ../root/layout.tt:139 ../root/layout/components/Footer.js:85
msgid "Last replication packet received at {datetime}"
msgstr "Paskutinis kopijavimo paketas gautas {datatime}"
-#: ../root/cdstub/cdstub.tt:9 ../root/release/discids.tt:10
+#: ../root/cdstub/cdstub.tt:9 ../root/recording/edit_form.tt:35
+#: ../root/recording/edit_form.tt:38 ../root/release/discids.tt:10
#: ../root/release/edit/tracklist.tt:164 ../root/release/edit/tracklist.tt:454
#: ../root/cdstub/CDStubInfo.js:29 ../root/cdtoc/AttachCDTocConfirmation.js:72
#: ../root/cdtoc/CDTocInfo.js:54 ../root/components/RelationshipsTable.js:338
@@ -1745,6 +1767,8 @@ msgstr "Paskutinis kopijavimo paketas gautas {datatime}"
#: ../root/edit/details/EditRecording.js:69
#: ../root/edit/details/historic/AddRelease.js:91
#: ../root/edit/details/historic/AddTrackKV.js:54 ../root/isrc/Index.js:68
+#: ../root/layout/components/sidebar/RecordingSidebar.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:146
#: ../root/recording/RecordingIndex.js:55
#: ../root/report/IsrcsWithManyRecordings.js:61
#: ../root/report/components/CDTocList.js:54
@@ -1753,12 +1777,6 @@ msgstr "Paskutinis kopijavimo paketas gautas {datatime}"
msgid "Length"
msgstr "Ilgis"
-#: ../root/recording/edit_form.tt:35 ../root/recording/edit_form.tt:38
-#: ../root/layout/components/sidebar/RecordingSidebar.js:54
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:138
-msgid "Length:"
-msgstr "Ilgis:"
-
#: ../root/release/edit/tracklist.tt:54
msgid "Lines contain track artists"
msgstr ""
@@ -1789,7 +1807,7 @@ msgstr ""
msgid "Long link phrase:"
msgstr ""
-#: ../root/release/edit/recordings.tt:175
+#: ../root/release/edit/recordings.tt:186
msgid "Looking for suggested recordings..."
msgstr ""
@@ -1797,7 +1815,7 @@ msgstr ""
msgid "Lookup CD"
msgstr ""
-#: ../root/release/edit/information.tt:139
+#: ../root/release/edit/information.tt:141
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:252
#: ../root/static/scripts/edit/components/PartialDateInput.js:174
msgid "MM"
@@ -1820,7 +1838,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Medium.pm:8
#: ../root/cdtoc/AttachCDTocConfirmation.js:65
#: ../root/cdtoc/SetTracklistDurations.js:56
-#: ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/RemoveDiscId.js:25
#: ../root/edit/details/RemoveMedium.js:71
#: ../root/edit/details/SetTrackLengths.js:40
#: ../root/search/components/RecordingResults.js:148
@@ -1835,8 +1854,9 @@ msgstr ""
#: ../root/layout/merge-helper.tt:30
#: ../root/layout/components/MergeHelper.js:71
#: ../root/layout/components/sidebar/MergeLink.js:34
+msgctxt "button/link"
msgid "Merge"
-msgstr "Sujungti"
+msgstr ""
#: ../root/layout/merge-helper.tt:3 ../root/layout/components/MergeHelper.js:30
msgid "Merge Process"
@@ -1875,7 +1895,12 @@ msgid "Move track up"
msgstr ""
#: ../root/admin/attributes/form.tt:7 ../root/admin/attributes/form.tt:23
-#: ../root/admin/attributes/form.tt:58 ../root/admin/attributes/Attribute.js:79
+#: ../root/admin/attributes/form.tt:58 ../root/components/forms.tt:226
+#: ../root/relationship/linkattributetype/form.tt:12
+#: ../root/relationship/linktype/form.tt:12
+#: ../root/relationship/linktype/form.tt:77
+#: ../root/relationship/linktype/form.tt:107
+#: ../root/admin/attributes/Attribute.js:79
#: ../root/admin/attributes/Language.js:40
#: ../root/admin/attributes/Script.js:41
#: ../root/components/Aliases/ArtistCreditList.js:50
@@ -1883,7 +1908,7 @@ msgstr ""
#: ../root/edit/details/AddArea.js:41 ../root/edit/details/AddArtist.js:51
#: ../root/edit/details/AddEvent.js:38 ../root/edit/details/AddGenre.js:35
#: ../root/edit/details/AddInstrument.js:41 ../root/edit/details/AddLabel.js:41
-#: ../root/edit/details/AddPlace.js:38
+#: ../root/edit/details/AddMedium.js:129 ../root/edit/details/AddPlace.js:38
#: ../root/edit/details/AddRelationshipAttribute.js:34
#: ../root/edit/details/AddRelationshipType.js:66
#: ../root/edit/details/AddRelease.js:51
@@ -1913,36 +1938,27 @@ msgstr ""
#: ../root/entity/Details.js:96
#: ../root/search/components/AnnotationResults.js:55
#: ../root/search/components/AreaResults.js:63
-#: ../root/search/components/ArtistResults.js:52
+#: ../root/search/components/ArtistResults.js:51
#: ../root/search/components/EditorResults.js:42
#: ../root/search/components/EventResults.js:73
#: ../root/search/components/InstrumentResults.js:53
#: ../root/search/components/LabelResults.js:66
#: ../root/search/components/PlaceResults.js:63
#: ../root/search/components/RecordingResults.js:141
-#: ../root/search/components/ReleaseResults.js:112
+#: ../root/search/components/ReleaseResults.js:111
#: ../root/search/components/SeriesResults.js:57
#: ../root/search/components/TagResults.js:51
#: ../root/search/components/WorkResults.js:54
#: ../root/static/scripts/account/components/ApplicationForm.js:81
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:197
#: ../root/static/scripts/common/components/FilterForm.js:135
#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:112
#: ../root/static/scripts/genre/components/GenreEditForm.js:147
+#: ../root/static/scripts/release/components/EditWorkDialog.js:166
#: ../root/user/UserSubscriptions.js:48
msgid "Name"
msgstr "Pavadinimas"
-#: ../root/components/forms.tt:226
-#: ../root/relationship/linkattributetype/form.tt:12
-#: ../root/relationship/linktype/form.tt:12
-#: ../root/relationship/linktype/form.tt:77
-#: ../root/relationship/linktype/form.tt:107
-#: ../root/edit/details/AddMedium.js:129
-#: ../root/static/scripts/release/components/EditWorkDialog.js:166
-msgid "Name:"
-msgstr "Pavadinimas:"
-
#: ../root/artist/edit_credit.tt:18 ../root/artist/split.tt:45
msgid "New Artist Credit"
msgstr ""
@@ -1995,7 +2011,7 @@ msgstr ""
"nustatyti viršelio."
#: ../root/release/edit/tracklist.tt:140 ../root/admin/IpLookup.js:38
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:468
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:472
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:88
msgid "No results"
msgstr ""
@@ -2027,7 +2043,15 @@ msgid ""
"because they have the wrong number of tracks."
msgstr ""
-#: ../root/release/edit/information.tt:283
+#: ../root/release/edit/recordings.tt:3 ../root/edit/details/EditRelease.js:164
+#: ../root/edit/details/MergeReleases.js:347
+#: ../root/edit/details/SetTrackLengths.js:74
+#: ../root/edit/details/historic/MergeReleases.js:55
+#: ../root/user/ReportUser.js:116
+msgid "Note"
+msgstr ""
+
+#: ../root/release/edit/information.tt:285
msgid ""
"Note! If you do not know the month or day of release, please leave them "
"empty. January 1st is not often the actual release date, please double "
@@ -2037,14 +2061,10 @@ msgstr ""
"Sausio 1-oji dažnai nėra tikroji leidimo data, todėl dar kartą patikrink, ar "
"teisingai įvedei leidimo datą."
-#: ../root/release/edit/recordings.tt:3
-msgid "Note:"
-msgstr ""
-
#: ../root/edit/search_macros.tt:243
msgid ""
-"Note: only searches edits that: add or edit relationships, created after "
-"2011-05-16; or which remove relationships, created after 2013-07-08; or "
+"Note: only searches edits that: add or edit relationships, entered after "
+"2011-05-16; or which remove relationships, entered after 2013-07-08; or "
"which reorder relationships."
msgstr ""
@@ -2087,29 +2107,31 @@ msgstr "Parinktys"
msgid "Orderable direction:"
msgstr ""
-#: ../root/series/edit_form.tt:17
-msgid "Ordering Type:"
+#: ../root/series/edit_form.tt:17 ../root/edit/details/AddSeries.js:52
+#: ../root/edit/details/EditSeries.js:66
+#: ../root/layout/components/sidebar/SeriesSidebar.js:53
+#: ../root/utility/tableColumns.js:765
+msgid "Ordering Type"
msgstr ""
#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:77
msgid "PDF file"
msgstr "PDF failas"
-#: ../root/release/edit/information.tt:238
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:156
-msgid "Packaging:"
+#: ../root/release/edit/information.tt:240
+#: ../root/edit/details/AddRelease.js:105
+#: ../root/edit/details/EditRelease.js:137
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
+msgid "Packaging"
msgstr ""
#: ../root/admin/attributes/form.tt:50
-#: ../root/edit/details/AddRelationshipAttribute.js:55
-#: ../root/edit/details/EditRelationshipAttribute.js:85
-msgid "Parent"
-msgstr ""
-
#: ../root/relationship/linkattributetype/form.tt:4
#: ../root/relationship/linktype/form.tt:4
+#: ../root/edit/details/AddRelationshipAttribute.js:55
+#: ../root/edit/details/EditRelationshipAttribute.js:85
#: ../root/edit/details/EditRelationshipType.js:317
-msgid "Parent:"
+msgid "Parent"
msgstr ""
#: ../root/release/edit/tracklist.tt:238
@@ -2137,10 +2159,10 @@ msgstr ""
msgid "Please choose a condition"
msgstr ""
-#: ../root/release/edit/information.tt:312
+#: ../root/release/edit/information.tt:326
msgid ""
-"Please enter the barcode of the release you are entering, see Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2160,15 +2182,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr "Pasirink laikmeną, prie kurios nori prisegti šį CD TOC."
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2219,7 +2238,7 @@ msgstr[3] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr "Įrašas"
@@ -2260,27 +2279,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2303,7 +2327,7 @@ msgstr ""
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2323,10 +2347,6 @@ msgstr "Leidinių grupė"
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2344,7 +2364,7 @@ msgstr ""
msgid "Release Quality"
msgstr "Leidinio kokybė"
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr "Leidimo įvykis"
@@ -2368,16 +2388,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2393,7 +2405,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2403,11 +2415,11 @@ msgstr ""
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2418,7 +2430,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2479,7 +2491,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2497,29 +2509,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "Išsaugoti"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2538,10 +2554,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2609,11 +2621,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2645,9 +2660,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2658,13 +2680,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr ""
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2672,11 +2702,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2689,9 +2719,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr "Žymeklis"
@@ -2703,11 +2733,11 @@ msgstr ""
"Viršelio paveikslėlių archyvas dabar susiduria su sunkumais. Pridėti šio "
"leidinio paveikslėlius šiuo metu greičiausiai nepavyks."
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2721,11 +2751,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2739,7 +2769,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2747,6 +2785,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2765,7 +2809,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2803,7 +2847,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2855,14 +2899,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2921,7 +2965,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2960,8 +3004,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2978,7 +3022,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2986,7 +3030,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -3011,14 +3055,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -3033,20 +3083,16 @@ msgstr ""
msgid "Title"
msgstr ""
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -3076,6 +3122,7 @@ msgid "Tracklist"
msgstr ""
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -3083,7 +3130,7 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "Takeliai"
@@ -3095,14 +3142,10 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
-msgstr ""
+msgstr "Turkų"
#: ../root/layout.tt:118 ../root/layout/components/Footer.js:34
msgid "Twitter"
@@ -3136,25 +3179,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr ""
@@ -3165,7 +3208,7 @@ msgstr ""
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3179,9 +3222,22 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
msgstr ""
#: ../root/release/edit/tracklist.tt:21
@@ -3189,7 +3245,7 @@ msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3266,7 +3322,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3278,23 +3334,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3350,7 +3403,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3388,11 +3441,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3408,7 +3461,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3435,8 +3488,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3445,8 +3498,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3530,8 +3583,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -4029,12 +4084,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4119,25 +4174,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4250,15 +4305,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr ""
@@ -4339,7 +4394,7 @@ msgstr ""
"susijusio elemento Interneto archyve. Prašome susisiekti su mumis adresu "
"{contact_url}, kad galėtume išspręsti šią problemą."
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4422,7 +4477,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4455,7 +4510,7 @@ msgstr ""
msgid "Remove artist alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr ""
@@ -4497,8 +4552,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4510,7 +4565,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4544,7 +4599,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4566,8 +4621,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr ""
@@ -4596,14 +4651,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4624,7 +4679,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr ""
@@ -4676,11 +4731,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4732,7 +4782,7 @@ msgstr ""
msgid "Remove label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr ""
@@ -4779,7 +4829,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4830,8 +4880,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr ""
@@ -4910,13 +4964,13 @@ msgstr ""
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr ""
@@ -4944,6 +4998,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr ""
@@ -4957,7 +5013,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr ""
@@ -4969,7 +5025,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -5056,7 +5112,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -5069,24 +5125,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -5104,6 +5143,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5117,9 +5157,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5144,7 +5184,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5587,11 +5627,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr ""
@@ -5682,22 +5722,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5709,17 +5749,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5734,17 +5763,6 @@ msgctxt "noun"
msgid "Tag"
msgstr "Žymė"
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5984,19 +6002,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -6004,7 +6022,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6123,9 +6141,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6329,7 +6348,7 @@ msgstr ""
#: ../root/admin/EditBanner.js:39 ../root/admin/wikidoc/EditWikiDoc.js:51
#: ../root/admin/wikidoc/WikiDocIndex.js:102
msgid "Update"
-msgstr ""
+msgstr "Atnaujinti"
#: ../root/account/applications/RegisterApplication.js:22
#: ../root/account/applications/RegisterApplication.js:23
@@ -6400,7 +6419,7 @@ msgstr ""
#: ../root/admin/DeleteUser.js:75
msgid "Delete {e}"
-msgstr ""
+msgstr "Ištrinti {e}"
#: ../root/admin/DeleteUser.js:84
msgid ""
@@ -6456,7 +6475,7 @@ msgstr ""
#: ../root/admin/EditUser.js:79 ../root/admin/PrivilegeSearch.js:67
msgid "Auto-editor"
-msgstr ""
+msgstr "Autoredaktorius (-ė)"
#: ../root/admin/EditUser.js:84 ../root/admin/PrivilegeSearch.js:72
msgid "Transclusion editor"
@@ -6483,12 +6502,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6522,14 +6541,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6545,7 +6565,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6582,20 +6602,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6624,26 +6630,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr ""
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr ""
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6651,15 +6639,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6714,6 +6697,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr ""
@@ -6726,10 +6710,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6817,6 +6797,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6866,8 +6847,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6876,8 +6860,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6943,10 +6926,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr ""
@@ -6985,7 +6968,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -7034,7 +7017,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -7048,7 +7034,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7216,7 +7205,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7522,10 +7511,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7558,7 +7549,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7572,7 +7563,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7592,15 +7583,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7610,8 +7592,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7620,21 +7603,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7672,7 +7647,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7711,15 +7686,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7812,7 +7787,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7827,20 +7802,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -8013,7 +7978,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -8059,7 +8024,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8188,6 +8153,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8238,26 +8204,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8269,13 +8219,6 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8284,22 +8227,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr ""
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8424,7 +8361,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8642,7 +8579,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8671,7 +8608,8 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8696,7 +8634,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8705,15 +8643,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8736,24 +8674,15 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
@@ -8761,28 +8690,27 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8802,12 +8730,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8924,37 +8846,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8966,17 +8864,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -9000,19 +8901,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -9071,29 +8972,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -9106,17 +9001,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -9124,7 +9019,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9165,14 +9060,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9197,11 +9084,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9227,25 +9109,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9269,6 +9136,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9281,7 +9149,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9394,7 +9263,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9413,8 +9282,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9456,20 +9325,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9480,11 +9335,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9494,8 +9344,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9511,17 +9361,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9560,28 +9418,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9589,11 +9443,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9610,47 +9466,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10356,7 +10184,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10508,7 +10336,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10675,39 +10503,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10825,11 +10647,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10882,10 +10704,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10898,7 +10716,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10929,27 +10747,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10957,21 +10775,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Įvertinimas"
@@ -11112,7 +10922,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11211,15 +11021,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11353,7 +11155,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11567,7 +11369,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11575,11 +11377,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11591,6 +11388,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11624,16 +11422,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11653,7 +11447,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11727,7 +11521,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11746,7 +11540,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11857,8 +11651,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -12069,8 +11863,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -12080,10 +11874,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12117,7 +11911,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12126,7 +11920,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12412,17 +12206,10 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
-"Šioje ataskaitoje išvardytos leidinių grupės, kurių pavadinimai ir atlikėjai "
-"labai panašūs. Jei leidinių grupėse esantys leidiniai turėtų būti sugrupuoti "
-"(pamatyk {url|gaires}), juos galima sujungti. Jei jie neturėtų būti "
-"sugrupuoti, bet juos galima atskirti pagal leidinių grupių tipus, pvz., kai "
-"atlikėjas (-a) turi albumą ir singlą tuo pačiu pavadinimu, paprastai nieko "
-"keisti nereikia. Kitais atvejais gali būti naudinga pateikti išskyrimo "
-"paaiškinimą."
#: ../root/report/DuplicateReleaseGroups.js:52
#: ../root/report/ReportsIndex.js:227
@@ -12499,7 +12286,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12629,8 +12416,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12801,13 +12588,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12985,7 +12772,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -13009,8 +12796,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13229,20 +13015,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13321,9 +13093,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13332,9 +13104,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13489,6 +13261,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13498,7 +13274,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13509,7 +13285,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13519,11 +13295,12 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Vietą"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13557,7 +13334,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13641,7 +13418,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13662,42 +13439,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13748,15 +13526,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13809,10 +13587,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13862,7 +13642,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13886,33 +13666,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13930,7 +13710,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13939,32 +13719,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13974,7 +13749,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -14012,11 +13793,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14117,15 +13898,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14240,7 +14021,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14539,31 +14320,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14584,7 +14365,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14641,8 +14423,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14732,113 +14514,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14885,53 +14667,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14953,11 +14735,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14994,11 +14776,11 @@ msgstr ""
"kitų."
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -15060,10 +14842,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15398,8 +15177,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15609,14 +15388,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15625,7 +15404,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15677,34 +15456,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15731,15 +15510,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15996,10 +15771,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -16061,23 +15832,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -16179,7 +15950,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16406,10 +16178,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16451,191 +16219,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "Aprašymas"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16908,7 +16670,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16922,7 +16684,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -17202,6 +16964,136 @@ msgstr ""
"skirtingi. Įsitikink, kad tai tikrai tie patys kūriniai ir nori tęsti "
"sujungimą."
+#~ msgid "Address:"
+#~ msgstr "Adresas:"
+
+#~ msgid "Annotation:"
+#~ msgstr "Anotacija:"
+
+#~ msgid "Area:"
+#~ msgstr "Vietovė:"
+
+#~ msgid "Artist:"
+#~ msgstr "Atlikėjas (-a):"
+
+#~ msgid "Attributes:"
+#~ msgstr "Atributai:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Brūkšninis kodas:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "Pradžios vietovę:"
+
+#~ msgid "Begin date:"
+#~ msgstr "Pradžios data:"
+
+#~ msgid "Catalog#:"
+#~ msgstr "Katalogo#:"
+
+#~ msgid "Country:"
+#~ msgstr "Šalis:"
+
+#~ msgid "Created"
+#~ msgstr "Sukurta"
+
+#~ msgid "Date:"
+#~ msgstr "Data:"
+
+#~ msgid "Delete"
+#~ msgstr "Ištrinti"
+
+#~ msgid "Description:"
+#~ msgstr "Aprašymas:"
+
+#~ msgid "Documentation:"
+#~ msgstr "Dokumentacija:"
+
+#~ msgid "End Area:"
+#~ msgstr "Pabaigos vietovė:"
+
+#~ msgid "End date:"
+#~ msgstr "Pabaigos data:"
+
+#~ msgid "Format:"
+#~ msgstr "Formatas:"
+
+#~ msgid "Gender:"
+#~ msgstr "Lytis:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "IPI kodai:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "ISNI kodai:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRC'ai:"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWC'ai:"
+
+#~ msgid ""
+#~ "Keep in mind that recording durations are {doc_link|recalculated from "
+#~ "tracks} once the duration of a track changes. As such, if you correct the "
+#~ "duration of a track whose recording is only used in this release, just "
+#~ "reuse the old recording, don’t create a new one. If the recording is also "
+#~ "used elsewhere and the durations are significantly different, consider "
+#~ "creating a new recording instead."
+#~ msgstr ""
+#~ "Atmink, kad įrašymo trukmė yra {doc_link|perskaičiuojama iš takelių}, kai "
+#~ "pasikeičia takelio trukmė. Todėl, jei pataisi trukmė takelio, kurio "
+#~ "įrašas naudojamas tik šioje laidoje, tiesiog pakartotinai naudok senąjį "
+#~ "įrašą, nekurk naujo. Jei įrašas naudojamas ir kitur, o trukmės labai "
+#~ "skirtingos, verčiau sukurk naują įrašą."
+
+#~ msgid "Label code:"
+#~ msgstr "Leidyklos kodas:"
+
+#~ msgid "Label:"
+#~ msgstr "Leidykla:"
+
+#~ msgid "Language:"
+#~ msgstr "Kalba:"
+
+#~ msgid "Length:"
+#~ msgstr "Ilgis:"
+
+#~ msgid "Merge"
+#~ msgstr "Sujungti"
+
+#~ msgid "Name:"
+#~ msgstr "Pavadinimas:"
+
+#~ msgid ""
+#~ "This report lists release groups with very similar names and artists. If "
+#~ "the releases in the release groups should be grouped together (see the "
+#~ "{url|guidelines}), they can be merged. If they shouldn't be grouped "
+#~ "together but they can be distinguished by the release group types, e.g. "
+#~ "when an artist has an album and single with the same name, then there is "
+#~ "usually no need to change anything. In other cases, a disambiguation "
+#~ "comment may be helpful."
+#~ msgstr ""
+#~ "Šioje ataskaitoje išvardytos leidinių grupės, kurių pavadinimai ir "
+#~ "atlikėjai labai panašūs. Jei leidinių grupėse esantys leidiniai turėtų "
+#~ "būti sugrupuoti (pamatyk {url|gaires}), juos galima sujungti. Jei jie "
+#~ "neturėtų būti sugrupuoti, bet juos galima atskirti pagal leidinių grupių "
+#~ "tipus, pvz., kai atlikėjas (-a) turi albumą ir singlą tuo pačiu "
+#~ "pavadinimu, paprastai nieko keisti nereikia. Kitais atvejais gali būti "
+#~ "naudinga pateikti išskyrimo paaiškinimą."
+
+#~ msgid "Location"
+#~ msgstr "Vietą"
+
#~ msgid ""
#~ "Become part of MusicBrainz by creating an account and {how|reading up on "
#~ "our process} for submitting information to MusicBrainz. Find out how we "
diff --git a/po/mb_server.mr.po b/po/mb_server.mr.po
index a2d53e0dea9..4bd7b250017 100644
--- a/po/mb_server.mr.po
+++ b/po/mb_server.mr.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:57+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Marathi Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2075,15 +2102,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2132,7 +2156,7 @@ msgstr[1] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr ""
@@ -2173,27 +2197,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2216,7 +2245,7 @@ msgstr ""
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2236,10 +2265,6 @@ msgstr ""
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2257,7 +2282,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2281,16 +2306,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2306,7 +2323,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2316,11 +2333,11 @@ msgstr ""
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2331,7 +2348,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2392,7 +2409,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2410,29 +2427,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr ""
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2451,10 +2472,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2522,11 +2539,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2558,9 +2578,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2571,13 +2598,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr ""
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2585,11 +2620,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2602,9 +2637,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr ""
@@ -2614,11 +2649,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2632,11 +2667,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2648,7 +2683,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2656,6 +2699,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2674,7 +2723,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2712,7 +2761,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2764,14 +2813,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2830,7 +2879,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2869,8 +2918,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2887,7 +2936,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2895,7 +2944,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2920,14 +2969,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2942,20 +2997,16 @@ msgstr ""
msgid "Title"
msgstr ""
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2985,6 +3036,7 @@ msgid "Tracklist"
msgstr ""
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -2992,7 +3044,7 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr ""
@@ -3004,10 +3056,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3045,25 +3093,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr ""
@@ -3074,7 +3122,7 @@ msgstr ""
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3088,9 +3136,22 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
msgstr ""
#: ../root/release/edit/tracklist.tt:21
@@ -3098,7 +3159,7 @@ msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3175,7 +3236,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3187,23 +3248,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3259,7 +3317,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3297,11 +3355,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3317,7 +3375,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3344,8 +3402,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3354,8 +3412,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3439,8 +3497,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3928,12 +3988,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4018,25 +4078,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4149,15 +4209,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr ""
@@ -4235,7 +4295,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4318,7 +4378,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4351,7 +4411,7 @@ msgstr ""
msgid "Remove artist alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr ""
@@ -4393,8 +4453,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4406,7 +4466,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4440,7 +4500,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4462,8 +4522,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr ""
@@ -4492,14 +4552,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4520,7 +4580,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr ""
@@ -4572,11 +4632,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4628,7 +4683,7 @@ msgstr ""
msgid "Remove label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr ""
@@ -4675,7 +4730,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4726,8 +4781,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr ""
@@ -4806,13 +4865,13 @@ msgstr ""
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(अनामिक)"
@@ -4840,6 +4899,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr ""
@@ -4853,7 +4914,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr ""
@@ -4865,7 +4926,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -4944,7 +5005,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4957,24 +5018,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -4992,6 +5036,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5005,9 +5050,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5032,7 +5077,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5475,11 +5520,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr ""
@@ -5570,22 +5615,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5597,17 +5642,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5622,17 +5656,6 @@ msgctxt "noun"
msgid "Tag"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5872,19 +5895,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5892,7 +5915,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6011,9 +6034,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6371,12 +6395,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6410,14 +6434,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6433,7 +6458,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6470,20 +6495,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6512,26 +6523,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr ""
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr ""
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6539,15 +6532,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6602,6 +6590,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr ""
@@ -6614,10 +6603,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6705,6 +6690,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6754,8 +6740,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6764,8 +6753,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6831,10 +6819,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr ""
@@ -6873,7 +6861,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6922,7 +6910,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6936,7 +6927,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7102,7 +7096,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7389,10 +7383,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7425,7 +7421,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7439,7 +7435,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7459,15 +7455,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7477,8 +7464,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7487,21 +7475,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7539,7 +7519,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7578,15 +7558,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7679,7 +7659,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7694,20 +7674,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7878,7 +7848,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7924,7 +7894,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8035,6 +8005,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8079,26 +8050,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8107,14 +8062,7 @@ msgstr ""
#: ../root/components/list/LabelList.js:68
#: ../root/search/components/AreaResults.js:65
#: ../root/search/components/LabelResults.js:68
-msgid "Code"
-msgstr ""
-
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
+msgid "Code"
msgstr ""
#: ../root/components/list/ReleaseGroupList.js:166
@@ -8125,22 +8073,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr ""
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8265,7 +8207,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8483,7 +8425,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8508,7 +8450,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8533,7 +8476,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8542,15 +8485,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8573,51 +8516,41 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8637,12 +8570,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8759,37 +8686,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8801,17 +8704,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8835,19 +8741,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8906,29 +8812,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8941,17 +8841,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8959,7 +8859,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9000,14 +8900,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9032,11 +8924,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9062,25 +8949,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9102,6 +8974,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9114,7 +8987,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9227,7 +9101,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9246,8 +9120,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9289,20 +9163,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9313,11 +9173,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9327,8 +9182,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9344,17 +9199,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9393,28 +9256,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9422,11 +9281,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9443,47 +9304,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10167,7 +10000,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10319,7 +10152,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10486,39 +10319,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10634,11 +10461,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10691,10 +10518,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10707,7 +10530,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10738,27 +10561,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10766,21 +10589,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -10919,7 +10734,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11018,13 +10833,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11158,7 +10967,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11372,7 +11181,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11380,11 +11189,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11396,6 +11200,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11429,16 +11234,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11458,7 +11259,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11532,7 +11333,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11551,7 +11352,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11660,8 +11461,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11867,8 +11668,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11878,10 +11679,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11915,7 +11716,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11924,7 +11725,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12204,7 +12005,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12284,7 +12085,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12411,8 +12212,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12583,13 +12384,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12767,7 +12568,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12791,8 +12592,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13011,20 +12811,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13103,9 +12889,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13114,9 +12900,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13271,6 +13057,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13280,7 +13070,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13291,7 +13081,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13301,9 +13091,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13339,7 +13130,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13423,7 +13214,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13444,42 +13235,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13530,15 +13322,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13591,10 +13383,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13642,7 +13436,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13666,33 +13460,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13710,7 +13504,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13719,32 +13513,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13754,7 +13543,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13792,11 +13587,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13897,15 +13692,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14016,7 +13811,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14311,31 +14106,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14356,7 +14151,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14413,8 +14209,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14504,113 +14300,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14657,53 +14453,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14725,11 +14521,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14764,11 +14560,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14830,10 +14626,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15168,8 +14961,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15375,14 +15168,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15391,7 +15184,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15443,34 +15236,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15497,15 +15290,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15746,10 +15535,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15811,23 +15596,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15929,7 +15714,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16156,10 +15942,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16201,191 +15983,183 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
msgstr ""
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16632,7 +16406,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16646,7 +16420,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
diff --git a/po/mb_server.nb.po b/po/mb_server.nb.po
index ab960ce2a20..83ec9e86085 100644
--- a/po/mb_server.nb.po
+++ b/po/mb_server.nb.po
@@ -19,7 +19,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:57+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Norwegian Bokmål Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2085,15 +2112,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2142,7 +2166,7 @@ msgstr[1] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr "Innspilling"
@@ -2183,27 +2207,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2226,7 +2255,7 @@ msgstr "Utgivelsesland"
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2246,10 +2275,6 @@ msgstr "Utgivelsesgruppe"
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2267,7 +2292,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2291,16 +2316,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr "Utgivelse «{name}» av {artist}"
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2316,7 +2333,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2326,11 +2343,11 @@ msgstr ""
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr "Fjern plateselskap"
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2341,7 +2358,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2402,7 +2419,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2420,29 +2437,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "Lagre"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
-msgstr ""
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr "Skript"
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2461,10 +2482,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2532,11 +2549,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
-msgstr ""
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
+msgstr "Sett sporlengde"
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2570,10 +2590,17 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
-msgstr ""
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
+msgstr "Sorteringsnavn"
#: ../root/artist/split.tt:1
msgid "Split Artist"
@@ -2583,13 +2610,21 @@ msgstr "Del artist"
msgid "Split Into Separate Artists"
msgstr "Del opp i separate artister"
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr "Status"
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2597,11 +2632,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2614,9 +2649,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr ""
@@ -2626,11 +2661,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2644,11 +2679,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2660,7 +2695,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2668,6 +2711,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2686,7 +2735,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2724,7 +2773,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2776,14 +2825,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2842,7 +2891,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2881,8 +2930,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2899,7 +2948,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2907,7 +2956,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2932,14 +2981,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2954,20 +3009,16 @@ msgstr ""
msgid "Title"
msgstr "Tittel"
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2997,6 +3048,7 @@ msgid "Tracklist"
msgstr "Sporliste"
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -3004,7 +3056,7 @@ msgstr "Sporliste"
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "Spor"
@@ -3016,10 +3068,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3057,25 +3105,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr "Type"
@@ -3086,7 +3134,7 @@ msgstr "Type"
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3100,17 +3148,30 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
-msgstr ""
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr "URL"
#: ../root/release/edit/tracklist.tt:21
msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3187,7 +3248,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3199,23 +3260,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3271,7 +3329,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3309,11 +3367,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3329,7 +3387,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3356,8 +3414,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3366,8 +3424,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3453,8 +3511,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3944,12 +4004,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4034,25 +4094,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr "Lav"
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr "Høy"
@@ -4165,15 +4225,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr "Send e-post"
@@ -4251,7 +4311,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4334,7 +4394,7 @@ msgstr "Fjern område"
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr "Endre område"
@@ -4367,7 +4427,7 @@ msgstr "Fjern artist"
msgid "Remove artist alias"
msgstr "Fjern artistalias"
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr "Endre artist"
@@ -4409,8 +4469,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4422,7 +4482,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4456,7 +4516,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4478,8 +4538,8 @@ msgstr "Legg til relasjon"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr "Legg til utgivelse"
@@ -4508,14 +4568,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr "Endre utgivelse"
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4536,7 +4596,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr "Endre innspilling"
@@ -4588,11 +4648,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr "Sett sporlengde"
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4644,7 +4699,7 @@ msgstr "Legg til plateselskap"
msgid "Remove label"
msgstr "Fjern plateselskap"
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr "Endre plateselskap"
@@ -4691,7 +4746,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4742,8 +4797,12 @@ msgstr "Flett innspillinger"
msgid "Remove ISRC"
msgstr "Fjern ISRC"
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr "Relasjon"
@@ -4822,13 +4881,13 @@ msgstr "Endre strekkoder"
msgid "Edit cover art"
msgstr "Endre plateomslag"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(ukjent)"
@@ -4856,6 +4915,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr "Utgivelsesgruppe"
@@ -4869,7 +4930,7 @@ msgid "Add release group annotation"
msgstr "Legg til utgivelsesgruppeanmerkning"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr "Legg til utgivelsesgruppe"
@@ -4881,7 +4942,7 @@ msgstr "Fjern utgivelsesgruppe"
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr "Endre utgivelsesgruppe"
@@ -4960,7 +5021,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4973,24 +5034,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr "URL"
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -5008,6 +5052,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5021,9 +5066,9 @@ msgstr ""
msgid "No votes"
msgstr "Neistemmer"
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5048,7 +5093,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr "Legg til åndsverk"
@@ -5491,11 +5536,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr "Adresseprotokollen må være HTTP, HTTPS eller FTP"
@@ -5586,22 +5631,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5613,17 +5658,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr "Fødselsår må være etter 1900"
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr "Anmerkning "
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5638,17 +5672,6 @@ msgctxt "noun"
msgid "Tag"
msgstr "Tagger"
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr "Dokumentasjon"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5888,19 +5911,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr "{almost_last_list_item} og {last_list_item}"
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr "{list_item}, {rest}"
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5908,7 +5931,7 @@ msgstr "{list_item}, {rest}"
msgid "{last_list_item}"
msgstr "{last_list_item}"
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6027,9 +6050,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6387,12 +6411,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6426,14 +6450,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6449,7 +6474,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6486,20 +6511,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6528,26 +6539,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr "Språk"
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr "Skript"
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6555,15 +6548,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6618,6 +6606,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr "Legg til side"
@@ -6630,10 +6619,6 @@ msgstr "Side:"
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6721,6 +6706,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6770,9 +6756,12 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
-msgstr "Forhåndsvisning:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
+msgstr ""
#: ../root/annotation/EditAnnotation.js:80
#: ../root/static/scripts/common/components/Annotation.js:71
@@ -6780,8 +6769,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6847,10 +6835,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr "Artister"
@@ -6889,7 +6877,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6938,7 +6926,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6952,7 +6943,10 @@ msgstr "Relasjoner"
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7120,7 +7114,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7407,10 +7401,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7443,7 +7439,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7457,7 +7453,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7477,15 +7473,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "FreeDB:"
@@ -7495,8 +7482,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7505,21 +7493,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Slutter"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7557,7 +7537,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7596,15 +7576,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7697,7 +7677,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7712,20 +7692,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "Alias"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr "Sorteringsnavn"
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr "Startdato"
@@ -7896,7 +7866,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Vurderinger"
@@ -7942,7 +7912,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8053,6 +8023,7 @@ msgstr "Abonnementer "
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8097,26 +8068,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Kjønn"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "Startområde"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "Sluttområde"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8128,13 +8083,6 @@ msgstr ""
msgid "Code"
msgstr "Kode"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "Adresse"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8143,22 +8091,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Status"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8283,7 +8225,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8501,7 +8443,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8526,7 +8468,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8551,7 +8494,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8560,15 +8503,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8591,51 +8534,41 @@ msgstr "Legg til redigeringsnotat"
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "Stengt:"
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Legg til notat"
@@ -8655,12 +8588,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8777,37 +8704,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr "Startdato"
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "Sluttdato"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8819,17 +8722,20 @@ msgstr "(ingen)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8853,19 +8759,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8924,29 +8830,23 @@ msgstr "(ingen)"
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8959,17 +8859,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8977,7 +8877,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9018,14 +8918,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9050,11 +8942,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "Gammel artist"
@@ -9080,25 +8967,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9120,6 +8992,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9132,7 +9005,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9245,7 +9119,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9264,8 +9138,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9307,20 +9181,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Katalog nummer"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9331,11 +9191,6 @@ msgstr ""
msgid "Artist name:"
msgstr "Artistnavn:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9345,8 +9200,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9362,16 +9217,24 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
-msgstr "Endret"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
@@ -9411,28 +9274,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "Alias:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Kandidat:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Kandidat"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9440,12 +9299,14 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "Stemmer for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "Stemmer for"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "Stemmer imot:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "Stemmer imot"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -9461,47 +9322,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "Status:"
+msgid "Status"
+msgstr "Status"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "Se detaljene"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Kandidat"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "Status"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "Stemmer for"
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "Stemmer imot"
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr "Stem"
@@ -10185,7 +10018,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Statistikker"
@@ -10337,7 +10170,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10504,39 +10337,33 @@ msgstr "Informasjon om område"
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "Del opp i separate artister"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "Lagt til:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10652,11 +10479,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10709,10 +10536,6 @@ msgctxt "place"
msgid "Closed"
msgstr "Stengt"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10725,7 +10548,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10756,27 +10579,27 @@ msgstr ""
msgid "No cover art available."
msgstr "Ingen plateomslag"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10784,21 +10607,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "IPI kode"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "ISNI kode:"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Lisens"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Vurdering"
@@ -10937,7 +10752,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Feilmelding:"
@@ -11036,13 +10851,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Ingen detaljer angående denne feilen er tilgjengelig)"
@@ -11176,7 +10985,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11390,7 +11199,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11398,11 +11207,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "ID:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11414,6 +11218,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11447,16 +11252,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11476,7 +11277,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11550,7 +11351,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11569,7 +11370,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11678,8 +11479,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "Utgivelsesgruppe av {artist}"
@@ -11885,8 +11686,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11896,10 +11697,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11933,7 +11734,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11942,7 +11743,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12222,7 +12023,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12302,7 +12103,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12429,8 +12230,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12601,13 +12402,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12785,7 +12586,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12809,8 +12610,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13029,20 +12829,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr "ISWCer"
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13121,9 +12907,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13132,9 +12918,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13289,6 +13075,10 @@ msgstr ""
msgid "Last edited"
msgstr "Sist endret"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Katalog nummer"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13298,7 +13088,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13309,7 +13099,7 @@ msgstr "Start"
msgid "Alternatively, you may {uri|add a new area}."
msgstr "Alternativt, kan du {uri|legge til et nytt område}."
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "Alternativt, kan du {uri|legge til en ny artist}."
@@ -13319,11 +13109,12 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Sted"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13357,7 +13148,7 @@ msgstr "Alternativt, kan du {uri|legge til en ny innspilling}."
msgid "Alternatively, you may {uri|add a new release group}."
msgstr "Alternativt, kan du {uri|legge til en ny utgivelsesgruppe}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr "Alternativt, kan du {uri|legge til en ny utgivelse}."
@@ -13441,7 +13232,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13462,42 +13253,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Legg til et språk"
@@ -13548,15 +13340,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
-msgstr "Abonnér meg automatisk til artister jeg oppretter."
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13609,10 +13401,12 @@ msgid "This alias is no longer current."
msgstr "Dette aliaset er ei gjeldene. "
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13660,7 +13454,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13684,33 +13478,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "Vis mer..."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13728,7 +13522,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13737,32 +13531,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr "Direkte søk"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13772,8 +13561,14 @@ msgid "Vote on all edits:"
msgstr "Stem på alle endringene:"
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
-msgstr "Avbryt notatskriving"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
@@ -13810,11 +13605,11 @@ msgid "Annotation last modified on {date}."
msgstr "Anmerkningen ble sist endret på {date}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13915,15 +13710,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr "av {artist}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14034,7 +13829,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14329,31 +14124,31 @@ msgctxt "plural"
msgid "Series"
msgstr "Serie"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14374,7 +14169,8 @@ msgid "Began:"
msgstr "Begynte:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14431,8 +14227,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14522,113 +14318,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14675,53 +14471,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr "Artisten i MusicBrainz:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr "Artist som:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr "Endre på alle artistene i listen som passer navnet «{name}»"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14743,11 +14539,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14782,11 +14578,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14848,10 +14644,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15186,8 +14979,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15393,14 +15186,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15409,7 +15202,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15461,34 +15254,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15515,15 +15308,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr "Åndsverktype:"
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15764,10 +15553,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15829,23 +15614,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15947,7 +15732,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16174,10 +15960,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(skjult)"
@@ -16219,191 +16001,185 @@ msgstr ""
msgid "Age:"
msgstr "Alder:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "Medlem siden:"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "Siste logg-inn:"
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Subscriptions"
+msgid "Restrictions"
+msgstr "Abonnementer "
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "Språk:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Endringer"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Totalt"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Akseptert"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr "Feilet"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16652,7 +16428,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16666,7 +16442,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr "Denne endringen ble avbrutt."
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16891,6 +16667,130 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Address:"
+#~ msgstr "Adresse:"
+
+#~ msgid "Area:"
+#~ msgstr "Område:"
+
+#~ msgid "Artist:"
+#~ msgstr "Artist:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Strekkode:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "Startområde:"
+
+#~ msgid "Begin date:"
+#~ msgstr "Startdato:"
+
+#~ msgid "Documentation:"
+#~ msgstr "Dokumentasjon:"
+
+#~ msgid "End Area:"
+#~ msgstr "Sluttområde:"
+
+#~ msgid "Format:"
+#~ msgstr "Format:"
+
+#~ msgid "Gender:"
+#~ msgstr "Kjønn:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "IPI koder:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "ISNI koder:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRCer:"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWCer:"
+
+#~ msgid "Label:"
+#~ msgstr "Plateselskap:"
+
+#~ msgid "Language:"
+#~ msgstr "Språk:"
+
+#~ msgid "Length:"
+#~ msgstr "Lengde:"
+
+#~ msgid "Merge"
+#~ msgstr "Flett"
+
+#~ msgid "Preview:"
+#~ msgstr "Forhåndsvisning:"
+
+#~ msgid "Status"
+#~ msgstr "Status"
+
+#~ msgid "Closed:"
+#~ msgstr "Stengt:"
+
+#~ msgid "Edited"
+#~ msgstr "Endret"
+
+#~ msgid "Alias:"
+#~ msgstr "Alias:"
+
+#~ msgid "Candidate:"
+#~ msgstr "Kandidat:"
+
+#~ msgid "Votes for:"
+#~ msgstr "Stemmer for:"
+
+#~ msgid "Votes against:"
+#~ msgstr "Stemmer imot:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Added:"
+#~ msgstr "Lagt til:"
+
+#~ msgid "IPI code:"
+#~ msgstr "IPI kode"
+
+#~ msgid "ISNI code:"
+#~ msgstr "ISNI kode:"
+
+#~ msgid "ID:"
+#~ msgstr "ID:"
+
+#~ msgid "Location"
+#~ msgstr "Sted"
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "Abonnér meg automatisk til artister jeg oppretter."
+
+#~ msgid "Delete Note"
+#~ msgstr "Avbryt notatskriving"
+
+#~ msgid "Work Type:"
+#~ msgstr "Åndsverktype:"
+
+#~ msgid "Member since:"
+#~ msgstr "Medlem siden:"
+
+#~ msgid "Last login:"
+#~ msgstr "Siste logg-inn:"
+
+#~ msgid "Languages:"
+#~ msgstr "Språk:"
+
#~ msgid "Artist {n}:"
#~ msgstr "Artist {n}:"
diff --git a/po/mb_server.nl.po b/po/mb_server.nl.po
index 4f036753f6e..a0cb7ae7c3f 100644
--- a/po/mb_server.nl.po
+++ b/po/mb_server.nl.po
@@ -32,7 +32,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-20 10:27+0000\n"
"Last-Translator: RandomMushroom128 \n"
@@ -93,8 +93,8 @@ msgstr "‘JJ’ zijn de laatste twee cijfers van het registratiejaar."
#: ../root/edit/details/historic/AddRelease.js:88
#: ../root/recording/RecordingIndex.js:53
#: ../root/static/scripts/release/components/MediumTable.js:83
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1563
-#: ../root/utility/tableColumns.js:567
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1564
+#: ../root/utility/tableColumns.js:572
msgid "#"
msgstr "#"
@@ -143,8 +143,8 @@ msgstr "(geen andere afbeeldingen)"
#: ../root/edit/details/MergeReleases.js:239
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
-#: ../root/utility/tableColumns.js:508 ../root/utility/tableColumns.js:516
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/utility/tableColumns.js:513 ../root/utility/tableColumns.js:521
msgctxt "and"
msgid "/"
msgstr "/"
@@ -245,8 +245,8 @@ msgstr "Instrument toevoegen"
msgid "Add Label"
msgstr "Platenmaatschappij toevoegen"
-#: ../root/release/edit/information.tt:213
-#: ../root/release/edit/information.tt:214
+#: ../root/release/edit/information.tt:215
+#: ../root/release/edit/information.tt:216
#: ../root/layout/components/BottomMenu.js:248
msgctxt "button/menu"
msgid "Add Label"
@@ -266,8 +266,8 @@ msgctxt "header"
msgid "Add Release"
msgstr "Uitgave toevoegen"
-#: ../root/release/edit/information.tt:169
-#: ../root/release/edit/information.tt:170
+#: ../root/release/edit/information.tt:171
+#: ../root/release/edit/information.tt:172
msgctxt "button/menu"
msgid "Add Release Event"
msgstr "Uitgavegebeurtenis toevoegen"
@@ -312,7 +312,7 @@ msgstr ""
"Voeg een medium toe door hieronder op “Medium toevoegen” te klikken, of vink "
"het vakje aan om te bevestigen dat de nummerlijst niet bekend is."
-#: ../root/release/edit/recordings.tt:212
+#: ../root/release/edit/recordings.tt:178
#: ../root/static/scripts/edit/components/AddEntityDialog.js:21
msgid "Add a new recording"
msgstr "Nieuwe opname toevoegen"
@@ -337,14 +337,17 @@ msgstr "{item} toevoegen"
msgid "Add {num} track(s)"
msgstr "{num} nummer(s) toevoegen"
-#: ../root/release/edit/information.tt:245
+#: ../root/release/edit/information.tt:247
msgid "Additional information"
msgstr "Extra informatie"
-#: ../root/place/edit_form.tt:16
-#: ../root/layout/components/sidebar/PlaceSidebar.js:82
-msgid "Address:"
-msgstr "Adres:"
+#: ../root/place/edit_form.tt:16 ../root/components/list/PlaceList.js:66
+#: ../root/edit/details/AddPlace.js:55 ../root/edit/details/EditPlace.js:68
+#: ../root/layout/components/sidebar/PlaceSidebar.js:84
+#: ../root/report/PlacesWithoutCoordinates.js:41
+#: ../root/search/components/PlaceResults.js:65
+msgid "Address"
+msgstr "Adres"
#: ../root/release/edit/recordings.tt:3
msgid ""
@@ -368,9 +371,17 @@ msgstr ""
msgid "An error occurred: "
msgstr "Er is een fout opgetreden:"
-#: ../root/release/edit/information.tt:249
-msgid "Annotation:"
-msgstr "Aantekening:"
+#: ../root/release/edit/information.tt:251
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
+#: ../root/annotation/AnnotationRevision.js:32
+#: ../root/annotation/EditAnnotation.js:74
+#: ../root/layout/components/Search.js:41
+#: ../root/report/hooks/useAnnotationColumns.js:28
+#: ../root/search/components/AnnotationResults.js:56
+#: ../root/search/components/SearchForm.js:45
+#: ../root/static/scripts/common/components/Annotation.js:51
+msgid "Annotation"
+msgstr "Aantekening"
#: ../root/edit/search_macros.tt:423
msgid "Applied Edit Count of Editor"
@@ -382,7 +393,9 @@ msgctxt "vote"
msgid "Approve"
msgstr "Goedkeuren"
-#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Area.pm:7
+#: ../root/artist/edit_form.tt:20 ../root/edit/search_macros.tt:423
+#: ../root/label/edit_form.tt:18 ../root/place/edit_form.tt:19
+#: ../lib/MusicBrainz/Server/Edit/Area.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:44
#: ../root/components/list/AreaList.js:46
#: ../root/components/list/ArtistList.js:92
@@ -392,8 +405,11 @@ msgstr "Goedkeuren"
#: ../root/edit/details/AddPlace.js:61 ../root/edit/details/EditArea.js:43
#: ../root/edit/details/EditArtist.js:108 ../root/edit/details/EditLabel.js:119
#: ../root/edit/details/EditPlace.js:75 ../root/layout/components/Search.js:35
+#: ../root/layout/components/sidebar/ArtistSidebar.js:126
+#: ../root/layout/components/sidebar/LabelSidebar.js:90
+#: ../root/layout/components/sidebar/PlaceSidebar.js:91
#: ../root/report/PlacesWithoutCoordinates.js:42
-#: ../root/search/components/ArtistResults.js:56
+#: ../root/search/components/ArtistResults.js:55
#: ../root/search/components/LabelResults.js:69
#: ../root/search/components/PlaceResults.js:66
#: ../root/search/components/SearchForm.js:43
@@ -407,18 +423,12 @@ msgstr "Gebied"
msgid "Area Details"
msgstr "Details over het gebied"
-#: ../root/artist/edit_form.tt:20 ../root/label/edit_form.tt:18
-#: ../root/place/edit_form.tt:19
-#: ../root/layout/components/sidebar/ArtistSidebar.js:120
-#: ../root/layout/components/sidebar/LabelSidebar.js:87
-#: ../root/layout/components/sidebar/PlaceSidebar.js:88
-msgid "Area:"
-msgstr "Gebied:"
-
#: ../root/cdstub/cdstub.tt:7 ../root/cdtoc/attach_filter_release.tt:29
#: ../root/cdtoc/list.tt:8 ../root/cdtoc/lookup.tt:42
-#: ../root/edit/search_macros.tt:423 ../root/release/edit/tracklist.tt:163
-#: ../root/release/edit/tracklist.tt:453
+#: ../root/cdtoc/lookup.tt:75 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/information.tt:26 ../root/release/edit/tracklist.tt:110
+#: ../root/release/edit/tracklist.tt:163 ../root/release/edit/tracklist.tt:453
+#: ../root/release_group/set_cover_art.tt:32
#: ../lib/MusicBrainz/Server/Edit/Artist.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:38
#: ../root/cdstub/BrowseCDStubs.js:37 ../root/cdstub/CDStubInfo.js:28
@@ -443,8 +453,14 @@ msgstr "Gebied:"
#: ../root/edit/details/historic/AddRelease.js:38
#: ../root/edit/details/historic/AddRelease.js:90
#: ../root/edit/details/historic/AddTrackKV.js:41
-#: ../root/edit/details/historic/EditTrack.js:35 ../root/isrc/Index.js:67
+#: ../root/edit/details/historic/ChangeArtistQuality.js:24
+#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
+#: ../root/edit/details/historic/EditTrack.js:35
+#: ../root/edit/details/historic/MoveRelease.js:30
+#: ../root/edit/details/historic/RemoveRelease.js:26 ../root/isrc/Index.js:67
#: ../root/layout/components/Search.js:24
+#: ../root/layout/components/sidebar/RecordingSidebar.js:49
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
#: ../root/release_group/ReleaseGroupIndex.js:168
#: ../root/report/DuplicateArtists.js:67
#: ../root/report/DuplicateReleaseGroups.js:59
@@ -461,11 +477,12 @@ msgstr "Gebied:"
#: ../root/search/components/CDStubResults.js:45
#: ../root/search/components/RecordingResults.js:143
#: ../root/search/components/ReleaseGroupResults.js:64
-#: ../root/search/components/ReleaseResults.js:113
+#: ../root/search/components/ReleaseResults.js:112
#: ../root/search/components/SearchForm.js:37
#: ../root/static/scripts/common/constants.js:36
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:50
#: ../root/static/scripts/common/utility/formatSetlist.js:52
+#: ../root/static/scripts/edit/components/forms.js:29
#: ../root/static/scripts/release/components/MediumTable.js:86
#: ../root/taglookup/Form.js:25 ../root/user/UserProfile.js:50
msgid "Artist"
@@ -479,19 +496,6 @@ msgstr "Gebied van artiest"
msgid "Artist Details"
msgstr "Artiestdetails"
-#: ../root/cdtoc/lookup.tt:75 ../root/release/edit/information.tt:26
-#: ../root/release/edit/tracklist.tt:110
-#: ../root/release_group/set_cover_art.tt:32
-#: ../root/edit/details/historic/ChangeArtistQuality.js:24
-#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
-#: ../root/edit/details/historic/MoveRelease.js:30
-#: ../root/edit/details/historic/RemoveRelease.js:26
-#: ../root/layout/components/sidebar/RecordingSidebar.js:49
-#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
-#: ../root/static/scripts/edit/components/forms.js:29
-msgid "Artist:"
-msgstr "Artiest:"
-
#: ../root/cdtoc/attach_artist_releases.tt:40
#: ../root/cdtoc/attach_filter_release.tt:54
msgctxt "button/menu"
@@ -518,8 +522,19 @@ msgid "Attached to releases"
msgstr "Gekoppeld aan uitgaven"
#: ../root/relationship/linktype/form.tt:52
-msgid "Attributes:"
-msgstr "Eigenschappen:"
+#: ../root/admin/attributes/Attribute.js:72
+#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
+#: ../root/admin/attributes/Language.js:33
+#: ../root/admin/attributes/Script.js:33
+#: ../root/components/RelationshipsTable.js:336
+#: ../root/edit/details/AddRelationshipType.js:169
+#: ../root/edit/details/EditRelationshipType.js:297
+#: ../root/edit/details/RemoveRelationshipType.js:117
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
+#: ../root/utility/tableColumns.js:671
+msgid "Attributes"
+msgstr "Eigenschappen"
#: ../root/edit/search_macros.tt:397
msgid "Auto-Editor"
@@ -528,6 +543,8 @@ msgstr "Autoredacteur"
#: ../root/cdtoc/attach_artist_releases.tt:19
#: ../root/cdtoc/attach_filter_release.tt:33 ../root/cdtoc/list.tt:13
#: ../root/cdtoc/lookup.tt:47 ../root/release/edit/duplicates.tt:17
+#: ../root/release/edit/information.tt:222
+#: ../root/release_group/set_cover_art.tt:62
#: ../root/components/list/ReleaseList.js:139
#: ../root/edit/details/AddRelease.js:112
#: ../root/edit/details/EditBarcodes.js:45
@@ -537,20 +554,15 @@ msgstr "Autoredacteur"
#: ../root/edit/details/MergeReleases.js:242
#: ../root/edit/details/historic/AddRelease.js:125
#: ../root/edit/details/historic/EditReleaseEvents.js:113
+#: ../root/layout/components/sidebar/CDStubSidebar.js:71
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:128
#: ../root/otherlookup/OtherLookupForm.js:62
#: ../root/release_group/ReleaseGroupIndex.js:174
#: ../root/report/ReleasesSameBarcode.js:40
-#: ../root/search/components/ReleaseResults.js:119
+#: ../root/search/components/ReleaseResults.js:118
msgid "Barcode"
msgstr "Streepjescode"
-#: ../root/release/edit/information.tt:220
-#: ../root/release_group/set_cover_art.tt:62
-#: ../root/layout/components/sidebar/CDStubSidebar.js:63
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:126
-msgid "Barcode:"
-msgstr "Streepjescode:"
-
#: ../root/cdtoc/lookup.tt:33
msgid ""
"Based on the above CD stub, we also found the following releases in "
@@ -569,15 +581,25 @@ msgstr ""
"uitgave gevonden in MusicBrainz. Selecteer hieronder een bestaande uitgave "
"als je je uitgave daarop wil baseren."
-#: ../root/artist/edit_form.tt:42
-msgid "Begin Area:"
-msgstr "Begingebied:"
+#: ../root/artist/edit_form.tt:42 ../root/components/list/ArtistList.js:102
+#: ../root/search/components/ArtistResults.js:57
+msgid "Begin Area"
+msgstr "Begingebied"
#: ../root/artist/edit_form.tt:38 ../root/components/forms.tt:212
#: ../root/event/edit_form.tt:36 ../root/artist/utils.js:34
+#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
+#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
+#: ../root/edit/details/AddRemoveAlias.js:90
+#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
+#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
+#: ../root/edit/details/EditPlace.js:93
#: ../root/layout/components/sidebar/AreaSidebar.js:58
-msgid "Begin date:"
-msgstr "Begindatum:"
+#: ../root/report/RecordingsWithFutureDates.js:34
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
+msgid "Begin date"
+msgstr "Begindatum"
#: ../root/release/add_cover_art.tt:95 ../root/search/error/InternalError.js:29
msgid ""
@@ -679,39 +701,34 @@ msgstr "Annuleren"
msgid "Cardinality of {entity_placeholder}"
msgstr "Kardinaliteit van {entity_placeholder}"
-#: ../root/release/edit/information.tt:192
+#: ../root/release/edit/information.tt:194
msgid "Cat. No:"
msgstr "Catalogusnr.:"
#: ../root/cdtoc/attach_artist_releases.tt:18
#: ../root/cdtoc/attach_filter_release.tt:32 ../root/cdtoc/list.tt:12
#: ../root/cdtoc/lookup.tt:46 ../root/release/edit/duplicates.tt:16
+#: ../root/release_group/set_cover_art.tt:56
#: ../root/edit/details/MergeReleases.js:241
#: ../root/recording/RecordingIndex.js:62
#: ../root/release_group/ReleaseGroupIndex.js:173
-#: ../root/search/components/ReleaseResults.js:118
-#: ../root/utility/tableColumns.js:482 ../root/utility/tableColumns.js:487
+#: ../root/search/components/ReleaseResults.js:117
+#: ../root/utility/tableColumns.js:487 ../root/utility/tableColumns.js:492
msgid "Catalog#"
msgstr "Catalogus#"
-#: ../root/release_group/set_cover_art.tt:56
-msgid "Catalog#:"
-msgstr "Catalogusnummer:"
-
-#: ../root/admin/attributes/form.tt:53 ../root/admin/attributes/Attribute.js:82
-#: ../root/edit/details/AddRelationshipAttribute.js:50
-#: ../root/edit/details/EditRelationshipAttribute.js:93
-msgid "Child order"
-msgstr "Volgorde van kindelementen"
-
+#: ../root/admin/attributes/form.tt:53
#: ../root/relationship/linkattributetype/form.tt:7
#: ../root/relationship/linktype/form.tt:7
+#: ../root/admin/attributes/Attribute.js:82
+#: ../root/edit/details/AddRelationshipAttribute.js:50
+#: ../root/edit/details/EditRelationshipAttribute.js:93
#: ../root/edit/details/EditRelationshipType.js:241
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:122
#: ../root/relationship/linktype/RelationshipTypeIndex.js:162
#: ../root/relationship/linktype/RelationshipTypePairTree.js:58
-msgid "Child order:"
-msgstr "Volgorde van kindelementen:"
+msgid "Child order"
+msgstr "Volgorde van kindelementen"
#: ../root/release/edit/recordings.tt:114
msgid "Click Edit to edit the recording associations for this disc."
@@ -722,6 +739,7 @@ msgid "Close"
msgstr "Afsluiten"
#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditHeader.js:155
+#: ../root/edit/components/EditSidebar.js:59
msgid "Closed"
msgstr "Gesloten"
@@ -733,22 +751,15 @@ msgstr "Samenwerkers aan deze artiest"
msgid "Collapse medium"
msgstr "Medium inklappen"
-#: ../root/cdstub/index.tt:3 ../root/cdstub/CDStubIndex.js:36
+#: ../root/cdstub/index.tt:3 ../root/release/add_cover_art.tt:69
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:71 ../root/cdstub/CDStubIndex.js:36
msgid "Comment"
msgstr "Opmerking"
-#: ../root/release/add_cover_art.tt:69 ../root/release/add_cover_art.tt:137
-#: ../root/release/reorder_cover_art.tt:19
-#: ../root/release_group/set_cover_art.tt:71
-#: ../root/edit/details/AddCoverArt.js:54
-#: ../root/edit/details/EditCoverArt.js:67
-#: ../root/edit/details/RemoveCoverArt.js:56
-#: ../root/release/CoverArtFields.js:93
-msgid "Comment:"
-msgstr "Opmerking:"
-
#: ../root/place/edit_form.tt:28 ../root/edit/details/AddPlace.js:67
#: ../root/edit/details/EditPlace.js:86
+#: ../root/layout/components/sidebar/PlaceSidebar.js:99
msgid "Coordinates"
msgstr "Coördinaten"
@@ -777,33 +788,26 @@ msgstr "Kopieer de titel van de uitgave naar de uitgavegroep"
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:44 ../root/release/edit/duplicates.tt:14
+#: ../root/release/edit/information.tt:156
+#: ../root/release_group/set_cover_art.tt:41
#: ../root/edit/details/EditReleaseLabel.js:113
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:122
#: ../root/edit/details/historic/EditReleaseEvents.js:110
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/common/components/FilterForm.js:187
-#: ../root/utility/tableColumns.js:504 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:509 ../root/utility/tableColumns.js:521
msgid "Country"
msgstr "Land"
-#: ../root/release/edit/information.tt:154
-#: ../root/release_group/set_cover_art.tt:41
-msgid "Country:"
-msgstr "Land:"
-
#: ../root/release_group/set_cover_art.tt:67
#: ../root/components/EntityTabs.js:114 ../root/release/CoverArt.js:57
#: ../root/user/UserProfile.js:51
msgid "Cover Art"
msgstr "Afbeelding(en)"
-#: ../root/edit/search_macros.tt:423
-msgid "Created"
-msgstr "Aangemaakt"
-
#: ../root/release/add_cover_art.tt:85
msgid "Creating edit..."
msgstr "Bewerking aan het aanmaken"
@@ -812,7 +816,7 @@ msgstr "Bewerking aan het aanmaken"
msgid "Custom delimiter"
msgstr "Scheidingsteken"
-#: ../root/release/edit/information.tt:146
+#: ../root/release/edit/information.tt:148
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:253
#: ../root/static/scripts/edit/components/PartialDateInput.js:186
msgid "DD"
@@ -827,6 +831,8 @@ msgstr "Datanummers"
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:43 ../root/release/edit/duplicates.tt:13
+#: ../root/release/edit/information.tt:130
+#: ../root/release_group/set_cover_art.tt:37
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:25
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:30
#: ../root/admin/statistics-events/StatisticsEventIndex.js:26
@@ -835,14 +841,16 @@ msgstr "Datanummers"
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:121
#: ../root/edit/details/historic/EditReleaseEvents.js:109
-#: ../root/elections/ElectionVotes.js:28 ../root/recording/RecordingIndex.js:60
+#: ../root/elections/ElectionVotes.js:28
+#: ../root/layout/components/sidebar/EventSidebar.js:61
+#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
#: ../root/search/components/EventResults.js:74
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:106
#: ../root/static/scripts/common/components/FilterForm.js:225
-#: ../root/utility/tableColumns.js:279 ../root/utility/tableColumns.js:284
-#: ../root/utility/tableColumns.js:510 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:284 ../root/utility/tableColumns.js:289
+#: ../root/utility/tableColumns.js:515 ../root/utility/tableColumns.js:521
msgid "Date"
msgstr "Datum"
@@ -852,12 +860,6 @@ msgstr "Datum"
msgid "Date Period"
msgstr "Periode"
-#: ../root/release/edit/information.tt:128
-#: ../root/release_group/set_cover_art.tt:37
-#: ../root/layout/components/sidebar/EventSidebar.js:59
-msgid "Date:"
-msgstr "Datum:"
-
#: ../root/artist/edit_form.tt:36 ../root/components/forms.tt:210
#: ../root/event/edit_form.tt:34
#: ../root/static/scripts/edit/components/DateRangeFieldset.js:186
@@ -868,11 +870,10 @@ msgstr ""
"Data hebben de opmaak JJJJ-MM-DD. Gedeeltelijke data zoals JJJJ-MM of alleen "
"JJJJ zijn ook goed, en de datum kan ook helemaal worden weggelaten."
-#: ../root/edit/search_macros.tt:120
-msgid "Delete"
-msgstr "Verwijderen"
-
#: ../root/admin/attributes/form.tt:61 ../root/doc/edit_type.tt:23
+#: ../root/instrument/edit_form.tt:13
+#: ../root/relationship/linkattributetype/form.tt:15
+#: ../root/relationship/linktype/form.tt:20
#: ../root/admin/attributes/Attribute.js:80
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:33
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:42
@@ -892,19 +893,13 @@ msgstr "Verwijderen"
#: ../root/instrument/InstrumentIndex.js:34
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:110
#: ../root/relationship/linktype/RelationshipTypeIndex.js:146
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
#: ../root/search/components/InstrumentResults.js:55
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:206
-#: ../root/utility/tableColumns.js:676
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:209
+#: ../root/utility/tableColumns.js:681
msgid "Description"
msgstr "Omschrijving"
-#: ../root/instrument/edit_form.tt:13
-#: ../root/relationship/linkattributetype/form.tt:15
-#: ../root/relationship/linktype/form.tt:20
-#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
-msgid "Description:"
-msgstr "Omschrijving:"
-
#: ../root/doc/edit_type.tt:28 ../root/components/EntityTabs.js:146
#: ../root/elections/ElectionDetails.js:29 ../root/entity/Details.js:91
#: ../root/entity/Details.js:93
@@ -914,7 +909,7 @@ msgstr "Details"
#: ../root/area/edit_form.tt:10 ../root/artist/edit_form.tt:14
#: ../root/event/edit_form.tt:13 ../root/instrument/edit_form.tt:10
#: ../root/label/edit_form.tt:13 ../root/place/edit_form.tt:13
-#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:256
+#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:258
#: ../root/release_group/edit_form.tt:15 ../root/series/edit_form.tt:13
#: ../root/work/edit_form.tt:13 ../root/edit/details/AddArea.js:54
#: ../root/edit/details/AddArtist.js:62 ../root/edit/details/AddEvent.js:44
@@ -937,7 +932,13 @@ msgstr "Details"
msgid "Disambiguation"
msgstr "Verduidelijking"
-#: ../root/release/discids.tt:8 ../root/edit/details/SetTrackLengths.js:54
+#: ../root/release/discids.tt:8 ../root/cdtoc/CDTocInfo.js:32
+#: ../root/edit/details/AddDiscId.js:34 ../root/edit/details/MoveDiscId.js:26
+#: ../root/edit/details/RemoveDiscId.js:31
+#: ../root/edit/details/SetTrackLengths.js:54
+#: ../root/edit/details/historic/AddDiscId.js:27
+#: ../root/edit/details/historic/MoveDiscId.js:21
+#: ../root/edit/details/historic/RemoveDiscId.js:23
#: ../root/otherlookup/OtherLookupForm.js:112
#: ../root/utility/tableColumns.js:199 ../root/utility/tableColumns.js:204
msgid "Disc ID"
@@ -965,15 +966,23 @@ msgid "Do not use any of the above releases as a starting point"
msgstr "Gebruik geen van de bovenstaande uitgaven als uitgangspunt"
#: ../root/relationship/linktype/form.tt:65
-msgid "Documentation:"
-msgstr "Documentatie:"
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
+#: ../root/edit/details/AddRelationshipType.js:187
+#: ../root/edit/details/EditRelationshipType.js:327
+#: ../root/layout/components/BottomMenu.js:293
+#: ../root/layout/components/Search.js:51
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
+#: ../root/search/components/SearchForm.js:56
+msgid "Documentation"
+msgstr "Documentatie"
#: ../root/layout.tt:112 ../root/layout/components/Footer.js:26
msgid "Donate"
msgstr "Doneren"
#: ../root/release/edit/macros.tt:54
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:166
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:165
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:219
#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:64
#: ../root/static/scripts/edit/components/URLInputPopover.js:134
@@ -1050,12 +1059,12 @@ msgid "Edit Relationship Type"
msgstr "Relatietype bewerken"
#: ../root/doc/edit_type.tt:18 ../root/doc/edit_types.tt:1
-#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:96
+#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:99
#: ../root/layout/components/BottomMenu.js:315
msgid "Edit Types"
msgstr "Bewerkingstypes"
-#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:28
+#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:26
#: ../root/static/scripts/edit/components/URLInputPopover.js:146
msgid "Edit URL"
msgstr "URL bewerken"
@@ -1087,15 +1096,26 @@ msgstr "Type redacteur"
msgid "Enable vinyl track numbers"
msgstr "Nummering voor vinyl inschakelen"
-#: ../root/artist/edit_form.tt:56
-msgid "End Area:"
-msgstr "Eindgebied:"
+#: ../root/artist/edit_form.tt:56 ../root/components/list/ArtistList.js:112
+#: ../root/search/components/ArtistResults.js:59
+msgid "End Area"
+msgstr "Eindgebied"
#: ../root/artist/edit_form.tt:51 ../root/components/forms.tt:214
#: ../root/event/edit_form.tt:38 ../root/artist/utils.js:65
+#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
+#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
+#: ../root/edit/details/AddRemoveAlias.js:97
+#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
+#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
+#: ../root/edit/details/EditPlace.js:101
+#: ../root/elections/ElectionTable/index.js:25
#: ../root/layout/components/sidebar/AreaSidebar.js:64
-msgid "End date:"
-msgstr "Einddatum:"
+#: ../root/report/RecordingsWithFutureDates.js:39
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
+msgid "End date"
+msgstr "Einddatum"
#: ../root/relationship/linktype/form.tt:112
msgid "Endpoint:"
@@ -1133,6 +1153,10 @@ msgstr ""
"Geef het scheidingsteken tussen de titel van het nummer en de artiest op "
"(geldige {url|reguliere expressies} zijn mogelijk)."
+#: ../root/edit/search_macros.tt:423
+msgid "Entered"
+msgstr ""
+
#: ../root/components/forms.tt:30
msgid ""
"Entering an {note|edit note} that describes where you got your information "
@@ -1201,7 +1225,7 @@ msgstr "Actie bij het verlopen"
#: ../root/area/edit_form.tt:22 ../root/artist/edit_form.tt:70
#: ../root/event/edit_form.tt:46 ../root/instrument/edit_form.tt:32
#: ../root/label/edit_form.tt:41 ../root/place/edit_form.tt:37
-#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:266
+#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:268
#: ../root/release_group/edit_form.tt:23 ../root/series/edit_form.tt:26
#: ../root/work/edit_form.tt:90
#: ../root/static/scripts/genre/components/GenreEditForm.js:160
@@ -1244,25 +1268,21 @@ msgid "For more information, check the {doc_doc|documentation}."
msgstr "Lees de {doc_doc|documentatie} voor meer informatie."
#: ../root/cdtoc/list.tt:9 ../root/release/edit/duplicates.tt:11
+#: ../root/release/edit/tracklist.tt:305
+#: ../root/release_group/set_cover_art.tt:46
#: ../root/components/list/ReleaseList.js:98
-#: ../root/edit/details/EditMedium.js:485
+#: ../root/edit/details/AddMedium.js:136 ../root/edit/details/EditMedium.js:485
#: ../root/edit/details/EditReleaseLabel.js:131
#: ../root/edit/details/MergeReleases.js:237
#: ../root/edit/details/historic/AddRelease.js:126
#: ../root/edit/details/historic/EditReleaseEvents.js:114
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:137
#: ../root/release_group/ReleaseGroupIndex.js:169
#: ../root/report/components/CDTocList.js:49
-#: ../root/search/components/ReleaseResults.js:114
+#: ../root/search/components/ReleaseResults.js:113
msgid "Format"
msgstr "Type medium"
-#: ../root/release/edit/tracklist.tt:305
-#: ../root/release_group/set_cover_art.tt:46
-#: ../root/edit/details/AddMedium.js:136
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:132
-msgid "Format:"
-msgstr "Type medium:"
-
#: ../root/layout.tt:114 ../root/layout/components/Footer.js:28
#: ../root/main/index.js:212
msgid "Forums"
@@ -1306,12 +1326,14 @@ msgstr "Notities over de frequentie:"
msgid "Full TOC:"
msgstr "Volledige TOC:"
-#: ../root/artist/edit_form.tt:17
-#: ../root/layout/components/sidebar/ArtistSidebar.js:84
-#: ../root/static/scripts/account/components/EditProfileForm.js:207
+#: ../root/artist/edit_form.tt:17 ../root/components/list/ArtistList.js:87
+#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
+#: ../root/layout/components/sidebar/ArtistSidebar.js:89
+#: ../root/search/components/ArtistResults.js:54
+#: ../root/static/scripts/account/components/EditProfileForm.js:237
#: ../root/user/UserProfile.js:268
-msgid "Gender:"
-msgstr "Geslacht:"
+msgid "Gender"
+msgstr "Geslacht"
#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Genre.pm:7
#: ../root/edit/details/AddGenre.js:24 ../root/edit/details/EditGenre.js:28
@@ -1402,7 +1424,7 @@ msgstr ""
msgid "Historic"
msgstr "Historisch"
-#: ../root/release/edit/information.tt:325
+#: ../root/release/edit/information.tt:339
msgid "I confirm that this is the barcode as it appears on the release."
msgstr "Ik bevestig dat de streepjescode precies zo op de uitgave staat."
@@ -1431,14 +1453,22 @@ msgstr "Ik heb geen informatie over de media en nummerlijst van deze uitgave."
#: ../root/edit/search_macros.tt:423 ../root/admin/attributes/Attribute.js:78
#: ../root/admin/attributes/Language.js:39
#: ../root/admin/attributes/Script.js:40
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
msgid "ID"
msgstr "ID"
#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
#: ../root/edit/details/AddArtist.js:136 ../root/edit/details/AddLabel.js:102
+#: ../root/layout/components/sidebar/SidebarIpis.js:18
msgid "IPI code"
msgstr "IPI-code"
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/EditArtist.js:162 ../root/edit/details/EditLabel.js:131
+msgid "IPI codes"
+msgstr "IPI-codes"
+
#: ../root/components/forms.tt:333
msgid ""
"IPI codes are assigned by CISAC to “interested parties” in musical rights "
@@ -1448,20 +1478,21 @@ msgstr ""
"van muziekrechten toegewezen. Zie {ipi_doc|de documentatie} voor meer "
"informatie."
-#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
-#: ../root/edit/details/EditArtist.js:162
-msgid "IPI codes:"
-msgstr "IPI-codes:"
-
#: ../root/layout.tt:115
msgid "IRC"
msgstr "Chat"
#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
#: ../root/edit/details/AddArtist.js:145 ../root/edit/details/AddLabel.js:111
+#: ../root/layout/components/sidebar/SidebarIsnis.js:22
msgid "ISNI code"
msgstr "ISNI-code"
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/EditArtist.js:170 ../root/edit/details/EditLabel.js:140
+msgid "ISNI codes"
+msgstr "ISNI-codes"
+
#: ../root/components/forms.tt:342
msgid ""
"ISNI codes are an ISO standard used to uniquely identify persons and "
@@ -1471,41 +1502,24 @@ msgstr ""
"organisaties ondubbelzinnig te identificeren. Zie {isni_doc|de documentatie} "
"voor meer informatie."
-#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
-#: ../root/edit/details/EditArtist.js:170
-msgid "ISNI codes:"
-msgstr "ISNI-codes:"
-
#: ../root/area/edit_form.tt:12 ../root/edit/details/AddArea.js:68
#: ../root/edit/details/EditArea.js:82
+#: ../root/layout/components/sidebar/AreaSidebar.js:71
msgid "ISO 3166-1"
msgstr "ISO 3166-1"
-#: ../root/area/edit_form.tt:12
-#: ../root/layout/components/sidebar/AreaSidebar.js:71
-msgid "ISO 3166-1:"
-msgstr "ISO 3166-1:"
-
#: ../root/area/edit_form.tt:13 ../root/edit/details/AddArea.js:75
#: ../root/edit/details/EditArea.js:89
+#: ../root/layout/components/sidebar/AreaSidebar.js:81
msgid "ISO 3166-2"
msgstr "ISO 3166-2"
-#: ../root/area/edit_form.tt:13
-#: ../root/layout/components/sidebar/AreaSidebar.js:81
-msgid "ISO 3166-2:"
-msgstr "ISO 3166-2:"
-
#: ../root/area/edit_form.tt:14 ../root/edit/details/AddArea.js:82
#: ../root/edit/details/EditArea.js:96
+#: ../root/layout/components/sidebar/AreaSidebar.js:91
msgid "ISO 3166-3"
msgstr "ISO 3166-3"
-#: ../root/area/edit_form.tt:14
-#: ../root/layout/components/sidebar/AreaSidebar.js:91
-msgid "ISO 3166-3:"
-msgstr "ISO 3166-3:"
-
#: ../root/admin/attributes/form.tt:8 ../root/admin/attributes/Language.js:41
msgid "ISO 639-1"
msgstr "ISO 639-1"
@@ -1537,9 +1551,14 @@ msgstr "ISO-nummer"
msgid "ISRC"
msgstr "ISRC"
-#: ../root/recording/edit_form.tt:45
-msgid "ISRCs:"
-msgstr "ISRC’s:"
+#: ../root/recording/edit_form.tt:45 ../root/report/ReportsIndex.js:606
+#: ../root/search/components/RecordingResults.js:144
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:721
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:411
+#: ../root/static/scripts/common/components/IsrcList.js:44
+#: ../root/utility/tableColumns.js:694
+msgid "ISRCs"
+msgstr "ISRC’s"
#: ../root/work/edit_form.tt:16 ../root/edit/details/AddWork.js:47
#: ../root/edit/details/EditWork.js:66 ../root/edit/details/RemoveIswc.js:27
@@ -1547,13 +1566,14 @@ msgstr "ISRC’s:"
#: ../root/report/IswcsWithManyWorks.js:49
#: ../root/search/components/WorkResults.js:57
#: ../root/static/scripts/common/components/IswcList.js:26
-#: ../root/utility/tableColumns.js:703
+#: ../root/utility/tableColumns.js:708
msgid "ISWC"
msgstr "ISWC"
-#: ../root/work/edit_form.tt:16
-msgid "ISWCs:"
-msgstr "ISWC’s:"
+#: ../root/work/edit_form.tt:16 ../root/report/ReportsIndex.js:615
+#: ../root/static/scripts/common/components/IswcList.js:44
+msgid "ISWCs"
+msgstr "ISWC’s"
#: ../root/event/edit_form.tt:26
msgid ""
@@ -1571,7 +1591,7 @@ msgstr ""
"niet kloppen, kan je de opties hieronder aanvinken om ze te vervangen door "
"de titels of artiesten van de nummers zoals ze op deze uitgave staan."
-#: ../root/release/edit/information.tt:298
+#: ../root/release/edit/information.tt:300
msgid ""
"If this is an Amazon ASIN, please do not enter it in the catalog number "
"field, but add it as a URL relationship later."
@@ -1592,7 +1612,7 @@ msgid "If you can't find what you're looking for, you can add a new release:"
msgstr ""
"Je kan een nieuwe uitgave toevoegen als je niet kan vinden wat je zoekt:"
-#: ../root/release/edit/information.tt:316
+#: ../root/release/edit/information.tt:330
msgid ""
"If you do not know whether the release has a barcode or not, just leave this "
"blank."
@@ -1614,11 +1634,9 @@ msgstr "Als je de code voor dit object niet weet, kan je het veld leeg laten."
#: ../root/release/edit/information.tt:54
msgid ""
-"If you don’t select an existing release group, a new one will be created "
-"with the types selected below."
+"If you don’t select an existing release group, a new one will be added with "
+"the types selected below."
msgstr ""
-"Als je geen bestaande uitgavegroep selecteert, wordt er een nieuwe "
-"aangemaakt met de types die je hieronder hebt geselecteerd."
#: ../root/release/edit/tracklist.tt:5
msgid "If you have a tracklist you can copy and paste, you can input it here."
@@ -1707,47 +1725,39 @@ msgid ""
"Keep in mind that recording durations are {doc_link|recalculated from "
"tracks} once the duration of a track changes. As such, if you correct the "
"duration of a track whose recording is only used in this release, just reuse "
-"the old recording, don’t create a new one. If the recording is also used "
-"elsewhere and the durations are significantly different, consider creating a "
+"the old recording, don’t add a new one. If the recording is also used "
+"elsewhere and the durations are significantly different, consider adding a "
"new recording instead."
msgstr ""
-"Houd er rekening mee dat de duur van de opname {doc_link|opnieuw aan de hand "
-"van de nummers wordt berekend} als de duur van een nummer verandert. Dus als "
-"je de duur van een nummer verbetert en de opname die bij dat nummer hoort "
-"alleen op deze uitgave wordt gebruikt, maak je geen nieuwe opname. Maar als "
-"deze opname ook elders wordt gebruikt en de duur van de gekoppelde nummers "
-"significant verschillen, kan je overwegen om een nieuwe opname te maken."
#: ../root/release/edit/tracklist.tt:502
msgid ""
-"Keep in mind that unselecting this will delete the track if the medium has a "
+"Keep in mind that unselecting this will remove the track if the medium has a "
"disc ID! If you unselect it by mistake, please readd the pregap track before "
"submitting."
msgstr ""
-"Vergeet niet dat het nummer wordt verwijderd als je dit vakje uitvinkt en "
-"het medium een disc-ID heeft! Als je het per ongeluk hebt uitgevinkt, moet "
-"je het pregapnummer weer toevoegen voordat je de bewerking indient."
#: ../root/release/edit/tracklist.tt:517
msgid ""
-"Keep in mind that unselecting this will delete the tracks if the medium has "
+"Keep in mind that unselecting this will remove the tracks if the medium has "
"a disc ID! If you unselect it by mistake, please readd the data tracks "
"before submitting."
msgstr ""
-"Vergeet niet dat de nummers worden verwijderd als je dit vakje uitvinkt en "
-"het medium een disc-ID heeft! Als je het per ongeluk hebt uitgevinkt, moet "
-"je de pregapnummers weer toevoegen voordat je de bewerking indient."
#: ../root/cdtoc/attach_artist_releases.tt:17
#: ../root/cdtoc/attach_filter_release.tt:31 ../root/cdtoc/list.tt:11
#: ../root/cdtoc/lookup.tt:45 ../root/edit/search_macros.tt:423
#: ../root/release/edit/duplicates.tt:15
+#: ../root/release/edit/information.tt:179
+#: ../root/release_group/set_cover_art.tt:52
#: ../lib/MusicBrainz/Server/Edit/Label.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:43
#: ../root/components/list/LabelList.js:54 ../root/edit/details/AddLabel.js:31
+#: ../root/edit/details/AddReleaseLabel.js:35
#: ../root/edit/details/EditLabel.js:43
#: ../root/edit/details/EditReleaseLabel.js:51
#: ../root/edit/details/MergeReleases.js:240
+#: ../root/edit/details/RemoveReleaseLabel.js:31
#: ../root/edit/details/historic/AddRelease.js:123
#: ../root/edit/details/historic/EditReleaseEvents.js:111
#: ../root/label/LabelHeader.js:25 ../root/layout/components/Search.js:37
@@ -1756,13 +1766,13 @@ msgstr ""
#: ../root/report/ReleaseLabelSameArtist.js:31
#: ../root/report/components/LabelList.js:47
#: ../root/report/components/LabelUrlList.js:35
-#: ../root/search/components/ReleaseResults.js:117
+#: ../root/search/components/ReleaseResults.js:116
#: ../root/search/components/SearchForm.js:42
#: ../root/static/scripts/common/components/FilterForm.js:168
#: ../root/static/scripts/common/constants.js:40
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:60
-#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:533
-#: ../root/utility/tableColumns.js:538
+#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:538
+#: ../root/utility/tableColumns.js:543
msgid "Label"
msgstr "Platenmaatschappij"
@@ -1774,28 +1784,31 @@ msgstr "Gebied van platenmaatschappij"
msgid "Label Details"
msgstr "Platenmaatschappijdetails"
-#: ../root/label/edit_form.tt:28
-#: ../root/layout/components/sidebar/LabelSidebar.js:81
-msgid "Label code:"
-msgstr "Platenmaatschappijcode:"
-
-#: ../root/release/edit/information.tt:177
-#: ../root/release_group/set_cover_art.tt:52
-#: ../root/edit/details/AddReleaseLabel.js:35
-#: ../root/edit/details/RemoveReleaseLabel.js:31
-msgid "Label:"
-msgstr "Platenmaatschappij:"
+#: ../root/label/edit_form.tt:28 ../root/edit/details/AddLabel.js:94
+#: ../root/edit/details/EditLabel.js:85
+#: ../root/layout/components/sidebar/LabelSidebar.js:83
+msgid "Label code"
+msgstr "Platenmaatschappijcode"
#: ../root/release/edit/information.tt:114
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:177
-msgid "Language:"
-msgstr "Taal:"
+#: ../root/admin/attributes/Language.js:31
+#: ../root/admin/attributes/Language.js:34
+#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
+#: ../root/edit/details/EditRelease.js:113
+#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:191
+#: ../root/report/IswcsWithManyWorks.js:54
+#: ../root/search/components/ReleaseResults.js:119
+#: ../root/utility/tableColumns.js:559
+msgid "Language"
+msgstr "Taal"
#: ../root/layout.tt:139 ../root/layout/components/Footer.js:85
msgid "Last replication packet received at {datetime}"
msgstr "Laatste replicatiepakket ontvangen op {datetime}"
-#: ../root/cdstub/cdstub.tt:9 ../root/release/discids.tt:10
+#: ../root/cdstub/cdstub.tt:9 ../root/recording/edit_form.tt:35
+#: ../root/recording/edit_form.tt:38 ../root/release/discids.tt:10
#: ../root/release/edit/tracklist.tt:164 ../root/release/edit/tracklist.tt:454
#: ../root/cdstub/CDStubInfo.js:29 ../root/cdtoc/AttachCDTocConfirmation.js:72
#: ../root/cdtoc/CDTocInfo.js:54 ../root/components/RelationshipsTable.js:338
@@ -1807,6 +1820,8 @@ msgstr "Laatste replicatiepakket ontvangen op {datetime}"
#: ../root/edit/details/EditRecording.js:69
#: ../root/edit/details/historic/AddRelease.js:91
#: ../root/edit/details/historic/AddTrackKV.js:54 ../root/isrc/Index.js:68
+#: ../root/layout/components/sidebar/RecordingSidebar.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:146
#: ../root/recording/RecordingIndex.js:55
#: ../root/report/IsrcsWithManyRecordings.js:61
#: ../root/report/components/CDTocList.js:54
@@ -1815,12 +1830,6 @@ msgstr "Laatste replicatiepakket ontvangen op {datetime}"
msgid "Length"
msgstr "Duur"
-#: ../root/recording/edit_form.tt:35 ../root/recording/edit_form.tt:38
-#: ../root/layout/components/sidebar/RecordingSidebar.js:54
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:138
-msgid "Length:"
-msgstr "Duur:"
-
#: ../root/release/edit/tracklist.tt:54
msgid "Lines contain track artists"
msgstr "Regels bevatten de artiestennamen"
@@ -1851,7 +1860,7 @@ msgstr "Aanmelden"
msgid "Long link phrase:"
msgstr "Lange koppelzin:"
-#: ../root/release/edit/recordings.tt:175
+#: ../root/release/edit/recordings.tt:186
msgid "Looking for suggested recordings..."
msgstr "Aan het zoeken naar voorgestelde opnames …"
@@ -1859,7 +1868,7 @@ msgstr "Aan het zoeken naar voorgestelde opnames …"
msgid "Lookup CD"
msgstr "Cd opzoeken"
-#: ../root/release/edit/information.tt:139
+#: ../root/release/edit/information.tt:141
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:252
#: ../root/static/scripts/edit/components/PartialDateInput.js:174
msgid "MM"
@@ -1882,7 +1891,8 @@ msgstr "Overeenkomende cd’s"
#: ../lib/MusicBrainz/Server/Edit/Medium.pm:8
#: ../root/cdtoc/AttachCDTocConfirmation.js:65
#: ../root/cdtoc/SetTracklistDurations.js:56
-#: ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/RemoveDiscId.js:25
#: ../root/edit/details/RemoveMedium.js:71
#: ../root/edit/details/SetTrackLengths.js:40
#: ../root/search/components/RecordingResults.js:148
@@ -1897,8 +1907,9 @@ msgstr "Mediumtitel:"
#: ../root/layout/merge-helper.tt:30
#: ../root/layout/components/MergeHelper.js:71
#: ../root/layout/components/sidebar/MergeLink.js:34
+msgctxt "button/link"
msgid "Merge"
-msgstr "Samenvoegen"
+msgstr ""
#: ../root/layout/merge-helper.tt:3 ../root/layout/components/MergeHelper.js:30
msgid "Merge Process"
@@ -1937,7 +1948,12 @@ msgid "Move track up"
msgstr "Nummer omhoog verplaatsen"
#: ../root/admin/attributes/form.tt:7 ../root/admin/attributes/form.tt:23
-#: ../root/admin/attributes/form.tt:58 ../root/admin/attributes/Attribute.js:79
+#: ../root/admin/attributes/form.tt:58 ../root/components/forms.tt:226
+#: ../root/relationship/linkattributetype/form.tt:12
+#: ../root/relationship/linktype/form.tt:12
+#: ../root/relationship/linktype/form.tt:77
+#: ../root/relationship/linktype/form.tt:107
+#: ../root/admin/attributes/Attribute.js:79
#: ../root/admin/attributes/Language.js:40
#: ../root/admin/attributes/Script.js:41
#: ../root/components/Aliases/ArtistCreditList.js:50
@@ -1945,7 +1961,7 @@ msgstr "Nummer omhoog verplaatsen"
#: ../root/edit/details/AddArea.js:41 ../root/edit/details/AddArtist.js:51
#: ../root/edit/details/AddEvent.js:38 ../root/edit/details/AddGenre.js:35
#: ../root/edit/details/AddInstrument.js:41 ../root/edit/details/AddLabel.js:41
-#: ../root/edit/details/AddPlace.js:38
+#: ../root/edit/details/AddMedium.js:129 ../root/edit/details/AddPlace.js:38
#: ../root/edit/details/AddRelationshipAttribute.js:34
#: ../root/edit/details/AddRelationshipType.js:66
#: ../root/edit/details/AddRelease.js:51
@@ -1975,36 +1991,27 @@ msgstr "Nummer omhoog verplaatsen"
#: ../root/entity/Details.js:96
#: ../root/search/components/AnnotationResults.js:55
#: ../root/search/components/AreaResults.js:63
-#: ../root/search/components/ArtistResults.js:52
+#: ../root/search/components/ArtistResults.js:51
#: ../root/search/components/EditorResults.js:42
#: ../root/search/components/EventResults.js:73
#: ../root/search/components/InstrumentResults.js:53
#: ../root/search/components/LabelResults.js:66
#: ../root/search/components/PlaceResults.js:63
#: ../root/search/components/RecordingResults.js:141
-#: ../root/search/components/ReleaseResults.js:112
+#: ../root/search/components/ReleaseResults.js:111
#: ../root/search/components/SeriesResults.js:57
#: ../root/search/components/TagResults.js:51
#: ../root/search/components/WorkResults.js:54
#: ../root/static/scripts/account/components/ApplicationForm.js:81
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:197
#: ../root/static/scripts/common/components/FilterForm.js:135
#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:112
#: ../root/static/scripts/genre/components/GenreEditForm.js:147
+#: ../root/static/scripts/release/components/EditWorkDialog.js:166
#: ../root/user/UserSubscriptions.js:48
msgid "Name"
msgstr "Naam"
-#: ../root/components/forms.tt:226
-#: ../root/relationship/linkattributetype/form.tt:12
-#: ../root/relationship/linktype/form.tt:12
-#: ../root/relationship/linktype/form.tt:77
-#: ../root/relationship/linktype/form.tt:107
-#: ../root/edit/details/AddMedium.js:129
-#: ../root/static/scripts/release/components/EditWorkDialog.js:166
-msgid "Name:"
-msgstr "Naam:"
-
#: ../root/artist/edit_credit.tt:18 ../root/artist/split.tt:45
msgid "New Artist Credit"
msgstr "Nieuwe vermelding van een artiest"
@@ -2057,7 +2064,7 @@ msgstr ""
"afbeelding worden ingesteld."
#: ../root/release/edit/tracklist.tt:140 ../root/admin/IpLookup.js:38
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:468
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:472
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:88
msgid "No results"
msgstr "Geen resultaten"
@@ -2093,7 +2100,15 @@ msgstr ""
"De opgegeven TOC kan aan geen van de media van deze uitgave worden "
"toegevoegd, omdat het aantal nummers verschilt."
-#: ../root/release/edit/information.tt:283
+#: ../root/release/edit/recordings.tt:3 ../root/edit/details/EditRelease.js:164
+#: ../root/edit/details/MergeReleases.js:347
+#: ../root/edit/details/SetTrackLengths.js:74
+#: ../root/edit/details/historic/MergeReleases.js:55
+#: ../root/user/ReportUser.js:116
+msgid "Note"
+msgstr "Notitie"
+
+#: ../root/release/edit/information.tt:285
msgid ""
"Note! If you do not know the month or day of release, please leave them "
"empty. January 1st is not often the actual release date, please double "
@@ -2103,19 +2118,12 @@ msgstr ""
"januari is meestal geen echte uitgavedatum, dus controleer alsjeblieft "
"nogmaals of je die datum correct hebt ingevuld."
-#: ../root/release/edit/recordings.tt:3
-msgid "Note:"
-msgstr "Let op:"
-
#: ../root/edit/search_macros.tt:243
msgid ""
-"Note: only searches edits that: add or edit relationships, created after "
-"2011-05-16; or which remove relationships, created after 2013-07-08; or "
+"Note: only searches edits that: add or edit relationships, entered after "
+"2011-05-16; or which remove relationships, entered after 2013-07-08; or "
"which reorder relationships."
msgstr ""
-"Let op: er wordt nu alleen gezocht naar bewerkingen die relaties toevoegen "
-"of bewerken en gecreëerd zijn na 16 mei 2011, of die relaties verwijderen en "
-"gecreëerd zijn na 8 juli 2013, of die de volgorde van relaties veranderen."
#: ../root/release/edit/recordings.tt:120
msgid "Now loading recording associations..."
@@ -2160,31 +2168,33 @@ msgstr "Opties"
msgid "Orderable direction:"
msgstr "Sorteerbare richting:"
-#: ../root/series/edit_form.tt:17
-msgid "Ordering Type:"
-msgstr "Volgorde:"
+#: ../root/series/edit_form.tt:17 ../root/edit/details/AddSeries.js:52
+#: ../root/edit/details/EditSeries.js:66
+#: ../root/layout/components/sidebar/SeriesSidebar.js:53
+#: ../root/utility/tableColumns.js:765
+msgid "Ordering Type"
+msgstr "Volgorde"
#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:77
msgid "PDF file"
msgstr "PDF-bestand"
-#: ../root/release/edit/information.tt:238
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:156
-msgid "Packaging:"
-msgstr "Verpakking:"
+#: ../root/release/edit/information.tt:240
+#: ../root/edit/details/AddRelease.js:105
+#: ../root/edit/details/EditRelease.js:137
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
+msgid "Packaging"
+msgstr "Verpakking"
#: ../root/admin/attributes/form.tt:50
+#: ../root/relationship/linkattributetype/form.tt:4
+#: ../root/relationship/linktype/form.tt:4
#: ../root/edit/details/AddRelationshipAttribute.js:55
#: ../root/edit/details/EditRelationshipAttribute.js:85
+#: ../root/edit/details/EditRelationshipType.js:317
msgid "Parent"
msgstr "Ouderelement"
-#: ../root/relationship/linkattributetype/form.tt:4
-#: ../root/relationship/linktype/form.tt:4
-#: ../root/edit/details/EditRelationshipType.js:317
-msgid "Parent:"
-msgstr "Ouderelement:"
-
#: ../root/release/edit/tracklist.tt:238
msgid "Parse Tracks"
msgstr "Nummers invullen"
@@ -2210,10 +2220,10 @@ msgstr "Details van de plaats"
msgid "Please choose a condition"
msgstr "Kies een voorwaarde"
-#: ../root/release/edit/information.tt:312
+#: ../root/release/edit/information.tt:326
msgid ""
-"Please enter the barcode of the release you are entering, see Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
"Voer de streepjescode in van de uitgave die je aan het toevoegen bent. Zie "
"Streepjescodes voor meer informatie."
@@ -2238,15 +2248,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr "Selecteer het medium waar je deze TOC aan wil toevoegen."
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr "Positie"
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr "Positie:"
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr "Mogelijke media"
@@ -2295,7 +2302,7 @@ msgstr[1] "Waardeer: {rating} sterren"
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr "Opname"
@@ -2336,27 +2343,32 @@ msgstr "Relatieredacteur"
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr "Relatietype"
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2379,7 +2391,7 @@ msgstr "Land van uitgave"
msgid "Release Duplicates"
msgstr "Duplicaten van de uitgave"
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2399,10 +2411,6 @@ msgstr "Uitgavegroep"
msgid "Release Group Details"
msgstr "Details van de uitgavegroep"
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr "Uitgavegroep:"
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2420,7 +2428,7 @@ msgstr "Taal van de uitgave"
msgid "Release Quality"
msgstr "Kwaliteit van de gegevens"
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr "Uitgavegebeurtenis"
@@ -2444,16 +2452,8 @@ msgstr "Titel of MBID van de uitgave"
msgid "Release “{name}” by {artist}"
msgstr "Uitgave ‘{name}’ van {artist}"
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr "Uitgave:"
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2469,7 +2469,7 @@ msgstr "Uitgave:"
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2479,11 +2479,11 @@ msgstr "Verwijderen"
msgid "Remove Example"
msgstr "Voorbeeld verwijderen"
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr "Platenmaatschappij verwijderen"
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr "Uitgavegebeurtenis verwijderen"
@@ -2494,7 +2494,7 @@ msgstr "Eigenschap verwijderen"
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr "Niet samenvoegen"
@@ -2555,7 +2555,7 @@ msgstr "Eerder gekoppelde opnames hergebruiken"
msgid "Reverse link phrase:"
msgstr "Omgekeerde koppelzin:"
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr "Zie de {packaging|lijst van verpakkingstypes} voor hulp."
@@ -2575,29 +2575,33 @@ msgstr "Draait {branch} ({sha})"
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "Opslaan"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
-msgstr "Schrift:"
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr "Schrift"
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2616,10 +2620,6 @@ msgstr "Naar uitgaven zoeken"
msgid "Search for Edits"
msgstr "Naar bewerkingen zoeken"
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr "Zoeken:"
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr "Zoeken …"
@@ -2693,12 +2693,15 @@ msgid "Set cover art"
msgstr "Afbeelding instellen"
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
-msgstr "Vul de duur van de nummers in"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
+msgstr "Duur van de nummers instellen"
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
-msgstr "Speellijst:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
+msgstr "Speellijst"
#: ../root/edit/search_macros.tt:43
msgid ""
@@ -2739,10 +2742,17 @@ msgstr ""
"Er zijn fouten gevonden in de gegevens die je hebt ingevoerd. Klik op de "
"uitgelichte tabbladen en verbeter de fouten."
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
-msgstr "Sorteernaam:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
+msgstr "Sorteernaam"
#: ../root/artist/split.tt:1
msgid "Split Artist"
@@ -2752,25 +2762,33 @@ msgstr "Artiest splitsen"
msgid "Split Into Separate Artists"
msgstr "In aparte artiesten splitsen"
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr "Status"
#: ../root/release/edit/information.tt:111
-msgid "Status:"
-msgstr "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
+msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
msgid "Stop using beta site"
msgstr "Bètasite niet meer gebruiken"
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr "Bewerkingen worden ingevoerd …"
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr "Voorgestelde opnames:"
@@ -2783,9 +2801,9 @@ msgstr "Nummers en artiesten omdraaien"
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr "Tagger"
@@ -2797,11 +2815,11 @@ msgstr ""
"Het Cover Art Archive ondervindt op het moment problemen. Waarschijnlijk "
"lukt het nu niet om afbeeldingen voor deze uitgave toe te voegen."
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr "De aantekening is een soort miniatuurwiki."
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
"Het catalogusnummer dat je hebt ingevoerd, ziet er uit als een ASIN van "
@@ -2819,11 +2837,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr "De gegevens die je hebt ingevuld, geven de volgende foutmeldingen:"
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr "De datum die je hebt ingevoerd, is niet geldig."
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2840,7 +2858,15 @@ msgstr ""
"criteria voldoen. Zie de {doc_link|documentatie} voor meer informatie over "
"de filters."
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2852,6 +2878,12 @@ msgstr ""
"technische beperkingen die later misschien worden opgelost, of omdat de "
"informatie zelf geen vaste formattering heeft."
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2874,7 +2906,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr "De nummerlijst van dit medium is onbekend."
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2921,7 +2953,7 @@ msgstr "Deze coördinaten konden niet worden ingevoerd."
msgid "This CDTOC is already attached to this medium."
msgstr "Deze TOC is al aan dit medium gekoppeld."
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2929,9 +2961,9 @@ msgid ""
"can quote a source to support a point you're making, you should never enter "
"promotional texts or other artist or label-owned texts into the annotation."
msgstr ""
-"Deze aantekening wordt onder een open licentie (CC BY-NC-SA 3.0) gepubliceerd, en mag daarom geen tekst "
-"bevatten waarvoor je niet het recht hebt om onder deze licentie te "
+"Deze aantekening wordt onder een open licentie (CC BY-NC-SA 3.0) gepubliceerd, en mag daarom geen "
+"tekst bevatten waarvoor je niet het recht hebt om onder deze licentie te "
"publiceren. Hoewel je een bron mag citeren om je punt te ondersteunen, moet "
"je nooit promotieteksten of andere teksten die eigendom van een artiest of "
"platenmaatschappij zijn in de aantekening verwerken."
@@ -2982,14 +3014,14 @@ msgstr "Dit object is verwijderd en kan niet correct worden weergegeven."
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
-msgstr "Dit object zal door deze bewerking worden aangemaakt."
+msgid "This entity will be added by this edit."
+msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr "Dit evenement is afgelast."
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -3061,7 +3093,7 @@ msgstr "Dit is de huidige afbeelding van de uitgavegroep"
msgid "This label has ended."
msgstr "Deze platenmaatschappij is opgeheven."
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr "Deze combinatie van platenmaatschappij en catalogusnummer bestaat al."
@@ -3110,8 +3142,8 @@ msgstr ""
"splitsen als dat nodig is."
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr "Deze opname is een video"
@@ -3128,7 +3160,7 @@ msgstr "Deze relatie is verouderd"
msgid "This relationship type does not have any examples."
msgstr "Dit relatietype heeft geen voorbeelden."
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr "Deze uitgave heeft geen streepjescode"
@@ -3136,7 +3168,7 @@ msgstr "Deze uitgave heeft geen streepjescode"
msgid "This release has no mediums that can have disc IDs."
msgstr "Deze uitgave heeft geen media die een Disc-ID kunnen hebben."
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -3169,14 +3201,20 @@ msgstr "Dit nummer is een datanummer."
msgid "This track is hidden in the pregap."
msgstr "Dit nummer zit verborgen in de pregapruimte."
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
-msgstr "Tijd:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
+msgstr "Duur"
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -3191,22 +3229,15 @@ msgstr "Tijd:"
msgid "Title"
msgstr "Titel"
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
-msgstr "Titel:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
+msgstr "{edit_page|Bewerk de uitgavegroep} om het type te veranderen."
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-"Om een nieuwe nummerlijst te creëren, kan je een bestaand medium gebruiken "
-"of een medium van een cd-beginnetje importeren. Selecteer hiervoor het "
-"bijbehorende tabblad."
-
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr "{edit_page|Bewerk de uitgavegroep} om het type te veranderen."
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
@@ -3237,6 +3268,7 @@ msgid "Tracklist"
msgstr "Nummerlijst"
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -3244,7 +3276,7 @@ msgstr "Nummerlijst"
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "Nummers"
@@ -3261,10 +3293,6 @@ msgstr ""
"de beschikbare informatie toevoegen. Als je helemaal geen informatie over de "
"media van deze uitgave hebt, kan je alle media verwijderen."
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr "Nummers:"
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3302,25 +3330,25 @@ msgstr "Twitter"
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr "Type"
@@ -3331,7 +3359,7 @@ msgstr "Type"
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3345,17 +3373,30 @@ msgstr "Type:"
msgid "Types:"
msgstr "Types:"
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
-msgstr "URL:"
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr "URL"
#: ../root/release/edit/tracklist.tt:21
msgid "Unable to parse the tracklist you entered."
msgstr "Het is onmogelijk om de ingevoerde nummerlijst te ontleden."
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr "Niet vertrouwd"
@@ -3432,7 +3473,7 @@ msgid "Voter"
msgstr "Stemmer"
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr "Stemmen"
@@ -3444,13 +3485,14 @@ msgstr "Stemmen gesloten"
msgid "Voting period (days)"
msgstr "Stemmingsperiode (dagen)"
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr "Waarschuwing"
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
@@ -3460,10 +3502,6 @@ msgstr ""
"uitgaven waarvan ze de datum niet kennen. Gebruik deze datum alleen "
"als je zeker weet dat hij klopt!"
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr "Waarschuwing:"
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr "We konden geen uitgave met die MBID vinden."
@@ -3525,7 +3563,7 @@ msgstr "Compositie-eigenschappen"
msgid "Work Details"
msgstr "Details van de compositie"
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3567,16 +3605,11 @@ msgstr "Je bekijkt uitgaven van {artist}."
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-"Je kan de selectievakjes hieronder gebruiken om bepaalde delen uit te "
-"schakelen. Je kan bijvoorbeeld “{lines_have_artists}” uitschakelen als je "
-"geen artiesten voor de nummers hebt, of “{use_track_lengths}” uitschakelen "
-"als je wel de duur van de nummers hebt, maar die bij het invullen wil "
-"negeren."
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr "Je kan hetzelfde land niet meer dan eens gebruiken."
@@ -3594,7 +3627,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr "Je hebt niets veranderd!"
@@ -3621,8 +3654,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3631,16 +3664,10 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
-"Je moet een artiest voor de uitgave selecteren (de achtergrondkleur van het "
-"artiest veld moet groen zijn). Als je een artiest hebt ingevoerd maar de "
-"achtergrond blijft ongekleurd, klik het vergrootglas om de naam met een "
-"MusicBrainz artiest te matchen. Als de artiest nog niet bestaat, kan je het "
-"maken door \"{add_a_new_artist}\" te selecteren aan de onderkant van het "
-"zoekresultaat uitklapmenu."
#: ../root/release/edit/information.tt:56
msgid "You must select an existing release group."
@@ -3743,8 +3770,10 @@ msgstr "en stemde"
msgid "any"
msgstr "enige"
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr "staat op:"
#: ../root/edit/search_macros.tt:20
@@ -4273,14 +4302,14 @@ msgstr ""
msgid "Invalid regular expression."
msgstr "Ongeldige reguliere expressie."
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
"Je kan de eigenschap ‘{name}’ niet verwijderen omdat ze nog steeds wordt "
"gebruikt."
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4372,27 +4401,25 @@ msgstr "De opgegeven TOC van de cd bestaat niet."
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
-"“{id}” is geen geldige rij-ID; mogelijk is het object samengevoegd of "
-"verwijderd."
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr "Laag"
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr "Normaal"
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr "Hoog"
@@ -4524,7 +4551,7 @@ msgstr ""
"Onze Redis-server lijkt niet te werken; sommige functies werken misschien "
"niet zoals verwacht of bedoeld."
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
"Series die verschillende objecttypes hebben, kunnen niet worden samengevoegd."
@@ -4532,8 +4559,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr "E-mail sturen"
@@ -4627,7 +4654,7 @@ msgstr ""
"bijbehorende object in het Internet Archive niet van ons is. Neem via "
"{contact_url} contact met ons op, zodat we het kunnen oplossen."
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4729,7 +4756,7 @@ msgstr "Gebied verwijderen"
msgid "Remove area alias"
msgstr "Alias van gebied verwijderen"
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr "Gebied bewerken"
@@ -4762,7 +4789,7 @@ msgstr "Artiest verwijderen"
msgid "Remove artist alias"
msgstr "Alias van de artiest verwijderen"
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr "Artiest bewerken"
@@ -4810,8 +4837,8 @@ msgid "Add event annotation"
msgstr "Aantekening aan het evenement toevoegen"
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr "Evenement toevoegen"
@@ -4823,7 +4850,7 @@ msgstr "Evenement verwijderen"
msgid "Remove event alias"
msgstr "Alias van evenement verwijderen"
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr "Evenement bewerken"
@@ -4857,7 +4884,7 @@ msgstr "Genre verwijderen"
msgid "Remove genre alias"
msgstr "Alias van dit genre verwijderen"
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr "Genre bewerken"
@@ -4879,8 +4906,8 @@ msgstr "Relatie toevoegen"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr "Uitgave toevoegen"
@@ -4909,14 +4936,14 @@ msgstr "Gegevenskwaliteit van de artiest veranderen (historisch)"
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr "Uitgave bewerken"
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr "Gegevenskwaliteitsscore van de uitgave veranderen"
@@ -4937,7 +4964,7 @@ msgstr "Uitgavegebeurtenissen bewerken (historisch)"
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr "Opname bewerken"
@@ -4989,11 +5016,6 @@ msgstr "Uitgaven verwijderen (historisch)"
msgid "Convert release to multiple artists (historic)"
msgstr "Zet uitgave om naar meerdere artiesten (historisch)"
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr "Duur van de nummers instellen"
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr "Nog een alias voor dit instrument toevoegen"
@@ -5045,7 +5067,7 @@ msgstr "Platenmaatschappij toevoegen"
msgid "Remove label"
msgstr "Platenmaatschappij verwijderen"
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr "Platenmaatschappij bewerken"
@@ -5094,7 +5116,7 @@ msgstr "Plaats verwijderen"
msgid "Remove place alias"
msgstr "Alias van deze plaats verwijderen"
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr "Plaats bewerken"
@@ -5145,8 +5167,12 @@ msgstr "Opnames samenvoegen"
msgid "Remove ISRC"
msgstr "ISRC verwijderen"
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr "Relatie"
@@ -5229,13 +5255,13 @@ msgstr "Streepjescodes bewerken"
msgid "Edit cover art"
msgstr "Afbeelding bewerken"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr "Platenmaatschappij van de uitgave bewerken"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(onbekend)"
@@ -5263,6 +5289,8 @@ msgstr "Volgorde van de media veranderen"
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr "Uitgavegroep"
@@ -5276,7 +5304,7 @@ msgid "Add release group annotation"
msgstr "Aantekening aan de uitgavegroep toevoegen"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr "Uitgavegroep toevoegen"
@@ -5288,7 +5316,7 @@ msgstr "Uitgavegroep verwijderen"
msgid "Remove release group alias"
msgstr "Alias van de uitgavegroep verwijderen"
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr "Uitgavegroep bewerken"
@@ -5383,7 +5411,7 @@ msgstr "Serie verwijderen"
msgid "Remove series alias"
msgstr "Alias van de serie verwijderen"
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr "Serie bewerken"
@@ -5396,24 +5424,7 @@ msgstr "Alias van deze serie bewerken"
msgid "Merge series"
msgstr "Serie samenvoegen"
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr "URL"
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr "Geopend"
@@ -5431,6 +5442,7 @@ msgid "Failed dependency"
msgstr "Mislukt door afhankelijkheid"
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5444,11 +5456,11 @@ msgstr "Mislukt door voorwaarde"
msgid "No votes"
msgstr "Geen stemmen"
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
-msgstr "Geannuleerd"
+msgstr ""
#: ../lib/MusicBrainz/Server/Edit/WikiDoc.pm:7
msgid "Wiki documentation"
@@ -5471,7 +5483,7 @@ msgid "Add ISWCs"
msgstr "ISWC’s toevoegen"
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr "Compositie toevoegen"
@@ -5928,11 +5940,11 @@ msgstr "De tekens die je hebt ingevoerd, zijn niet geldig of niet toegestaan."
msgid "This is not a valid time."
msgstr "Dit is geen geldig tijdstip."
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
-msgstr "Voer een geldige URL in, bijv. ‘http://google.nl/’"
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
+msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr "Het protocol van de URL moet http, https of ftp zijn."
@@ -6028,22 +6040,22 @@ msgid "A fluency level is required."
msgstr "Een taalvaardigheidsniveau is vereist."
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr "Basis"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr "Gemiddeld"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr "Gevorderd"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr "Moedertaal"
@@ -6056,17 +6068,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr "De geboortedatum moet na 1900 zijn"
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr "Aantekening"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -6081,17 +6082,6 @@ msgctxt "noun"
msgid "Tag"
msgstr "Etiket"
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr "Documentatie"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -6357,19 +6347,19 @@ msgstr ""
"Een pseudo-uitgave is een kopie van een uitgave voor vertalings- of "
"transcriptiedoeleinden."
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr "{almost_last_list_item} en {last_list_item}"
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr "{list_item}, {rest}"
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -6377,7 +6367,7 @@ msgstr "{list_item}, {rest}"
msgid "{last_list_item}"
msgstr "{last_list_item}"
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6517,9 +6507,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr "E-mail"
@@ -6931,12 +6922,12 @@ msgid "Spammer"
msgstr "Spammer"
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr "Bewerken en stemmen uitgeschakeld"
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr "Bewerkingsnotities uitgeschakeld"
@@ -6970,15 +6961,16 @@ msgstr "Verificatie overslaan"
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr "Website"
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
-msgstr "Biografie:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
+msgstr "Bio"
#: ../root/admin/EditUser.js:182
msgid "Edit user"
@@ -6993,7 +6985,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr "Voer een {link|reguliere POSIX-expressie} in."
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr "IP opzoeken"
@@ -7033,20 +7025,6 @@ msgstr "Disc-ID’s toegestaan"
msgid "Free text"
msgstr "Zonder opmaak"
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr "Eigenschappen"
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -7076,26 +7054,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr "Eigenschap verwijderen"
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr "Taal"
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr "Schrift"
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr "Lid sinds"
@@ -7103,15 +7063,10 @@ msgstr "Lid sinds"
msgid "Verified on"
msgstr "Geverifieerd op"
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr "Laatste aanmelding"
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr "Bio"
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -7166,6 +7121,7 @@ msgstr "Nieuwe gebeurtenis toevoegen"
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr "Pagina toevoegen"
@@ -7178,10 +7134,6 @@ msgstr "Pagina:"
msgid "Version:"
msgstr "Versie:"
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr "Aanmaken"
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -7277,6 +7229,7 @@ msgstr "Er was een probleem met de toegang tot de API van de wiki."
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr "Vergelijking tussen aantekeningen"
@@ -7331,9 +7284,12 @@ msgstr ""
"auteursrechtelijk beschermde tekst toe!"
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
-msgstr "Voorbeeld:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
+msgstr ""
#: ../root/annotation/EditAnnotation.js:80
#: ../root/static/scripts/common/components/Annotation.js:71
@@ -7341,10 +7297,9 @@ msgid "Changelog:"
msgstr "Veranderingslogboek:"
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
-msgstr "Voorbeeld"
+msgstr ""
#: ../root/annotation/EditAnnotation.js:98
msgid "Annotation Formatting"
@@ -7418,10 +7373,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr "Artiesten"
@@ -7460,7 +7415,7 @@ msgstr "{area_type} in {parent_areas}"
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -7513,7 +7468,10 @@ msgstr "Dit gebied is niet gerelateerd aan opnames."
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -7527,7 +7485,10 @@ msgstr "Relaties"
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7700,9 +7661,8 @@ msgstr ""
"artiest waarin je de andere wil samenvoegen:"
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
-"Je moet dit vakje alleen aanvinken om fouten te herstellen, zoals tikfouten."
#: ../root/artist/ArtistMerge.js:56
msgid ""
@@ -8003,10 +7963,12 @@ msgid "Top CD Stubs"
msgstr "Populaire cd-beginnetjes"
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr "Aantal keer opgevraagd"
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr "Aantal keer bewerkt"
@@ -8041,8 +8003,8 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr "{discid}
is helaas geen geldige disc-ID."
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
-msgstr "Zoek naar de artiest waar je een nieuwe uitgave voor wil toevoegen:"
+msgid "Please search for the artist you wish to add a new release for:"
+msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
msgid "Import CD stub"
@@ -8057,8 +8019,8 @@ msgstr ""
"{release} van {artist} wil toevoegen?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
-msgstr "Vergelijking van de nummerlengtes"
+msgid "Track length comparison"
+msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
#: ../root/cdtoc/SetTracklistDurations.js:67
@@ -8078,15 +8040,6 @@ msgstr "Nummerlengtes van het medium"
msgid "CD TOC details"
msgstr "TOC-details"
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr "Disc-ID:"
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "FreeDB:"
@@ -8096,8 +8049,9 @@ msgid "Track details:"
msgstr "Details van het nummer:"
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Nummer"
@@ -8106,21 +8060,13 @@ msgid "Start"
msgstr "Begin"
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Einde"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr "Duur"
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -8166,12 +8112,9 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
-"Als je de artiest die je zoekt niet kan vinden, kan je nog steeds een nieuwe "
-"uitgave toevoegen. Dan kan je de artiest en de uitgave tegelijkertijd "
-"aanmaken."
#: ../root/cdtoc/SetTracklistDurations.js:46
#: ../root/cdtoc/SetTracklistDurations.js:47
@@ -8211,8 +8154,8 @@ msgstr "Bekijk al je collecties"
msgid "See all of {editor}'s public collections"
msgstr "Bekijk alle openbare collecties van {editor}"
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
@@ -8221,7 +8164,7 @@ msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr "Deelnemers"
@@ -8328,8 +8271,8 @@ msgstr "Bevestigen"
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "Een nieuwe collectie aanmaken"
+msgid "Add a new collection"
+msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -8343,20 +8286,10 @@ msgstr "Weet je zeker dat je de collectie {collection} wil verwijderen?"
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "Alias"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr "Sorteernaam"
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr "Begindatum"
@@ -8562,7 +8495,7 @@ msgstr "Recensies"
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Waarderingen"
@@ -8608,7 +8541,7 @@ msgstr "De ingevoerde relatietype-ID is niet geldig."
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8719,6 +8652,7 @@ msgstr "Abonnementen"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr "Abonnees"
@@ -8769,25 +8703,9 @@ msgid "About to close"
msgstr "Bijna gesloten"
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
-msgid "Sort Name"
-msgstr "Sorteernaam"
-
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Geslacht"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "Begingebied"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "Eindgebied"
+#: ../root/search/components/ArtistResults.js:52
+msgid "Sort Name"
+msgstr "Sorteernaam"
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
@@ -8800,13 +8718,6 @@ msgstr "Rol"
msgid "Code"
msgstr "Code"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "Adres"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr "Ongespecificeerd type"
@@ -8815,22 +8726,16 @@ msgstr "Ongespecificeerd type"
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr "[ontbrekende media]"
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Status"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr "Auteurs"
@@ -8965,9 +8870,8 @@ msgid "There was a problem cancelling {edit}."
msgstr "Er was een probleem bij het annuleren van {edit}."
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
-"Alleen de redacteur die de bewerking heeft gemaakt, kan haar annuleren."
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
msgid "Error Voting on Edits"
@@ -9195,7 +9099,7 @@ msgid "None"
msgstr "Geen"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr "Stemming"
@@ -9220,7 +9124,8 @@ msgid_plural "Found {n} edits"
msgstr[0] "{n} bewerking gevonden"
msgstr[1] "{n} bewerkingen gevonden"
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr "Stemmen uitbrengen en notities indienen"
@@ -9245,7 +9150,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -9254,15 +9159,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -9289,51 +9194,41 @@ msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
"Je kan momenteel geen notities aan deze bewerking toevoegen. ({url|Details})"
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "Status:"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr "Geopend:"
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "Gesloten:"
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr "Voor sneller sluiten nodig"
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] "één stem"
msgstr[1] "{n} unanieme stemmen"
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr "Als er niet is gestemd"
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr "Onbewerkte gegevens voor deze bewerking"
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr "Voor meer informatie:"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr "Veelgestelde vragen over stemmen"
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr "Veelgestelde vragen over bewerkingen"
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Notitie toevoegen"
@@ -9353,12 +9248,6 @@ msgstr "Deze gebruiker is geautomatiseerd."
msgid "bot"
msgstr "robot"
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "Uitgaven:"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -9477,39 +9366,15 @@ msgstr "Deze aantekening is leeg."
msgid "Summary"
msgstr "Samenvatting"
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr "Begindatum"
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "Einddatum"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
-msgstr "Beëindigd"
+msgstr ""
#: ../root/edit/details/AddCoverArt.js:39
#: ../root/edit/details/RemoveCoverArt.js:39
@@ -9519,18 +9384,21 @@ msgstr "(geen)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Bestandsnaam:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr "Bestandsnaam"
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "Opmerking:"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
-msgstr "Speellijst"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
msgid "Client:"
@@ -9553,20 +9421,20 @@ msgstr "ISRC {isrc} naar {recording}"
msgid "ISWC {iswc} to {work}"
msgstr "ISWC {iswc} naar {work}"
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
-msgstr "Platenmaatschappijcode"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
-msgstr "Vermeldingen van artiesten:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr "Vermeldingen van artiesten"
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
-msgstr "Relatie:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddRelationship.js:33
msgid "Link order:"
@@ -9626,30 +9494,24 @@ msgstr "(geen)"
msgid "(new release group)"
msgstr "(nieuwe uitgavegroep)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "Status:"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr "Verpakking"
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr "Uitgavegebeurtenissen"
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "Catalogusnummer:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "Catalogusnummer"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9661,17 +9523,17 @@ msgstr "alle aliassen bekijken"
msgid "Primary for locale"
msgstr "Primair voor localisatie"
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
-msgstr "Volgorde"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr "Taal van de tekst"
@@ -9679,7 +9541,7 @@ msgstr "Taal van de tekst"
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "Gegevenskwaliteit"
@@ -9720,14 +9582,6 @@ msgstr "Vermelding"
msgid "See all uses of the artist credit being changed."
msgstr "Bekijk waar de te veranderen artiestvermelding wordt gebruikt."
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr "IPI-codes"
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr "ISNI-codes"
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9754,11 +9608,6 @@ msgstr "Oude opname"
msgid "New recording"
msgstr "Nieuwe opname"
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr "Vermeldingen van artiesten"
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "Oude artiest"
@@ -9787,25 +9636,10 @@ msgstr ""
msgid "Deprecated:"
msgstr "Verouderd:"
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr "Notitie"
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr "Deze bewerking veranderde ook de artiesten van de nummers."
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "Catalogusnummer"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9829,6 +9663,7 @@ msgid "Search for the target URL."
msgstr "Zoek naar de doel URL."
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr "Type compositie"
@@ -9841,8 +9676,9 @@ msgstr "Type compositie"
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "Samenvoegen:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -9964,8 +9800,8 @@ msgid "New positions:"
msgstr "Nieuwe posities:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
-msgstr "Media:"
+msgid "Mediums"
+msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
@@ -9985,11 +9821,11 @@ msgstr "Medium {new} (nieuw medium)"
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
-"Medium {new} (verplaatst van positie {old})"
+"Medium {new} (verplaatst van positie {old})"
#: ../root/edit/details/ReorderRelationships.js:21
msgid "Old Order"
@@ -10033,20 +9869,6 @@ msgstr ""
msgid "CD TOC:"
msgstr "TOC:"
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "Relaties:"
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr "Uitgavegebeurtenissen:"
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Catalogusnummer"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -10057,11 +9879,6 @@ msgstr "Nummerpositie"
msgid "Artist name:"
msgstr "Artiestennaam:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr "Uitgavegroep:"
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "Oude relaties:"
@@ -10071,9 +9888,9 @@ msgid "New relationships:"
msgstr "Nieuwe relaties:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
-msgstr "Oud:"
+msgctxt "release type and status"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
msgid "Type: {type}, status: {status}"
@@ -10088,16 +9905,24 @@ msgid "New Status:"
msgstr "Nieuwe status:"
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "Toegevoegd"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
-msgstr "Verwijderd"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
-msgstr "Bewerkt"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
@@ -10139,41 +9964,39 @@ msgstr ""
msgid "Change track artists:"
msgstr "De artiesten van de nummers veranderen:"
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "Alias:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr "Nummer:"
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Kandidaat:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Kandidaat"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
-msgstr "Indiener:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr "Indiener"
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
-msgstr "Eerste secondant"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
-msgstr "Tweede secondant"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:59
msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "Voorstemmen:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "Voorstemmen"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "Tegenstemmen:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "Tegenstemmen"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -10191,47 +10014,19 @@ msgstr ""
"is afgesloten."
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "Status:"
+msgid "Status"
+msgstr "Status"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "Details bekijken"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Kandidaat"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "Status"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr "Begindatum"
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr "Indiener"
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr "Secondant 1"
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr "Secondant 2"
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "Voorstemmen"
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "Tegenstemmen"
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr "Stem"
@@ -10988,7 +10783,7 @@ msgstr "Autoredacteurverkiezingen"
msgid "Privileged User Accounts"
msgstr "Geprivilegieerde gebruikers"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Statistieken"
@@ -11140,7 +10935,7 @@ msgstr "Alle documentatie"
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "Relatietypes"
@@ -11307,39 +11102,33 @@ msgstr "Informatie over het gebied"
msgid "Artist information"
msgstr "Informatie over de artiest"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "Opname toevoegen"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "In aparte artiesten splitsen"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "Toegevoegd:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr "Laatste bewerking:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
-msgstr "Aantal keer opgevraagd:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
-msgstr "Aantal keer bewerkt:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr "Importeer als uitgave van MusicBrainz"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "Disc-ID aan een bestaande uitgave toevoegen"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr "In MusicBrainz naar deze cd zoeken"
@@ -11455,11 +11244,11 @@ msgstr "Meld je aan om te bewerken"
msgid "Event information"
msgstr "Informatie over het evenement"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr "Begindatum:"
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr "Einddatum:"
@@ -11512,10 +11301,6 @@ msgctxt "place"
msgid "Closed"
msgstr "Gesloten"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "Coördinaten:"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -11528,7 +11313,7 @@ msgstr ""
msgid "Recording information"
msgstr "Informatie over de opname"
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr "Vroegste jaar van uitgave"
@@ -11563,27 +11348,27 @@ msgstr "Bekijk alle afbeeldingen"
msgid "No cover art available."
msgstr "Geen afbeelding beschikbaar."
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "Extra details"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr "Waardering van de uitgavegroep"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr "Recensies van de uitgavegroep"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr "Externe websites over de uitgavegroep"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr "Relaties bewerken"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr "Gegevenskwaliteit veranderen"
@@ -11591,21 +11376,13 @@ msgstr "Gegevenskwaliteit veranderen"
msgid "Series information"
msgstr "Informatie over de serie"
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "IPI-code:"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "ISNI-code:"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Licentie"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Waardering"
@@ -11762,7 +11539,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr "De pagina die je zoekt bestaat helaas niet."
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Foutmelding:"
@@ -11872,13 +11649,7 @@ msgstr "Weergavetaal:"
msgid "Request data:"
msgstr "Gegevensverzoek:"
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] "Foutmelding:"
-msgstr[1] "Foutmeldingen:"
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Over deze foutmelding zijn geen details beschikbaar)"
@@ -12035,14 +11806,10 @@ msgstr "Ongeldige MBID"
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
-"Er zijn geen {entity_doc|MusicBrainz-objecten} met de {mbid_doc|MBID} "
-"{mbid}. De MBID kan ongeldig zijn, horen bij een object dat is verwijderd of "
-"de MBID zijn van iets wat geen object is (bijvoorbeeld een {rel_type_table|"
-"relatietype})."
#: ../root/mbid/NotFound.js:39
msgid "{mbid} is not a valid {mbid_doc|MBID}."
@@ -12270,21 +12037,14 @@ msgstr "Relatie-eigenschap in gebruik"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
-"Het type relatie-eigenschap ‘{type}’ kan niet worden verwijderd, omdat het "
-"nog steeds in gebruik is."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:77
msgid "Relationship Attribute"
msgstr "Relatie-eigenschap"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "ID:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -12296,6 +12056,7 @@ msgid "Parent attribute"
msgstr "Bovenliggende eigenschap"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr "Mogelijke waarden"
@@ -12331,17 +12092,13 @@ msgstr "geen"
msgid "Add child"
msgstr "Kindelement toevoegen"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr "Mogelijke waarden:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "Geen relatie-eigenschappen gevonden."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
-msgstr "Een nieuwe relatie-eigenschap toevoegen"
+msgid "Add a new relationship attribute"
+msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
@@ -12362,10 +12119,8 @@ msgstr "Relatietype in gebruik"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
-"Het type relatie ‘{type}’ kan niet worden verwijderd, omdat het nog steeds "
-"in gebruik is."
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
msgid "This relationship type doesn't allow any attributes."
@@ -12439,8 +12194,8 @@ msgid "{type0}-{type1} relationship types"
msgstr "{type0}-{type1}-relatietypes"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
-msgstr "Een nieuwe {type0}-{type1}-relatie toevoegen"
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
msgid "Expand all descriptions"
@@ -12458,7 +12213,7 @@ msgstr "Geen {type0}-{type1}-relatietypes gevonden."
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -12575,8 +12330,8 @@ msgstr ""
"wil verwijderen?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "Uitgavegroep van {artist}"
@@ -12822,13 +12577,9 @@ msgstr "Slechte Amazon-URL’s"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
-"In dit rapport staan disc-ID’s met een totale duur die veel langer is dan "
-"volgens de cd-standaard mogelijk is (meer dan 88 minuten voor een cd of 30 "
-"minuten voor een mini-cd). Meestal betekent dit dat de disc-ID is aangemaakt "
-"voor het verkeerde soort medium (SACD) of met een slecht werkend programma."
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
msgid "Disc IDs with dubious duration"
@@ -12837,18 +12588,12 @@ msgstr "Disc-id’s met een dubieuze duur"
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
-"In dit rapport staan disc-ID’s die aan een uitgave zijn toegevoegd, maar "
-"blijkbaar niet zijn toegepast, omdat ten minste één duur van een nummer op "
-"de uitgave niet bekend is. Het rapport wordt beperkt tot media waar maar één "
-"disc-ID aan is toegevoegd, dus heel waarschijnlijk kan de disc-ID zonder "
-"problemen worden toegepast. Let wel op dat er geen bestaande duren van de "
-"disc-ID afwijken, of dat afwijkingen duidelijke fouten zijn."
#: ../root/report/CDTocNotApplied.js:34 ../root/report/ReportsIndex.js:632
msgid "Disc IDs attached but not applied"
@@ -12891,7 +12636,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr "Uitgaven met catalogusnummers die eruitzien als ISRC’s"
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12907,7 +12652,7 @@ msgstr ""
"pagina van de platenmaatschappij kijken), kan je hem verwijderen, of het "
"juiste catalogusnummer invoeren."
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -13250,16 +12995,10 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
-"In dit rapport staan uitgavegroepen met erg op elkaar lijkende namen en "
-"artiesten. Als de uitgaven in de uitgavegroepen bij elkaar horen (zie de "
-"{url|stijlgids}), kunnen de uitgavegroepen worden samengevoegd. Als ze niet "
-"gegroepeerd zouden moeten worden maar van elkaar onderscheiden kunnen worden "
-"aan de hand van het type uitgavegroep, hoeft er meestal niets veranderd te "
-"worden. In andere gevallen kan een verduidelijking handig zijn."
#: ../root/report/DuplicateReleaseGroups.js:52
#: ../root/report/ReportsIndex.js:227
@@ -13357,10 +13096,8 @@ msgstr "Toon alleen resultaten in mijn abonnementen."
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
-"In dit rapport staan instrumenten zonder relatie voor een afbeelding op "
-"StaticBrainz (dus zonder IROMBOOK-afbeelding)."
#: ../root/report/InstrumentsWithoutAnImage.js:30
#: ../root/report/ReportsIndex.js:163
@@ -13511,11 +13248,9 @@ msgstr "Uitgaven met media die naar de positie zijn genoemd"
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
-"In dit rapport staan alle uitgaven waarvan de media niet continu genummerd "
-"zijn (bijv. als er media met de posities 1 en 3 zijn, maar niet 2)."
#: ../root/report/MediumsWithSequenceIssues.js:30
msgid "Releases with medium number issues"
@@ -13741,16 +13476,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr "Opnames met eerste uitgave-relaties"
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-"In dit rapport staan opnames met relaties waarvan een of meer data in de "
-"toekomst liggen. Waarschijnlijk zijn dit tikfouten (bijv. 2109 in plaats van "
-"2019)."
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr "Opnames met relaties waarvan een of meer data in de toekomst liggen"
@@ -13987,13 +13719,8 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
-"In dit rapport staan uitgaven met relaties die alleen van toepassing zijn op "
-"digitale uitgaven (downloads/streaming), maar die media bevatten die geen "
-"digitale media zijn. Over het algemeen moeten deze relaties worden "
-"verplaatst naar de juiste digitale uitgave. Als die nog niet bestaat, kan je "
-"haar aanmaken."
#: ../root/report/ReleasesWithDownloadRelationships.js:34
#: ../root/report/ReportsIndex.js:389
@@ -14019,14 +13746,8 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
-"In dit rapport staan uitgaven met relaties om de uitgave per post te "
-"bestellen (wat per definitie alleen van toepassing is op fysieke uitgaven), "
-"maar die alleen digitale media hebben. Meestal moeten deze relaties naar een "
-"fysieke uitgave worden verplaatst. Als die nog niet bestaat, kan je haar "
-"aanmaken."
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
#: ../root/report/ReportsIndex.js:393
@@ -14266,20 +13987,6 @@ msgstr "URL’s"
msgid "Wikidata URLs linked to multiple entities"
msgstr "Wikidata-URL’s die aan meerdere objecten zijn gekoppeld"
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRC’s"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr "ISWC’s"
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -14384,15 +14091,10 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
-msgstr ""
-"In dit rapport staan uitgaven waarbij de titels van nummers de positie "
-"lijken te bevatten, zoals ‘1) Een titel’ in plaats van gewoon ‘Een titel’. "
-"Let wel dat dit soms terecht en correct is, ga er dus niet automatisch van "
-"uit dat dit een fout is. Als je zeker weet dat een fout is, kan je het "
-"verbeteren."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
+msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
msgid "Releases where track names start with their track number"
@@ -14400,13 +14102,10 @@ msgstr "Uitgaven waarbij de titels van de nummers beginnen met de positie"
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
-"In dit rapport staan alle uitgaven waarop de nummers niet continu genummerd "
-"zijn (bijv. als er geen ‘nummer 2’ is) of waarop meerdere nummers dezelfde "
-"positie hebben (bijv. als er twee ‘nummers 4’ zijn)."
#: ../root/report/TracksWithSequenceIssues.js:31
msgid "Releases with track number issues"
@@ -14590,6 +14289,10 @@ msgstr ""
msgid "Last edited"
msgstr "Laatst bewerkt op"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Catalogusnummer"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr "Naar tags zoeken"
@@ -14599,7 +14302,7 @@ msgid "Other lookups"
msgstr "Andere zoekmogelijkheden"
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -14610,7 +14313,7 @@ msgstr "Begin"
msgid "Alternatively, you may {uri|add a new area}."
msgstr "Je kan ook {uri|een nieuw gebied toevoegen}."
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "Je kan ook {uri|een nieuwe artiest toevoegen}."
@@ -14620,11 +14323,12 @@ msgid "Documentation Search"
msgstr "Documentatie zoeken"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Locatie"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -14658,7 +14362,7 @@ msgstr "Je kan ook {uri|een nieuwe opname toevoegen}."
msgid "Alternatively, you may {uri|add a new release group}."
msgstr "Je kan ook {uri|een nieuwe uitgavegroep toevoegen}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr "Je kan ook {uri|een nieuwe uitgave toevoegen}."
@@ -14756,7 +14460,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr "Je zoekopdracht was helaas te groot."
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr "Deze serie is momenteel leeg."
@@ -14783,7 +14487,7 @@ msgstr ""
"reeks zijn, zoals org.example.app://auth
voor geïnstalleerde "
"applicaties."
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
@@ -14791,16 +14495,17 @@ msgstr ""
"Dit is een server voor ontwikkeling. Je e-mailadres is hier niet privé of "
"veilig. Wees voorzichtig!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr "Je moet je e-mailadres verifiëren als je het verandert."
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
-msgstr "Locatie:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
@@ -14808,11 +14513,11 @@ msgstr ""
"Je kan zelf kiezen hoe specifiek je wil zijn, bijvoorbeeld door je land of "
"je woonplaats in te voeren."
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "Geboortedatum:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
@@ -14820,11 +14525,11 @@ msgstr ""
"We zullen je geboortedatum gebruiken om je leeftijd op je profielpagina te "
"tonen."
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "Bekende talen:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Taal toevoegen"
@@ -14881,16 +14586,16 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr "Stuur mij e-mails met bewerkingen in mijn abonnementen:"
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
-msgstr "Abonneer me automatisch op artiesten die ik toevoeg."
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
-msgstr "Abonneer me automatisch op platenmaatschappijen die ik toevoeg."
+msgid "Automatically subscribe me to labels I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
-msgstr "Abonneer me automatisch op series die ik toevoeg."
+msgid "Automatically subscribe me to series I add."
+msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
msgid "Your username will be publicly visible."
@@ -14950,12 +14655,14 @@ msgid "This alias is no longer current."
msgstr "Deze alias wordt niet meer gebruikt."
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
-msgstr "Oud"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "Nieuw"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -15003,12 +14710,8 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
-"Als je dit selecteert, worden er extra bewerkingen toegevoegd die elke "
-"specifieke vermelding hernoemt. Gebruik dit alleen als je zeker weet dat de "
-"bestaande vermeldingen niet juist zijn (bijvoorbeeld als er tikfouten in "
-"staan)."
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
msgid ""
@@ -15035,33 +14738,33 @@ msgid "Show more artist credits"
msgstr "Meer vermeldingen tonen"
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "Laat meer zien …"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "Collectiedetails"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "Toestaan dat andere gebruikers deze collectie zien"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "Een collectie aanmaken"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr "Collectie bijwerken"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr "Deelnemer toevoegen"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr "Deelnemer verwijderen"
@@ -15081,7 +14784,7 @@ msgid "Try with indexed search instead."
msgstr "Probeer het eens met een geïndexeerde zoekopdracht."
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr "Tik hier een naam om te zoeken, of plak een MBID"
@@ -15090,32 +14793,27 @@ msgstr "Tik hier een naam om te zoeken, of plak een MBID"
msgid "Clear recent items"
msgstr "Recente objecten leegmaken"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr "Niet gevonden? Probeer het eens met een directe zoekopdracht."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr "Langzaam? Schakel terug naar geïndexeerd zoeken."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr "staat op:"
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr "losse opname"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr "{release_group_type} van {artist}"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr "Artiesten"
@@ -15125,8 +14823,14 @@ msgid "Vote on all edits:"
msgstr "Op alle bewerkingen stemmen:"
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
-msgstr "Notitie verwijderen"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
@@ -15165,12 +14869,12 @@ msgid "Annotation last modified on {date}."
msgstr "Aantekening het laatst bewerkt op {date}"
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
-msgstr "Er zijn {edit_search|open bewerkingen} voor deze artiestvermelding."
+msgid "This artist credit has {edit_search|open edits}."
+msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
-msgstr "Er zijn open bewerkingen voor deze artiestvermelding."
+msgid "This artist credit has open edits."
+msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
msgid "{artist} ({roles})"
@@ -15270,15 +14974,15 @@ msgstr "Een serie zoeken"
msgid "Search for a work"
msgstr "Een compositie zoeken"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr "van {artist}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr "{first_list_item} … {last_list_item}"
@@ -15401,8 +15105,8 @@ msgid "Secondary type"
msgstr "Secundair type"
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
-msgstr "Vermelding van de artiest:"
+msgid "Artist credit"
+msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
msgid "Setlist contains"
@@ -15708,31 +15412,31 @@ msgctxt "plural"
msgid "Series"
msgstr "Series"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr "op {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr "in {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr "van {begin_date} tot {end_date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr "van {date} tot ????"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr "vanaf {date} tot nu"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr "tot {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr "beëindigd"
@@ -15753,8 +15457,9 @@ msgid "Began:"
msgstr "Begonnen:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "Beëindigd:"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -15823,8 +15528,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -15950,7 +15655,7 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr "Dit is een interne Instagram-pagina en moet niet worden toegevoegd."
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
@@ -15960,11 +15665,11 @@ msgstr ""
"MusicBrainz-uitgavegroepen, dus deze koppeling is nu niet toegestaan. Je kan "
"Musixmatch-pagina’s wel aan relevante artiesten en composities koppelen."
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr "Alleen RYM-videoclips kunnen aan opnames worden gekoppeld."
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
@@ -15974,25 +15679,25 @@ msgstr ""
"link} controleer of de link waarnaar wordt doorverwezen nog steeds klopt, en "
"voeg vervolgens die link toe."
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr "Dit is geen openbaar profiel, maar een documentatiepagina van Twitter."
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
"Voeg alleen links naar Twitter-profielen toe, en niet naar afzonderlijke "
"berichten."
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr "Deze website staat geen rechtstreekse links naar afbeeldingen toe."
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
@@ -16000,7 +15705,7 @@ msgstr ""
"Link de pagina “{allowed_url_pattern}” in plaats van deze link "
"“{current_url_pattern}”."
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
@@ -16010,7 +15715,7 @@ msgstr ""
"bepalen of het teken overbodig is en moet worden verwijderd, of dat de URL "
"verkeerd is gecodeerd."
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
@@ -16019,22 +15724,22 @@ msgstr ""
"“{unwanted_url_pattern}” toevoegen. Gebruik in plaats daarvan de WhoSampled-"
"pagina’s voor artiesten, nummers of uitgaven."
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
"Je kan WhoSampled-pagina’s met de vorm “{album_url_pattern}” alleen aan "
"uitgavegroepen koppelen."
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
"Je kan WhoSampled-pagina’s voor artiesten alleen aan artiesten toevoegen."
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr "Je kan WhoSampled-pagina’s over nummers alleen aan opnames koppelen."
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
@@ -16043,13 +15748,13 @@ msgstr ""
"Verwijder ‘{fragment}’ of verwijder de link als de hele pagina niet relevant "
"is voor dit object. Zie onze {url|richtlijnen}."
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
@@ -16059,13 +15764,13 @@ msgstr ""
"officieel goedgekeurd. Voeg in plaats van deze link een link naar het "
"officiële kanaal van dit object toe, als dat bestaat."
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
"Alleen links naar video’s en speellijsten mogen aan uitgaven worden "
"toegevoegd."
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
@@ -16075,7 +15780,7 @@ msgstr ""
"het toevoegen van Wikipedia-links aan een uitgave wordt geblokkeerd. Voeg de "
"Wikipedia-link, als hij relevant is, toe aan de uitgavegroep."
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
@@ -16085,11 +15790,11 @@ msgstr ""
"het toevoegen van Wikidata-links aan een uitgave wordt geblokkeerd. Voeg de "
"Wikidata-link, als hij relevant is, toe aan de uitgavegroep."
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr "Voor deze URL ontbreken bepaalde relatietypes."
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr "Deze combinatie van relaties is ongeldig."
@@ -16136,7 +15841,7 @@ msgstr "Nieuwe serie toevoegen"
msgid "Add a new work"
msgstr "Een nieuwe compositie toevoegen"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
@@ -16144,47 +15849,47 @@ msgstr ""
"Gebruik de volgende velden om samenwerkingen toe te voegen. Zie de "
"documentatie over {ac|artiestvermeldingen} voor meer informatie."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr "[ontbrekende titel]"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr "Je hebt nog geen titel ingevuld."
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
-msgstr "Dit nummer is nog niet aangemaakt."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
+msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr "Artiest in MusicBrainz:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr "Artiest zoals vermeld:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr "Koppelzin:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr "Artiest toevoegen"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr "Verander alle artiesten op deze uitgave die overeenkomen met ‘{name}’"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr "Verander alle artiesten op deze uitgave die nu leeg zijn"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr "Artiesten kopiëren"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr "Artiesten plakken"
@@ -16213,11 +15918,11 @@ msgstr ""
"als je Nederlandse artiesten bewerkt."
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -16255,11 +15960,11 @@ msgstr ""
"te onderscheiden."
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -16337,10 +16042,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr "Opgeschoond tot"
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr "Uitgavegebeurtenissen:"
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -16712,12 +16414,9 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
-"Waarschuwing: Deze relatie heeft openstaande bewerkingen. {show|Klik hier} "
-"om deze bewerkingen te bekijken en zorg ervoor dat ze niet met jouw "
-"bewerkingen conflicteren."
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
msgid "This will add a relationship to all checked recordings."
@@ -16939,20 +16638,15 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
-"Dit zal een nieuwe compositie toevoegen voor elke aangevinkte opname die nog "
-"geen compositie heeft. De namen van de composities zullen gelijk zijn aan de "
-"bijbehorende opname."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
-"Gebruik deze optie alleen nadat je hebt gezocht naar de compositie(s) die je "
-"wil toevoegen, en zeker weet dat ze op MusicBrainz nog niet bestaan."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:94
@@ -16960,8 +16654,8 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
-msgstr "Een partij nieuwe composities toevoegen"
+msgid "Batch-add new works"
+msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
msgid "Edit Work"
@@ -17014,35 +16708,35 @@ msgstr "Een partij relaties aan composities toevoegen"
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr "Nummerrelaties"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr "Gerelateerde composities"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
"We hebben geen informatie over de media en nummerlijst van deze uitgave."
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "Uitgaverelaties"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr "Relaties van de uitgavegroep"
@@ -17071,15 +16765,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr "Type compositie:"
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr "Taal toevoegen"
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr "Taal verwijderen"
@@ -17322,10 +17012,6 @@ msgstr ""
msgid "Duration"
msgstr "Duur"
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr "Bestandsnaam"
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "Naar tags zoeken"
@@ -17402,23 +17088,23 @@ msgstr "Informatie over de URL"
msgid "URL Details"
msgstr "Details van de URL"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr "Onderwerp:"
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr "Bericht"
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr "Mijn e-mailadres tonen"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr "Stuur een kopie naar mijn e-mailadres"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "Verzenden"
@@ -17535,11 +17221,9 @@ msgstr "Mededelingsredacteurs"
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
-"Mededelingsredacteurs zijn gebruikers die een mededeling kunnen instellen "
-"die op alle pagina’s wordt vertoond, bijvoorbeeld om gebruikers te "
-"waarschuwen voor aanstaand onderhoud."
#: ../root/user/PrivilegedUsers.js:114
msgid "The following {count} users are banner message editors:"
@@ -17784,10 +17468,6 @@ msgstr ""
msgid "General Information"
msgstr "Algemene informatie"
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "E-mail:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(verborgen)"
@@ -17829,179 +17509,173 @@ msgstr "nomineer voor autoredacteurschap"
msgid "Age:"
msgstr "Leeftijd:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "Lid sinds:"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "Laatste aanmelding:"
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "Omschrijving"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr "Heeft zich nog nooit aangemeld"
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr "Gemachtigde applicaties"
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr "bekijk de lijst"
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr "Applicaties voor ontwikkelaars"
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr "Website:"
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr "Abonnees:"
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr "{count} ({url|bekijk lijst})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr "abonnement opzeggen"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr "abonneren"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "Talen:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr "{count} ({view_url|bekijk lijst})"
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Bewerkingen"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Totaal"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Geaccepteerd"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr "Automatische bewerkingen"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr "Totaal doorgevoerd"
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr "Weggestemd"
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr "Mislukt"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr "Afgelopen 24 uur"
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
"In deze tabel zie je een samenvatting van alle stemmen die door deze "
"redacteur zijn uitgebracht."
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr "Stemmen ({view_url|bekijken})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr "Afgelopen 28 dagen"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr "Algemeen"
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
"In deze tabel zie je een samenvatting van de objecten die door deze "
"redacteur zijn toegevoegd."
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr "Het kan zijn dat doorgevoerde bewerkingen pas na 24 uur verschijnen"
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr "Toegevoegde objecten"
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
-msgstr "Deze gebruiker heeft nog geen objecten gecreëerd."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
+msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
"In deze tabel zie je een samenvatting van de secondaire gegevens die door "
"deze redacteur zijn toegevoegd."
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr "Etiketten en waarderingen"
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr "Etiketten omhoog gestemd"
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr "Etiketten omlaag gestemd"
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr "Geblokkeerd spamaccount"
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
@@ -18011,20 +17685,20 @@ msgstr ""
"als spammer is aangemerkt. Als je in MusicBrainz spam ziet, kan je dat ons "
"laten weten door de spammer op zijn gebruikerspagina te rapporteren."
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
"Deze gebruiker is als spammer aangemerkt en is geblokkeerd voor alle "
"gebruikers die geen beheerder zijn."
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr "Deze gebruiker rapporteren voor slecht gedrag"
@@ -18275,13 +17949,9 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
-"Deze bewerking is mislukt omdat de gegevens die werden bewerkt na het "
-"indienen van deze bewerking zijn veranderd. Dit kan gebeuren als een "
-"bewerking twee keer wordt ingediend; één wordt er dan doorgevoerd, terwijl "
-"de andere mislukt."
#: ../root/utility/edit.js:86
msgid ""
@@ -18295,7 +17965,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr "Deze bewerking is geannuleerd."
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr "Geabonneerd"
@@ -18609,6 +18279,700 @@ msgstr ""
"samenvoegen, hebben verschillende ISWC’s. Controleer voordat je de "
"composities samenvoegt of het echt dezelfde compositie is."
+#~ msgid "Address:"
+#~ msgstr "Adres:"
+
+#~ msgid "Annotation:"
+#~ msgstr "Aantekening:"
+
+#~ msgid "Area:"
+#~ msgstr "Gebied:"
+
+#~ msgid "Artist:"
+#~ msgstr "Artiest:"
+
+#~ msgid "Attributes:"
+#~ msgstr "Eigenschappen:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Streepjescode:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "Begingebied:"
+
+#~ msgid "Begin date:"
+#~ msgstr "Begindatum:"
+
+#~ msgid "Catalog#:"
+#~ msgstr "Catalogusnummer:"
+
+#~ msgid "Child order:"
+#~ msgstr "Volgorde van kindelementen:"
+
+#~ msgid "Country:"
+#~ msgstr "Land:"
+
+#~ msgid "Created"
+#~ msgstr "Aangemaakt"
+
+#~ msgid "Date:"
+#~ msgstr "Datum:"
+
+#~ msgid "Delete"
+#~ msgstr "Verwijderen"
+
+#~ msgid "Description:"
+#~ msgstr "Omschrijving:"
+
+#~ msgid "Documentation:"
+#~ msgstr "Documentatie:"
+
+#~ msgid "End Area:"
+#~ msgstr "Eindgebied:"
+
+#~ msgid "End date:"
+#~ msgstr "Einddatum:"
+
+#~ msgid "Format:"
+#~ msgstr "Type medium:"
+
+#~ msgid "Gender:"
+#~ msgstr "Geslacht:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "IPI-codes:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "ISNI-codes:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRC’s:"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWC’s:"
+
+#~ msgid ""
+#~ "If you don’t select an existing release group, a new one will be created "
+#~ "with the types selected below."
+#~ msgstr ""
+#~ "Als je geen bestaande uitgavegroep selecteert, wordt er een nieuwe "
+#~ "aangemaakt met de types die je hieronder hebt geselecteerd."
+
+#~ msgid ""
+#~ "Keep in mind that recording durations are {doc_link|recalculated from "
+#~ "tracks} once the duration of a track changes. As such, if you correct the "
+#~ "duration of a track whose recording is only used in this release, just "
+#~ "reuse the old recording, don’t create a new one. If the recording is also "
+#~ "used elsewhere and the durations are significantly different, consider "
+#~ "creating a new recording instead."
+#~ msgstr ""
+#~ "Houd er rekening mee dat de duur van de opname {doc_link|opnieuw aan de "
+#~ "hand van de nummers wordt berekend} als de duur van een nummer verandert. "
+#~ "Dus als je de duur van een nummer verbetert en de opname die bij dat "
+#~ "nummer hoort alleen op deze uitgave wordt gebruikt, maak je geen nieuwe "
+#~ "opname. Maar als deze opname ook elders wordt gebruikt en de duur van de "
+#~ "gekoppelde nummers significant verschillen, kan je overwegen om een "
+#~ "nieuwe opname te maken."
+
+#~ msgid ""
+#~ "Keep in mind that unselecting this will delete the track if the medium "
+#~ "has a disc ID! If you unselect it by mistake, please readd the pregap "
+#~ "track before submitting."
+#~ msgstr ""
+#~ "Vergeet niet dat het nummer wordt verwijderd als je dit vakje uitvinkt en "
+#~ "het medium een disc-ID heeft! Als je het per ongeluk hebt uitgevinkt, "
+#~ "moet je het pregapnummer weer toevoegen voordat je de bewerking indient."
+
+#~ msgid ""
+#~ "Keep in mind that unselecting this will delete the tracks if the medium "
+#~ "has a disc ID! If you unselect it by mistake, please readd the data "
+#~ "tracks before submitting."
+#~ msgstr ""
+#~ "Vergeet niet dat de nummers worden verwijderd als je dit vakje uitvinkt "
+#~ "en het medium een disc-ID heeft! Als je het per ongeluk hebt uitgevinkt, "
+#~ "moet je de pregapnummers weer toevoegen voordat je de bewerking indient."
+
+#~ msgid "Label code:"
+#~ msgstr "Platenmaatschappijcode:"
+
+#~ msgid "Label:"
+#~ msgstr "Platenmaatschappij:"
+
+#~ msgid "Language:"
+#~ msgstr "Taal:"
+
+#~ msgid "Length:"
+#~ msgstr "Duur:"
+
+#~ msgid "Merge"
+#~ msgstr "Samenvoegen"
+
+#~ msgid "Name:"
+#~ msgstr "Naam:"
+
+#~ msgid "Note:"
+#~ msgstr "Let op:"
+
+#~ msgid ""
+#~ "Note: only searches edits that: add or edit relationships, created after "
+#~ "2011-05-16; or which remove relationships, created after 2013-07-08; or "
+#~ "which reorder relationships."
+#~ msgstr ""
+#~ "Let op: er wordt nu alleen gezocht naar bewerkingen die relaties "
+#~ "toevoegen of bewerken en gecreëerd zijn na 16 mei 2011, of die relaties "
+#~ "verwijderen en gecreëerd zijn na 8 juli 2013, of die de volgorde van "
+#~ "relaties veranderen."
+
+#~ msgid "Ordering Type:"
+#~ msgstr "Volgorde:"
+
+#~ msgid "Packaging:"
+#~ msgstr "Verpakking:"
+
+#~ msgid "Parent:"
+#~ msgstr "Ouderelement:"
+
+#~ msgid "Position:"
+#~ msgstr "Positie:"
+
+#~ msgid "Release Group:"
+#~ msgstr "Uitgavegroep:"
+
+#~ msgid "Release:"
+#~ msgstr "Uitgave:"
+
+#~ msgid "Script:"
+#~ msgstr "Schrift:"
+
+#~ msgid "Search:"
+#~ msgstr "Zoeken:"
+
+#~ msgid "Set track durations"
+#~ msgstr "Vul de duur van de nummers in"
+
+#~ msgid "Setlist:"
+#~ msgstr "Speellijst:"
+
+#~ msgid "Sort name:"
+#~ msgstr "Sorteernaam:"
+
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "This entity will be created by this edit."
+#~ msgstr "Dit object zal door deze bewerking worden aangemaakt."
+
+#~ msgid "Time:"
+#~ msgstr "Tijd:"
+
+#~ msgid "Title:"
+#~ msgstr "Titel:"
+
+#~ msgid ""
+#~ "To create a new tracklist, use an existing medium or import a disc from a "
+#~ "CD stub, select the appropriate tab."
+#~ msgstr ""
+#~ "Om een nieuwe nummerlijst te creëren, kan je een bestaand medium "
+#~ "gebruiken of een medium van een cd-beginnetje importeren. Selecteer "
+#~ "hiervoor het bijbehorende tabblad."
+
+#~ msgid "Tracks:"
+#~ msgstr "Nummers:"
+
+#~ msgid "URL:"
+#~ msgstr "URL:"
+
+#~ msgid "Warning:"
+#~ msgstr "Waarschuwing:"
+
+#~ msgid ""
+#~ "You can use the checkboxes under the parser to deactivate some sections. "
+#~ "For example, you can deactivate “{lines_have_artists}” if your data has "
+#~ "no track artists, or “{use_track_lengths}” if you have track durations "
+#~ "but want the parser to ignore them."
+#~ msgstr ""
+#~ "Je kan de selectievakjes hieronder gebruiken om bepaalde delen uit te "
+#~ "schakelen. Je kan bijvoorbeeld “{lines_have_artists}” uitschakelen als je "
+#~ "geen artiesten voor de nummers hebt, of “{use_track_lengths}” "
+#~ "uitschakelen als je wel de duur van de nummers hebt, maar die bij het "
+#~ "invullen wil negeren."
+
+#~ msgid ""
+#~ "You must select an artist for the release (the background color of the "
+#~ "artist field should be green). If you’ve entered an artist but the "
+#~ "background remains uncolored, click the magnifying glass to match the "
+#~ "name to a MusicBrainz artist. If the artist doesn’t exist yet, you can "
+#~ "create it by selecting “{add_a_new_artist}” from the bottom of the search "
+#~ "results drop-down."
+#~ msgstr ""
+#~ "Je moet een artiest voor de uitgave selecteren (de achtergrondkleur van "
+#~ "het artiest veld moet groen zijn). Als je een artiest hebt ingevoerd maar "
+#~ "de achtergrond blijft ongekleurd, klik het vergrootglas om de naam met "
+#~ "een MusicBrainz artiest te matchen. Als de artiest nog niet bestaat, kan "
+#~ "je het maken door \"{add_a_new_artist}\" te selecteren aan de onderkant "
+#~ "van het zoekresultaat uitklapmenu."
+
+#~ msgid "appears on:"
+#~ msgstr "staat op:"
+
+#, perl-brace-format
+#~ msgid ""
+#~ "“{id}” is not a valid row ID; the entity might have been merged or "
+#~ "deleted."
+#~ msgstr ""
+#~ "“{id}” is geen geldige rij-ID; mogelijk is het object samengevoegd of "
+#~ "verwijderd."
+
+#~ msgid "Cancelled"
+#~ msgstr "Geannuleerd"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Voer een geldige URL in, bijv. ‘http://google.nl/’"
+
+#~ msgid "Bio:"
+#~ msgstr "Biografie:"
+
+#~ msgid "Create"
+#~ msgstr "Aanmaken"
+
+#~ msgid "Preview:"
+#~ msgstr "Voorbeeld:"
+
+#~ msgid "Preview"
+#~ msgstr "Voorbeeld"
+
+#~ msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+#~ msgstr ""
+#~ "Je moet dit vakje alleen aanvinken om fouten te herstellen, zoals "
+#~ "tikfouten."
+
+#~ msgid "Please search for the artist you wish to create a new release for:"
+#~ msgstr "Zoek naar de artiest waar je een nieuwe uitgave voor wil toevoegen:"
+
+#~ msgid "Track duration comparison"
+#~ msgstr "Vergelijking van de nummerlengtes"
+
+#~ msgid "Disc ID:"
+#~ msgstr "Disc-ID:"
+
+#~ msgid ""
+#~ "If you don't see the artist you are looking for, you can still add a new "
+#~ "release. This will allow you to create this artist and a release at the "
+#~ "same time"
+#~ msgstr ""
+#~ "Als je de artiest die je zoekt niet kan vinden, kan je nog steeds een "
+#~ "nieuwe uitgave toevoegen. Dan kan je de artiest en de uitgave "
+#~ "tegelijkertijd aanmaken."
+
+#~ msgid "Create a new collection"
+#~ msgstr "Een nieuwe collectie aanmaken"
+
+#~ msgid "Status"
+#~ msgstr "Status"
+
+#~ msgid "Only the editor who created an edit can cancel it."
+#~ msgstr ""
+#~ "Alleen de redacteur die de bewerking heeft gemaakt, kan haar annuleren."
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Closed:"
+#~ msgstr "Gesloten:"
+
+#~ msgid "Releases:"
+#~ msgstr "Uitgaven:"
+
+#~ msgid "Ended"
+#~ msgstr "Beëindigd"
+
+#~ msgid "Filename:"
+#~ msgstr "Bestandsnaam:"
+
+#~ msgid "Medium:"
+#~ msgstr "Medium:"
+
+#~ msgid "Artist Credits:"
+#~ msgstr "Vermeldingen van artiesten:"
+
+#~ msgid "Relationship:"
+#~ msgstr "Relatie:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "Catalogusnummer:"
+
+#~ msgid "Merge:"
+#~ msgstr "Samenvoegen:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Media:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Relaties:"
+
+#~ msgid "Release Events:"
+#~ msgstr "Uitgavegebeurtenissen:"
+
+#~ msgid "Release group:"
+#~ msgstr "Uitgavegroep:"
+
+#~ msgid "Old:"
+#~ msgstr "Oud:"
+
+#~ msgid "Added"
+#~ msgstr "Toegevoegd"
+
+#~ msgid "Removed"
+#~ msgstr "Verwijderd"
+
+#~ msgid "Edited"
+#~ msgstr "Bewerkt"
+
+#~ msgid "Alias:"
+#~ msgstr "Alias:"
+
+#~ msgid "Track:"
+#~ msgstr "Nummer:"
+
+#~ msgid "Candidate:"
+#~ msgstr "Kandidaat:"
+
+#~ msgid "Proposer:"
+#~ msgstr "Indiener:"
+
+#~ msgid "1st seconder:"
+#~ msgstr "Eerste secondant"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "Tweede secondant"
+
+#~ msgid "Votes for:"
+#~ msgstr "Voorstemmen:"
+
+#~ msgid "Votes against:"
+#~ msgstr "Tegenstemmen:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Seconder 1"
+#~ msgstr "Secondant 1"
+
+#~ msgid "Seconder 2"
+#~ msgstr "Secondant 2"
+
+#~ msgid "Added:"
+#~ msgstr "Toegevoegd:"
+
+#~ msgid "Last modified:"
+#~ msgstr "Laatste bewerking:"
+
+#~ msgid "Lookup count:"
+#~ msgstr "Aantal keer opgevraagd:"
+
+#~ msgid "Modify count:"
+#~ msgstr "Aantal keer bewerkt:"
+
+#~ msgid "Coordinates:"
+#~ msgstr "Coördinaten:"
+
+#~ msgid "IPI code:"
+#~ msgstr "IPI-code:"
+
+#~ msgid "ISNI code:"
+#~ msgstr "ISNI-code:"
+
+#~ msgid "Error:"
+#~ msgid_plural "Errors:"
+#~ msgstr[0] "Foutmelding:"
+#~ msgstr[1] "Foutmeldingen:"
+
+#~ msgid ""
+#~ "No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
+#~ "Either it’s incorrect, it was for an entity that has since been deleted, "
+#~ "or it is an ID for something else than an entity (for example, a "
+#~ "{rel_type_table|relationship type})."
+#~ msgstr ""
+#~ "Er zijn geen {entity_doc|MusicBrainz-objecten} met de {mbid_doc|MBID} "
+#~ "{mbid}. De MBID kan ongeldig zijn, horen bij een object dat is verwijderd "
+#~ "of de MBID zijn van iets wat geen object is (bijvoorbeeld een "
+#~ "{rel_type_table|relatietype})."
+
+#~ msgid ""
+#~ "The relationship attribute type “{type}” can’t be deleted because it’s "
+#~ "still in use."
+#~ msgstr ""
+#~ "Het type relatie-eigenschap ‘{type}’ kan niet worden verwijderd, omdat "
+#~ "het nog steeds in gebruik is."
+
+#~ msgid "ID:"
+#~ msgstr "ID:"
+
+#~ msgid "Possible values:"
+#~ msgstr "Mogelijke waarden:"
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "Een nieuwe relatie-eigenschap toevoegen"
+
+#~ msgid ""
+#~ "The relationship type \"{type}\" can’t be deleted because it’s still in "
+#~ "use."
+#~ msgstr ""
+#~ "Het type relatie ‘{type}’ kan niet worden verwijderd, omdat het nog "
+#~ "steeds in gebruik is."
+
+#~ msgid "Create a new {type0}-{type1} relationship"
+#~ msgstr "Een nieuwe {type0}-{type1}-relatie toevoegen"
+
+#~ msgid ""
+#~ "This report shows disc IDs indicating a total duration much longer than "
+#~ "what a standard CD allows (at least 88 minutes for a CD, or 30 minutes "
+#~ "for a mini-CD). This usually means a disc ID was created for the wrong "
+#~ "format (SACD) or with a buggy tool."
+#~ msgstr ""
+#~ "In dit rapport staan disc-ID’s met een totale duur die veel langer is dan "
+#~ "volgens de cd-standaard mogelijk is (meer dan 88 minuten voor een cd of "
+#~ "30 minuten voor een mini-cd). Meestal betekent dit dat de disc-ID is "
+#~ "aangemaakt voor het verkeerde soort medium (SACD) of met een slecht "
+#~ "werkend programma."
+
+#~ msgid ""
+#~ "This report shows disc IDs attached to a release but obviously not "
+#~ "applied because at least one track duration is unknown on the release. "
+#~ "The report is also restricted to mediums where only one disc ID is "
+#~ "attached, so it is highly likely that the disc ID can be applied without "
+#~ "any worries. Do make sure though that no existing durations clash with "
+#~ "the disc ID, or that any clashes are clear mistakes."
+#~ msgstr ""
+#~ "In dit rapport staan disc-ID’s die aan een uitgave zijn toegevoegd, maar "
+#~ "blijkbaar niet zijn toegepast, omdat ten minste één duur van een nummer "
+#~ "op de uitgave niet bekend is. Het rapport wordt beperkt tot media waar "
+#~ "maar één disc-ID aan is toegevoegd, dus heel waarschijnlijk kan de disc-"
+#~ "ID zonder problemen worden toegepast. Let wel op dat er geen bestaande "
+#~ "duren van de disc-ID afwijken, of dat afwijkingen duidelijke fouten zijn."
+
+#~ msgid ""
+#~ "This report lists release groups with very similar names and artists. If "
+#~ "the releases in the release groups should be grouped together (see the "
+#~ "{url|guidelines}), they can be merged. If they shouldn't be grouped "
+#~ "together but they can be distinguished by the release group types, e.g. "
+#~ "when an artist has an album and single with the same name, then there is "
+#~ "usually no need to change anything. In other cases, a disambiguation "
+#~ "comment may be helpful."
+#~ msgstr ""
+#~ "In dit rapport staan uitgavegroepen met erg op elkaar lijkende namen en "
+#~ "artiesten. Als de uitgaven in de uitgavegroepen bij elkaar horen (zie de "
+#~ "{url|stijlgids}), kunnen de uitgavegroepen worden samengevoegd. Als ze "
+#~ "niet gegroepeerd zouden moeten worden maar van elkaar onderscheiden "
+#~ "kunnen worden aan de hand van het type uitgavegroep, hoeft er meestal "
+#~ "niets veranderd te worden. In andere gevallen kan een verduidelijking "
+#~ "handig zijn."
+
+#~ msgid ""
+#~ "This report shows instruments without an image relationship to "
+#~ "StaticBrainz (i.e. without an IROMBOOK image)."
+#~ msgstr ""
+#~ "In dit rapport staan instrumenten zonder relatie voor een afbeelding op "
+#~ "StaticBrainz (dus zonder IROMBOOK-afbeelding)."
+
+#~ msgid ""
+#~ "This report lists all releases with gaps in the medium numbers (e.g. "
+#~ "there is a medium 1 and 3 but no medium 2)."
+#~ msgstr ""
+#~ "In dit rapport staan alle uitgaven waarvan de media niet continu "
+#~ "genummerd zijn (bijv. als er media met de posities 1 en 3 zijn, maar niet "
+#~ "2)."
+
+#~ msgid ""
+#~ "This report shows recordings with relationships using dates in the "
+#~ "future. Those are probably typos (e.g. 2109 instead of 2019)."
+#~ msgstr ""
+#~ "In dit rapport staan opnames met relaties waarvan een of meer data in de "
+#~ "toekomst liggen. Waarschijnlijk zijn dit tikfouten (bijv. 2109 in plaats "
+#~ "van 2019)."
+
+#~ msgid ""
+#~ "This report shows releases that have relationships that only apply to "
+#~ "digital media releases (download/streaming), but have media whose format "
+#~ "is not “Digital Media”. Generally, these should be moved to the "
+#~ "appropriate digital media release. If one doesn’t exist yet, feel free to "
+#~ "create it."
+#~ msgstr ""
+#~ "In dit rapport staan uitgaven met relaties die alleen van toepassing zijn "
+#~ "op digitale uitgaven (downloads/streaming), maar die media bevatten die "
+#~ "geen digitale media zijn. Over het algemeen moeten deze relaties worden "
+#~ "verplaatst naar de juiste digitale uitgave. Als die nog niet bestaat, kan "
+#~ "je haar aanmaken."
+
+#~ msgid ""
+#~ "This report shows releases that have mail order relationships (which by "
+#~ "definition only apply to physical media releases), but only have media "
+#~ "whose format is “Digital Media”. Generally, these should be moved to the "
+#~ "appropriate physical release. If one doesn’t exist yet, feel free to "
+#~ "create it."
+#~ msgstr ""
+#~ "In dit rapport staan uitgaven met relaties om de uitgave per post te "
+#~ "bestellen (wat per definitie alleen van toepassing is op fysieke "
+#~ "uitgaven), maar die alleen digitale media hebben. Meestal moeten deze "
+#~ "relaties naar een fysieke uitgave worden verplaatst. Als die nog niet "
+#~ "bestaat, kan je haar aanmaken."
+
+#~ msgid ""
+#~ "This report aims to identify releases where track names include their own "
+#~ "track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). "
+#~ "Notice that sometimes this is justified and correct, don't automatically "
+#~ "assume it is a mistake! If you confirm it is a mistake, please correct it."
+#~ msgstr ""
+#~ "In dit rapport staan uitgaven waarbij de titels van nummers de positie "
+#~ "lijken te bevatten, zoals ‘1) Een titel’ in plaats van gewoon ‘Een "
+#~ "titel’. Let wel dat dit soms terecht en correct is, ga er dus niet "
+#~ "automatisch van uit dat dit een fout is. Als je zeker weet dat een fout "
+#~ "is, kan je het verbeteren."
+
+#~ msgid ""
+#~ "This report lists all releases where the track numbers are not continuous "
+#~ "(e.g. there is no \"track 2\"), or with duplicated track numbers (e.g. "
+#~ "there are two \"track 4\"s)."
+#~ msgstr ""
+#~ "In dit rapport staan alle uitgaven waarop de nummers niet continu "
+#~ "genummerd zijn (bijv. als er geen ‘nummer 2’ is) of waarop meerdere "
+#~ "nummers dezelfde positie hebben (bijv. als er twee ‘nummers 4’ zijn)."
+
+#~ msgid "Location"
+#~ msgstr "Locatie"
+
+#~ msgid "Location:"
+#~ msgstr "Locatie:"
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "Abonneer me automatisch op artiesten die ik toevoeg."
+
+#~ msgid "Automatically subscribe me to labels I create."
+#~ msgstr "Abonneer me automatisch op platenmaatschappijen die ik toevoeg."
+
+#~ msgid "Automatically subscribe me to series I create."
+#~ msgstr "Abonneer me automatisch op series die ik toevoeg."
+
+#~ msgid "Old"
+#~ msgstr "Oud"
+
+#~ msgid "New"
+#~ msgstr "Nieuw"
+
+#~ msgid ""
+#~ "This will enter additional edits to change each specific credit to use "
+#~ "the new name. Only use this if you are sure the existing credits are "
+#~ "incorrect (e.g. for typos)."
+#~ msgstr ""
+#~ "Als je dit selecteert, worden er extra bewerkingen toegevoegd die elke "
+#~ "specifieke vermelding hernoemt. Gebruik dit alleen als je zeker weet dat "
+#~ "de bestaande vermeldingen niet juist zijn (bijvoorbeeld als er tikfouten "
+#~ "in staan)."
+
+#~ msgid "Create collection"
+#~ msgstr "Een collectie aanmaken"
+
+#~ msgid "Delete Note"
+#~ msgstr "Notitie verwijderen"
+
+#~ msgid "This artist credit has {edit_search|pending edits}."
+#~ msgstr "Er zijn {edit_search|open bewerkingen} voor deze artiestvermelding."
+
+#~ msgid "This artist credit has pending edits."
+#~ msgstr "Er zijn open bewerkingen voor deze artiestvermelding."
+
+#~ msgid "Artist credit:"
+#~ msgstr "Vermelding van de artiest:"
+
+#~ msgid "Ended:"
+#~ msgstr "Beëindigd:"
+
+#~ msgid "This track hasn’t been created yet."
+#~ msgstr "Dit nummer is nog niet aangemaakt."
+
+#~ msgid "Release events:"
+#~ msgstr "Uitgavegebeurtenissen:"
+
+#~ msgid ""
+#~ "Warning: This relationship has pending edits. {show|Click here} to view "
+#~ "these edits and make sure they do not conflict with your own."
+#~ msgstr ""
+#~ "Waarschuwing: Deze relatie heeft openstaande bewerkingen. {show|Klik "
+#~ "hier} om deze bewerkingen te bekijken en zorg ervoor dat ze niet met jouw "
+#~ "bewerkingen conflicteren."
+
+#~ msgid ""
+#~ "This will create a new work for each checked recording that has no work "
+#~ "already. The work names will be the same as their respective recording."
+#~ msgstr ""
+#~ "Dit zal een nieuwe compositie toevoegen voor elke aangevinkte opname die "
+#~ "nog geen compositie heeft. De namen van de composities zullen gelijk zijn "
+#~ "aan de bijbehorende opname."
+
+#~ msgid ""
+#~ "Only use this option after you’ve tried searching for the work(s) you "
+#~ "want to create, and are certain they do not already exist on MusicBrainz."
+#~ msgstr ""
+#~ "Gebruik deze optie alleen nadat je hebt gezocht naar de compositie(s) die "
+#~ "je wil toevoegen, en zeker weet dat ze op MusicBrainz nog niet bestaan."
+
+#~ msgid "Batch-create new works"
+#~ msgstr "Een partij nieuwe composities toevoegen"
+
+#~ msgid "Work Type:"
+#~ msgstr "Type compositie:"
+
+#~ msgid ""
+#~ "Banner message editors are users who can set a message that is shown in a "
+#~ "banner on all pages, e.g. to warn users about upcoming site maintenance."
+#~ msgstr ""
+#~ "Mededelingsredacteurs zijn gebruikers die een mededeling kunnen instellen "
+#~ "die op alle pagina’s wordt vertoond, bijvoorbeeld om gebruikers te "
+#~ "waarschuwen voor aanstaand onderhoud."
+
+#~ msgid "Email:"
+#~ msgstr "E-mail:"
+
+#~ msgid "Member since:"
+#~ msgstr "Lid sinds:"
+
+#~ msgid "Last login:"
+#~ msgstr "Laatste aanmelding:"
+
+#~ msgid "Subscribers:"
+#~ msgstr "Abonnees:"
+
+#~ msgid "Languages:"
+#~ msgstr "Talen:"
+
+#~ msgid "This user has not created any entities."
+#~ msgstr "Deze gebruiker heeft nog geen objecten gecreëerd."
+
+#~ msgid ""
+#~ "This edit failed because the data it was changing was modified after this "
+#~ "edit was created. This may happen when the same edit is entered in twice; "
+#~ "one will pass but the other will fail."
+#~ msgstr ""
+#~ "Deze bewerking is mislukt omdat de gegevens die werden bewerkt na het "
+#~ "indienen van deze bewerking zijn veranderd. Dit kan gebeuren als een "
+#~ "bewerking twee keer wordt ingediend; één wordt er dan doorgevoerd, "
+#~ "terwijl de andere mislukt."
+
#~ msgid "Artist {n}:"
#~ msgstr "Artiest {n}:"
diff --git a/po/mb_server.oc.po b/po/mb_server.oc.po
index 9b7706ca472..b1c96388689 100644
--- a/po/mb_server.oc.po
+++ b/po/mb_server.oc.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:57+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Occitan Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2075,15 +2102,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2132,7 +2156,7 @@ msgstr[1] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr ""
@@ -2173,27 +2197,32 @@ msgstr "Editor de relacions"
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2216,7 +2245,7 @@ msgstr ""
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2236,10 +2265,6 @@ msgstr ""
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2257,7 +2282,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2281,16 +2306,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2306,7 +2323,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2316,11 +2333,11 @@ msgstr "Levar"
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2331,7 +2348,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2392,7 +2409,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2410,29 +2427,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "Enregistrar"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
-msgstr ""
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr "Sistèma d'escritura"
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2451,10 +2472,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2522,11 +2539,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2558,9 +2578,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2571,13 +2598,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr ""
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2585,11 +2620,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2602,9 +2637,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr ""
@@ -2614,11 +2649,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2632,11 +2667,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2648,7 +2683,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2656,6 +2699,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2674,7 +2723,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2712,7 +2761,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2764,14 +2813,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2830,7 +2879,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2869,8 +2918,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2887,7 +2936,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2895,7 +2944,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2920,14 +2969,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2942,20 +2997,16 @@ msgstr ""
msgid "Title"
msgstr ""
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2985,6 +3036,7 @@ msgid "Tracklist"
msgstr ""
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -2992,7 +3044,7 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "Pistas"
@@ -3004,10 +3056,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr "Pistas :"
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3045,25 +3093,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr ""
@@ -3074,7 +3122,7 @@ msgstr ""
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3088,9 +3136,22 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
msgstr ""
#: ../root/release/edit/tracklist.tt:21
@@ -3098,7 +3159,7 @@ msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3175,7 +3236,7 @@ msgid "Voter"
msgstr "Votador"
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr "Vòtes"
@@ -3187,23 +3248,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3259,7 +3317,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3297,11 +3355,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3317,7 +3375,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3344,8 +3402,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3354,8 +3412,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3439,8 +3497,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3928,12 +3988,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4018,25 +4078,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4149,15 +4209,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr ""
@@ -4235,7 +4295,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4318,7 +4378,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4351,7 +4411,7 @@ msgstr ""
msgid "Remove artist alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr ""
@@ -4393,8 +4453,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4406,7 +4466,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4440,7 +4500,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4462,8 +4522,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr ""
@@ -4492,14 +4552,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4520,7 +4580,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr ""
@@ -4572,11 +4632,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4628,7 +4683,7 @@ msgstr ""
msgid "Remove label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr ""
@@ -4675,7 +4730,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4726,8 +4781,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr ""
@@ -4806,13 +4865,13 @@ msgstr ""
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(desconegut)"
@@ -4840,6 +4899,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr ""
@@ -4853,7 +4914,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr ""
@@ -4865,7 +4926,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -4944,7 +5005,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4957,24 +5018,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -4992,6 +5036,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5005,9 +5050,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5032,7 +5077,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5475,11 +5520,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr ""
@@ -5570,22 +5615,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5597,17 +5642,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5622,17 +5656,6 @@ msgctxt "noun"
msgid "Tag"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5872,19 +5895,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5892,7 +5915,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6011,9 +6034,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6371,12 +6395,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6410,14 +6434,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6433,7 +6458,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6470,20 +6495,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr "Atributs"
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6512,26 +6523,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr "Lenga"
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr "Sistèma d'escritura"
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6539,15 +6532,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6602,6 +6590,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr "Apondre una Pagina"
@@ -6614,10 +6603,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6705,6 +6690,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6754,8 +6740,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6764,8 +6753,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6831,10 +6819,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr "Artistas"
@@ -6873,7 +6861,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6922,7 +6910,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6936,7 +6927,10 @@ msgstr "Relacions"
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7102,7 +7096,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7389,10 +7383,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7425,7 +7421,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7439,7 +7435,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7459,15 +7455,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7477,8 +7464,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7487,21 +7475,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7539,7 +7519,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7578,15 +7558,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7679,7 +7659,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7694,20 +7674,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7878,7 +7848,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Avaloracions"
@@ -7924,7 +7894,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8035,6 +8005,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8079,26 +8050,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8110,13 +8065,6 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8125,22 +8073,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr ""
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8265,7 +8207,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8483,7 +8425,7 @@ msgid "None"
msgstr "Pas cap"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8508,7 +8450,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8533,7 +8476,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8542,15 +8485,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8570,54 +8513,44 @@ msgid "Add an edit note"
msgstr ""
#: ../root/edit/components/EditNotes.js:78
-msgid "You are not currently able to add notes to this edit. ({url|Details})"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
+msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Apondre una Nòta"
@@ -8637,12 +8570,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "Parucions :"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8759,37 +8686,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8801,17 +8704,20 @@ msgstr "(pas cap)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8835,19 +8741,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
-msgstr ""
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr "Crédits d'artistas"
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8906,29 +8812,23 @@ msgstr "(pas cap)"
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8941,17 +8841,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8959,7 +8859,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "Qualitat de las donadas"
@@ -9000,14 +8900,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9032,11 +8924,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr "Crédits d'artistas"
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9062,25 +8949,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9102,6 +8974,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9114,7 +8987,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9227,8 +9101,8 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
-msgstr "Supòrts :"
+msgid "Mediums"
+msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
@@ -9246,8 +9120,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9289,20 +9163,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "Relacions :"
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9313,11 +9173,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9327,8 +9182,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9344,17 +9199,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9393,28 +9256,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9422,11 +9281,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9443,47 +9304,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10167,7 +10000,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10319,7 +10152,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10486,39 +10319,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10634,11 +10461,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10691,10 +10518,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10707,7 +10530,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10738,27 +10561,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10766,21 +10589,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -10919,7 +10734,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11018,13 +10833,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11158,7 +10967,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11372,7 +11181,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11380,11 +11189,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11396,6 +11200,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11429,16 +11234,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11458,7 +11259,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11532,7 +11333,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11551,7 +11352,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11660,8 +11461,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11867,8 +11668,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11878,10 +11679,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11915,7 +11716,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11924,7 +11725,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12204,7 +12005,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12284,7 +12085,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12411,8 +12212,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12583,13 +12384,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12767,7 +12568,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12791,8 +12592,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13011,20 +12811,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRC"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr "ISWC"
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13103,9 +12889,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13114,9 +12900,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13271,6 +13057,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13280,7 +13070,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13291,7 +13081,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13301,9 +13091,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13339,7 +13130,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13423,7 +13214,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13444,42 +13235,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Apondre una Lenga"
@@ -13530,15 +13322,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13591,10 +13383,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13642,7 +13436,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13666,33 +13460,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13710,7 +13504,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13719,32 +13513,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13754,7 +13543,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13792,11 +13587,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13897,15 +13692,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14016,7 +13811,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14311,31 +14106,31 @@ msgctxt "plural"
msgid "Series"
msgstr "Serias"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14356,7 +14151,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14413,8 +14209,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14504,113 +14300,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14657,53 +14453,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14725,11 +14521,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14764,11 +14560,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14830,10 +14626,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15168,8 +14961,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15375,14 +15168,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15391,7 +15184,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15443,34 +15236,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15497,15 +15290,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15746,10 +15535,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15811,23 +15596,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15929,7 +15714,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16156,10 +15942,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16201,191 +15983,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Actions"
+msgid "Restrictions"
+msgstr "Accions"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Modificacions"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Total"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Acceptat"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16632,7 +16408,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16646,7 +16422,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16870,3 +16646,18 @@ msgid ""
"ISWCs. Please make sure they are indeed the same works and you wish to "
"continue with the merge."
msgstr ""
+
+#~ msgid "Artist:"
+#~ msgstr "Artista:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Pistas :"
+
+#~ msgid "Releases:"
+#~ msgstr "Parucions :"
+
+#~ msgid "Mediums:"
+#~ msgstr "Supòrts :"
+
+#~ msgid "Relationships:"
+#~ msgstr "Relacions :"
diff --git a/po/mb_server.pa.po b/po/mb_server.pa.po
index 87fade0698a..ee8653d9364 100644
--- a/po/mb_server.pa.po
+++ b/po/mb_server.pa.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:57+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Punjabi Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2074,15 +2101,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2131,7 +2155,7 @@ msgstr[1] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr ""
@@ -2172,27 +2196,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2215,7 +2244,7 @@ msgstr ""
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2235,10 +2264,6 @@ msgstr ""
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2256,7 +2281,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2280,16 +2305,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2305,7 +2322,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2315,11 +2332,11 @@ msgstr ""
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2330,7 +2347,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2391,7 +2408,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2409,29 +2426,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr ""
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2450,10 +2471,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2521,11 +2538,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2557,9 +2577,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2570,13 +2597,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr ""
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2584,11 +2619,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2601,9 +2636,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr ""
@@ -2613,11 +2648,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2631,11 +2666,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2647,7 +2682,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2655,6 +2698,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2673,7 +2722,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2711,7 +2760,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2763,14 +2812,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2829,7 +2878,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2868,8 +2917,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2886,7 +2935,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2894,7 +2943,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2919,14 +2968,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2941,20 +2996,16 @@ msgstr ""
msgid "Title"
msgstr ""
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2984,6 +3035,7 @@ msgid "Tracklist"
msgstr ""
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -2991,7 +3043,7 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr ""
@@ -3003,10 +3055,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3044,25 +3092,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr ""
@@ -3073,7 +3121,7 @@ msgstr ""
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3087,9 +3135,22 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
msgstr ""
#: ../root/release/edit/tracklist.tt:21
@@ -3097,7 +3158,7 @@ msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3174,7 +3235,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3186,23 +3247,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3258,7 +3316,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3296,11 +3354,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3316,7 +3374,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3343,8 +3401,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3353,8 +3411,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3438,8 +3496,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3927,12 +3987,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4017,25 +4077,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4148,15 +4208,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr ""
@@ -4234,7 +4294,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4317,7 +4377,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4350,7 +4410,7 @@ msgstr ""
msgid "Remove artist alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr ""
@@ -4392,8 +4452,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4405,7 +4465,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4439,7 +4499,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4461,8 +4521,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr ""
@@ -4491,14 +4551,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4519,7 +4579,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr ""
@@ -4571,11 +4631,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4627,7 +4682,7 @@ msgstr ""
msgid "Remove label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr ""
@@ -4674,7 +4729,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4725,8 +4780,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr ""
@@ -4805,13 +4864,13 @@ msgstr ""
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr ""
@@ -4839,6 +4898,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr ""
@@ -4852,7 +4913,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr ""
@@ -4864,7 +4925,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -4943,7 +5004,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4956,24 +5017,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -4991,6 +5035,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5004,9 +5049,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5031,7 +5076,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5474,11 +5519,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr ""
@@ -5569,22 +5614,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5596,17 +5641,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5621,17 +5655,6 @@ msgctxt "noun"
msgid "Tag"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5871,19 +5894,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5891,7 +5914,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6010,9 +6033,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6370,12 +6394,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6409,14 +6433,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6432,7 +6457,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6469,20 +6494,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6511,26 +6522,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr ""
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr ""
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6538,15 +6531,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6601,6 +6589,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr ""
@@ -6613,10 +6602,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6704,6 +6689,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6753,8 +6739,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6763,8 +6752,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6830,10 +6818,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr ""
@@ -6872,7 +6860,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6921,7 +6909,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6935,7 +6926,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7101,7 +7095,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7388,10 +7382,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7424,7 +7420,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7438,7 +7434,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7458,15 +7454,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7476,8 +7463,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7486,21 +7474,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7538,7 +7518,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7577,15 +7557,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7678,7 +7658,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7693,20 +7673,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7877,7 +7847,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7923,7 +7893,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8034,6 +8004,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8078,26 +8049,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8106,14 +8061,7 @@ msgstr ""
#: ../root/components/list/LabelList.js:68
#: ../root/search/components/AreaResults.js:65
#: ../root/search/components/LabelResults.js:68
-msgid "Code"
-msgstr ""
-
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
+msgid "Code"
msgstr ""
#: ../root/components/list/ReleaseGroupList.js:166
@@ -8124,22 +8072,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr ""
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8264,7 +8206,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8482,7 +8424,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8507,7 +8449,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8532,7 +8475,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8541,15 +8484,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8572,51 +8515,41 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8636,12 +8569,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8758,37 +8685,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8800,17 +8703,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8834,19 +8740,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8905,29 +8811,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8940,17 +8840,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8958,7 +8858,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -8999,14 +8899,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9031,11 +8923,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9061,25 +8948,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9101,6 +8973,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9113,7 +8986,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9226,7 +9100,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9245,8 +9119,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9288,20 +9162,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9312,11 +9172,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9326,8 +9181,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9343,17 +9198,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9392,28 +9255,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9421,11 +9280,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9442,47 +9303,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10166,7 +9999,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10318,7 +10151,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10485,39 +10318,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10633,11 +10460,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10690,10 +10517,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10706,7 +10529,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10737,27 +10560,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10765,21 +10588,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -10918,7 +10733,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11017,13 +10832,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11157,7 +10966,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11371,7 +11180,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11379,11 +11188,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11395,6 +11199,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11428,16 +11233,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11457,7 +11258,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11531,7 +11332,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11550,7 +11351,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11659,8 +11460,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11866,8 +11667,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11877,10 +11678,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11914,7 +11715,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11923,7 +11724,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12203,7 +12004,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12283,7 +12084,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12410,8 +12211,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12582,13 +12383,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12766,7 +12567,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12790,8 +12591,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13010,20 +12810,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13102,9 +12888,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13113,9 +12899,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13270,6 +13056,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13279,7 +13069,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13290,7 +13080,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13300,9 +13090,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13338,7 +13129,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13422,7 +13213,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13443,42 +13234,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13529,15 +13321,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13590,10 +13382,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13641,7 +13435,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13665,33 +13459,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13709,7 +13503,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13718,32 +13512,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13753,7 +13542,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13791,11 +13586,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13896,15 +13691,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14015,7 +13810,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14310,31 +14105,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14355,7 +14150,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14412,8 +14208,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14503,113 +14299,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14656,53 +14452,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14724,11 +14520,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14763,11 +14559,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14829,10 +14625,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15167,8 +14960,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15374,14 +15167,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15390,7 +15183,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15442,34 +15235,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15496,15 +15289,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15745,10 +15534,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15810,23 +15595,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15928,7 +15713,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16155,10 +15941,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16200,191 +15982,183 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
msgstr ""
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16631,7 +16405,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16645,7 +16419,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
diff --git a/po/mb_server.pl.po b/po/mb_server.pl.po
index e98073d2edb..1b76e66430b 100644
--- a/po/mb_server.pl.po
+++ b/po/mb_server.pl.po
@@ -26,7 +26,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:57+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Polish =2 && n%10<=4) && (n"
-"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
-"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
+"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
+"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
"X-Generator: Weblate 4.18.2\n"
#: ../root/components/common-macros.tt:12
@@ -83,8 +83,8 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:88
#: ../root/recording/RecordingIndex.js:53
#: ../root/static/scripts/release/components/MediumTable.js:83
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1563
-#: ../root/utility/tableColumns.js:567
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1564
+#: ../root/utility/tableColumns.js:572
msgid "#"
msgstr ""
@@ -133,8 +133,8 @@ msgstr "(brak okładki)"
#: ../root/edit/details/MergeReleases.js:239
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
-#: ../root/utility/tableColumns.js:508 ../root/utility/tableColumns.js:516
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/utility/tableColumns.js:513 ../root/utility/tableColumns.js:521
msgctxt "and"
msgid "/"
msgstr ""
@@ -221,8 +221,8 @@ msgstr "Dodaj instrument"
msgid "Add Label"
msgstr "Dodaj wytwórnię"
-#: ../root/release/edit/information.tt:213
-#: ../root/release/edit/information.tt:214
+#: ../root/release/edit/information.tt:215
+#: ../root/release/edit/information.tt:216
#: ../root/layout/components/BottomMenu.js:248
msgctxt "button/menu"
msgid "Add Label"
@@ -242,8 +242,8 @@ msgctxt "header"
msgid "Add Release"
msgstr "Dodaj wydanie"
-#: ../root/release/edit/information.tt:169
-#: ../root/release/edit/information.tt:170
+#: ../root/release/edit/information.tt:171
+#: ../root/release/edit/information.tt:172
msgctxt "button/menu"
msgid "Add Release Event"
msgstr "Dodaj wydarzenie wydania"
@@ -286,7 +286,7 @@ msgid ""
"tracklist is unknown."
msgstr ""
-#: ../root/release/edit/recordings.tt:212
+#: ../root/release/edit/recordings.tt:178
#: ../root/static/scripts/edit/components/AddEntityDialog.js:21
msgid "Add a new recording"
msgstr "Dodaj nowe nagranie"
@@ -311,14 +311,17 @@ msgstr "Dodaj {item}"
msgid "Add {num} track(s)"
msgstr "Dodaj {num} utwór/utworów"
-#: ../root/release/edit/information.tt:245
+#: ../root/release/edit/information.tt:247
msgid "Additional information"
msgstr ""
-#: ../root/place/edit_form.tt:16
-#: ../root/layout/components/sidebar/PlaceSidebar.js:82
-msgid "Address:"
-msgstr "Adres:"
+#: ../root/place/edit_form.tt:16 ../root/components/list/PlaceList.js:66
+#: ../root/edit/details/AddPlace.js:55 ../root/edit/details/EditPlace.js:68
+#: ../root/layout/components/sidebar/PlaceSidebar.js:84
+#: ../root/report/PlacesWithoutCoordinates.js:41
+#: ../root/search/components/PlaceResults.js:65
+msgid "Address"
+msgstr "Adres"
#: ../root/release/edit/recordings.tt:3
msgid ""
@@ -340,9 +343,17 @@ msgstr ""
msgid "An error occurred: "
msgstr ""
-#: ../root/release/edit/information.tt:249
-msgid "Annotation:"
-msgstr ""
+#: ../root/release/edit/information.tt:251
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
+#: ../root/annotation/AnnotationRevision.js:32
+#: ../root/annotation/EditAnnotation.js:74
+#: ../root/layout/components/Search.js:41
+#: ../root/report/hooks/useAnnotationColumns.js:28
+#: ../root/search/components/AnnotationResults.js:56
+#: ../root/search/components/SearchForm.js:45
+#: ../root/static/scripts/common/components/Annotation.js:51
+msgid "Annotation"
+msgstr "Adnotacja"
#: ../root/edit/search_macros.tt:423
msgid "Applied Edit Count of Editor"
@@ -354,7 +365,9 @@ msgctxt "vote"
msgid "Approve"
msgstr "Zezwól"
-#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Area.pm:7
+#: ../root/artist/edit_form.tt:20 ../root/edit/search_macros.tt:423
+#: ../root/label/edit_form.tt:18 ../root/place/edit_form.tt:19
+#: ../lib/MusicBrainz/Server/Edit/Area.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:44
#: ../root/components/list/AreaList.js:46
#: ../root/components/list/ArtistList.js:92
@@ -364,8 +377,11 @@ msgstr "Zezwól"
#: ../root/edit/details/AddPlace.js:61 ../root/edit/details/EditArea.js:43
#: ../root/edit/details/EditArtist.js:108 ../root/edit/details/EditLabel.js:119
#: ../root/edit/details/EditPlace.js:75 ../root/layout/components/Search.js:35
+#: ../root/layout/components/sidebar/ArtistSidebar.js:126
+#: ../root/layout/components/sidebar/LabelSidebar.js:90
+#: ../root/layout/components/sidebar/PlaceSidebar.js:91
#: ../root/report/PlacesWithoutCoordinates.js:42
-#: ../root/search/components/ArtistResults.js:56
+#: ../root/search/components/ArtistResults.js:55
#: ../root/search/components/LabelResults.js:69
#: ../root/search/components/PlaceResults.js:66
#: ../root/search/components/SearchForm.js:43
@@ -379,18 +395,12 @@ msgstr "Rejon"
msgid "Area Details"
msgstr "Szczegóły rejonu"
-#: ../root/artist/edit_form.tt:20 ../root/label/edit_form.tt:18
-#: ../root/place/edit_form.tt:19
-#: ../root/layout/components/sidebar/ArtistSidebar.js:120
-#: ../root/layout/components/sidebar/LabelSidebar.js:87
-#: ../root/layout/components/sidebar/PlaceSidebar.js:88
-msgid "Area:"
-msgstr "Rejon:"
-
#: ../root/cdstub/cdstub.tt:7 ../root/cdtoc/attach_filter_release.tt:29
#: ../root/cdtoc/list.tt:8 ../root/cdtoc/lookup.tt:42
-#: ../root/edit/search_macros.tt:423 ../root/release/edit/tracklist.tt:163
-#: ../root/release/edit/tracklist.tt:453
+#: ../root/cdtoc/lookup.tt:75 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/information.tt:26 ../root/release/edit/tracklist.tt:110
+#: ../root/release/edit/tracklist.tt:163 ../root/release/edit/tracklist.tt:453
+#: ../root/release_group/set_cover_art.tt:32
#: ../lib/MusicBrainz/Server/Edit/Artist.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:38
#: ../root/cdstub/BrowseCDStubs.js:37 ../root/cdstub/CDStubInfo.js:28
@@ -415,8 +425,14 @@ msgstr "Rejon:"
#: ../root/edit/details/historic/AddRelease.js:38
#: ../root/edit/details/historic/AddRelease.js:90
#: ../root/edit/details/historic/AddTrackKV.js:41
-#: ../root/edit/details/historic/EditTrack.js:35 ../root/isrc/Index.js:67
+#: ../root/edit/details/historic/ChangeArtistQuality.js:24
+#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
+#: ../root/edit/details/historic/EditTrack.js:35
+#: ../root/edit/details/historic/MoveRelease.js:30
+#: ../root/edit/details/historic/RemoveRelease.js:26 ../root/isrc/Index.js:67
#: ../root/layout/components/Search.js:24
+#: ../root/layout/components/sidebar/RecordingSidebar.js:49
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
#: ../root/release_group/ReleaseGroupIndex.js:168
#: ../root/report/DuplicateArtists.js:67
#: ../root/report/DuplicateReleaseGroups.js:59
@@ -433,11 +449,12 @@ msgstr "Rejon:"
#: ../root/search/components/CDStubResults.js:45
#: ../root/search/components/RecordingResults.js:143
#: ../root/search/components/ReleaseGroupResults.js:64
-#: ../root/search/components/ReleaseResults.js:113
+#: ../root/search/components/ReleaseResults.js:112
#: ../root/search/components/SearchForm.js:37
#: ../root/static/scripts/common/constants.js:36
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:50
#: ../root/static/scripts/common/utility/formatSetlist.js:52
+#: ../root/static/scripts/edit/components/forms.js:29
#: ../root/static/scripts/release/components/MediumTable.js:86
#: ../root/taglookup/Form.js:25 ../root/user/UserProfile.js:50
msgid "Artist"
@@ -451,19 +468,6 @@ msgstr "Rejon artysty"
msgid "Artist Details"
msgstr ""
-#: ../root/cdtoc/lookup.tt:75 ../root/release/edit/information.tt:26
-#: ../root/release/edit/tracklist.tt:110
-#: ../root/release_group/set_cover_art.tt:32
-#: ../root/edit/details/historic/ChangeArtistQuality.js:24
-#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
-#: ../root/edit/details/historic/MoveRelease.js:30
-#: ../root/edit/details/historic/RemoveRelease.js:26
-#: ../root/layout/components/sidebar/RecordingSidebar.js:49
-#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
-#: ../root/static/scripts/edit/components/forms.js:29
-msgid "Artist:"
-msgstr "Artysta:"
-
#: ../root/cdtoc/attach_artist_releases.tt:40
#: ../root/cdtoc/attach_filter_release.tt:54
msgctxt "button/menu"
@@ -490,8 +494,19 @@ msgid "Attached to releases"
msgstr ""
#: ../root/relationship/linktype/form.tt:52
-msgid "Attributes:"
-msgstr ""
+#: ../root/admin/attributes/Attribute.js:72
+#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
+#: ../root/admin/attributes/Language.js:33
+#: ../root/admin/attributes/Script.js:33
+#: ../root/components/RelationshipsTable.js:336
+#: ../root/edit/details/AddRelationshipType.js:169
+#: ../root/edit/details/EditRelationshipType.js:297
+#: ../root/edit/details/RemoveRelationshipType.js:117
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
+#: ../root/utility/tableColumns.js:671
+msgid "Attributes"
+msgstr "Atrybuty"
#: ../root/edit/search_macros.tt:397
msgid "Auto-Editor"
@@ -500,6 +515,8 @@ msgstr "Auto-redaktor"
#: ../root/cdtoc/attach_artist_releases.tt:19
#: ../root/cdtoc/attach_filter_release.tt:33 ../root/cdtoc/list.tt:13
#: ../root/cdtoc/lookup.tt:47 ../root/release/edit/duplicates.tt:17
+#: ../root/release/edit/information.tt:222
+#: ../root/release_group/set_cover_art.tt:62
#: ../root/components/list/ReleaseList.js:139
#: ../root/edit/details/AddRelease.js:112
#: ../root/edit/details/EditBarcodes.js:45
@@ -509,20 +526,15 @@ msgstr "Auto-redaktor"
#: ../root/edit/details/MergeReleases.js:242
#: ../root/edit/details/historic/AddRelease.js:125
#: ../root/edit/details/historic/EditReleaseEvents.js:113
+#: ../root/layout/components/sidebar/CDStubSidebar.js:71
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:128
#: ../root/otherlookup/OtherLookupForm.js:62
#: ../root/release_group/ReleaseGroupIndex.js:174
#: ../root/report/ReleasesSameBarcode.js:40
-#: ../root/search/components/ReleaseResults.js:119
+#: ../root/search/components/ReleaseResults.js:118
msgid "Barcode"
msgstr ""
-#: ../root/release/edit/information.tt:220
-#: ../root/release_group/set_cover_art.tt:62
-#: ../root/layout/components/sidebar/CDStubSidebar.js:63
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:126
-msgid "Barcode:"
-msgstr "Kod kreskowy:"
-
#: ../root/cdtoc/lookup.tt:33
msgid ""
"Based on the above CD stub, we also found the following releases in "
@@ -538,15 +550,25 @@ msgid ""
"release on an existing release, select it below."
msgstr ""
-#: ../root/artist/edit_form.tt:42
-msgid "Begin Area:"
-msgstr "Rejon rozpoczęcia:"
+#: ../root/artist/edit_form.tt:42 ../root/components/list/ArtistList.js:102
+#: ../root/search/components/ArtistResults.js:57
+msgid "Begin Area"
+msgstr "Rejon rozpoczęcia"
#: ../root/artist/edit_form.tt:38 ../root/components/forms.tt:212
#: ../root/event/edit_form.tt:36 ../root/artist/utils.js:34
+#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
+#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
+#: ../root/edit/details/AddRemoveAlias.js:90
+#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
+#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
+#: ../root/edit/details/EditPlace.js:93
#: ../root/layout/components/sidebar/AreaSidebar.js:58
-msgid "Begin date:"
-msgstr "Data rozpoczęcia:"
+#: ../root/report/RecordingsWithFutureDates.js:34
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
+msgid "Begin date"
+msgstr "Data rozpoczęcia"
#: ../root/release/add_cover_art.tt:95 ../root/search/error/InternalError.js:29
msgid ""
@@ -637,39 +659,34 @@ msgstr "Anuluj"
msgid "Cardinality of {entity_placeholder}"
msgstr ""
-#: ../root/release/edit/information.tt:192
+#: ../root/release/edit/information.tt:194
msgid "Cat. No:"
msgstr "Nr kat.:"
#: ../root/cdtoc/attach_artist_releases.tt:18
#: ../root/cdtoc/attach_filter_release.tt:32 ../root/cdtoc/list.tt:12
#: ../root/cdtoc/lookup.tt:46 ../root/release/edit/duplicates.tt:16
+#: ../root/release_group/set_cover_art.tt:56
#: ../root/edit/details/MergeReleases.js:241
#: ../root/recording/RecordingIndex.js:62
#: ../root/release_group/ReleaseGroupIndex.js:173
-#: ../root/search/components/ReleaseResults.js:118
-#: ../root/utility/tableColumns.js:482 ../root/utility/tableColumns.js:487
+#: ../root/search/components/ReleaseResults.js:117
+#: ../root/utility/tableColumns.js:487 ../root/utility/tableColumns.js:492
msgid "Catalog#"
msgstr ""
-#: ../root/release_group/set_cover_art.tt:56
-msgid "Catalog#:"
-msgstr ""
-
-#: ../root/admin/attributes/form.tt:53 ../root/admin/attributes/Attribute.js:82
-#: ../root/edit/details/AddRelationshipAttribute.js:50
-#: ../root/edit/details/EditRelationshipAttribute.js:93
-msgid "Child order"
-msgstr "Kolejność potomków"
-
+#: ../root/admin/attributes/form.tt:53
#: ../root/relationship/linkattributetype/form.tt:7
#: ../root/relationship/linktype/form.tt:7
+#: ../root/admin/attributes/Attribute.js:82
+#: ../root/edit/details/AddRelationshipAttribute.js:50
+#: ../root/edit/details/EditRelationshipAttribute.js:93
#: ../root/edit/details/EditRelationshipType.js:241
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:122
#: ../root/relationship/linktype/RelationshipTypeIndex.js:162
#: ../root/relationship/linktype/RelationshipTypePairTree.js:58
-msgid "Child order:"
-msgstr ""
+msgid "Child order"
+msgstr "Kolejność potomków"
#: ../root/release/edit/recordings.tt:114
msgid "Click Edit to edit the recording associations for this disc."
@@ -680,6 +697,7 @@ msgid "Close"
msgstr "Zamknij"
#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditHeader.js:155
+#: ../root/edit/components/EditSidebar.js:59
msgid "Closed"
msgstr "Zamknięte"
@@ -691,22 +709,15 @@ msgstr ""
msgid "Collapse medium"
msgstr ""
-#: ../root/cdstub/index.tt:3 ../root/cdstub/CDStubIndex.js:36
+#: ../root/cdstub/index.tt:3 ../root/release/add_cover_art.tt:69
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:71 ../root/cdstub/CDStubIndex.js:36
msgid "Comment"
msgstr ""
-#: ../root/release/add_cover_art.tt:69 ../root/release/add_cover_art.tt:137
-#: ../root/release/reorder_cover_art.tt:19
-#: ../root/release_group/set_cover_art.tt:71
-#: ../root/edit/details/AddCoverArt.js:54
-#: ../root/edit/details/EditCoverArt.js:67
-#: ../root/edit/details/RemoveCoverArt.js:56
-#: ../root/release/CoverArtFields.js:93
-msgid "Comment:"
-msgstr ""
-
#: ../root/place/edit_form.tt:28 ../root/edit/details/AddPlace.js:67
#: ../root/edit/details/EditPlace.js:86
+#: ../root/layout/components/sidebar/PlaceSidebar.js:99
msgid "Coordinates"
msgstr "Współrzędne"
@@ -734,33 +745,26 @@ msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:44 ../root/release/edit/duplicates.tt:14
+#: ../root/release/edit/information.tt:156
+#: ../root/release_group/set_cover_art.tt:41
#: ../root/edit/details/EditReleaseLabel.js:113
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:122
#: ../root/edit/details/historic/EditReleaseEvents.js:110
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/common/components/FilterForm.js:187
-#: ../root/utility/tableColumns.js:504 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:509 ../root/utility/tableColumns.js:521
msgid "Country"
msgstr ""
-#: ../root/release/edit/information.tt:154
-#: ../root/release_group/set_cover_art.tt:41
-msgid "Country:"
-msgstr ""
-
#: ../root/release_group/set_cover_art.tt:67
#: ../root/components/EntityTabs.js:114 ../root/release/CoverArt.js:57
#: ../root/user/UserProfile.js:51
msgid "Cover Art"
msgstr "Okładka"
-#: ../root/edit/search_macros.tt:423
-msgid "Created"
-msgstr ""
-
#: ../root/release/add_cover_art.tt:85
msgid "Creating edit..."
msgstr "Tworzenie edycji..."
@@ -769,7 +773,7 @@ msgstr "Tworzenie edycji..."
msgid "Custom delimiter"
msgstr ""
-#: ../root/release/edit/information.tt:146
+#: ../root/release/edit/information.tt:148
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:253
#: ../root/static/scripts/edit/components/PartialDateInput.js:186
msgid "DD"
@@ -784,6 +788,8 @@ msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:43 ../root/release/edit/duplicates.tt:13
+#: ../root/release/edit/information.tt:130
+#: ../root/release_group/set_cover_art.tt:37
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:25
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:30
#: ../root/admin/statistics-events/StatisticsEventIndex.js:26
@@ -792,14 +798,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:121
#: ../root/edit/details/historic/EditReleaseEvents.js:109
-#: ../root/elections/ElectionVotes.js:28 ../root/recording/RecordingIndex.js:60
+#: ../root/elections/ElectionVotes.js:28
+#: ../root/layout/components/sidebar/EventSidebar.js:61
+#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
#: ../root/search/components/EventResults.js:74
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:106
#: ../root/static/scripts/common/components/FilterForm.js:225
-#: ../root/utility/tableColumns.js:279 ../root/utility/tableColumns.js:284
-#: ../root/utility/tableColumns.js:510 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:284 ../root/utility/tableColumns.js:289
+#: ../root/utility/tableColumns.js:515 ../root/utility/tableColumns.js:521
msgid "Date"
msgstr "Data"
@@ -809,12 +817,6 @@ msgstr "Data"
msgid "Date Period"
msgstr ""
-#: ../root/release/edit/information.tt:128
-#: ../root/release_group/set_cover_art.tt:37
-#: ../root/layout/components/sidebar/EventSidebar.js:59
-msgid "Date:"
-msgstr ""
-
#: ../root/artist/edit_form.tt:36 ../root/components/forms.tt:210
#: ../root/event/edit_form.tt:34
#: ../root/static/scripts/edit/components/DateRangeFieldset.js:186
@@ -823,11 +825,10 @@ msgid ""
"YYYY are OK, or you can omit the date entirely."
msgstr ""
-#: ../root/edit/search_macros.tt:120
-msgid "Delete"
-msgstr ""
-
#: ../root/admin/attributes/form.tt:61 ../root/doc/edit_type.tt:23
+#: ../root/instrument/edit_form.tt:13
+#: ../root/relationship/linkattributetype/form.tt:15
+#: ../root/relationship/linktype/form.tt:20
#: ../root/admin/attributes/Attribute.js:80
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:33
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:42
@@ -847,19 +848,13 @@ msgstr ""
#: ../root/instrument/InstrumentIndex.js:34
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:110
#: ../root/relationship/linktype/RelationshipTypeIndex.js:146
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
#: ../root/search/components/InstrumentResults.js:55
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:206
-#: ../root/utility/tableColumns.js:676
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:209
+#: ../root/utility/tableColumns.js:681
msgid "Description"
msgstr ""
-#: ../root/instrument/edit_form.tt:13
-#: ../root/relationship/linkattributetype/form.tt:15
-#: ../root/relationship/linktype/form.tt:20
-#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
-msgid "Description:"
-msgstr "Opis:"
-
#: ../root/doc/edit_type.tt:28 ../root/components/EntityTabs.js:146
#: ../root/elections/ElectionDetails.js:29 ../root/entity/Details.js:91
#: ../root/entity/Details.js:93
@@ -869,7 +864,7 @@ msgstr "Szczegóły"
#: ../root/area/edit_form.tt:10 ../root/artist/edit_form.tt:14
#: ../root/event/edit_form.tt:13 ../root/instrument/edit_form.tt:10
#: ../root/label/edit_form.tt:13 ../root/place/edit_form.tt:13
-#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:256
+#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:258
#: ../root/release_group/edit_form.tt:15 ../root/series/edit_form.tt:13
#: ../root/work/edit_form.tt:13 ../root/edit/details/AddArea.js:54
#: ../root/edit/details/AddArtist.js:62 ../root/edit/details/AddEvent.js:44
@@ -892,7 +887,13 @@ msgstr "Szczegóły"
msgid "Disambiguation"
msgstr ""
-#: ../root/release/discids.tt:8 ../root/edit/details/SetTrackLengths.js:54
+#: ../root/release/discids.tt:8 ../root/cdtoc/CDTocInfo.js:32
+#: ../root/edit/details/AddDiscId.js:34 ../root/edit/details/MoveDiscId.js:26
+#: ../root/edit/details/RemoveDiscId.js:31
+#: ../root/edit/details/SetTrackLengths.js:54
+#: ../root/edit/details/historic/AddDiscId.js:27
+#: ../root/edit/details/historic/MoveDiscId.js:21
+#: ../root/edit/details/historic/RemoveDiscId.js:23
#: ../root/otherlookup/OtherLookupForm.js:112
#: ../root/utility/tableColumns.js:199 ../root/utility/tableColumns.js:204
msgid "Disc ID"
@@ -920,15 +921,23 @@ msgid "Do not use any of the above releases as a starting point"
msgstr ""
#: ../root/relationship/linktype/form.tt:65
-msgid "Documentation:"
-msgstr ""
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
+#: ../root/edit/details/AddRelationshipType.js:187
+#: ../root/edit/details/EditRelationshipType.js:327
+#: ../root/layout/components/BottomMenu.js:293
+#: ../root/layout/components/Search.js:51
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
+#: ../root/search/components/SearchForm.js:56
+msgid "Documentation"
+msgstr "Dokumentacja"
#: ../root/layout.tt:112 ../root/layout/components/Footer.js:26
msgid "Donate"
msgstr " Darowizna"
#: ../root/release/edit/macros.tt:54
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:166
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:165
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:219
#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:64
#: ../root/static/scripts/edit/components/URLInputPopover.js:134
@@ -1003,12 +1012,12 @@ msgid "Edit Relationship Type"
msgstr ""
#: ../root/doc/edit_type.tt:18 ../root/doc/edit_types.tt:1
-#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:96
+#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:99
#: ../root/layout/components/BottomMenu.js:315
msgid "Edit Types"
msgstr "Typy Edycji"
-#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:28
+#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:26
#: ../root/static/scripts/edit/components/URLInputPopover.js:146
msgid "Edit URL"
msgstr "Edytuj adres URL"
@@ -1040,15 +1049,26 @@ msgstr ""
msgid "Enable vinyl track numbers"
msgstr ""
-#: ../root/artist/edit_form.tt:56
-msgid "End Area:"
+#: ../root/artist/edit_form.tt:56 ../root/components/list/ArtistList.js:112
+#: ../root/search/components/ArtistResults.js:59
+msgid "End Area"
msgstr ""
#: ../root/artist/edit_form.tt:51 ../root/components/forms.tt:214
#: ../root/event/edit_form.tt:38 ../root/artist/utils.js:65
+#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
+#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
+#: ../root/edit/details/AddRemoveAlias.js:97
+#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
+#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
+#: ../root/edit/details/EditPlace.js:101
+#: ../root/elections/ElectionTable/index.js:25
#: ../root/layout/components/sidebar/AreaSidebar.js:64
-msgid "End date:"
-msgstr "Data zakończenia:"
+#: ../root/report/RecordingsWithFutureDates.js:39
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
+msgid "End date"
+msgstr "Data zakończenia"
#: ../root/relationship/linktype/form.tt:112
msgid "Endpoint:"
@@ -1081,6 +1101,10 @@ msgid ""
"(valid {url|regular expressions} are accepted)."
msgstr ""
+#: ../root/edit/search_macros.tt:423
+msgid "Entered"
+msgstr ""
+
#: ../root/components/forms.tt:30
msgid ""
"Entering an {note|edit note} that describes where you got your information "
@@ -1141,7 +1165,7 @@ msgstr ""
#: ../root/area/edit_form.tt:22 ../root/artist/edit_form.tt:70
#: ../root/event/edit_form.tt:46 ../root/instrument/edit_form.tt:32
#: ../root/label/edit_form.tt:41 ../root/place/edit_form.tt:37
-#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:266
+#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:268
#: ../root/release_group/edit_form.tt:23 ../root/series/edit_form.tt:26
#: ../root/work/edit_form.tt:90
#: ../root/static/scripts/genre/components/GenreEditForm.js:160
@@ -1180,25 +1204,21 @@ msgid "For more information, check the {doc_doc|documentation}."
msgstr ""
#: ../root/cdtoc/list.tt:9 ../root/release/edit/duplicates.tt:11
+#: ../root/release/edit/tracklist.tt:305
+#: ../root/release_group/set_cover_art.tt:46
#: ../root/components/list/ReleaseList.js:98
-#: ../root/edit/details/EditMedium.js:485
+#: ../root/edit/details/AddMedium.js:136 ../root/edit/details/EditMedium.js:485
#: ../root/edit/details/EditReleaseLabel.js:131
#: ../root/edit/details/MergeReleases.js:237
#: ../root/edit/details/historic/AddRelease.js:126
#: ../root/edit/details/historic/EditReleaseEvents.js:114
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:137
#: ../root/release_group/ReleaseGroupIndex.js:169
#: ../root/report/components/CDTocList.js:49
-#: ../root/search/components/ReleaseResults.js:114
+#: ../root/search/components/ReleaseResults.js:113
msgid "Format"
msgstr ""
-#: ../root/release/edit/tracklist.tt:305
-#: ../root/release_group/set_cover_art.tt:46
-#: ../root/edit/details/AddMedium.js:136
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:132
-msgid "Format:"
-msgstr "Format:"
-
#: ../root/layout.tt:114 ../root/layout/components/Footer.js:28
#: ../root/main/index.js:212
msgid "Forums"
@@ -1246,12 +1266,14 @@ msgstr "Notatki o częstotliwości:"
msgid "Full TOC:"
msgstr ""
-#: ../root/artist/edit_form.tt:17
-#: ../root/layout/components/sidebar/ArtistSidebar.js:84
-#: ../root/static/scripts/account/components/EditProfileForm.js:207
+#: ../root/artist/edit_form.tt:17 ../root/components/list/ArtistList.js:87
+#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
+#: ../root/layout/components/sidebar/ArtistSidebar.js:89
+#: ../root/search/components/ArtistResults.js:54
+#: ../root/static/scripts/account/components/EditProfileForm.js:237
#: ../root/user/UserProfile.js:268
-msgid "Gender:"
-msgstr "Płeć:"
+msgid "Gender"
+msgstr "Płeć"
#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Genre.pm:7
#: ../root/edit/details/AddGenre.js:24 ../root/edit/details/EditGenre.js:28
@@ -1336,7 +1358,7 @@ msgstr ""
msgid "Historic"
msgstr "Historia"
-#: ../root/release/edit/information.tt:325
+#: ../root/release/edit/information.tt:339
msgid "I confirm that this is the barcode as it appears on the release."
msgstr "Potwierdzam, że jest to kod kreskowy widoczny na wydaniu."
@@ -1363,73 +1385,65 @@ msgstr ""
#: ../root/edit/search_macros.tt:423 ../root/admin/attributes/Attribute.js:78
#: ../root/admin/attributes/Language.js:39
#: ../root/admin/attributes/Script.js:40
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
msgid "ID"
msgstr ""
#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
#: ../root/edit/details/AddArtist.js:136 ../root/edit/details/AddLabel.js:102
+#: ../root/layout/components/sidebar/SidebarIpis.js:18
msgid "IPI code"
msgstr "Kod IPI"
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/EditArtist.js:162 ../root/edit/details/EditLabel.js:131
+msgid "IPI codes"
+msgstr ""
+
#: ../root/components/forms.tt:333
msgid ""
"IPI codes are assigned by CISAC to “interested parties” in musical rights "
"management. Check {ipi_doc|the documentation} for more info."
msgstr ""
-#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
-#: ../root/edit/details/EditArtist.js:162
-msgid "IPI codes:"
-msgstr "Kody IPI:"
-
#: ../root/layout.tt:115
msgid "IRC"
msgstr ""
#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
#: ../root/edit/details/AddArtist.js:145 ../root/edit/details/AddLabel.js:111
+#: ../root/layout/components/sidebar/SidebarIsnis.js:22
msgid "ISNI code"
msgstr ""
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/EditArtist.js:170 ../root/edit/details/EditLabel.js:140
+msgid "ISNI codes"
+msgstr ""
+
#: ../root/components/forms.tt:342
msgid ""
"ISNI codes are an ISO standard used to uniquely identify persons and "
"organizations. Check {isni_doc|the documentation} for more info."
msgstr ""
-#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
-#: ../root/edit/details/EditArtist.js:170
-msgid "ISNI codes:"
-msgstr ""
-
#: ../root/area/edit_form.tt:12 ../root/edit/details/AddArea.js:68
#: ../root/edit/details/EditArea.js:82
-msgid "ISO 3166-1"
-msgstr ""
-
-#: ../root/area/edit_form.tt:12
#: ../root/layout/components/sidebar/AreaSidebar.js:71
-msgid "ISO 3166-1:"
+msgid "ISO 3166-1"
msgstr ""
#: ../root/area/edit_form.tt:13 ../root/edit/details/AddArea.js:75
#: ../root/edit/details/EditArea.js:89
-msgid "ISO 3166-2"
-msgstr ""
-
-#: ../root/area/edit_form.tt:13
#: ../root/layout/components/sidebar/AreaSidebar.js:81
-msgid "ISO 3166-2:"
+msgid "ISO 3166-2"
msgstr ""
#: ../root/area/edit_form.tt:14 ../root/edit/details/AddArea.js:82
#: ../root/edit/details/EditArea.js:96
-msgid "ISO 3166-3"
-msgstr ""
-
-#: ../root/area/edit_form.tt:14
#: ../root/layout/components/sidebar/AreaSidebar.js:91
-msgid "ISO 3166-3:"
+msgid "ISO 3166-3"
msgstr ""
#: ../root/admin/attributes/form.tt:8 ../root/admin/attributes/Language.js:41
@@ -1463,9 +1477,14 @@ msgstr "Numer ISO"
msgid "ISRC"
msgstr ""
-#: ../root/recording/edit_form.tt:45
-msgid "ISRCs:"
-msgstr "ISRC:"
+#: ../root/recording/edit_form.tt:45 ../root/report/ReportsIndex.js:606
+#: ../root/search/components/RecordingResults.js:144
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:721
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:411
+#: ../root/static/scripts/common/components/IsrcList.js:44
+#: ../root/utility/tableColumns.js:694
+msgid "ISRCs"
+msgstr ""
#: ../root/work/edit_form.tt:16 ../root/edit/details/AddWork.js:47
#: ../root/edit/details/EditWork.js:66 ../root/edit/details/RemoveIswc.js:27
@@ -1473,12 +1492,13 @@ msgstr "ISRC:"
#: ../root/report/IswcsWithManyWorks.js:49
#: ../root/search/components/WorkResults.js:57
#: ../root/static/scripts/common/components/IswcList.js:26
-#: ../root/utility/tableColumns.js:703
+#: ../root/utility/tableColumns.js:708
msgid "ISWC"
msgstr ""
-#: ../root/work/edit_form.tt:16
-msgid "ISWCs:"
+#: ../root/work/edit_form.tt:16 ../root/report/ReportsIndex.js:615
+#: ../root/static/scripts/common/components/IswcList.js:44
+msgid "ISWCs"
msgstr ""
#: ../root/event/edit_form.tt:26
@@ -1494,7 +1514,7 @@ msgid ""
"for this release."
msgstr ""
-#: ../root/release/edit/information.tt:298
+#: ../root/release/edit/information.tt:300
msgid ""
"If this is an Amazon ASIN, please do not enter it in the catalog number "
"field, but add it as a URL relationship later."
@@ -1510,7 +1530,7 @@ msgstr ""
msgid "If you can't find what you're looking for, you can add a new release:"
msgstr ""
-#: ../root/release/edit/information.tt:316
+#: ../root/release/edit/information.tt:330
msgid ""
"If you do not know whether the release has a barcode or not, just leave this "
"blank."
@@ -1529,8 +1549,8 @@ msgstr ""
#: ../root/release/edit/information.tt:54
msgid ""
-"If you don’t select an existing release group, a new one will be created "
-"with the types selected below."
+"If you don’t select an existing release group, a new one will be added with "
+"the types selected below."
msgstr ""
#: ../root/release/edit/tracklist.tt:5
@@ -1608,21 +1628,21 @@ msgid ""
"Keep in mind that recording durations are {doc_link|recalculated from "
"tracks} once the duration of a track changes. As such, if you correct the "
"duration of a track whose recording is only used in this release, just reuse "
-"the old recording, don’t create a new one. If the recording is also used "
-"elsewhere and the durations are significantly different, consider creating a "
+"the old recording, don’t add a new one. If the recording is also used "
+"elsewhere and the durations are significantly different, consider adding a "
"new recording instead."
msgstr ""
#: ../root/release/edit/tracklist.tt:502
msgid ""
-"Keep in mind that unselecting this will delete the track if the medium has a "
+"Keep in mind that unselecting this will remove the track if the medium has a "
"disc ID! If you unselect it by mistake, please readd the pregap track before "
"submitting."
msgstr ""
#: ../root/release/edit/tracklist.tt:517
msgid ""
-"Keep in mind that unselecting this will delete the tracks if the medium has "
+"Keep in mind that unselecting this will remove the tracks if the medium has "
"a disc ID! If you unselect it by mistake, please readd the data tracks "
"before submitting."
msgstr ""
@@ -1631,12 +1651,16 @@ msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:31 ../root/cdtoc/list.tt:11
#: ../root/cdtoc/lookup.tt:45 ../root/edit/search_macros.tt:423
#: ../root/release/edit/duplicates.tt:15
+#: ../root/release/edit/information.tt:179
+#: ../root/release_group/set_cover_art.tt:52
#: ../lib/MusicBrainz/Server/Edit/Label.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:43
#: ../root/components/list/LabelList.js:54 ../root/edit/details/AddLabel.js:31
+#: ../root/edit/details/AddReleaseLabel.js:35
#: ../root/edit/details/EditLabel.js:43
#: ../root/edit/details/EditReleaseLabel.js:51
#: ../root/edit/details/MergeReleases.js:240
+#: ../root/edit/details/RemoveReleaseLabel.js:31
#: ../root/edit/details/historic/AddRelease.js:123
#: ../root/edit/details/historic/EditReleaseEvents.js:111
#: ../root/label/LabelHeader.js:25 ../root/layout/components/Search.js:37
@@ -1645,13 +1669,13 @@ msgstr ""
#: ../root/report/ReleaseLabelSameArtist.js:31
#: ../root/report/components/LabelList.js:47
#: ../root/report/components/LabelUrlList.js:35
-#: ../root/search/components/ReleaseResults.js:117
+#: ../root/search/components/ReleaseResults.js:116
#: ../root/search/components/SearchForm.js:42
#: ../root/static/scripts/common/components/FilterForm.js:168
#: ../root/static/scripts/common/constants.js:40
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:60
-#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:533
-#: ../root/utility/tableColumns.js:538
+#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:538
+#: ../root/utility/tableColumns.js:543
msgid "Label"
msgstr "Wytwórnia"
@@ -1663,28 +1687,31 @@ msgstr "Rejon wytwórni"
msgid "Label Details"
msgstr ""
-#: ../root/label/edit_form.tt:28
-#: ../root/layout/components/sidebar/LabelSidebar.js:81
-msgid "Label code:"
+#: ../root/label/edit_form.tt:28 ../root/edit/details/AddLabel.js:94
+#: ../root/edit/details/EditLabel.js:85
+#: ../root/layout/components/sidebar/LabelSidebar.js:83
+msgid "Label code"
msgstr ""
-#: ../root/release/edit/information.tt:177
-#: ../root/release_group/set_cover_art.tt:52
-#: ../root/edit/details/AddReleaseLabel.js:35
-#: ../root/edit/details/RemoveReleaseLabel.js:31
-msgid "Label:"
-msgstr "Wytwórnia:"
-
#: ../root/release/edit/information.tt:114
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:177
-msgid "Language:"
+#: ../root/admin/attributes/Language.js:31
+#: ../root/admin/attributes/Language.js:34
+#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
+#: ../root/edit/details/EditRelease.js:113
+#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:191
+#: ../root/report/IswcsWithManyWorks.js:54
+#: ../root/search/components/ReleaseResults.js:119
+#: ../root/utility/tableColumns.js:559
+msgid "Language"
msgstr ""
#: ../root/layout.tt:139 ../root/layout/components/Footer.js:85
msgid "Last replication packet received at {datetime}"
msgstr "Ostatni pakiet replikacji otrzymany {datetime}"
-#: ../root/cdstub/cdstub.tt:9 ../root/release/discids.tt:10
+#: ../root/cdstub/cdstub.tt:9 ../root/recording/edit_form.tt:35
+#: ../root/recording/edit_form.tt:38 ../root/release/discids.tt:10
#: ../root/release/edit/tracklist.tt:164 ../root/release/edit/tracklist.tt:454
#: ../root/cdstub/CDStubInfo.js:29 ../root/cdtoc/AttachCDTocConfirmation.js:72
#: ../root/cdtoc/CDTocInfo.js:54 ../root/components/RelationshipsTable.js:338
@@ -1696,6 +1723,8 @@ msgstr "Ostatni pakiet replikacji otrzymany {datetime}"
#: ../root/edit/details/EditRecording.js:69
#: ../root/edit/details/historic/AddRelease.js:91
#: ../root/edit/details/historic/AddTrackKV.js:54 ../root/isrc/Index.js:68
+#: ../root/layout/components/sidebar/RecordingSidebar.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:146
#: ../root/recording/RecordingIndex.js:55
#: ../root/report/IsrcsWithManyRecordings.js:61
#: ../root/report/components/CDTocList.js:54
@@ -1704,12 +1733,6 @@ msgstr "Ostatni pakiet replikacji otrzymany {datetime}"
msgid "Length"
msgstr "Długość"
-#: ../root/recording/edit_form.tt:35 ../root/recording/edit_form.tt:38
-#: ../root/layout/components/sidebar/RecordingSidebar.js:54
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:138
-msgid "Length:"
-msgstr "Długość:"
-
#: ../root/release/edit/tracklist.tt:54
msgid "Lines contain track artists"
msgstr ""
@@ -1740,7 +1763,7 @@ msgstr "Zaloguj się"
msgid "Long link phrase:"
msgstr ""
-#: ../root/release/edit/recordings.tt:175
+#: ../root/release/edit/recordings.tt:186
msgid "Looking for suggested recordings..."
msgstr ""
@@ -1748,7 +1771,7 @@ msgstr ""
msgid "Lookup CD"
msgstr ""
-#: ../root/release/edit/information.tt:139
+#: ../root/release/edit/information.tt:141
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:252
#: ../root/static/scripts/edit/components/PartialDateInput.js:174
msgid "MM"
@@ -1771,7 +1794,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Medium.pm:8
#: ../root/cdtoc/AttachCDTocConfirmation.js:65
#: ../root/cdtoc/SetTracklistDurations.js:56
-#: ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/RemoveDiscId.js:25
#: ../root/edit/details/RemoveMedium.js:71
#: ../root/edit/details/SetTrackLengths.js:40
#: ../root/search/components/RecordingResults.js:148
@@ -1786,8 +1810,9 @@ msgstr ""
#: ../root/layout/merge-helper.tt:30
#: ../root/layout/components/MergeHelper.js:71
#: ../root/layout/components/sidebar/MergeLink.js:34
+msgctxt "button/link"
msgid "Merge"
-msgstr "Scal"
+msgstr ""
#: ../root/layout/merge-helper.tt:3 ../root/layout/components/MergeHelper.js:30
msgid "Merge Process"
@@ -1826,7 +1851,12 @@ msgid "Move track up"
msgstr ""
#: ../root/admin/attributes/form.tt:7 ../root/admin/attributes/form.tt:23
-#: ../root/admin/attributes/form.tt:58 ../root/admin/attributes/Attribute.js:79
+#: ../root/admin/attributes/form.tt:58 ../root/components/forms.tt:226
+#: ../root/relationship/linkattributetype/form.tt:12
+#: ../root/relationship/linktype/form.tt:12
+#: ../root/relationship/linktype/form.tt:77
+#: ../root/relationship/linktype/form.tt:107
+#: ../root/admin/attributes/Attribute.js:79
#: ../root/admin/attributes/Language.js:40
#: ../root/admin/attributes/Script.js:41
#: ../root/components/Aliases/ArtistCreditList.js:50
@@ -1834,7 +1864,7 @@ msgstr ""
#: ../root/edit/details/AddArea.js:41 ../root/edit/details/AddArtist.js:51
#: ../root/edit/details/AddEvent.js:38 ../root/edit/details/AddGenre.js:35
#: ../root/edit/details/AddInstrument.js:41 ../root/edit/details/AddLabel.js:41
-#: ../root/edit/details/AddPlace.js:38
+#: ../root/edit/details/AddMedium.js:129 ../root/edit/details/AddPlace.js:38
#: ../root/edit/details/AddRelationshipAttribute.js:34
#: ../root/edit/details/AddRelationshipType.js:66
#: ../root/edit/details/AddRelease.js:51
@@ -1864,36 +1894,27 @@ msgstr ""
#: ../root/entity/Details.js:96
#: ../root/search/components/AnnotationResults.js:55
#: ../root/search/components/AreaResults.js:63
-#: ../root/search/components/ArtistResults.js:52
+#: ../root/search/components/ArtistResults.js:51
#: ../root/search/components/EditorResults.js:42
#: ../root/search/components/EventResults.js:73
#: ../root/search/components/InstrumentResults.js:53
#: ../root/search/components/LabelResults.js:66
#: ../root/search/components/PlaceResults.js:63
#: ../root/search/components/RecordingResults.js:141
-#: ../root/search/components/ReleaseResults.js:112
+#: ../root/search/components/ReleaseResults.js:111
#: ../root/search/components/SeriesResults.js:57
#: ../root/search/components/TagResults.js:51
#: ../root/search/components/WorkResults.js:54
#: ../root/static/scripts/account/components/ApplicationForm.js:81
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:197
#: ../root/static/scripts/common/components/FilterForm.js:135
#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:112
#: ../root/static/scripts/genre/components/GenreEditForm.js:147
+#: ../root/static/scripts/release/components/EditWorkDialog.js:166
#: ../root/user/UserSubscriptions.js:48
msgid "Name"
msgstr "Nazwa"
-#: ../root/components/forms.tt:226
-#: ../root/relationship/linkattributetype/form.tt:12
-#: ../root/relationship/linktype/form.tt:12
-#: ../root/relationship/linktype/form.tt:77
-#: ../root/relationship/linktype/form.tt:107
-#: ../root/edit/details/AddMedium.js:129
-#: ../root/static/scripts/release/components/EditWorkDialog.js:166
-msgid "Name:"
-msgstr ""
-
#: ../root/artist/edit_credit.tt:18 ../root/artist/split.tt:45
msgid "New Artist Credit"
msgstr ""
@@ -1946,7 +1967,7 @@ msgstr ""
"ustawić okładki."
#: ../root/release/edit/tracklist.tt:140 ../root/admin/IpLookup.js:38
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:468
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:472
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:88
msgid "No results"
msgstr "Brak wyników"
@@ -1978,21 +1999,25 @@ msgid ""
"because they have the wrong number of tracks."
msgstr ""
-#: ../root/release/edit/information.tt:283
+#: ../root/release/edit/recordings.tt:3 ../root/edit/details/EditRelease.js:164
+#: ../root/edit/details/MergeReleases.js:347
+#: ../root/edit/details/SetTrackLengths.js:74
+#: ../root/edit/details/historic/MergeReleases.js:55
+#: ../root/user/ReportUser.js:116
+msgid "Note"
+msgstr ""
+
+#: ../root/release/edit/information.tt:285
msgid ""
"Note! If you do not know the month or day of release, please leave them "
"empty. January 1st is not often the actual release date, please double "
"check that you have entered the release date correctly."
msgstr ""
-#: ../root/release/edit/recordings.tt:3
-msgid "Note:"
-msgstr ""
-
#: ../root/edit/search_macros.tt:243
msgid ""
-"Note: only searches edits that: add or edit relationships, created after "
-"2011-05-16; or which remove relationships, created after 2013-07-08; or "
+"Note: only searches edits that: add or edit relationships, entered after "
+"2011-05-16; or which remove relationships, entered after 2013-07-08; or "
"which reorder relationships."
msgstr ""
@@ -2033,29 +2058,31 @@ msgstr ""
msgid "Orderable direction:"
msgstr ""
-#: ../root/series/edit_form.tt:17
-msgid "Ordering Type:"
+#: ../root/series/edit_form.tt:17 ../root/edit/details/AddSeries.js:52
+#: ../root/edit/details/EditSeries.js:66
+#: ../root/layout/components/sidebar/SeriesSidebar.js:53
+#: ../root/utility/tableColumns.js:765
+msgid "Ordering Type"
msgstr ""
#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:77
msgid "PDF file"
msgstr "Plik PDF"
-#: ../root/release/edit/information.tt:238
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:156
-msgid "Packaging:"
+#: ../root/release/edit/information.tt:240
+#: ../root/edit/details/AddRelease.js:105
+#: ../root/edit/details/EditRelease.js:137
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
+msgid "Packaging"
msgstr ""
#: ../root/admin/attributes/form.tt:50
-#: ../root/edit/details/AddRelationshipAttribute.js:55
-#: ../root/edit/details/EditRelationshipAttribute.js:85
-msgid "Parent"
-msgstr ""
-
#: ../root/relationship/linkattributetype/form.tt:4
#: ../root/relationship/linktype/form.tt:4
+#: ../root/edit/details/AddRelationshipAttribute.js:55
+#: ../root/edit/details/EditRelationshipAttribute.js:85
#: ../root/edit/details/EditRelationshipType.js:317
-msgid "Parent:"
+msgid "Parent"
msgstr ""
#: ../root/release/edit/tracklist.tt:238
@@ -2083,10 +2110,10 @@ msgstr "Szczegóły miejsca"
msgid "Please choose a condition"
msgstr "Wybierz stan"
-#: ../root/release/edit/information.tt:312
+#: ../root/release/edit/information.tt:326
msgid ""
-"Please enter the barcode of the release you are entering, see Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2107,15 +2134,12 @@ msgstr "Zapoznaj się z dokumentacją {doc|typów okładek} zawierającą ich op
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2166,7 +2190,7 @@ msgstr[3] "Ocena: {rating} gwiazdek"
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr "Nagranie"
@@ -2207,27 +2231,32 @@ msgstr "Redaktor relacji"
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2250,7 +2279,7 @@ msgstr ""
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2270,10 +2299,6 @@ msgstr "Grupa wydań"
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2291,7 +2316,7 @@ msgstr ""
msgid "Release Quality"
msgstr "Jakość wydania"
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2315,16 +2340,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2340,7 +2357,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2350,11 +2367,11 @@ msgstr "Usuń"
msgid "Remove Example"
msgstr "Usuń przykład"
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr "Usuń wydarzenie wydania"
@@ -2365,7 +2382,7 @@ msgstr "Usuń atrybut"
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2426,7 +2443,7 @@ msgstr "Ponownie wykorzystaj wcześniejsze nagrania"
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2445,29 +2462,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "Zapisz"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
-msgstr ""
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr "Skrypt"
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2486,10 +2507,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2557,12 +2574,15 @@ msgid "Set cover art"
msgstr "Ustaw okładkę"
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
-msgstr ""
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
+msgstr "Wprowadź czasy utworów"
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
-msgstr "Setlista:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
+msgstr "Setlista"
#: ../root/edit/search_macros.tt:43
msgid ""
@@ -2593,9 +2613,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2606,25 +2633,33 @@ msgstr "Podziel artystę"
msgid "Split Into Separate Artists"
msgstr "Podziel na różnych artystów"
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr "Status"
#: ../root/release/edit/information.tt:111
-msgid "Status:"
-msgstr "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
+msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
msgid "Stop using beta site"
msgstr "Przestań korzystać z wersji beta"
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr "Wysyłanie edycji..."
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr "Sugerowane nagrania:"
@@ -2637,9 +2672,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr "Tagger"
@@ -2649,11 +2684,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2667,11 +2702,11 @@ msgstr "Dodane dane nie wprowadzają żadnych zmian do tych obecnych w bazie."
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr "Wprowadzona data jest nieprawidłowa."
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2683,7 +2718,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2691,6 +2734,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2709,7 +2758,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2747,7 +2796,7 @@ msgstr "Te współrzędne nie mogły zostać przetworzone."
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2799,14 +2848,14 @@ msgstr "Ten podmiot został usunięty i nie może być wyświetlony prawidłowo.
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr "To wydarzenie zostało anulowane."
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2866,7 +2915,7 @@ msgstr ""
msgid "This label has ended."
msgstr "Ta wytwórnia zakończyła swoją działalność."
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2905,8 +2954,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr "To nagranie jest materiałem wideo"
@@ -2923,7 +2972,7 @@ msgstr "Ta relacja jest przestarzała"
msgid "This relationship type does not have any examples."
msgstr "Ten typ relacji nie zawiera żadnych przykładów."
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2931,7 +2980,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2956,14 +3005,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
-msgstr "Czas:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
+msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2978,20 +3033,16 @@ msgstr "Czas:"
msgid "Title"
msgstr "Tytuł"
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -3021,6 +3072,7 @@ msgid "Tracklist"
msgstr "Lista utworów"
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -3028,7 +3080,7 @@ msgstr "Lista utworów"
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "Utwory"
@@ -3040,10 +3092,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3081,25 +3129,25 @@ msgstr "Twitter"
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr "Typ"
@@ -3110,7 +3158,7 @@ msgstr "Typ"
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3124,17 +3172,30 @@ msgstr "Typ:"
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
-msgstr ""
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr "URL"
#: ../root/release/edit/tracklist.tt:21
msgid "Unable to parse the tracklist you entered."
msgstr "Nie można przetworzyć wprowadzonej listy utworów."
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3211,7 +3272,7 @@ msgid "Voter"
msgstr "Głosujący"
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3223,23 +3284,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3297,7 +3355,7 @@ msgstr ""
msgid "Work Details"
msgstr "Szczegóły pracy"
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3335,11 +3393,11 @@ msgstr "Przeglądasz wydania {artist}."
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr "Nie możesz użyć tego samego kraju więcej niż raz."
@@ -3355,7 +3413,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr "Nie dokonałeś żadnych zmian!"
@@ -3382,8 +3440,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3392,8 +3450,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3477,8 +3535,10 @@ msgstr ""
msgid "any"
msgstr "jakiekolwiek"
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3986,12 +4046,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4076,25 +4136,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr "Wysoki"
@@ -4209,15 +4269,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr "Wyślij e-mail"
@@ -4295,7 +4355,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4378,7 +4438,7 @@ msgstr "Usuń rejon"
msgid "Remove area alias"
msgstr "Usuń alias rejonu"
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr "Edytuj rejon"
@@ -4411,7 +4471,7 @@ msgstr "Usuń artystę"
msgid "Remove artist alias"
msgstr "Usuń alias artysty"
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr "Edytuj artystę"
@@ -4453,8 +4513,8 @@ msgid "Add event annotation"
msgstr "Dodaj adnotację wydarzenia"
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr "Dodaj wydarzenie"
@@ -4466,7 +4526,7 @@ msgstr "Usuń wydarzenie"
msgid "Remove event alias"
msgstr "Usuń alias wydarzenia"
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr "Edytuj wydarzenie"
@@ -4500,7 +4560,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4522,8 +4582,8 @@ msgstr "Dodaj relację"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr "Dodaj wydanie"
@@ -4552,14 +4612,14 @@ msgstr "Zmień jakość danych artysty (historyczne)"
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr "Edytuj wydanie"
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4580,7 +4640,7 @@ msgstr "Edytuj zdarzenia wydania (historyczne)"
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr "Edytuj nagrania"
@@ -4633,11 +4693,6 @@ msgstr "Usuń wydania (historyczne)"
msgid "Convert release to multiple artists (historic)"
msgstr "Przekształć wydanie w wydanie autorstwa wielu artystów (historyczne)"
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr "Wprowadź czasy utworów"
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr "Dodaj alias instrumentu"
@@ -4689,7 +4744,7 @@ msgstr "Dodaj wytwórnię"
msgid "Remove label"
msgstr "Usuń wytwórnię"
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr "Edytuj wydawnictwo"
@@ -4736,7 +4791,7 @@ msgstr "Usuń miejsce"
msgid "Remove place alias"
msgstr "Usuń alias miejsca"
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr "Edytuj miejsce"
@@ -4787,8 +4842,12 @@ msgstr "Scal nagrania"
msgid "Remove ISRC"
msgstr "Usuń ISRC"
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr "Relacje"
@@ -4867,13 +4926,13 @@ msgstr "Edycja kodów kreskowych"
msgid "Edit cover art"
msgstr "Edytuj okładkę"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr "Edycja wytwórni wydania"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(nieznane)"
@@ -4901,6 +4960,8 @@ msgstr "Zmień kolejność mediów"
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr "Grupa wydań"
@@ -4914,7 +4975,7 @@ msgid "Add release group annotation"
msgstr "Dodaj adnotację do grupy wydań"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr "Dodaj grupę wydań"
@@ -4926,7 +4987,7 @@ msgstr "Usuń grupę wydań"
msgid "Remove release group alias"
msgstr "Usuń alias grupy wydań"
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr "Edycja grupy wydań"
@@ -5013,7 +5074,7 @@ msgstr "Usuń serię"
msgid "Remove series alias"
msgstr "Usuń alias serii"
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr "Edytuj serie"
@@ -5026,24 +5087,7 @@ msgstr "Edytuj alias serii"
msgid "Merge series"
msgstr "Scal serie"
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr "URL"
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -5061,6 +5105,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5074,11 +5119,11 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
-msgstr "Anulowane"
+msgstr ""
#: ../lib/MusicBrainz/Server/Edit/WikiDoc.pm:7
msgid "Wiki documentation"
@@ -5101,7 +5146,7 @@ msgid "Add ISWCs"
msgstr "Dodaj ISWC"
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr "Dodaj pracę"
@@ -5544,11 +5589,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr "To nie jest prawidłowy czas."
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
-msgstr "Podaj poprawny URL, np. „http://www.google.com/”"
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
+msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr "Protokół URL musi być protokołem HTTP, HTTPS lub FTP"
@@ -5639,22 +5684,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr "Podstawowy"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr "Zaawansowany"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr "Ojczysty"
@@ -5666,17 +5711,6 @@ msgstr "Do wyświetlenia twojego wieku potrzebujemy pełnej daty urodzenia."
msgid "Birth year must be after 1900"
msgstr "Rok urodzenia musi być większy od 1900"
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr "Adnotacja"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5691,17 +5725,6 @@ msgctxt "noun"
msgid "Tag"
msgstr "Tag"
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr "Dokumentacja"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5960,19 +5983,19 @@ msgstr ""
"Pseudowydanie jest duplikatem wydania przeznaczonym do tłumaczeń lub "
"transliteracji."
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr "{almost_last_list_item} i {last_list_item}"
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr "{list_item}, {rest}"
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5980,7 +6003,7 @@ msgstr "{list_item}, {rest}"
msgid "{last_list_item}"
msgstr "{last_list_item}"
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6102,9 +6125,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6464,12 +6488,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr "Edytowanie/głosowanie wyłączone"
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6503,14 +6527,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6526,7 +6551,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6563,20 +6588,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr "Atrybuty"
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6605,26 +6616,8 @@ msgstr "Czy na pewno chcesz usunąć atrybut {name}?"
msgid "Remove Attribute"
msgstr "Usuń atrybut"
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr ""
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr "Skrypt"
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6632,15 +6625,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6695,6 +6683,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr "Dodaj stronę"
@@ -6707,10 +6696,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6798,6 +6783,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6847,9 +6833,12 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
-msgstr "Podgląd:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
+msgstr ""
#: ../root/annotation/EditAnnotation.js:80
#: ../root/static/scripts/common/components/Annotation.js:71
@@ -6857,8 +6846,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6926,10 +6914,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr "Artyści"
@@ -6968,7 +6956,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -7017,7 +7005,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -7031,7 +7022,10 @@ msgstr "Relacje"
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7199,7 +7193,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7502,10 +7496,12 @@ msgid "Top CD Stubs"
msgstr "Top Szkiców CD"
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7538,7 +7534,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7554,7 +7550,7 @@ msgstr ""
"{pos} wydania {release} autorstwa {artist}?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7574,15 +7570,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7592,8 +7579,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Utwór"
@@ -7602,21 +7590,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Koniec"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7654,7 +7634,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7693,15 +7673,15 @@ msgstr "Zobacz wszystkie swoje kolekcje"
msgid "See all of {editor}'s public collections"
msgstr "Zobacz wszystkie publiczne kolekcje autorstwa {editor}"
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7794,7 +7774,7 @@ msgstr "Potwierdź"
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7809,20 +7789,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "Alias"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr "Data rozpoczęcia"
@@ -8000,7 +7970,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -8046,7 +8016,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8175,6 +8145,7 @@ msgstr "Subskrybcje"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8225,26 +8196,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Płeć"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "Rejon rozpoczęcia"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8256,13 +8211,6 @@ msgstr "Rola"
msgid "Code"
msgstr "Kod"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "Adres"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr "Nieokreślony typ"
@@ -8271,22 +8219,16 @@ msgstr "Nieokreślony typ"
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Status"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8411,7 +8353,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8629,7 +8571,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr "Głosowanie"
@@ -8658,7 +8600,8 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8683,7 +8626,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8692,15 +8635,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8723,24 +8666,15 @@ msgstr "Dodaj opis edycji"
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "Status:"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr "Otwarte:"
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "Zamknięte:"
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] "1 głos"
@@ -8748,28 +8682,27 @@ msgstr[1] "{n} jawne głosy"
msgstr[2] "{n} jawnych głosów"
msgstr[3] "{n} jawnych głosów"
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr "Surowe dane dla tej edycji"
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Dodaj notatkę"
@@ -8789,12 +8722,6 @@ msgstr "Ten użytkownik jest zautomatyzowany."
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8911,37 +8838,13 @@ msgstr "Ta adnotacja jest pusta."
msgid "Summary"
msgstr "Podsumowanie"
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr "Data rozpoczęcia"
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "Data zakończenia"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8953,18 +8856,21 @@ msgstr "(brak)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
-msgstr "Setlista"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
msgid "Client:"
@@ -8987,19 +8893,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -9058,29 +8964,23 @@ msgstr "(brak)"
msgid "(new release group)"
msgstr "(nowa grupa wydań)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "Status:"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr "Wydarzenia wydania"
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -9093,17 +8993,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -9111,7 +9011,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9152,14 +9052,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9184,11 +9076,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9214,25 +9101,10 @@ msgstr ""
msgid "Deprecated:"
msgstr "Przestarzałe:"
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9256,6 +9128,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9268,7 +9141,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9381,7 +9255,7 @@ msgid "New positions:"
msgstr "Nowe pozycje:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9402,11 +9276,11 @@ msgstr "Średnie {new} (nowe medium)"
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
-"Średnie {new} (przesunięte z pozycji {old})"
+"Średnie {new} (przesunięte z pozycji {old})"
#: ../root/edit/details/ReorderRelationships.js:21
msgid "Old Order"
@@ -9447,20 +9321,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9471,11 +9331,6 @@ msgstr "Numer ścieżki"
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9485,8 +9340,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9502,17 +9357,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "Dodano"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9551,41 +9414,39 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
-msgstr "Pierwszy popierający:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
-msgstr "Drugi popierający:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:59
msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "Głosy za:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "Głosy za"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "Głosy przeciw:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "Głosy przeciw"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -9601,47 +9462,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "Status:"
+msgid "Status"
+msgstr "Status"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "Pokaż szczegóły"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "Status"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "Głosy za"
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "Głosy przeciw"
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr "Głosuj"
@@ -10368,7 +10201,7 @@ msgstr "Wybory auto-redaktorów"
msgid "Privileged User Accounts"
msgstr "Konta Uprzywilejowanych Użytkowników"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Statystyki"
@@ -10520,7 +10353,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "Typy Relacji"
@@ -10687,39 +10520,33 @@ msgstr "Informacje o rejonie"
msgid "Artist information"
msgstr "Informacje o artyście"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "Dodaj nagranie"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "Podziel na różnych artystów"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "Dodano:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "Dodaj Disc ID do istniejącego wydania"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10837,11 +10664,11 @@ msgstr ""
msgid "Event information"
msgstr "Informacje o wydarzeniu"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10894,10 +10721,6 @@ msgctxt "place"
msgid "Closed"
msgstr "Zamknięte"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "Współrzędne:"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10910,7 +10733,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10941,27 +10764,27 @@ msgstr ""
msgid "No cover art available."
msgstr "Okładka nie jest dostępna."
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "Więcej szczegółów"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr "Ocena grupy wydań"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr "Recenzje grupy wydań"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr "Linki zewnętrzne grupy wydań"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr "Edytuj relacje"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10969,21 +10792,13 @@ msgstr ""
msgid "Series information"
msgstr "Informacje o serii"
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Ocena"
@@ -11124,7 +10939,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Treść błędu:"
@@ -11223,15 +11038,7 @@ msgstr ""
msgid "Request data:"
msgstr "Dane żądania:"
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Brak szczegółowych informacji o tym błędzie)"
@@ -11365,7 +11172,7 @@ msgstr "Nieprawidłowy MBID"
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11584,7 +11391,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11592,11 +11399,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "ID:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11608,6 +11410,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11641,16 +11444,12 @@ msgstr ""
msgid "Add child"
msgstr "Dodaj dziecko"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "Nie odnaleziono atrybutów relacji."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11670,7 +11469,7 @@ msgstr "Typ relacji w użyciu"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11744,7 +11543,7 @@ msgid "{type0}-{type1} relationship types"
msgstr "{type0}-{type1} typy relacji"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11763,7 +11562,7 @@ msgstr "Nie znaleziono typów relacji {type0}-{type1}."
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11877,8 +11676,8 @@ msgstr ""
"Czy na pewno chcesz usunąć poniższą okładkę z {release} autorstwa {artist}?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "Grupa wydań autorstwa {artist}"
@@ -12084,8 +11883,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -12095,10 +11894,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12132,7 +11931,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12141,7 +11940,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12421,7 +12220,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12501,7 +12300,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12628,8 +12427,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12800,13 +12599,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12984,7 +12783,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -13008,8 +12807,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13230,20 +13028,6 @@ msgstr "Adresy URL"
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13322,9 +13106,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13333,9 +13117,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13490,6 +13274,10 @@ msgstr ""
msgid "Last edited"
msgstr "Ostatnia edycja"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13499,7 +13287,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13510,7 +13298,7 @@ msgstr "Początek"
msgid "Alternatively, you may {uri|add a new area}."
msgstr "Możesz również {uri|dodać nowy rejon}."
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13520,11 +13308,12 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Lokalizacja"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13558,7 +13347,7 @@ msgstr "Możesz również {uri|dodać nowe nagranie}."
msgid "Alternatively, you may {uri|add a new release group}."
msgstr "Możesz również {uri|dodać nową grupę wydań}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr "Możesz również {uri|dodać nowe wydanie}."
@@ -13642,7 +13431,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13663,7 +13452,7 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
@@ -13671,36 +13460,37 @@ msgstr ""
"To jest serwer deweloperski. Twój adres e-mail nie jest prywatny, ani "
"zabezpieczony. Uważaj!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr "Jeśli zmienisz adres e-mail, będziesz musiał go zweryfikować."
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
-msgstr "Lokalizacja:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "Data urodzenia:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "Znane języki:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Dodaj język"
@@ -13751,16 +13541,16 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr "Wysyłaj wiadomości e-mail, gdy zostaną edytowane moje subskrypcje:"
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
-msgstr "Automatycznie subskrybuj mnie do artystów, których tworzę."
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
-msgstr "Automatycznie subskrybuj mnie to wytwórni, które tworzę."
+msgid "Automatically subscribe me to labels I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
-msgstr "Automatycznie subskrybuj mnie do serii, które tworzę."
+msgid "Automatically subscribe me to series I add."
+msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
msgid "Your username will be publicly visible."
@@ -13812,10 +13602,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13865,7 +13657,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13889,33 +13681,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "Pokaż więcej...."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "Szczegóły kolekcji"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13934,7 +13726,7 @@ msgid "Try with indexed search instead."
msgstr "Spróbuj wyszukiwarki indeksowanej."
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr "Szukaj wartości lub wklej MBID"
@@ -13943,32 +13735,27 @@ msgstr "Szukaj wartości lub wklej MBID"
msgid "Clear recent items"
msgstr "Wyczyść ostatnie pozycje"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr "Nic nie znaleziono? Spróbuj ponownie z wyszukiwaniem bezpośrednim."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr "Powolnie? Wróć do wyszukiwarki indeksowanej."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13978,8 +13765,14 @@ msgid "Vote on all edits:"
msgstr "Głosuj na wszystkie edycje"
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
-msgstr "Usuń notatkę"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
@@ -14016,11 +13809,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14121,15 +13914,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14242,7 +14035,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14545,31 +14338,31 @@ msgctxt "plural"
msgid "Series"
msgstr "Serie"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr "od {date} do ????"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14590,8 +14383,9 @@ msgid "Began:"
msgstr "Od:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "Do:"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -14647,8 +14441,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14738,113 +14532,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14891,53 +14685,53 @@ msgstr "Dodaj nową serię"
msgid "Add a new work"
msgstr "Dodaj nową pracę"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr "Artysta w MusicBrainz:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr "Łącznik:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr "Dodaj wykonawcę"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr "Zmień wszystkich artystów w tym wydaniu pasujących do \"{name}\""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14959,11 +14753,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14998,11 +14792,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -15064,10 +14858,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr "Wydarzenia wydania:"
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15404,8 +15195,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15620,14 +15411,14 @@ msgstr "Wprowadzony kod kreskowy nie jest prawidłowym kodem UPC lub EAN."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15636,7 +15427,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15688,34 +15479,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr "Podobne prace"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "Relacje wydania"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15742,15 +15533,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr "Typ pracy:"
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -16007,10 +15794,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -16073,23 +15856,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -16198,11 +15981,9 @@ msgstr "Redaktorzy treści bannerów"
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
-"Redaktorzy treści bannerów to użytkownicy, którzy mogą ustalać wiadomości "
-"wyświetlane na wszystkich stronach, np. po to, aby poinformować innych o "
-"nadchodzącej przerwie w działaniu serwisu."
#: ../root/user/PrivilegedUsers.js:114
msgid "The following {count} users are banner message editors:"
@@ -16429,10 +16210,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(ukryte)"
@@ -16474,192 +16251,186 @@ msgstr "nominuj na auto-redaktora"
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "Ostatnie logowanie:"
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Register Application"
+msgid "Restrictions"
+msgstr "Zarejestruj aplikację"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr "Subskrypcje:"
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Edycje"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Razem"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Zaakceptowane"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
"Poniższa tabela przedstawia zestawienie głosów oddanych przez tego redaktora."
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr "Zgłoś użytkownika za złe zachowanie"
@@ -16932,7 +16703,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16946,7 +16717,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr "Zasubskrybowano"
@@ -17171,6 +16942,152 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Address:"
+#~ msgstr "Adres:"
+
+#~ msgid "Area:"
+#~ msgstr "Rejon:"
+
+#~ msgid "Artist:"
+#~ msgstr "Artysta:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Kod kreskowy:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "Rejon rozpoczęcia:"
+
+#~ msgid "Begin date:"
+#~ msgstr "Data rozpoczęcia:"
+
+#~ msgid "Description:"
+#~ msgstr "Opis:"
+
+#~ msgid "End date:"
+#~ msgstr "Data zakończenia:"
+
+#~ msgid "Format:"
+#~ msgstr "Format:"
+
+#~ msgid "Gender:"
+#~ msgstr "Płeć:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "Kody IPI:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRC:"
+
+#~ msgid "Label:"
+#~ msgstr "Wytwórnia:"
+
+#~ msgid "Length:"
+#~ msgstr "Długość:"
+
+#~ msgid "Merge"
+#~ msgstr "Scal"
+
+#~ msgid "Setlist:"
+#~ msgstr "Setlista:"
+
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Time:"
+#~ msgstr "Czas:"
+
+#~ msgid "Cancelled"
+#~ msgstr "Anulowane"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Podaj poprawny URL, np. „http://www.google.com/”"
+
+#~ msgid "Preview:"
+#~ msgstr "Podgląd:"
+
+#~ msgid "Status"
+#~ msgstr "Status"
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Closed:"
+#~ msgstr "Zamknięte:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Added"
+#~ msgstr "Dodano"
+
+#~ msgid "1st seconder:"
+#~ msgstr "Pierwszy popierający:"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "Drugi popierający:"
+
+#~ msgid "Votes for:"
+#~ msgstr "Głosy za:"
+
+#~ msgid "Votes against:"
+#~ msgstr "Głosy przeciw:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Added:"
+#~ msgstr "Dodano:"
+
+#~ msgid "Coordinates:"
+#~ msgstr "Współrzędne:"
+
+#~ msgid "ID:"
+#~ msgstr "ID:"
+
+#~ msgid "Location"
+#~ msgstr "Lokalizacja"
+
+#~ msgid "Location:"
+#~ msgstr "Lokalizacja:"
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "Automatycznie subskrybuj mnie do artystów, których tworzę."
+
+#~ msgid "Automatically subscribe me to labels I create."
+#~ msgstr "Automatycznie subskrybuj mnie to wytwórni, które tworzę."
+
+#~ msgid "Automatically subscribe me to series I create."
+#~ msgstr "Automatycznie subskrybuj mnie do serii, które tworzę."
+
+#~ msgid "Delete Note"
+#~ msgstr "Usuń notatkę"
+
+#~ msgid "Ended:"
+#~ msgstr "Do:"
+
+#~ msgid "Release events:"
+#~ msgstr "Wydarzenia wydania:"
+
+#~ msgid "Work Type:"
+#~ msgstr "Typ pracy:"
+
+#~ msgid ""
+#~ "Banner message editors are users who can set a message that is shown in a "
+#~ "banner on all pages, e.g. to warn users about upcoming site maintenance."
+#~ msgstr ""
+#~ "Redaktorzy treści bannerów to użytkownicy, którzy mogą ustalać wiadomości "
+#~ "wyświetlane na wszystkich stronach, np. po to, aby poinformować innych o "
+#~ "nadchodzącej przerwie w działaniu serwisu."
+
+#~ msgid "Last login:"
+#~ msgstr "Ostatnie logowanie:"
+
+#~ msgid "Subscribers:"
+#~ msgstr "Subskrypcje:"
+
#~ msgid "Or..."
#~ msgstr "Lub..."
diff --git a/po/mb_server.pot b/po/mb_server.pot
index ed5e5f27dcb..33b158c7863 100644
--- a/po/mb_server.pot
+++ b/po/mb_server.pot
@@ -10,7 +10,7 @@ msgstr ""
"#-#-#-#-# mb_server.pot (PACKAGE VERSION) #-#-#-#-#\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -74,8 +74,8 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:88
#: ../root/recording/RecordingIndex.js:53
#: ../root/static/scripts/release/components/MediumTable.js:83
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1563
-#: ../root/utility/tableColumns.js:567
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1564
+#: ../root/utility/tableColumns.js:572
msgid "#"
msgstr ""
@@ -124,8 +124,8 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:239
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
-#: ../root/utility/tableColumns.js:508 ../root/utility/tableColumns.js:516
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/utility/tableColumns.js:513 ../root/utility/tableColumns.js:521
msgctxt "and"
msgid "/"
msgstr ""
@@ -212,8 +212,8 @@ msgstr ""
msgid "Add Label"
msgstr ""
-#: ../root/release/edit/information.tt:213
-#: ../root/release/edit/information.tt:214
+#: ../root/release/edit/information.tt:215
+#: ../root/release/edit/information.tt:216
#: ../root/layout/components/BottomMenu.js:248
msgctxt "button/menu"
msgid "Add Label"
@@ -233,8 +233,8 @@ msgctxt "header"
msgid "Add Release"
msgstr ""
-#: ../root/release/edit/information.tt:169
-#: ../root/release/edit/information.tt:170
+#: ../root/release/edit/information.tt:171
+#: ../root/release/edit/information.tt:172
msgctxt "button/menu"
msgid "Add Release Event"
msgstr ""
@@ -277,7 +277,7 @@ msgid ""
"tracklist is unknown."
msgstr ""
-#: ../root/release/edit/recordings.tt:212
+#: ../root/release/edit/recordings.tt:178
#: ../root/static/scripts/edit/components/AddEntityDialog.js:21
msgid "Add a new recording"
msgstr ""
@@ -302,13 +302,16 @@ msgstr ""
msgid "Add {num} track(s)"
msgstr ""
-#: ../root/release/edit/information.tt:245
+#: ../root/release/edit/information.tt:247
msgid "Additional information"
msgstr ""
-#: ../root/place/edit_form.tt:16
-#: ../root/layout/components/sidebar/PlaceSidebar.js:82
-msgid "Address:"
+#: ../root/place/edit_form.tt:16 ../root/components/list/PlaceList.js:66
+#: ../root/edit/details/AddPlace.js:55 ../root/edit/details/EditPlace.js:68
+#: ../root/layout/components/sidebar/PlaceSidebar.js:84
+#: ../root/report/PlacesWithoutCoordinates.js:41
+#: ../root/search/components/PlaceResults.js:65
+msgid "Address"
msgstr ""
#: ../root/release/edit/recordings.tt:3
@@ -328,8 +331,16 @@ msgstr ""
msgid "An error occurred: "
msgstr ""
-#: ../root/release/edit/information.tt:249
-msgid "Annotation:"
+#: ../root/release/edit/information.tt:251
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
+#: ../root/annotation/AnnotationRevision.js:32
+#: ../root/annotation/EditAnnotation.js:74
+#: ../root/layout/components/Search.js:41
+#: ../root/report/hooks/useAnnotationColumns.js:28
+#: ../root/search/components/AnnotationResults.js:56
+#: ../root/search/components/SearchForm.js:45
+#: ../root/static/scripts/common/components/Annotation.js:51
+msgid "Annotation"
msgstr ""
#: ../root/edit/search_macros.tt:423
@@ -342,7 +353,9 @@ msgctxt "vote"
msgid "Approve"
msgstr ""
-#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Area.pm:7
+#: ../root/artist/edit_form.tt:20 ../root/edit/search_macros.tt:423
+#: ../root/label/edit_form.tt:18 ../root/place/edit_form.tt:19
+#: ../lib/MusicBrainz/Server/Edit/Area.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:44
#: ../root/components/list/AreaList.js:46
#: ../root/components/list/ArtistList.js:92
@@ -352,8 +365,11 @@ msgstr ""
#: ../root/edit/details/AddPlace.js:61 ../root/edit/details/EditArea.js:43
#: ../root/edit/details/EditArtist.js:108 ../root/edit/details/EditLabel.js:119
#: ../root/edit/details/EditPlace.js:75 ../root/layout/components/Search.js:35
+#: ../root/layout/components/sidebar/ArtistSidebar.js:126
+#: ../root/layout/components/sidebar/LabelSidebar.js:90
+#: ../root/layout/components/sidebar/PlaceSidebar.js:91
#: ../root/report/PlacesWithoutCoordinates.js:42
-#: ../root/search/components/ArtistResults.js:56
+#: ../root/search/components/ArtistResults.js:55
#: ../root/search/components/LabelResults.js:69
#: ../root/search/components/PlaceResults.js:66
#: ../root/search/components/SearchForm.js:43
@@ -367,18 +383,12 @@ msgstr ""
msgid "Area Details"
msgstr ""
-#: ../root/artist/edit_form.tt:20 ../root/label/edit_form.tt:18
-#: ../root/place/edit_form.tt:19
-#: ../root/layout/components/sidebar/ArtistSidebar.js:120
-#: ../root/layout/components/sidebar/LabelSidebar.js:87
-#: ../root/layout/components/sidebar/PlaceSidebar.js:88
-msgid "Area:"
-msgstr ""
-
#: ../root/cdstub/cdstub.tt:7 ../root/cdtoc/attach_filter_release.tt:29
#: ../root/cdtoc/list.tt:8 ../root/cdtoc/lookup.tt:42
-#: ../root/edit/search_macros.tt:423 ../root/release/edit/tracklist.tt:163
-#: ../root/release/edit/tracklist.tt:453
+#: ../root/cdtoc/lookup.tt:75 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/information.tt:26 ../root/release/edit/tracklist.tt:110
+#: ../root/release/edit/tracklist.tt:163 ../root/release/edit/tracklist.tt:453
+#: ../root/release_group/set_cover_art.tt:32
#: ../lib/MusicBrainz/Server/Edit/Artist.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:38
#: ../root/cdstub/BrowseCDStubs.js:37 ../root/cdstub/CDStubInfo.js:28
@@ -403,8 +413,14 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:38
#: ../root/edit/details/historic/AddRelease.js:90
#: ../root/edit/details/historic/AddTrackKV.js:41
-#: ../root/edit/details/historic/EditTrack.js:35 ../root/isrc/Index.js:67
+#: ../root/edit/details/historic/ChangeArtistQuality.js:24
+#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
+#: ../root/edit/details/historic/EditTrack.js:35
+#: ../root/edit/details/historic/MoveRelease.js:30
+#: ../root/edit/details/historic/RemoveRelease.js:26 ../root/isrc/Index.js:67
#: ../root/layout/components/Search.js:24
+#: ../root/layout/components/sidebar/RecordingSidebar.js:49
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
#: ../root/release_group/ReleaseGroupIndex.js:168
#: ../root/report/DuplicateArtists.js:67
#: ../root/report/DuplicateReleaseGroups.js:59
@@ -421,11 +437,12 @@ msgstr ""
#: ../root/search/components/CDStubResults.js:45
#: ../root/search/components/RecordingResults.js:143
#: ../root/search/components/ReleaseGroupResults.js:64
-#: ../root/search/components/ReleaseResults.js:113
+#: ../root/search/components/ReleaseResults.js:112
#: ../root/search/components/SearchForm.js:37
#: ../root/static/scripts/common/constants.js:36
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:50
#: ../root/static/scripts/common/utility/formatSetlist.js:52
+#: ../root/static/scripts/edit/components/forms.js:29
#: ../root/static/scripts/release/components/MediumTable.js:86
#: ../root/taglookup/Form.js:25 ../root/user/UserProfile.js:50
msgid "Artist"
@@ -439,19 +456,6 @@ msgstr ""
msgid "Artist Details"
msgstr ""
-#: ../root/cdtoc/lookup.tt:75 ../root/release/edit/information.tt:26
-#: ../root/release/edit/tracklist.tt:110
-#: ../root/release_group/set_cover_art.tt:32
-#: ../root/edit/details/historic/ChangeArtistQuality.js:24
-#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
-#: ../root/edit/details/historic/MoveRelease.js:30
-#: ../root/edit/details/historic/RemoveRelease.js:26
-#: ../root/layout/components/sidebar/RecordingSidebar.js:49
-#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
-#: ../root/static/scripts/edit/components/forms.js:29
-msgid "Artist:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:40
#: ../root/cdtoc/attach_filter_release.tt:54
msgctxt "button/menu"
@@ -478,7 +482,18 @@ msgid "Attached to releases"
msgstr ""
#: ../root/relationship/linktype/form.tt:52
-msgid "Attributes:"
+#: ../root/admin/attributes/Attribute.js:72
+#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
+#: ../root/admin/attributes/Language.js:33
+#: ../root/admin/attributes/Script.js:33
+#: ../root/components/RelationshipsTable.js:336
+#: ../root/edit/details/AddRelationshipType.js:169
+#: ../root/edit/details/EditRelationshipType.js:297
+#: ../root/edit/details/RemoveRelationshipType.js:117
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
+#: ../root/utility/tableColumns.js:671
+msgid "Attributes"
msgstr ""
#: ../root/edit/search_macros.tt:397
@@ -488,6 +503,8 @@ msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:19
#: ../root/cdtoc/attach_filter_release.tt:33 ../root/cdtoc/list.tt:13
#: ../root/cdtoc/lookup.tt:47 ../root/release/edit/duplicates.tt:17
+#: ../root/release/edit/information.tt:222
+#: ../root/release_group/set_cover_art.tt:62
#: ../root/components/list/ReleaseList.js:139
#: ../root/edit/details/AddRelease.js:112
#: ../root/edit/details/EditBarcodes.js:45
@@ -497,20 +514,15 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:242
#: ../root/edit/details/historic/AddRelease.js:125
#: ../root/edit/details/historic/EditReleaseEvents.js:113
+#: ../root/layout/components/sidebar/CDStubSidebar.js:71
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:128
#: ../root/otherlookup/OtherLookupForm.js:62
#: ../root/release_group/ReleaseGroupIndex.js:174
#: ../root/report/ReleasesSameBarcode.js:40
-#: ../root/search/components/ReleaseResults.js:119
+#: ../root/search/components/ReleaseResults.js:118
msgid "Barcode"
msgstr ""
-#: ../root/release/edit/information.tt:220
-#: ../root/release_group/set_cover_art.tt:62
-#: ../root/layout/components/sidebar/CDStubSidebar.js:63
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:126
-msgid "Barcode:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:33
msgid ""
"Based on the above CD stub, we also found the following releases in "
@@ -524,14 +536,24 @@ msgid ""
"release on an existing release, select it below."
msgstr ""
-#: ../root/artist/edit_form.tt:42
-msgid "Begin Area:"
+#: ../root/artist/edit_form.tt:42 ../root/components/list/ArtistList.js:102
+#: ../root/search/components/ArtistResults.js:57
+msgid "Begin Area"
msgstr ""
#: ../root/artist/edit_form.tt:38 ../root/components/forms.tt:212
#: ../root/event/edit_form.tt:36 ../root/artist/utils.js:34
+#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
+#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
+#: ../root/edit/details/AddRemoveAlias.js:90
+#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
+#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
+#: ../root/edit/details/EditPlace.js:93
#: ../root/layout/components/sidebar/AreaSidebar.js:58
-msgid "Begin date:"
+#: ../root/report/RecordingsWithFutureDates.js:34
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
+msgid "Begin date"
msgstr ""
#: ../root/release/add_cover_art.tt:95 ../root/search/error/InternalError.js:29
@@ -623,38 +645,33 @@ msgstr ""
msgid "Cardinality of {entity_placeholder}"
msgstr ""
-#: ../root/release/edit/information.tt:192
+#: ../root/release/edit/information.tt:194
msgid "Cat. No:"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:18
#: ../root/cdtoc/attach_filter_release.tt:32 ../root/cdtoc/list.tt:12
#: ../root/cdtoc/lookup.tt:46 ../root/release/edit/duplicates.tt:16
+#: ../root/release_group/set_cover_art.tt:56
#: ../root/edit/details/MergeReleases.js:241
#: ../root/recording/RecordingIndex.js:62
#: ../root/release_group/ReleaseGroupIndex.js:173
-#: ../root/search/components/ReleaseResults.js:118
-#: ../root/utility/tableColumns.js:482 ../root/utility/tableColumns.js:487
+#: ../root/search/components/ReleaseResults.js:117
+#: ../root/utility/tableColumns.js:487 ../root/utility/tableColumns.js:492
msgid "Catalog#"
msgstr ""
-#: ../root/release_group/set_cover_art.tt:56
-msgid "Catalog#:"
-msgstr ""
-
-#: ../root/admin/attributes/form.tt:53 ../root/admin/attributes/Attribute.js:82
-#: ../root/edit/details/AddRelationshipAttribute.js:50
-#: ../root/edit/details/EditRelationshipAttribute.js:93
-msgid "Child order"
-msgstr ""
-
+#: ../root/admin/attributes/form.tt:53
#: ../root/relationship/linkattributetype/form.tt:7
#: ../root/relationship/linktype/form.tt:7
+#: ../root/admin/attributes/Attribute.js:82
+#: ../root/edit/details/AddRelationshipAttribute.js:50
+#: ../root/edit/details/EditRelationshipAttribute.js:93
#: ../root/edit/details/EditRelationshipType.js:241
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:122
#: ../root/relationship/linktype/RelationshipTypeIndex.js:162
#: ../root/relationship/linktype/RelationshipTypePairTree.js:58
-msgid "Child order:"
+msgid "Child order"
msgstr ""
#: ../root/release/edit/recordings.tt:114
@@ -666,6 +683,7 @@ msgid "Close"
msgstr ""
#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditHeader.js:155
+#: ../root/edit/components/EditSidebar.js:59
msgid "Closed"
msgstr ""
@@ -677,22 +695,15 @@ msgstr ""
msgid "Collapse medium"
msgstr ""
-#: ../root/cdstub/index.tt:3 ../root/cdstub/CDStubIndex.js:36
+#: ../root/cdstub/index.tt:3 ../root/release/add_cover_art.tt:69
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:71 ../root/cdstub/CDStubIndex.js:36
msgid "Comment"
msgstr ""
-#: ../root/release/add_cover_art.tt:69 ../root/release/add_cover_art.tt:137
-#: ../root/release/reorder_cover_art.tt:19
-#: ../root/release_group/set_cover_art.tt:71
-#: ../root/edit/details/AddCoverArt.js:54
-#: ../root/edit/details/EditCoverArt.js:67
-#: ../root/edit/details/RemoveCoverArt.js:56
-#: ../root/release/CoverArtFields.js:93
-msgid "Comment:"
-msgstr ""
-
#: ../root/place/edit_form.tt:28 ../root/edit/details/AddPlace.js:67
#: ../root/edit/details/EditPlace.js:86
+#: ../root/layout/components/sidebar/PlaceSidebar.js:99
msgid "Coordinates"
msgstr ""
@@ -720,33 +731,26 @@ msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:44 ../root/release/edit/duplicates.tt:14
+#: ../root/release/edit/information.tt:156
+#: ../root/release_group/set_cover_art.tt:41
#: ../root/edit/details/EditReleaseLabel.js:113
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:122
#: ../root/edit/details/historic/EditReleaseEvents.js:110
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/common/components/FilterForm.js:187
-#: ../root/utility/tableColumns.js:504 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:509 ../root/utility/tableColumns.js:521
msgid "Country"
msgstr ""
-#: ../root/release/edit/information.tt:154
-#: ../root/release_group/set_cover_art.tt:41
-msgid "Country:"
-msgstr ""
-
#: ../root/release_group/set_cover_art.tt:67
#: ../root/components/EntityTabs.js:114 ../root/release/CoverArt.js:57
#: ../root/user/UserProfile.js:51
msgid "Cover Art"
msgstr ""
-#: ../root/edit/search_macros.tt:423
-msgid "Created"
-msgstr ""
-
#: ../root/release/add_cover_art.tt:85
msgid "Creating edit..."
msgstr ""
@@ -755,7 +759,7 @@ msgstr ""
msgid "Custom delimiter"
msgstr ""
-#: ../root/release/edit/information.tt:146
+#: ../root/release/edit/information.tt:148
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:253
#: ../root/static/scripts/edit/components/PartialDateInput.js:186
msgid "DD"
@@ -770,6 +774,8 @@ msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:43 ../root/release/edit/duplicates.tt:13
+#: ../root/release/edit/information.tt:130
+#: ../root/release_group/set_cover_art.tt:37
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:25
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:30
#: ../root/admin/statistics-events/StatisticsEventIndex.js:26
@@ -778,14 +784,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:121
#: ../root/edit/details/historic/EditReleaseEvents.js:109
-#: ../root/elections/ElectionVotes.js:28 ../root/recording/RecordingIndex.js:60
+#: ../root/elections/ElectionVotes.js:28
+#: ../root/layout/components/sidebar/EventSidebar.js:61
+#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
#: ../root/search/components/EventResults.js:74
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:106
#: ../root/static/scripts/common/components/FilterForm.js:225
-#: ../root/utility/tableColumns.js:279 ../root/utility/tableColumns.js:284
-#: ../root/utility/tableColumns.js:510 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:284 ../root/utility/tableColumns.js:289
+#: ../root/utility/tableColumns.js:515 ../root/utility/tableColumns.js:521
msgid "Date"
msgstr ""
@@ -795,12 +803,6 @@ msgstr ""
msgid "Date Period"
msgstr ""
-#: ../root/release/edit/information.tt:128
-#: ../root/release_group/set_cover_art.tt:37
-#: ../root/layout/components/sidebar/EventSidebar.js:59
-msgid "Date:"
-msgstr ""
-
#: ../root/artist/edit_form.tt:36 ../root/components/forms.tt:210
#: ../root/event/edit_form.tt:34
#: ../root/static/scripts/edit/components/DateRangeFieldset.js:186
@@ -809,11 +811,10 @@ msgid ""
"YYYY are OK, or you can omit the date entirely."
msgstr ""
-#: ../root/edit/search_macros.tt:120
-msgid "Delete"
-msgstr ""
-
#: ../root/admin/attributes/form.tt:61 ../root/doc/edit_type.tt:23
+#: ../root/instrument/edit_form.tt:13
+#: ../root/relationship/linkattributetype/form.tt:15
+#: ../root/relationship/linktype/form.tt:20
#: ../root/admin/attributes/Attribute.js:80
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:33
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:42
@@ -833,19 +834,13 @@ msgstr ""
#: ../root/instrument/InstrumentIndex.js:34
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:110
#: ../root/relationship/linktype/RelationshipTypeIndex.js:146
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
#: ../root/search/components/InstrumentResults.js:55
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:206
-#: ../root/utility/tableColumns.js:676
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:209
+#: ../root/utility/tableColumns.js:681
msgid "Description"
msgstr ""
-#: ../root/instrument/edit_form.tt:13
-#: ../root/relationship/linkattributetype/form.tt:15
-#: ../root/relationship/linktype/form.tt:20
-#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
-msgid "Description:"
-msgstr ""
-
#: ../root/doc/edit_type.tt:28 ../root/components/EntityTabs.js:146
#: ../root/elections/ElectionDetails.js:29 ../root/entity/Details.js:91
#: ../root/entity/Details.js:93
@@ -855,7 +850,7 @@ msgstr ""
#: ../root/area/edit_form.tt:10 ../root/artist/edit_form.tt:14
#: ../root/event/edit_form.tt:13 ../root/instrument/edit_form.tt:10
#: ../root/label/edit_form.tt:13 ../root/place/edit_form.tt:13
-#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:256
+#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:258
#: ../root/release_group/edit_form.tt:15 ../root/series/edit_form.tt:13
#: ../root/work/edit_form.tt:13 ../root/edit/details/AddArea.js:54
#: ../root/edit/details/AddArtist.js:62 ../root/edit/details/AddEvent.js:44
@@ -878,7 +873,13 @@ msgstr ""
msgid "Disambiguation"
msgstr ""
-#: ../root/release/discids.tt:8 ../root/edit/details/SetTrackLengths.js:54
+#: ../root/release/discids.tt:8 ../root/cdtoc/CDTocInfo.js:32
+#: ../root/edit/details/AddDiscId.js:34 ../root/edit/details/MoveDiscId.js:26
+#: ../root/edit/details/RemoveDiscId.js:31
+#: ../root/edit/details/SetTrackLengths.js:54
+#: ../root/edit/details/historic/AddDiscId.js:27
+#: ../root/edit/details/historic/MoveDiscId.js:21
+#: ../root/edit/details/historic/RemoveDiscId.js:23
#: ../root/otherlookup/OtherLookupForm.js:112
#: ../root/utility/tableColumns.js:199 ../root/utility/tableColumns.js:204
msgid "Disc ID"
@@ -906,7 +907,15 @@ msgid "Do not use any of the above releases as a starting point"
msgstr ""
#: ../root/relationship/linktype/form.tt:65
-msgid "Documentation:"
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
+#: ../root/edit/details/AddRelationshipType.js:187
+#: ../root/edit/details/EditRelationshipType.js:327
+#: ../root/layout/components/BottomMenu.js:293
+#: ../root/layout/components/Search.js:51
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
+#: ../root/search/components/SearchForm.js:56
+msgid "Documentation"
msgstr ""
#: ../root/layout.tt:112 ../root/layout/components/Footer.js:26
@@ -914,7 +923,7 @@ msgid "Donate"
msgstr ""
#: ../root/release/edit/macros.tt:54
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:166
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:165
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:219
#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:64
#: ../root/static/scripts/edit/components/URLInputPopover.js:134
@@ -989,12 +998,12 @@ msgid "Edit Relationship Type"
msgstr ""
#: ../root/doc/edit_type.tt:18 ../root/doc/edit_types.tt:1
-#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:96
+#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:99
#: ../root/layout/components/BottomMenu.js:315
msgid "Edit Types"
msgstr ""
-#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:28
+#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:26
#: ../root/static/scripts/edit/components/URLInputPopover.js:146
msgid "Edit URL"
msgstr ""
@@ -1026,14 +1035,25 @@ msgstr ""
msgid "Enable vinyl track numbers"
msgstr ""
-#: ../root/artist/edit_form.tt:56
-msgid "End Area:"
+#: ../root/artist/edit_form.tt:56 ../root/components/list/ArtistList.js:112
+#: ../root/search/components/ArtistResults.js:59
+msgid "End Area"
msgstr ""
#: ../root/artist/edit_form.tt:51 ../root/components/forms.tt:214
#: ../root/event/edit_form.tt:38 ../root/artist/utils.js:65
+#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
+#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
+#: ../root/edit/details/AddRemoveAlias.js:97
+#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
+#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
+#: ../root/edit/details/EditPlace.js:101
+#: ../root/elections/ElectionTable/index.js:25
#: ../root/layout/components/sidebar/AreaSidebar.js:64
-msgid "End date:"
+#: ../root/report/RecordingsWithFutureDates.js:39
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
+msgid "End date"
msgstr ""
#: ../root/relationship/linktype/form.tt:112
@@ -1067,6 +1087,10 @@ msgid ""
"(valid {url|regular expressions} are accepted)."
msgstr ""
+#: ../root/edit/search_macros.tt:423
+msgid "Entered"
+msgstr ""
+
#: ../root/components/forms.tt:30
msgid ""
"Entering an {note|edit note} that describes where you got your information "
@@ -1127,7 +1151,7 @@ msgstr ""
#: ../root/area/edit_form.tt:22 ../root/artist/edit_form.tt:70
#: ../root/event/edit_form.tt:46 ../root/instrument/edit_form.tt:32
#: ../root/label/edit_form.tt:41 ../root/place/edit_form.tt:37
-#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:266
+#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:268
#: ../root/release_group/edit_form.tt:23 ../root/series/edit_form.tt:26
#: ../root/work/edit_form.tt:90
#: ../root/static/scripts/genre/components/GenreEditForm.js:160
@@ -1166,25 +1190,21 @@ msgid "For more information, check the {doc_doc|documentation}."
msgstr ""
#: ../root/cdtoc/list.tt:9 ../root/release/edit/duplicates.tt:11
+#: ../root/release/edit/tracklist.tt:305
+#: ../root/release_group/set_cover_art.tt:46
#: ../root/components/list/ReleaseList.js:98
-#: ../root/edit/details/EditMedium.js:485
+#: ../root/edit/details/AddMedium.js:136 ../root/edit/details/EditMedium.js:485
#: ../root/edit/details/EditReleaseLabel.js:131
#: ../root/edit/details/MergeReleases.js:237
#: ../root/edit/details/historic/AddRelease.js:126
#: ../root/edit/details/historic/EditReleaseEvents.js:114
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:137
#: ../root/release_group/ReleaseGroupIndex.js:169
#: ../root/report/components/CDTocList.js:49
-#: ../root/search/components/ReleaseResults.js:114
+#: ../root/search/components/ReleaseResults.js:113
msgid "Format"
msgstr ""
-#: ../root/release/edit/tracklist.tt:305
-#: ../root/release_group/set_cover_art.tt:46
-#: ../root/edit/details/AddMedium.js:136
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:132
-msgid "Format:"
-msgstr ""
-
#: ../root/layout.tt:114 ../root/layout/components/Footer.js:28
#: ../root/main/index.js:212
msgid "Forums"
@@ -1228,11 +1248,13 @@ msgstr ""
msgid "Full TOC:"
msgstr ""
-#: ../root/artist/edit_form.tt:17
-#: ../root/layout/components/sidebar/ArtistSidebar.js:84
-#: ../root/static/scripts/account/components/EditProfileForm.js:207
+#: ../root/artist/edit_form.tt:17 ../root/components/list/ArtistList.js:87
+#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
+#: ../root/layout/components/sidebar/ArtistSidebar.js:89
+#: ../root/search/components/ArtistResults.js:54
+#: ../root/static/scripts/account/components/EditProfileForm.js:237
#: ../root/user/UserProfile.js:268
-msgid "Gender:"
+msgid "Gender"
msgstr ""
#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Genre.pm:7
@@ -1318,7 +1340,7 @@ msgstr ""
msgid "Historic"
msgstr ""
-#: ../root/release/edit/information.tt:325
+#: ../root/release/edit/information.tt:339
msgid "I confirm that this is the barcode as it appears on the release."
msgstr ""
@@ -1345,73 +1367,65 @@ msgstr ""
#: ../root/edit/search_macros.tt:423 ../root/admin/attributes/Attribute.js:78
#: ../root/admin/attributes/Language.js:39
#: ../root/admin/attributes/Script.js:40
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
msgid "ID"
msgstr ""
#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
#: ../root/edit/details/AddArtist.js:136 ../root/edit/details/AddLabel.js:102
+#: ../root/layout/components/sidebar/SidebarIpis.js:18
msgid "IPI code"
msgstr ""
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/EditArtist.js:162 ../root/edit/details/EditLabel.js:131
+msgid "IPI codes"
+msgstr ""
+
#: ../root/components/forms.tt:333
msgid ""
"IPI codes are assigned by CISAC to “interested parties” in musical rights "
"management. Check {ipi_doc|the documentation} for more info."
msgstr ""
-#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
-#: ../root/edit/details/EditArtist.js:162
-msgid "IPI codes:"
-msgstr ""
-
#: ../root/layout.tt:115
msgid "IRC"
msgstr ""
#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
#: ../root/edit/details/AddArtist.js:145 ../root/edit/details/AddLabel.js:111
+#: ../root/layout/components/sidebar/SidebarIsnis.js:22
msgid "ISNI code"
msgstr ""
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/EditArtist.js:170 ../root/edit/details/EditLabel.js:140
+msgid "ISNI codes"
+msgstr ""
+
#: ../root/components/forms.tt:342
msgid ""
"ISNI codes are an ISO standard used to uniquely identify persons and "
"organizations. Check {isni_doc|the documentation} for more info."
msgstr ""
-#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
-#: ../root/edit/details/EditArtist.js:170
-msgid "ISNI codes:"
-msgstr ""
-
#: ../root/area/edit_form.tt:12 ../root/edit/details/AddArea.js:68
#: ../root/edit/details/EditArea.js:82
-msgid "ISO 3166-1"
-msgstr ""
-
-#: ../root/area/edit_form.tt:12
#: ../root/layout/components/sidebar/AreaSidebar.js:71
-msgid "ISO 3166-1:"
+msgid "ISO 3166-1"
msgstr ""
#: ../root/area/edit_form.tt:13 ../root/edit/details/AddArea.js:75
#: ../root/edit/details/EditArea.js:89
-msgid "ISO 3166-2"
-msgstr ""
-
-#: ../root/area/edit_form.tt:13
#: ../root/layout/components/sidebar/AreaSidebar.js:81
-msgid "ISO 3166-2:"
+msgid "ISO 3166-2"
msgstr ""
#: ../root/area/edit_form.tt:14 ../root/edit/details/AddArea.js:82
#: ../root/edit/details/EditArea.js:96
-msgid "ISO 3166-3"
-msgstr ""
-
-#: ../root/area/edit_form.tt:14
#: ../root/layout/components/sidebar/AreaSidebar.js:91
-msgid "ISO 3166-3:"
+msgid "ISO 3166-3"
msgstr ""
#: ../root/admin/attributes/form.tt:8 ../root/admin/attributes/Language.js:41
@@ -1445,8 +1459,13 @@ msgstr ""
msgid "ISRC"
msgstr ""
-#: ../root/recording/edit_form.tt:45
-msgid "ISRCs:"
+#: ../root/recording/edit_form.tt:45 ../root/report/ReportsIndex.js:606
+#: ../root/search/components/RecordingResults.js:144
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:721
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:411
+#: ../root/static/scripts/common/components/IsrcList.js:44
+#: ../root/utility/tableColumns.js:694
+msgid "ISRCs"
msgstr ""
#: ../root/work/edit_form.tt:16 ../root/edit/details/AddWork.js:47
@@ -1455,12 +1474,13 @@ msgstr ""
#: ../root/report/IswcsWithManyWorks.js:49
#: ../root/search/components/WorkResults.js:57
#: ../root/static/scripts/common/components/IswcList.js:26
-#: ../root/utility/tableColumns.js:703
+#: ../root/utility/tableColumns.js:708
msgid "ISWC"
msgstr ""
-#: ../root/work/edit_form.tt:16
-msgid "ISWCs:"
+#: ../root/work/edit_form.tt:16 ../root/report/ReportsIndex.js:615
+#: ../root/static/scripts/common/components/IswcList.js:44
+msgid "ISWCs"
msgstr ""
#: ../root/event/edit_form.tt:26
@@ -1476,7 +1496,7 @@ msgid ""
"for this release."
msgstr ""
-#: ../root/release/edit/information.tt:298
+#: ../root/release/edit/information.tt:300
msgid ""
"If this is an Amazon ASIN, please do not enter it in the catalog number "
"field, but add it as a URL relationship later."
@@ -1492,7 +1512,7 @@ msgstr ""
msgid "If you can't find what you're looking for, you can add a new release:"
msgstr ""
-#: ../root/release/edit/information.tt:316
+#: ../root/release/edit/information.tt:330
msgid ""
"If you do not know whether the release has a barcode or not, just leave this "
"blank."
@@ -1510,8 +1530,8 @@ msgstr ""
#: ../root/release/edit/information.tt:54
msgid ""
-"If you don’t select an existing release group, a new one will be created "
-"with the types selected below."
+"If you don’t select an existing release group, a new one will be added with "
+"the types selected below."
msgstr ""
#: ../root/release/edit/tracklist.tt:5
@@ -1589,21 +1609,21 @@ msgid ""
"Keep in mind that recording durations are {doc_link|recalculated from "
"tracks} once the duration of a track changes. As such, if you correct the "
"duration of a track whose recording is only used in this release, just reuse "
-"the old recording, don’t create a new one. If the recording is also used "
-"elsewhere and the durations are significantly different, consider creating a "
+"the old recording, don’t add a new one. If the recording is also used "
+"elsewhere and the durations are significantly different, consider adding a "
"new recording instead."
msgstr ""
#: ../root/release/edit/tracklist.tt:502
msgid ""
-"Keep in mind that unselecting this will delete the track if the medium has a "
+"Keep in mind that unselecting this will remove the track if the medium has a "
"disc ID! If you unselect it by mistake, please readd the pregap track before "
"submitting."
msgstr ""
#: ../root/release/edit/tracklist.tt:517
msgid ""
-"Keep in mind that unselecting this will delete the tracks if the medium has "
+"Keep in mind that unselecting this will remove the tracks if the medium has "
"a disc ID! If you unselect it by mistake, please readd the data tracks "
"before submitting."
msgstr ""
@@ -1612,12 +1632,16 @@ msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:31 ../root/cdtoc/list.tt:11
#: ../root/cdtoc/lookup.tt:45 ../root/edit/search_macros.tt:423
#: ../root/release/edit/duplicates.tt:15
+#: ../root/release/edit/information.tt:179
+#: ../root/release_group/set_cover_art.tt:52
#: ../lib/MusicBrainz/Server/Edit/Label.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:43
#: ../root/components/list/LabelList.js:54 ../root/edit/details/AddLabel.js:31
+#: ../root/edit/details/AddReleaseLabel.js:35
#: ../root/edit/details/EditLabel.js:43
#: ../root/edit/details/EditReleaseLabel.js:51
#: ../root/edit/details/MergeReleases.js:240
+#: ../root/edit/details/RemoveReleaseLabel.js:31
#: ../root/edit/details/historic/AddRelease.js:123
#: ../root/edit/details/historic/EditReleaseEvents.js:111
#: ../root/label/LabelHeader.js:25 ../root/layout/components/Search.js:37
@@ -1626,13 +1650,13 @@ msgstr ""
#: ../root/report/ReleaseLabelSameArtist.js:31
#: ../root/report/components/LabelList.js:47
#: ../root/report/components/LabelUrlList.js:35
-#: ../root/search/components/ReleaseResults.js:117
+#: ../root/search/components/ReleaseResults.js:116
#: ../root/search/components/SearchForm.js:42
#: ../root/static/scripts/common/components/FilterForm.js:168
#: ../root/static/scripts/common/constants.js:40
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:60
-#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:533
-#: ../root/utility/tableColumns.js:538
+#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:538
+#: ../root/utility/tableColumns.js:543
msgid "Label"
msgstr ""
@@ -1644,28 +1668,31 @@ msgstr ""
msgid "Label Details"
msgstr ""
-#: ../root/label/edit_form.tt:28
-#: ../root/layout/components/sidebar/LabelSidebar.js:81
-msgid "Label code:"
-msgstr ""
-
-#: ../root/release/edit/information.tt:177
-#: ../root/release_group/set_cover_art.tt:52
-#: ../root/edit/details/AddReleaseLabel.js:35
-#: ../root/edit/details/RemoveReleaseLabel.js:31
-msgid "Label:"
+#: ../root/label/edit_form.tt:28 ../root/edit/details/AddLabel.js:94
+#: ../root/edit/details/EditLabel.js:85
+#: ../root/layout/components/sidebar/LabelSidebar.js:83
+msgid "Label code"
msgstr ""
#: ../root/release/edit/information.tt:114
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:177
-msgid "Language:"
+#: ../root/admin/attributes/Language.js:31
+#: ../root/admin/attributes/Language.js:34
+#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
+#: ../root/edit/details/EditRelease.js:113
+#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:191
+#: ../root/report/IswcsWithManyWorks.js:54
+#: ../root/search/components/ReleaseResults.js:119
+#: ../root/utility/tableColumns.js:559
+msgid "Language"
msgstr ""
#: ../root/layout.tt:139 ../root/layout/components/Footer.js:85
msgid "Last replication packet received at {datetime}"
msgstr ""
-#: ../root/cdstub/cdstub.tt:9 ../root/release/discids.tt:10
+#: ../root/cdstub/cdstub.tt:9 ../root/recording/edit_form.tt:35
+#: ../root/recording/edit_form.tt:38 ../root/release/discids.tt:10
#: ../root/release/edit/tracklist.tt:164 ../root/release/edit/tracklist.tt:454
#: ../root/cdstub/CDStubInfo.js:29 ../root/cdtoc/AttachCDTocConfirmation.js:72
#: ../root/cdtoc/CDTocInfo.js:54 ../root/components/RelationshipsTable.js:338
@@ -1677,6 +1704,8 @@ msgstr ""
#: ../root/edit/details/EditRecording.js:69
#: ../root/edit/details/historic/AddRelease.js:91
#: ../root/edit/details/historic/AddTrackKV.js:54 ../root/isrc/Index.js:68
+#: ../root/layout/components/sidebar/RecordingSidebar.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:146
#: ../root/recording/RecordingIndex.js:55
#: ../root/report/IsrcsWithManyRecordings.js:61
#: ../root/report/components/CDTocList.js:54
@@ -1685,12 +1714,6 @@ msgstr ""
msgid "Length"
msgstr ""
-#: ../root/recording/edit_form.tt:35 ../root/recording/edit_form.tt:38
-#: ../root/layout/components/sidebar/RecordingSidebar.js:54
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:138
-msgid "Length:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:54
msgid "Lines contain track artists"
msgstr ""
@@ -1721,7 +1744,7 @@ msgstr ""
msgid "Long link phrase:"
msgstr ""
-#: ../root/release/edit/recordings.tt:175
+#: ../root/release/edit/recordings.tt:186
msgid "Looking for suggested recordings..."
msgstr ""
@@ -1729,7 +1752,7 @@ msgstr ""
msgid "Lookup CD"
msgstr ""
-#: ../root/release/edit/information.tt:139
+#: ../root/release/edit/information.tt:141
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:252
#: ../root/static/scripts/edit/components/PartialDateInput.js:174
msgid "MM"
@@ -1752,7 +1775,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Medium.pm:8
#: ../root/cdtoc/AttachCDTocConfirmation.js:65
#: ../root/cdtoc/SetTracklistDurations.js:56
-#: ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/RemoveDiscId.js:25
#: ../root/edit/details/RemoveMedium.js:71
#: ../root/edit/details/SetTrackLengths.js:40
#: ../root/search/components/RecordingResults.js:148
@@ -1767,6 +1791,7 @@ msgstr ""
#: ../root/layout/merge-helper.tt:30
#: ../root/layout/components/MergeHelper.js:71
#: ../root/layout/components/sidebar/MergeLink.js:34
+msgctxt "button/link"
msgid "Merge"
msgstr ""
@@ -1807,7 +1832,12 @@ msgid "Move track up"
msgstr ""
#: ../root/admin/attributes/form.tt:7 ../root/admin/attributes/form.tt:23
-#: ../root/admin/attributes/form.tt:58 ../root/admin/attributes/Attribute.js:79
+#: ../root/admin/attributes/form.tt:58 ../root/components/forms.tt:226
+#: ../root/relationship/linkattributetype/form.tt:12
+#: ../root/relationship/linktype/form.tt:12
+#: ../root/relationship/linktype/form.tt:77
+#: ../root/relationship/linktype/form.tt:107
+#: ../root/admin/attributes/Attribute.js:79
#: ../root/admin/attributes/Language.js:40
#: ../root/admin/attributes/Script.js:41
#: ../root/components/Aliases/ArtistCreditList.js:50
@@ -1815,7 +1845,7 @@ msgstr ""
#: ../root/edit/details/AddArea.js:41 ../root/edit/details/AddArtist.js:51
#: ../root/edit/details/AddEvent.js:38 ../root/edit/details/AddGenre.js:35
#: ../root/edit/details/AddInstrument.js:41 ../root/edit/details/AddLabel.js:41
-#: ../root/edit/details/AddPlace.js:38
+#: ../root/edit/details/AddMedium.js:129 ../root/edit/details/AddPlace.js:38
#: ../root/edit/details/AddRelationshipAttribute.js:34
#: ../root/edit/details/AddRelationshipType.js:66
#: ../root/edit/details/AddRelease.js:51
@@ -1845,36 +1875,27 @@ msgstr ""
#: ../root/entity/Details.js:96
#: ../root/search/components/AnnotationResults.js:55
#: ../root/search/components/AreaResults.js:63
-#: ../root/search/components/ArtistResults.js:52
+#: ../root/search/components/ArtistResults.js:51
#: ../root/search/components/EditorResults.js:42
#: ../root/search/components/EventResults.js:73
#: ../root/search/components/InstrumentResults.js:53
#: ../root/search/components/LabelResults.js:66
#: ../root/search/components/PlaceResults.js:63
#: ../root/search/components/RecordingResults.js:141
-#: ../root/search/components/ReleaseResults.js:112
+#: ../root/search/components/ReleaseResults.js:111
#: ../root/search/components/SeriesResults.js:57
#: ../root/search/components/TagResults.js:51
#: ../root/search/components/WorkResults.js:54
#: ../root/static/scripts/account/components/ApplicationForm.js:81
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:197
#: ../root/static/scripts/common/components/FilterForm.js:135
#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:112
#: ../root/static/scripts/genre/components/GenreEditForm.js:147
+#: ../root/static/scripts/release/components/EditWorkDialog.js:166
#: ../root/user/UserSubscriptions.js:48
msgid "Name"
msgstr ""
-#: ../root/components/forms.tt:226
-#: ../root/relationship/linkattributetype/form.tt:12
-#: ../root/relationship/linktype/form.tt:12
-#: ../root/relationship/linktype/form.tt:77
-#: ../root/relationship/linktype/form.tt:107
-#: ../root/edit/details/AddMedium.js:129
-#: ../root/static/scripts/release/components/EditWorkDialog.js:166
-msgid "Name:"
-msgstr ""
-
#: ../root/artist/edit_credit.tt:18 ../root/artist/split.tt:45
msgid "New Artist Credit"
msgstr ""
@@ -1925,7 +1946,7 @@ msgid "No releases have cover art marked as \"Front\", cannot set cover art."
msgstr ""
#: ../root/release/edit/tracklist.tt:140 ../root/admin/IpLookup.js:38
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:468
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:472
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:88
msgid "No results"
msgstr ""
@@ -1957,21 +1978,25 @@ msgid ""
"because they have the wrong number of tracks."
msgstr ""
-#: ../root/release/edit/information.tt:283
+#: ../root/release/edit/recordings.tt:3 ../root/edit/details/EditRelease.js:164
+#: ../root/edit/details/MergeReleases.js:347
+#: ../root/edit/details/SetTrackLengths.js:74
+#: ../root/edit/details/historic/MergeReleases.js:55
+#: ../root/user/ReportUser.js:116
+msgid "Note"
+msgstr ""
+
+#: ../root/release/edit/information.tt:285
msgid ""
"Note! If you do not know the month or day of release, please leave them "
"empty. January 1st is not often the actual release date, please double "
"check that you have entered the release date correctly."
msgstr ""
-#: ../root/release/edit/recordings.tt:3
-msgid "Note:"
-msgstr ""
-
#: ../root/edit/search_macros.tt:243
msgid ""
-"Note: only searches edits that: add or edit relationships, created after "
-"2011-05-16; or which remove relationships, created after 2013-07-08; or "
+"Note: only searches edits that: add or edit relationships, entered after "
+"2011-05-16; or which remove relationships, entered after 2013-07-08; or "
"which reorder relationships."
msgstr ""
@@ -2012,29 +2037,31 @@ msgstr ""
msgid "Orderable direction:"
msgstr ""
-#: ../root/series/edit_form.tt:17
-msgid "Ordering Type:"
+#: ../root/series/edit_form.tt:17 ../root/edit/details/AddSeries.js:52
+#: ../root/edit/details/EditSeries.js:66
+#: ../root/layout/components/sidebar/SeriesSidebar.js:53
+#: ../root/utility/tableColumns.js:765
+msgid "Ordering Type"
msgstr ""
#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:77
msgid "PDF file"
msgstr ""
-#: ../root/release/edit/information.tt:238
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:156
-msgid "Packaging:"
+#: ../root/release/edit/information.tt:240
+#: ../root/edit/details/AddRelease.js:105
+#: ../root/edit/details/EditRelease.js:137
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
+msgid "Packaging"
msgstr ""
#: ../root/admin/attributes/form.tt:50
-#: ../root/edit/details/AddRelationshipAttribute.js:55
-#: ../root/edit/details/EditRelationshipAttribute.js:85
-msgid "Parent"
-msgstr ""
-
#: ../root/relationship/linkattributetype/form.tt:4
#: ../root/relationship/linktype/form.tt:4
+#: ../root/edit/details/AddRelationshipAttribute.js:55
+#: ../root/edit/details/EditRelationshipAttribute.js:85
#: ../root/edit/details/EditRelationshipType.js:317
-msgid "Parent:"
+msgid "Parent"
msgstr ""
#: ../root/release/edit/tracklist.tt:238
@@ -2062,7 +2089,7 @@ msgstr ""
msgid "Please choose a condition"
msgstr ""
-#: ../root/release/edit/information.tt:312
+#: ../root/release/edit/information.tt:326
msgid ""
"Please enter the barcode of the release you are entering, see Barcode for more information."
@@ -2085,15 +2112,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2142,7 +2166,7 @@ msgstr[1] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr ""
@@ -2183,27 +2207,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2226,7 +2255,7 @@ msgstr ""
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2246,10 +2275,6 @@ msgstr ""
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2267,7 +2292,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2291,16 +2316,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2316,7 +2333,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2326,11 +2343,11 @@ msgstr ""
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2341,7 +2358,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2402,7 +2419,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2420,29 +2437,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr ""
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2461,10 +2482,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2532,11 +2549,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2568,9 +2588,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2581,13 +2608,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr ""
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2595,11 +2630,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2612,9 +2647,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr ""
@@ -2624,11 +2659,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2642,11 +2677,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2658,7 +2693,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2666,6 +2709,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2684,7 +2733,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2722,7 +2771,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2774,14 +2823,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2840,7 +2889,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2879,8 +2928,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2897,7 +2946,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2905,7 +2954,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2930,14 +2979,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2952,20 +3007,16 @@ msgstr ""
msgid "Title"
msgstr ""
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2995,6 +3046,7 @@ msgid "Tracklist"
msgstr ""
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -3002,7 +3054,7 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr ""
@@ -3014,10 +3066,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3055,25 +3103,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr ""
@@ -3084,7 +3132,7 @@ msgstr ""
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3098,9 +3146,22 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
msgstr ""
#: ../root/release/edit/tracklist.tt:21
@@ -3108,7 +3169,7 @@ msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3185,7 +3246,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3197,23 +3258,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3269,7 +3327,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3307,11 +3365,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3327,7 +3385,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3354,8 +3412,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3364,8 +3422,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3449,8 +3507,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3938,12 +3998,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4028,25 +4088,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4159,15 +4219,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr ""
@@ -4245,7 +4305,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4328,7 +4388,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4361,7 +4421,7 @@ msgstr ""
msgid "Remove artist alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr ""
@@ -4403,8 +4463,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4416,7 +4476,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4450,7 +4510,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4472,8 +4532,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr ""
@@ -4502,14 +4562,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4530,7 +4590,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr ""
@@ -4582,11 +4642,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4638,7 +4693,7 @@ msgstr ""
msgid "Remove label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr ""
@@ -4685,7 +4740,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4736,8 +4791,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr ""
@@ -4816,13 +4875,13 @@ msgstr ""
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr ""
@@ -4850,6 +4909,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr ""
@@ -4863,7 +4924,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr ""
@@ -4875,7 +4936,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -4954,7 +5015,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4967,24 +5028,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -5002,10 +5046,14 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
+#, fuzzy
msgid "Error"
msgstr ""
+"#-#-#-#-# mb_server.pot (PACKAGE VERSION) #-#-#-#-#\n"
+"#-#-#-#-# javascript.pot (PACKAGE VERSION) #-#-#-#-#\n"
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:276 ../root/utility/edit.js:44
msgid "Failed prerequisite"
@@ -5015,9 +5063,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5042,7 +5090,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5485,11 +5533,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr ""
@@ -5580,22 +5628,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5607,17 +5655,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5632,17 +5669,6 @@ msgctxt "noun"
msgid "Tag"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5882,19 +5908,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5902,7 +5928,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6021,9 +6047,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6381,12 +6408,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6420,14 +6447,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6443,7 +6471,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6480,20 +6508,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6522,26 +6536,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr ""
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr ""
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6549,15 +6545,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6612,6 +6603,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr ""
@@ -6624,10 +6616,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6715,6 +6703,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6764,8 +6753,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6774,8 +6766,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6841,10 +6832,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr ""
@@ -6883,7 +6874,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6932,7 +6923,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6946,7 +6940,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7112,7 +7109,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7399,10 +7396,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7435,7 +7434,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7449,7 +7448,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7469,15 +7468,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7487,8 +7477,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7497,21 +7488,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7549,7 +7532,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7588,15 +7571,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7689,7 +7672,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7704,20 +7687,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7888,7 +7861,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7934,7 +7907,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8045,6 +8018,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8089,26 +8063,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8116,15 +8074,8 @@ msgstr ""
#: ../root/components/list/LabelList.js:68
#: ../root/search/components/AreaResults.js:65
-#: ../root/search/components/LabelResults.js:68
-msgid "Code"
-msgstr ""
-
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
+#: ../root/search/components/LabelResults.js:68
+msgid "Code"
msgstr ""
#: ../root/components/list/ReleaseGroupList.js:166
@@ -8135,22 +8086,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr ""
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8275,7 +8220,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8493,7 +8438,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8518,7 +8463,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8543,7 +8489,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8552,15 +8498,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8583,51 +8529,41 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8647,12 +8583,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8769,37 +8699,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8811,17 +8717,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8845,19 +8754,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8916,29 +8825,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8951,17 +8854,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8969,7 +8872,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9010,14 +8913,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9042,11 +8937,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9072,25 +8962,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9112,6 +8987,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9124,7 +9000,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9237,7 +9114,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9299,20 +9176,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9323,11 +9186,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9337,8 +9195,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9354,17 +9212,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9403,28 +9269,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9432,11 +9294,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9453,47 +9317,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10177,7 +10013,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10329,7 +10165,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10496,39 +10332,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10644,11 +10474,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10701,10 +10531,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10717,7 +10543,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10748,27 +10574,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10776,21 +10602,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -10929,7 +10747,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11028,13 +10846,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11168,7 +10980,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11382,7 +11194,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11390,11 +11202,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11406,6 +11213,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11439,16 +11247,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11468,7 +11272,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11542,7 +11346,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11561,7 +11365,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11670,8 +11474,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11877,8 +11681,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11888,10 +11692,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11925,7 +11729,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11934,7 +11738,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12214,7 +12018,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12294,7 +12098,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12421,8 +12225,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12593,13 +12397,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12777,7 +12581,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12801,8 +12605,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13021,20 +12824,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13113,9 +12902,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13124,9 +12913,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13281,6 +13070,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13290,7 +13083,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13301,7 +13094,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13311,9 +13104,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13349,7 +13143,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13433,7 +13227,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13454,42 +13248,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13540,15 +13335,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13601,10 +13396,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13652,7 +13449,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13676,33 +13473,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13720,7 +13517,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13729,32 +13526,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13764,7 +13556,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13802,11 +13600,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13907,15 +13705,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14026,7 +13824,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14321,31 +14119,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14366,7 +14164,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14423,8 +14222,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14514,113 +14313,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14667,53 +14466,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14735,11 +14534,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14774,11 +14573,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14840,10 +14639,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15178,8 +14974,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15385,14 +15181,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15401,7 +15197,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15453,34 +15249,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15507,15 +15303,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15756,10 +15548,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15821,23 +15609,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15939,7 +15727,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16166,10 +15955,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16211,191 +15996,183 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
msgstr ""
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16642,7 +16419,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16656,7 +16433,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
diff --git a/po/mb_server.pt.po b/po/mb_server.pt.po
index 618a01df945..29e8378c04c 100644
--- a/po/mb_server.pt.po
+++ b/po/mb_server.pt.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:58+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Portuguese Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2077,15 +2104,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2135,7 +2159,7 @@ msgstr[2] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr ""
@@ -2176,27 +2200,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2219,7 +2248,7 @@ msgstr "País de lançamento"
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2239,10 +2268,6 @@ msgstr ""
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2260,7 +2285,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2284,16 +2309,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2309,7 +2326,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2319,11 +2336,11 @@ msgstr ""
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2334,7 +2351,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2395,7 +2412,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2413,29 +2430,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "Guardar"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2454,10 +2475,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2525,11 +2542,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2561,9 +2581,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2574,13 +2601,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr "Estado"
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2588,11 +2623,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2605,9 +2640,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr ""
@@ -2617,11 +2652,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2635,11 +2670,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2651,7 +2686,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2659,6 +2702,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2677,7 +2726,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2715,7 +2764,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2767,14 +2816,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2833,7 +2882,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2872,8 +2921,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2890,7 +2939,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2898,7 +2947,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2923,14 +2972,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2945,20 +3000,16 @@ msgstr ""
msgid "Title"
msgstr ""
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2988,6 +3039,7 @@ msgid "Tracklist"
msgstr ""
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -2995,7 +3047,7 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "Faixas"
@@ -3007,10 +3059,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3048,25 +3096,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr "Tipo"
@@ -3077,7 +3125,7 @@ msgstr "Tipo"
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3091,9 +3139,22 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
msgstr ""
#: ../root/release/edit/tracklist.tt:21
@@ -3101,7 +3162,7 @@ msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3178,7 +3239,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3190,23 +3251,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3262,7 +3320,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3300,11 +3358,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3320,7 +3378,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3347,8 +3405,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3357,8 +3415,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3442,8 +3500,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3936,12 +3996,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4026,25 +4086,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4157,15 +4217,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr ""
@@ -4243,7 +4303,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4326,7 +4386,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4359,7 +4419,7 @@ msgstr ""
msgid "Remove artist alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr ""
@@ -4401,8 +4461,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4414,7 +4474,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4448,7 +4508,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4470,8 +4530,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr ""
@@ -4500,14 +4560,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4528,7 +4588,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr ""
@@ -4580,11 +4640,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4636,7 +4691,7 @@ msgstr ""
msgid "Remove label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr ""
@@ -4683,7 +4738,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4734,8 +4789,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr ""
@@ -4814,13 +4873,13 @@ msgstr ""
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr ""
@@ -4848,6 +4907,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr ""
@@ -4861,7 +4922,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr ""
@@ -4873,7 +4934,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -4956,7 +5017,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4969,24 +5030,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -5004,6 +5048,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5017,9 +5062,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5044,7 +5089,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5487,11 +5532,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr ""
@@ -5582,22 +5627,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5609,17 +5654,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5634,17 +5668,6 @@ msgctxt "noun"
msgid "Tag"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5884,19 +5907,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5904,7 +5927,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6023,9 +6046,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6383,12 +6407,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6422,14 +6446,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6445,7 +6470,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6482,20 +6507,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6524,26 +6535,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr ""
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr ""
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6551,15 +6544,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6614,6 +6602,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr ""
@@ -6626,10 +6615,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6717,6 +6702,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6766,8 +6752,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6776,8 +6765,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6843,10 +6831,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr "Artistas"
@@ -6885,7 +6873,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6934,7 +6922,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6948,7 +6939,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7115,7 +7109,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7410,10 +7404,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7446,7 +7442,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7460,7 +7456,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7480,15 +7476,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7498,8 +7485,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7508,21 +7496,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7560,7 +7540,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7599,15 +7579,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7700,7 +7680,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7715,20 +7695,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7900,7 +7870,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7946,7 +7916,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8066,6 +8036,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8113,26 +8084,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Género"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8144,13 +8099,6 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8159,22 +8107,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Estado"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8299,7 +8241,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8517,7 +8459,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8544,7 +8486,8 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8569,7 +8512,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8578,15 +8521,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8609,52 +8552,42 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
-msgid "Opened:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
+#: ../root/edit/components/EditSidebar.js:48
+msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8674,12 +8607,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8796,37 +8723,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8838,17 +8741,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Nome do ficheiro:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8872,19 +8778,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8943,29 +8849,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8978,17 +8878,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8996,7 +8896,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9037,14 +8937,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9069,11 +8961,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9099,25 +8986,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9140,6 +9012,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9152,7 +9025,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9265,7 +9139,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9284,8 +9158,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9327,20 +9201,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Número de catálogo"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9351,11 +9211,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9365,8 +9220,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9382,17 +9237,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9431,28 +9294,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9460,11 +9319,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9481,47 +9342,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr ""
+msgid "Status"
+msgstr "Estado"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "Estado"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10216,7 +10049,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10368,7 +10201,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10535,39 +10368,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10684,11 +10511,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10741,10 +10568,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10757,7 +10580,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10788,27 +10611,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10816,21 +10639,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Licença"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -10970,7 +10785,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11069,14 +10884,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11210,7 +11018,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11424,7 +11232,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11432,11 +11240,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11448,6 +11251,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11481,16 +11285,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11510,7 +11310,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11584,7 +11384,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11603,7 +11403,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11713,8 +11513,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11920,8 +11720,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11931,10 +11731,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11968,7 +11768,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11977,7 +11777,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12257,7 +12057,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12337,7 +12137,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12464,8 +12264,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12636,13 +12436,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12820,7 +12620,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12844,8 +12644,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13064,20 +12863,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13156,9 +12941,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13167,9 +12952,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13324,6 +13109,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Número de catálogo"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13333,7 +13122,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13344,7 +13133,7 @@ msgstr "Início"
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13354,9 +13143,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13392,7 +13182,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13476,7 +13266,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13497,42 +13287,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13583,15 +13374,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13644,10 +13435,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13696,7 +13489,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13720,33 +13513,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13764,7 +13557,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13773,32 +13566,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13808,7 +13596,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13846,11 +13640,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13951,15 +13745,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14071,7 +13865,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14368,31 +14162,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14413,7 +14207,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14470,8 +14265,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14561,113 +14356,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14714,53 +14509,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14782,11 +14577,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14821,11 +14616,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14887,10 +14682,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15225,8 +15017,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15434,14 +15226,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15450,7 +15242,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15502,34 +15294,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15556,15 +15348,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15813,10 +15601,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15878,23 +15662,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15996,7 +15780,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16223,10 +16008,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16268,191 +16049,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Actions"
+msgid "Restrictions"
+msgstr "Ações"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16712,7 +16487,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16726,7 +16501,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16951,5 +16726,17 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Artist:"
+#~ msgstr "Artista:"
+
+#~ msgid "Merge"
+#~ msgstr "Unir"
+
+#~ msgid "Status"
+#~ msgstr "Estado"
+
+#~ msgid "Filename:"
+#~ msgstr "Nome do ficheiro:"
+
#~ msgid "Username:"
#~ msgstr "Nome de utilizador:"
diff --git a/po/mb_server.ro.po b/po/mb_server.ro.po
index e96e495ae52..9c957ce8e57 100644
--- a/po/mb_server.ro.po
+++ b/po/mb_server.ro.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:58+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Romanian Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2079,15 +2106,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2137,7 +2161,7 @@ msgstr[2] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr ""
@@ -2178,27 +2202,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2221,7 +2250,7 @@ msgstr ""
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2241,10 +2270,6 @@ msgstr ""
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2262,7 +2287,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2286,16 +2311,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2311,7 +2328,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2321,11 +2338,11 @@ msgstr ""
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2336,7 +2353,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2397,7 +2414,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2415,29 +2432,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "Înregistrează"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2456,10 +2477,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2527,11 +2544,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2563,9 +2583,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2576,13 +2603,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr ""
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2590,11 +2625,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2607,9 +2642,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr ""
@@ -2619,11 +2654,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2637,11 +2672,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2653,7 +2688,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2661,6 +2704,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2679,7 +2728,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2717,7 +2766,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2769,14 +2818,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2835,7 +2884,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2874,8 +2923,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2892,7 +2941,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2900,7 +2949,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2925,14 +2974,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2947,20 +3002,16 @@ msgstr ""
msgid "Title"
msgstr "Titlu"
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2990,6 +3041,7 @@ msgid "Tracklist"
msgstr ""
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -2997,7 +3049,7 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "Piese"
@@ -3009,10 +3061,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3050,25 +3098,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr ""
@@ -3079,7 +3127,7 @@ msgstr ""
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3093,17 +3141,30 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
-msgstr ""
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr "URL"
#: ../root/release/edit/tracklist.tt:21
msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3180,7 +3241,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3192,23 +3253,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3264,7 +3322,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3302,11 +3360,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3322,7 +3380,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3349,8 +3407,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3359,8 +3417,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3444,8 +3502,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3938,12 +3998,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4028,25 +4088,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4159,15 +4219,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr "Trimite un e-mail"
@@ -4245,7 +4305,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4328,7 +4388,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4361,7 +4421,7 @@ msgstr "Elimină artist"
msgid "Remove artist alias"
msgstr "Elimina un alias pentru artist"
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr "Editați artist"
@@ -4403,8 +4463,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4416,7 +4476,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4450,7 +4510,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4472,8 +4532,8 @@ msgstr "Adaugă o relație"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr "Adăugați Album"
@@ -4502,14 +4562,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr "Editați album"
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4530,7 +4590,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr ""
@@ -4582,11 +4642,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4638,7 +4693,7 @@ msgstr ""
msgid "Remove label"
msgstr "Elimină casa de discuri"
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr "Editați casa de discuri"
@@ -4685,7 +4740,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4736,8 +4791,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr "Elimină cod ISRC"
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr ""
@@ -4816,13 +4875,13 @@ msgstr ""
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(necunoscut)"
@@ -4850,6 +4909,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr ""
@@ -4863,7 +4924,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr ""
@@ -4875,7 +4936,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -4958,7 +5019,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4971,24 +5032,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr "URL"
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -5006,6 +5050,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5019,9 +5064,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5046,7 +5091,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5489,11 +5534,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr ""
@@ -5584,22 +5629,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5611,17 +5656,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr "Adnotare"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5636,17 +5670,6 @@ msgctxt "noun"
msgid "Tag"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5886,19 +5909,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5906,7 +5929,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6025,9 +6048,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6385,12 +6409,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6424,14 +6448,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6447,7 +6472,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6484,20 +6509,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6526,26 +6537,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr ""
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr ""
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6553,15 +6546,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6616,6 +6604,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr ""
@@ -6628,10 +6617,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6719,6 +6704,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6768,8 +6754,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6778,8 +6767,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6845,10 +6833,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr ""
@@ -6887,7 +6875,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6936,7 +6924,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6950,7 +6941,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7117,7 +7111,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7412,10 +7406,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7448,7 +7444,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7462,7 +7458,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7482,15 +7478,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7500,8 +7487,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7510,21 +7498,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7562,7 +7542,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7601,15 +7581,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7702,7 +7682,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7717,20 +7697,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "Alias"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7902,7 +7872,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7948,7 +7918,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8068,6 +8038,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8115,26 +8086,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8146,13 +8101,6 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8160,23 +8108,17 @@ msgstr ""
#: ../root/components/list/ReleaseList.js:95
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
-#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
-msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
msgstr ""
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8301,7 +8243,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8519,7 +8461,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8546,7 +8488,8 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8571,7 +8514,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8580,15 +8523,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8611,52 +8554,42 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8676,12 +8609,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8798,37 +8725,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8840,17 +8743,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8874,19 +8780,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8945,29 +8851,23 @@ msgstr "(nimic)"
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8980,17 +8880,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8998,7 +8898,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9039,14 +8939,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9071,11 +8963,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9101,25 +8988,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9142,6 +9014,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9154,7 +9027,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9267,7 +9141,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9286,8 +9160,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9329,20 +9203,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9353,11 +9213,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9367,8 +9222,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9384,17 +9239,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9433,28 +9296,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9462,11 +9321,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9483,47 +9344,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10218,7 +10051,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10370,7 +10203,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10537,39 +10370,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10686,11 +10513,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10743,10 +10570,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10759,7 +10582,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10790,27 +10613,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10818,21 +10641,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -10972,7 +10787,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11071,14 +10886,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11212,7 +11020,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11426,7 +11234,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11434,11 +11242,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11450,6 +11253,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11483,16 +11287,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11512,7 +11312,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11586,7 +11386,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11605,7 +11405,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11715,8 +11515,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11922,8 +11722,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11933,10 +11733,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11970,7 +11770,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11979,7 +11779,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12259,7 +12059,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12339,7 +12139,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12466,8 +12266,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12638,13 +12438,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12822,7 +12622,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12846,8 +12646,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13066,20 +12865,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13158,9 +12943,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13169,9 +12954,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13326,6 +13111,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13335,7 +13124,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13346,7 +13135,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13356,9 +13145,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13394,7 +13184,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13478,7 +13268,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13499,42 +13289,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13585,15 +13376,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13646,10 +13437,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13698,7 +13491,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13722,33 +13515,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13766,7 +13559,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13775,32 +13568,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13810,7 +13598,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13848,11 +13642,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13953,15 +13747,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14073,7 +13867,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14370,31 +14164,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14415,7 +14209,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14472,8 +14267,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14563,113 +14358,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14716,53 +14511,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14784,11 +14579,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14823,11 +14618,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14889,10 +14684,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15227,8 +15019,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15436,14 +15228,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15452,7 +15244,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15504,34 +15296,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15558,15 +15350,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15815,10 +15603,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15880,23 +15664,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15998,7 +15782,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16225,10 +16010,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16270,191 +16051,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Actions"
+msgid "Restrictions"
+msgstr "Acțiuni"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16714,7 +16489,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16728,7 +16503,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16953,6 +16728,9 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Artist:"
+#~ msgstr "Artist:"
+
#~ msgid "No title provided"
#~ msgstr "Niciun titlu furnizat"
diff --git a/po/mb_server.ru.po b/po/mb_server.ru.po
index 2a19069b6d3..209b4d4af6d 100644
--- a/po/mb_server.ru.po
+++ b/po/mb_server.ru.po
@@ -8,7 +8,7 @@
# Dmitr Y, 2017
# Edward Pavlenko , 2019
# Ekaterina , 2020-2021
-# , 2012
+# , 2012
# Gordey Kislov, 2022
# greycat , 2016
# greycat , 2012
@@ -35,23 +35,24 @@
# Екатерина Тишина , 2016
# Иван Стасюк , 2016
# й й , 2016
+# wileyfoxyx , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
-"PO-Revision-Date: 2023-08-18 12:58+0000\n"
-"Last-Translator: Anonymous \n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
+"PO-Revision-Date: 2023-11-11 13:27+0000\n"
+"Last-Translator: wileyfoxyx \n"
"Language-Team: Russian \n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
-"%100>=11 && n%100<=14)? 2 : 3);\n"
-"X-Generator: Weblate 4.18.2\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || ("
+"n%100>=11 && n%100<=14)? 2 : 3);\n"
+"X-Generator: Weblate 5.1\n"
#: ../root/components/common-macros.tt:12
msgid " ({text})"
@@ -68,7 +69,7 @@ msgstr "\"CC\" это соответствующий двухсимвольны
#: ../root/components/forms.tt:312
msgid "\"DDD\" is a nine digit work identifier."
-msgstr "\"DDD\" это девятизначный рабочий идентификационный номер."
+msgstr "\"DDD\" это девятизначный идентификационный номер произведения."
#: ../root/components/forms.tt:326
msgid ""
@@ -103,8 +104,8 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:88
#: ../root/recording/RecordingIndex.js:53
#: ../root/static/scripts/release/components/MediumTable.js:83
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1563
-#: ../root/utility/tableColumns.js:567
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1564
+#: ../root/utility/tableColumns.js:572
msgid "#"
msgstr "#"
@@ -153,8 +154,8 @@ msgstr "(нет других обложек)"
#: ../root/edit/details/MergeReleases.js:239
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
-#: ../root/utility/tableColumns.js:508 ../root/utility/tableColumns.js:516
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/utility/tableColumns.js:513 ../root/utility/tableColumns.js:521
msgctxt "and"
msgid "/"
msgstr "/"
@@ -251,8 +252,8 @@ msgstr "Добавить инструмент"
msgid "Add Label"
msgstr "Добавить лэйбл"
-#: ../root/release/edit/information.tt:213
-#: ../root/release/edit/information.tt:214
+#: ../root/release/edit/information.tt:215
+#: ../root/release/edit/information.tt:216
#: ../root/layout/components/BottomMenu.js:248
msgctxt "button/menu"
msgid "Add Label"
@@ -272,8 +273,8 @@ msgctxt "header"
msgid "Add Release"
msgstr "Добавить издание"
-#: ../root/release/edit/information.tt:169
-#: ../root/release/edit/information.tt:170
+#: ../root/release/edit/information.tt:171
+#: ../root/release/edit/information.tt:172
msgctxt "button/menu"
msgid "Add Release Event"
msgstr "Добавить выпуск издания"
@@ -318,7 +319,7 @@ msgstr ""
"Добавьте носитель, нажав \"Добавить носитель\" ниже, или поставьте галочку, "
"подтвердив, что треклист неизвестен."
-#: ../root/release/edit/recordings.tt:212
+#: ../root/release/edit/recordings.tt:178
#: ../root/static/scripts/edit/components/AddEntityDialog.js:21
msgid "Add a new recording"
msgstr "Добавить новую запись"
@@ -343,14 +344,17 @@ msgstr "Добавить {item}"
msgid "Add {num} track(s)"
msgstr "Добавить треков: {num}"
-#: ../root/release/edit/information.tt:245
+#: ../root/release/edit/information.tt:247
msgid "Additional information"
msgstr "Дополнительная информация"
-#: ../root/place/edit_form.tt:16
-#: ../root/layout/components/sidebar/PlaceSidebar.js:82
-msgid "Address:"
-msgstr "Адрес:"
+#: ../root/place/edit_form.tt:16 ../root/components/list/PlaceList.js:66
+#: ../root/edit/details/AddPlace.js:55 ../root/edit/details/EditPlace.js:68
+#: ../root/layout/components/sidebar/PlaceSidebar.js:84
+#: ../root/report/PlacesWithoutCoordinates.js:41
+#: ../root/search/components/PlaceResults.js:65
+msgid "Address"
+msgstr "Адрес"
#: ../root/release/edit/recordings.tt:3
msgid ""
@@ -374,9 +378,17 @@ msgstr ""
msgid "An error occurred: "
msgstr "Произошла следующая ошибка:"
-#: ../root/release/edit/information.tt:249
-msgid "Annotation:"
-msgstr "Аннотация:"
+#: ../root/release/edit/information.tt:251
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
+#: ../root/annotation/AnnotationRevision.js:32
+#: ../root/annotation/EditAnnotation.js:74
+#: ../root/layout/components/Search.js:41
+#: ../root/report/hooks/useAnnotationColumns.js:28
+#: ../root/search/components/AnnotationResults.js:56
+#: ../root/search/components/SearchForm.js:45
+#: ../root/static/scripts/common/components/Annotation.js:51
+msgid "Annotation"
+msgstr "Аннотация"
#: ../root/edit/search_macros.tt:423
msgid "Applied Edit Count of Editor"
@@ -388,7 +400,9 @@ msgctxt "vote"
msgid "Approve"
msgstr "Одобрить"
-#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Area.pm:7
+#: ../root/artist/edit_form.tt:20 ../root/edit/search_macros.tt:423
+#: ../root/label/edit_form.tt:18 ../root/place/edit_form.tt:19
+#: ../lib/MusicBrainz/Server/Edit/Area.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:44
#: ../root/components/list/AreaList.js:46
#: ../root/components/list/ArtistList.js:92
@@ -398,8 +412,11 @@ msgstr "Одобрить"
#: ../root/edit/details/AddPlace.js:61 ../root/edit/details/EditArea.js:43
#: ../root/edit/details/EditArtist.js:108 ../root/edit/details/EditLabel.js:119
#: ../root/edit/details/EditPlace.js:75 ../root/layout/components/Search.js:35
+#: ../root/layout/components/sidebar/ArtistSidebar.js:126
+#: ../root/layout/components/sidebar/LabelSidebar.js:90
+#: ../root/layout/components/sidebar/PlaceSidebar.js:91
#: ../root/report/PlacesWithoutCoordinates.js:42
-#: ../root/search/components/ArtistResults.js:56
+#: ../root/search/components/ArtistResults.js:55
#: ../root/search/components/LabelResults.js:69
#: ../root/search/components/PlaceResults.js:66
#: ../root/search/components/SearchForm.js:43
@@ -413,18 +430,12 @@ msgstr "Область"
msgid "Area Details"
msgstr "Подробности области"
-#: ../root/artist/edit_form.tt:20 ../root/label/edit_form.tt:18
-#: ../root/place/edit_form.tt:19
-#: ../root/layout/components/sidebar/ArtistSidebar.js:120
-#: ../root/layout/components/sidebar/LabelSidebar.js:87
-#: ../root/layout/components/sidebar/PlaceSidebar.js:88
-msgid "Area:"
-msgstr "Область:"
-
#: ../root/cdstub/cdstub.tt:7 ../root/cdtoc/attach_filter_release.tt:29
#: ../root/cdtoc/list.tt:8 ../root/cdtoc/lookup.tt:42
-#: ../root/edit/search_macros.tt:423 ../root/release/edit/tracklist.tt:163
-#: ../root/release/edit/tracklist.tt:453
+#: ../root/cdtoc/lookup.tt:75 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/information.tt:26 ../root/release/edit/tracklist.tt:110
+#: ../root/release/edit/tracklist.tt:163 ../root/release/edit/tracklist.tt:453
+#: ../root/release_group/set_cover_art.tt:32
#: ../lib/MusicBrainz/Server/Edit/Artist.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:38
#: ../root/cdstub/BrowseCDStubs.js:37 ../root/cdstub/CDStubInfo.js:28
@@ -449,8 +460,14 @@ msgstr "Область:"
#: ../root/edit/details/historic/AddRelease.js:38
#: ../root/edit/details/historic/AddRelease.js:90
#: ../root/edit/details/historic/AddTrackKV.js:41
-#: ../root/edit/details/historic/EditTrack.js:35 ../root/isrc/Index.js:67
+#: ../root/edit/details/historic/ChangeArtistQuality.js:24
+#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
+#: ../root/edit/details/historic/EditTrack.js:35
+#: ../root/edit/details/historic/MoveRelease.js:30
+#: ../root/edit/details/historic/RemoveRelease.js:26 ../root/isrc/Index.js:67
#: ../root/layout/components/Search.js:24
+#: ../root/layout/components/sidebar/RecordingSidebar.js:49
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
#: ../root/release_group/ReleaseGroupIndex.js:168
#: ../root/report/DuplicateArtists.js:67
#: ../root/report/DuplicateReleaseGroups.js:59
@@ -467,11 +484,12 @@ msgstr "Область:"
#: ../root/search/components/CDStubResults.js:45
#: ../root/search/components/RecordingResults.js:143
#: ../root/search/components/ReleaseGroupResults.js:64
-#: ../root/search/components/ReleaseResults.js:113
+#: ../root/search/components/ReleaseResults.js:112
#: ../root/search/components/SearchForm.js:37
#: ../root/static/scripts/common/constants.js:36
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:50
#: ../root/static/scripts/common/utility/formatSetlist.js:52
+#: ../root/static/scripts/edit/components/forms.js:29
#: ../root/static/scripts/release/components/MediumTable.js:86
#: ../root/taglookup/Form.js:25 ../root/user/UserProfile.js:50
msgid "Artist"
@@ -485,19 +503,6 @@ msgstr "Область артиста"
msgid "Artist Details"
msgstr "Подробности об артисте"
-#: ../root/cdtoc/lookup.tt:75 ../root/release/edit/information.tt:26
-#: ../root/release/edit/tracklist.tt:110
-#: ../root/release_group/set_cover_art.tt:32
-#: ../root/edit/details/historic/ChangeArtistQuality.js:24
-#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
-#: ../root/edit/details/historic/MoveRelease.js:30
-#: ../root/edit/details/historic/RemoveRelease.js:26
-#: ../root/layout/components/sidebar/RecordingSidebar.js:49
-#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
-#: ../root/static/scripts/edit/components/forms.js:29
-msgid "Artist:"
-msgstr "Исполнитель:"
-
#: ../root/cdtoc/attach_artist_releases.tt:40
#: ../root/cdtoc/attach_filter_release.tt:54
msgctxt "button/menu"
@@ -524,8 +529,19 @@ msgid "Attached to releases"
msgstr ""
#: ../root/relationship/linktype/form.tt:52
-msgid "Attributes:"
-msgstr "Атрибуты:"
+#: ../root/admin/attributes/Attribute.js:72
+#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
+#: ../root/admin/attributes/Language.js:33
+#: ../root/admin/attributes/Script.js:33
+#: ../root/components/RelationshipsTable.js:336
+#: ../root/edit/details/AddRelationshipType.js:169
+#: ../root/edit/details/EditRelationshipType.js:297
+#: ../root/edit/details/RemoveRelationshipType.js:117
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
+#: ../root/utility/tableColumns.js:671
+msgid "Attributes"
+msgstr "Атрибуты"
#: ../root/edit/search_macros.tt:397
msgid "Auto-Editor"
@@ -534,6 +550,8 @@ msgstr "Авто-редактор"
#: ../root/cdtoc/attach_artist_releases.tt:19
#: ../root/cdtoc/attach_filter_release.tt:33 ../root/cdtoc/list.tt:13
#: ../root/cdtoc/lookup.tt:47 ../root/release/edit/duplicates.tt:17
+#: ../root/release/edit/information.tt:222
+#: ../root/release_group/set_cover_art.tt:62
#: ../root/components/list/ReleaseList.js:139
#: ../root/edit/details/AddRelease.js:112
#: ../root/edit/details/EditBarcodes.js:45
@@ -543,20 +561,15 @@ msgstr "Авто-редактор"
#: ../root/edit/details/MergeReleases.js:242
#: ../root/edit/details/historic/AddRelease.js:125
#: ../root/edit/details/historic/EditReleaseEvents.js:113
+#: ../root/layout/components/sidebar/CDStubSidebar.js:71
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:128
#: ../root/otherlookup/OtherLookupForm.js:62
#: ../root/release_group/ReleaseGroupIndex.js:174
#: ../root/report/ReleasesSameBarcode.js:40
-#: ../root/search/components/ReleaseResults.js:119
+#: ../root/search/components/ReleaseResults.js:118
msgid "Barcode"
msgstr "Штрих-код"
-#: ../root/release/edit/information.tt:220
-#: ../root/release_group/set_cover_art.tt:62
-#: ../root/layout/components/sidebar/CDStubSidebar.js:63
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:126
-msgid "Barcode:"
-msgstr "Штрих-код:"
-
#: ../root/cdtoc/lookup.tt:33
msgid ""
"Based on the above CD stub, we also found the following releases in "
@@ -575,15 +588,25 @@ msgstr ""
"аналогичный релиз уже существует в MusicBrainz. Если вы хотите основать свой "
"релиз на уже существующем, то выберите его ниже."
-#: ../root/artist/edit_form.tt:42
-msgid "Begin Area:"
-msgstr "Начал на территории:"
+#: ../root/artist/edit_form.tt:42 ../root/components/list/ArtistList.js:102
+#: ../root/search/components/ArtistResults.js:57
+msgid "Begin Area"
+msgstr "Начальная область"
#: ../root/artist/edit_form.tt:38 ../root/components/forms.tt:212
#: ../root/event/edit_form.tt:36 ../root/artist/utils.js:34
+#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
+#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
+#: ../root/edit/details/AddRemoveAlias.js:90
+#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
+#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
+#: ../root/edit/details/EditPlace.js:93
#: ../root/layout/components/sidebar/AreaSidebar.js:58
-msgid "Begin date:"
-msgstr "Дата начала:"
+#: ../root/report/RecordingsWithFutureDates.js:34
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
+msgid "Begin date"
+msgstr ""
#: ../root/release/add_cover_art.tt:95 ../root/search/error/InternalError.js:29
msgid ""
@@ -677,38 +700,33 @@ msgstr "Отменить"
msgid "Cardinality of {entity_placeholder}"
msgstr ""
-#: ../root/release/edit/information.tt:192
+#: ../root/release/edit/information.tt:194
msgid "Cat. No:"
msgstr "Кат. №:"
#: ../root/cdtoc/attach_artist_releases.tt:18
#: ../root/cdtoc/attach_filter_release.tt:32 ../root/cdtoc/list.tt:12
#: ../root/cdtoc/lookup.tt:46 ../root/release/edit/duplicates.tt:16
+#: ../root/release_group/set_cover_art.tt:56
#: ../root/edit/details/MergeReleases.js:241
#: ../root/recording/RecordingIndex.js:62
#: ../root/release_group/ReleaseGroupIndex.js:173
-#: ../root/search/components/ReleaseResults.js:118
-#: ../root/utility/tableColumns.js:482 ../root/utility/tableColumns.js:487
+#: ../root/search/components/ReleaseResults.js:117
+#: ../root/utility/tableColumns.js:487 ../root/utility/tableColumns.js:492
msgid "Catalog#"
msgstr "Каталог#"
-#: ../root/release_group/set_cover_art.tt:56
-msgid "Catalog#:"
-msgstr "Каталог#"
-
-#: ../root/admin/attributes/form.tt:53 ../root/admin/attributes/Attribute.js:82
-#: ../root/edit/details/AddRelationshipAttribute.js:50
-#: ../root/edit/details/EditRelationshipAttribute.js:93
-msgid "Child order"
-msgstr ""
-
+#: ../root/admin/attributes/form.tt:53
#: ../root/relationship/linkattributetype/form.tt:7
#: ../root/relationship/linktype/form.tt:7
+#: ../root/admin/attributes/Attribute.js:82
+#: ../root/edit/details/AddRelationshipAttribute.js:50
+#: ../root/edit/details/EditRelationshipAttribute.js:93
#: ../root/edit/details/EditRelationshipType.js:241
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:122
#: ../root/relationship/linktype/RelationshipTypeIndex.js:162
#: ../root/relationship/linktype/RelationshipTypePairTree.js:58
-msgid "Child order:"
+msgid "Child order"
msgstr ""
#: ../root/release/edit/recordings.tt:114
@@ -720,6 +738,7 @@ msgid "Close"
msgstr "Закрыть"
#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditHeader.js:155
+#: ../root/edit/components/EditSidebar.js:59
msgid "Closed"
msgstr "Закрыт"
@@ -731,22 +750,15 @@ msgstr "Коллаборации данного исполнителя"
msgid "Collapse medium"
msgstr "Свернуть носитель"
-#: ../root/cdstub/index.tt:3 ../root/cdstub/CDStubIndex.js:36
+#: ../root/cdstub/index.tt:3 ../root/release/add_cover_art.tt:69
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:71 ../root/cdstub/CDStubIndex.js:36
msgid "Comment"
msgstr "Комментарий"
-#: ../root/release/add_cover_art.tt:69 ../root/release/add_cover_art.tt:137
-#: ../root/release/reorder_cover_art.tt:19
-#: ../root/release_group/set_cover_art.tt:71
-#: ../root/edit/details/AddCoverArt.js:54
-#: ../root/edit/details/EditCoverArt.js:67
-#: ../root/edit/details/RemoveCoverArt.js:56
-#: ../root/release/CoverArtFields.js:93
-msgid "Comment:"
-msgstr "Комментарий:"
-
#: ../root/place/edit_form.tt:28 ../root/edit/details/AddPlace.js:67
#: ../root/edit/details/EditPlace.js:86
+#: ../root/layout/components/sidebar/PlaceSidebar.js:99
msgid "Coordinates"
msgstr "Координаты"
@@ -774,33 +786,26 @@ msgstr "Скопировать название издания в группу
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:44 ../root/release/edit/duplicates.tt:14
+#: ../root/release/edit/information.tt:156
+#: ../root/release_group/set_cover_art.tt:41
#: ../root/edit/details/EditReleaseLabel.js:113
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:122
#: ../root/edit/details/historic/EditReleaseEvents.js:110
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/common/components/FilterForm.js:187
-#: ../root/utility/tableColumns.js:504 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:509 ../root/utility/tableColumns.js:521
msgid "Country"
msgstr "Страна"
-#: ../root/release/edit/information.tt:154
-#: ../root/release_group/set_cover_art.tt:41
-msgid "Country:"
-msgstr "Страна:"
-
#: ../root/release_group/set_cover_art.tt:67
#: ../root/components/EntityTabs.js:114 ../root/release/CoverArt.js:57
#: ../root/user/UserProfile.js:51
msgid "Cover Art"
msgstr "Обложка"
-#: ../root/edit/search_macros.tt:423
-msgid "Created"
-msgstr "Создан"
-
#: ../root/release/add_cover_art.tt:85
msgid "Creating edit..."
msgstr ""
@@ -809,7 +814,7 @@ msgstr ""
msgid "Custom delimiter"
msgstr ""
-#: ../root/release/edit/information.tt:146
+#: ../root/release/edit/information.tt:148
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:253
#: ../root/static/scripts/edit/components/PartialDateInput.js:186
msgid "DD"
@@ -824,6 +829,8 @@ msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:43 ../root/release/edit/duplicates.tt:13
+#: ../root/release/edit/information.tt:130
+#: ../root/release_group/set_cover_art.tt:37
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:25
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:30
#: ../root/admin/statistics-events/StatisticsEventIndex.js:26
@@ -832,14 +839,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:121
#: ../root/edit/details/historic/EditReleaseEvents.js:109
-#: ../root/elections/ElectionVotes.js:28 ../root/recording/RecordingIndex.js:60
+#: ../root/elections/ElectionVotes.js:28
+#: ../root/layout/components/sidebar/EventSidebar.js:61
+#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
#: ../root/search/components/EventResults.js:74
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:106
#: ../root/static/scripts/common/components/FilterForm.js:225
-#: ../root/utility/tableColumns.js:279 ../root/utility/tableColumns.js:284
-#: ../root/utility/tableColumns.js:510 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:284 ../root/utility/tableColumns.js:289
+#: ../root/utility/tableColumns.js:515 ../root/utility/tableColumns.js:521
msgid "Date"
msgstr "Дата"
@@ -849,12 +858,6 @@ msgstr "Дата"
msgid "Date Period"
msgstr ""
-#: ../root/release/edit/information.tt:128
-#: ../root/release_group/set_cover_art.tt:37
-#: ../root/layout/components/sidebar/EventSidebar.js:59
-msgid "Date:"
-msgstr "Дата:"
-
#: ../root/artist/edit_form.tt:36 ../root/components/forms.tt:210
#: ../root/event/edit_form.tt:34
#: ../root/static/scripts/edit/components/DateRangeFieldset.js:186
@@ -865,11 +868,10 @@ msgstr ""
"Даты указываются в формате ГГГГ-ММ-ДД. Частичные даты, такие как ГГГГ-ММ или "
"просто ГГГГ, допустимы, или вы можете полностью опустить дату."
-#: ../root/edit/search_macros.tt:120
-msgid "Delete"
-msgstr "Удалить"
-
#: ../root/admin/attributes/form.tt:61 ../root/doc/edit_type.tt:23
+#: ../root/instrument/edit_form.tt:13
+#: ../root/relationship/linkattributetype/form.tt:15
+#: ../root/relationship/linktype/form.tt:20
#: ../root/admin/attributes/Attribute.js:80
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:33
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:42
@@ -889,19 +891,13 @@ msgstr "Удалить"
#: ../root/instrument/InstrumentIndex.js:34
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:110
#: ../root/relationship/linktype/RelationshipTypeIndex.js:146
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
#: ../root/search/components/InstrumentResults.js:55
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:206
-#: ../root/utility/tableColumns.js:676
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:209
+#: ../root/utility/tableColumns.js:681
msgid "Description"
msgstr "Описание"
-#: ../root/instrument/edit_form.tt:13
-#: ../root/relationship/linkattributetype/form.tt:15
-#: ../root/relationship/linktype/form.tt:20
-#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
-msgid "Description:"
-msgstr "Описание:"
-
#: ../root/doc/edit_type.tt:28 ../root/components/EntityTabs.js:146
#: ../root/elections/ElectionDetails.js:29 ../root/entity/Details.js:91
#: ../root/entity/Details.js:93
@@ -911,7 +907,7 @@ msgstr "Подробнее"
#: ../root/area/edit_form.tt:10 ../root/artist/edit_form.tt:14
#: ../root/event/edit_form.tt:13 ../root/instrument/edit_form.tt:10
#: ../root/label/edit_form.tt:13 ../root/place/edit_form.tt:13
-#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:256
+#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:258
#: ../root/release_group/edit_form.tt:15 ../root/series/edit_form.tt:13
#: ../root/work/edit_form.tt:13 ../root/edit/details/AddArea.js:54
#: ../root/edit/details/AddArtist.js:62 ../root/edit/details/AddEvent.js:44
@@ -934,7 +930,13 @@ msgstr "Подробнее"
msgid "Disambiguation"
msgstr "Дезамбигурация"
-#: ../root/release/discids.tt:8 ../root/edit/details/SetTrackLengths.js:54
+#: ../root/release/discids.tt:8 ../root/cdtoc/CDTocInfo.js:32
+#: ../root/edit/details/AddDiscId.js:34 ../root/edit/details/MoveDiscId.js:26
+#: ../root/edit/details/RemoveDiscId.js:31
+#: ../root/edit/details/SetTrackLengths.js:54
+#: ../root/edit/details/historic/AddDiscId.js:27
+#: ../root/edit/details/historic/MoveDiscId.js:21
+#: ../root/edit/details/historic/RemoveDiscId.js:23
#: ../root/otherlookup/OtherLookupForm.js:112
#: ../root/utility/tableColumns.js:199 ../root/utility/tableColumns.js:204
msgid "Disc ID"
@@ -964,15 +966,23 @@ msgstr ""
"точки"
#: ../root/relationship/linktype/form.tt:65
-msgid "Documentation:"
-msgstr "Документация:"
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
+#: ../root/edit/details/AddRelationshipType.js:187
+#: ../root/edit/details/EditRelationshipType.js:327
+#: ../root/layout/components/BottomMenu.js:293
+#: ../root/layout/components/Search.js:51
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
+#: ../root/search/components/SearchForm.js:56
+msgid "Documentation"
+msgstr "Документация"
#: ../root/layout.tt:112 ../root/layout/components/Footer.js:26
msgid "Donate"
msgstr "Пожертвовать"
#: ../root/release/edit/macros.tt:54
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:166
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:165
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:219
#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:64
#: ../root/static/scripts/edit/components/URLInputPopover.js:134
@@ -1049,12 +1059,12 @@ msgid "Edit Relationship Type"
msgstr "Редактировать тип связи"
#: ../root/doc/edit_type.tt:18 ../root/doc/edit_types.tt:1
-#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:96
+#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:99
#: ../root/layout/components/BottomMenu.js:315
msgid "Edit Types"
msgstr "Править типы"
-#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:28
+#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:26
#: ../root/static/scripts/edit/components/URLInputPopover.js:146
msgid "Edit URL"
msgstr "Править URL"
@@ -1086,14 +1096,25 @@ msgstr ""
msgid "Enable vinyl track numbers"
msgstr "Включить номера дорожек на виниле"
-#: ../root/artist/edit_form.tt:56
-msgid "End Area:"
-msgstr "Закончил на территории:"
+#: ../root/artist/edit_form.tt:56 ../root/components/list/ArtistList.js:112
+#: ../root/search/components/ArtistResults.js:59
+msgid "End Area"
+msgstr "Конечная область"
#: ../root/artist/edit_form.tt:51 ../root/components/forms.tt:214
#: ../root/event/edit_form.tt:38 ../root/artist/utils.js:65
+#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
+#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
+#: ../root/edit/details/AddRemoveAlias.js:97
+#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
+#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
+#: ../root/edit/details/EditPlace.js:101
+#: ../root/elections/ElectionTable/index.js:25
#: ../root/layout/components/sidebar/AreaSidebar.js:64
-msgid "End date:"
+#: ../root/report/RecordingsWithFutureDates.js:39
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
+msgid "End date"
msgstr ""
#: ../root/relationship/linktype/form.tt:112
@@ -1127,6 +1148,10 @@ msgid ""
"(valid {url|regular expressions} are accepted)."
msgstr ""
+#: ../root/edit/search_macros.tt:423
+msgid "Entered"
+msgstr ""
+
#: ../root/components/forms.tt:30
msgid ""
"Entering an {note|edit note} that describes where you got your information "
@@ -1193,7 +1218,7 @@ msgstr ""
#: ../root/area/edit_form.tt:22 ../root/artist/edit_form.tt:70
#: ../root/event/edit_form.tt:46 ../root/instrument/edit_form.tt:32
#: ../root/label/edit_form.tt:41 ../root/place/edit_form.tt:37
-#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:266
+#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:268
#: ../root/release_group/edit_form.tt:23 ../root/series/edit_form.tt:26
#: ../root/work/edit_form.tt:90
#: ../root/static/scripts/genre/components/GenreEditForm.js:160
@@ -1236,25 +1261,21 @@ msgid "For more information, check the {doc_doc|documentation}."
msgstr "Для дополнительной информации прочтите {doc_doc|документацию}."
#: ../root/cdtoc/list.tt:9 ../root/release/edit/duplicates.tt:11
+#: ../root/release/edit/tracklist.tt:305
+#: ../root/release_group/set_cover_art.tt:46
#: ../root/components/list/ReleaseList.js:98
-#: ../root/edit/details/EditMedium.js:485
+#: ../root/edit/details/AddMedium.js:136 ../root/edit/details/EditMedium.js:485
#: ../root/edit/details/EditReleaseLabel.js:131
#: ../root/edit/details/MergeReleases.js:237
#: ../root/edit/details/historic/AddRelease.js:126
#: ../root/edit/details/historic/EditReleaseEvents.js:114
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:137
#: ../root/release_group/ReleaseGroupIndex.js:169
#: ../root/report/components/CDTocList.js:49
-#: ../root/search/components/ReleaseResults.js:114
+#: ../root/search/components/ReleaseResults.js:113
msgid "Format"
msgstr "Format"
-#: ../root/release/edit/tracklist.tt:305
-#: ../root/release_group/set_cover_art.tt:46
-#: ../root/edit/details/AddMedium.js:136
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:132
-msgid "Format:"
-msgstr "Формат"
-
#: ../root/layout.tt:114 ../root/layout/components/Footer.js:28
#: ../root/main/index.js:212
msgid "Forums"
@@ -1302,12 +1323,14 @@ msgstr ""
msgid "Full TOC:"
msgstr ""
-#: ../root/artist/edit_form.tt:17
-#: ../root/layout/components/sidebar/ArtistSidebar.js:84
-#: ../root/static/scripts/account/components/EditProfileForm.js:207
+#: ../root/artist/edit_form.tt:17 ../root/components/list/ArtistList.js:87
+#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
+#: ../root/layout/components/sidebar/ArtistSidebar.js:89
+#: ../root/search/components/ArtistResults.js:54
+#: ../root/static/scripts/account/components/EditProfileForm.js:237
#: ../root/user/UserProfile.js:268
-msgid "Gender:"
-msgstr "Пол:"
+msgid "Gender"
+msgstr "Пол"
#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Genre.pm:7
#: ../root/edit/details/AddGenre.js:24 ../root/edit/details/EditGenre.js:28
@@ -1396,7 +1419,7 @@ msgstr ""
msgid "Historic"
msgstr "Исторический"
-#: ../root/release/edit/information.tt:325
+#: ../root/release/edit/information.tt:339
msgid "I confirm that this is the barcode as it appears on the release."
msgstr ""
"Я подтверждаю, что это тот же самый штрихкод, который указан в издании."
@@ -1426,14 +1449,22 @@ msgstr "У меня нет информации о носителях в это
#: ../root/edit/search_macros.tt:423 ../root/admin/attributes/Attribute.js:78
#: ../root/admin/attributes/Language.js:39
#: ../root/admin/attributes/Script.js:40
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
msgid "ID"
msgstr "ID"
#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
#: ../root/edit/details/AddArtist.js:136 ../root/edit/details/AddLabel.js:102
+#: ../root/layout/components/sidebar/SidebarIpis.js:18
msgid "IPI code"
msgstr "IPI код"
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/EditArtist.js:162 ../root/edit/details/EditLabel.js:131
+msgid "IPI codes"
+msgstr ""
+
#: ../root/components/forms.tt:333
msgid ""
"IPI codes are assigned by CISAC to “interested parties” in musical rights "
@@ -1443,20 +1474,21 @@ msgstr ""
"контроля за музыкальными правами. Для дополнительной информации см. {ipi_doc|"
"документацию}."
-#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
-#: ../root/edit/details/EditArtist.js:162
-msgid "IPI codes:"
-msgstr "IPI кода:"
-
#: ../root/layout.tt:115
msgid "IRC"
msgstr "IRC"
#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
#: ../root/edit/details/AddArtist.js:145 ../root/edit/details/AddLabel.js:111
+#: ../root/layout/components/sidebar/SidebarIsnis.js:22
msgid "ISNI code"
msgstr "ISNI код"
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/EditArtist.js:170 ../root/edit/details/EditLabel.js:140
+msgid "ISNI codes"
+msgstr ""
+
#: ../root/components/forms.tt:342
msgid ""
"ISNI codes are an ISO standard used to uniquely identify persons and "
@@ -1465,41 +1497,24 @@ msgstr ""
"Коды ISNI следуют стандарту ISO для уникального обозначения лиц и "
"организаций. Для дополнительной информации см. {isni_doc|документацию}."
-#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
-#: ../root/edit/details/EditArtist.js:170
-msgid "ISNI codes:"
-msgstr "ISNI кода:"
-
#: ../root/area/edit_form.tt:12 ../root/edit/details/AddArea.js:68
#: ../root/edit/details/EditArea.js:82
+#: ../root/layout/components/sidebar/AreaSidebar.js:71
msgid "ISO 3166-1"
msgstr "ISO 3166-1"
-#: ../root/area/edit_form.tt:12
-#: ../root/layout/components/sidebar/AreaSidebar.js:71
-msgid "ISO 3166-1:"
-msgstr "ISO 3166-1:"
-
#: ../root/area/edit_form.tt:13 ../root/edit/details/AddArea.js:75
#: ../root/edit/details/EditArea.js:89
+#: ../root/layout/components/sidebar/AreaSidebar.js:81
msgid "ISO 3166-2"
msgstr "ISO 3166-2"
-#: ../root/area/edit_form.tt:13
-#: ../root/layout/components/sidebar/AreaSidebar.js:81
-msgid "ISO 3166-2:"
-msgstr "ISO 3166-2:"
-
#: ../root/area/edit_form.tt:14 ../root/edit/details/AddArea.js:82
#: ../root/edit/details/EditArea.js:96
+#: ../root/layout/components/sidebar/AreaSidebar.js:91
msgid "ISO 3166-3"
msgstr "ISO 3166-3"
-#: ../root/area/edit_form.tt:14
-#: ../root/layout/components/sidebar/AreaSidebar.js:91
-msgid "ISO 3166-3:"
-msgstr "ISO 3166-3:"
-
#: ../root/admin/attributes/form.tt:8 ../root/admin/attributes/Language.js:41
msgid "ISO 639-1"
msgstr "ISO 639-1"
@@ -1531,9 +1546,14 @@ msgstr "ISO номер"
msgid "ISRC"
msgstr "ISRC"
-#: ../root/recording/edit_form.tt:45
-msgid "ISRCs:"
-msgstr "ISRCs:"
+#: ../root/recording/edit_form.tt:45 ../root/report/ReportsIndex.js:606
+#: ../root/search/components/RecordingResults.js:144
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:721
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:411
+#: ../root/static/scripts/common/components/IsrcList.js:44
+#: ../root/utility/tableColumns.js:694
+msgid "ISRCs"
+msgstr "ISRCs"
#: ../root/work/edit_form.tt:16 ../root/edit/details/AddWork.js:47
#: ../root/edit/details/EditWork.js:66 ../root/edit/details/RemoveIswc.js:27
@@ -1541,13 +1561,14 @@ msgstr "ISRCs:"
#: ../root/report/IswcsWithManyWorks.js:49
#: ../root/search/components/WorkResults.js:57
#: ../root/static/scripts/common/components/IswcList.js:26
-#: ../root/utility/tableColumns.js:703
+#: ../root/utility/tableColumns.js:708
msgid "ISWC"
msgstr "ISWC"
-#: ../root/work/edit_form.tt:16
-msgid "ISWCs:"
-msgstr "ISWC:"
+#: ../root/work/edit_form.tt:16 ../root/report/ReportsIndex.js:615
+#: ../root/static/scripts/common/components/IswcList.js:44
+msgid "ISWCs"
+msgstr "ISWCs"
#: ../root/event/edit_form.tt:26
msgid ""
@@ -1565,7 +1586,7 @@ msgstr ""
"вы можете поставить галочки в полях ниже, чтобы заменить их названиями "
"треков/артистов для этого издания."
-#: ../root/release/edit/information.tt:298
+#: ../root/release/edit/information.tt:300
msgid ""
"If this is an Amazon ASIN, please do not enter it in the catalog number "
"field, but add it as a URL relationship later."
@@ -1586,7 +1607,7 @@ msgid "If you can't find what you're looking for, you can add a new release:"
msgstr ""
"Если вы не можете найти то, что ищете, вы можете добавить новое издание:"
-#: ../root/release/edit/information.tt:316
+#: ../root/release/edit/information.tt:330
msgid ""
"If you do not know whether the release has a barcode or not, just leave this "
"blank."
@@ -1606,8 +1627,8 @@ msgstr ""
#: ../root/release/edit/information.tt:54
msgid ""
-"If you don’t select an existing release group, a new one will be created "
-"with the types selected below."
+"If you don’t select an existing release group, a new one will be added with "
+"the types selected below."
msgstr ""
#: ../root/release/edit/tracklist.tt:5
@@ -1685,21 +1706,21 @@ msgid ""
"Keep in mind that recording durations are {doc_link|recalculated from "
"tracks} once the duration of a track changes. As such, if you correct the "
"duration of a track whose recording is only used in this release, just reuse "
-"the old recording, don’t create a new one. If the recording is also used "
-"elsewhere and the durations are significantly different, consider creating a "
+"the old recording, don’t add a new one. If the recording is also used "
+"elsewhere and the durations are significantly different, consider adding a "
"new recording instead."
msgstr ""
#: ../root/release/edit/tracklist.tt:502
msgid ""
-"Keep in mind that unselecting this will delete the track if the medium has a "
+"Keep in mind that unselecting this will remove the track if the medium has a "
"disc ID! If you unselect it by mistake, please readd the pregap track before "
"submitting."
msgstr ""
#: ../root/release/edit/tracklist.tt:517
msgid ""
-"Keep in mind that unselecting this will delete the tracks if the medium has "
+"Keep in mind that unselecting this will remove the tracks if the medium has "
"a disc ID! If you unselect it by mistake, please readd the data tracks "
"before submitting."
msgstr ""
@@ -1708,12 +1729,16 @@ msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:31 ../root/cdtoc/list.tt:11
#: ../root/cdtoc/lookup.tt:45 ../root/edit/search_macros.tt:423
#: ../root/release/edit/duplicates.tt:15
+#: ../root/release/edit/information.tt:179
+#: ../root/release_group/set_cover_art.tt:52
#: ../lib/MusicBrainz/Server/Edit/Label.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:43
#: ../root/components/list/LabelList.js:54 ../root/edit/details/AddLabel.js:31
+#: ../root/edit/details/AddReleaseLabel.js:35
#: ../root/edit/details/EditLabel.js:43
#: ../root/edit/details/EditReleaseLabel.js:51
#: ../root/edit/details/MergeReleases.js:240
+#: ../root/edit/details/RemoveReleaseLabel.js:31
#: ../root/edit/details/historic/AddRelease.js:123
#: ../root/edit/details/historic/EditReleaseEvents.js:111
#: ../root/label/LabelHeader.js:25 ../root/layout/components/Search.js:37
@@ -1722,13 +1747,13 @@ msgstr ""
#: ../root/report/ReleaseLabelSameArtist.js:31
#: ../root/report/components/LabelList.js:47
#: ../root/report/components/LabelUrlList.js:35
-#: ../root/search/components/ReleaseResults.js:117
+#: ../root/search/components/ReleaseResults.js:116
#: ../root/search/components/SearchForm.js:42
#: ../root/static/scripts/common/components/FilterForm.js:168
#: ../root/static/scripts/common/constants.js:40
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:60
-#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:533
-#: ../root/utility/tableColumns.js:538
+#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:538
+#: ../root/utility/tableColumns.js:543
msgid "Label"
msgstr "Лейбл"
@@ -1740,28 +1765,31 @@ msgstr "Метка территории"
msgid "Label Details"
msgstr ""
-#: ../root/label/edit_form.tt:28
-#: ../root/layout/components/sidebar/LabelSidebar.js:81
-msgid "Label code:"
-msgstr ""
-
-#: ../root/release/edit/information.tt:177
-#: ../root/release_group/set_cover_art.tt:52
-#: ../root/edit/details/AddReleaseLabel.js:35
-#: ../root/edit/details/RemoveReleaseLabel.js:31
-msgid "Label:"
+#: ../root/label/edit_form.tt:28 ../root/edit/details/AddLabel.js:94
+#: ../root/edit/details/EditLabel.js:85
+#: ../root/layout/components/sidebar/LabelSidebar.js:83
+msgid "Label code"
msgstr ""
#: ../root/release/edit/information.tt:114
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:177
-msgid "Language:"
+#: ../root/admin/attributes/Language.js:31
+#: ../root/admin/attributes/Language.js:34
+#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
+#: ../root/edit/details/EditRelease.js:113
+#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:191
+#: ../root/report/IswcsWithManyWorks.js:54
+#: ../root/search/components/ReleaseResults.js:119
+#: ../root/utility/tableColumns.js:559
+msgid "Language"
msgstr "Язык"
#: ../root/layout.tt:139 ../root/layout/components/Footer.js:85
msgid "Last replication packet received at {datetime}"
msgstr ""
-#: ../root/cdstub/cdstub.tt:9 ../root/release/discids.tt:10
+#: ../root/cdstub/cdstub.tt:9 ../root/recording/edit_form.tt:35
+#: ../root/recording/edit_form.tt:38 ../root/release/discids.tt:10
#: ../root/release/edit/tracklist.tt:164 ../root/release/edit/tracklist.tt:454
#: ../root/cdstub/CDStubInfo.js:29 ../root/cdtoc/AttachCDTocConfirmation.js:72
#: ../root/cdtoc/CDTocInfo.js:54 ../root/components/RelationshipsTable.js:338
@@ -1773,6 +1801,8 @@ msgstr ""
#: ../root/edit/details/EditRecording.js:69
#: ../root/edit/details/historic/AddRelease.js:91
#: ../root/edit/details/historic/AddTrackKV.js:54 ../root/isrc/Index.js:68
+#: ../root/layout/components/sidebar/RecordingSidebar.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:146
#: ../root/recording/RecordingIndex.js:55
#: ../root/report/IsrcsWithManyRecordings.js:61
#: ../root/report/components/CDTocList.js:54
@@ -1781,12 +1811,6 @@ msgstr ""
msgid "Length"
msgstr ""
-#: ../root/recording/edit_form.tt:35 ../root/recording/edit_form.tt:38
-#: ../root/layout/components/sidebar/RecordingSidebar.js:54
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:138
-msgid "Length:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:54
msgid "Lines contain track artists"
msgstr ""
@@ -1817,7 +1841,7 @@ msgstr "Войти"
msgid "Long link phrase:"
msgstr ""
-#: ../root/release/edit/recordings.tt:175
+#: ../root/release/edit/recordings.tt:186
msgid "Looking for suggested recordings..."
msgstr "Поиск рекомендуемых записей"
@@ -1825,7 +1849,7 @@ msgstr "Поиск рекомендуемых записей"
msgid "Lookup CD"
msgstr ""
-#: ../root/release/edit/information.tt:139
+#: ../root/release/edit/information.tt:141
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:252
#: ../root/static/scripts/edit/components/PartialDateInput.js:174
msgid "MM"
@@ -1848,7 +1872,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Medium.pm:8
#: ../root/cdtoc/AttachCDTocConfirmation.js:65
#: ../root/cdtoc/SetTracklistDurations.js:56
-#: ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/RemoveDiscId.js:25
#: ../root/edit/details/RemoveMedium.js:71
#: ../root/edit/details/SetTrackLengths.js:40
#: ../root/search/components/RecordingResults.js:148
@@ -1863,8 +1888,9 @@ msgstr ""
#: ../root/layout/merge-helper.tt:30
#: ../root/layout/components/MergeHelper.js:71
#: ../root/layout/components/sidebar/MergeLink.js:34
+msgctxt "button/link"
msgid "Merge"
-msgstr "Объединить"
+msgstr ""
#: ../root/layout/merge-helper.tt:3 ../root/layout/components/MergeHelper.js:30
msgid "Merge Process"
@@ -1903,7 +1929,12 @@ msgid "Move track up"
msgstr ""
#: ../root/admin/attributes/form.tt:7 ../root/admin/attributes/form.tt:23
-#: ../root/admin/attributes/form.tt:58 ../root/admin/attributes/Attribute.js:79
+#: ../root/admin/attributes/form.tt:58 ../root/components/forms.tt:226
+#: ../root/relationship/linkattributetype/form.tt:12
+#: ../root/relationship/linktype/form.tt:12
+#: ../root/relationship/linktype/form.tt:77
+#: ../root/relationship/linktype/form.tt:107
+#: ../root/admin/attributes/Attribute.js:79
#: ../root/admin/attributes/Language.js:40
#: ../root/admin/attributes/Script.js:41
#: ../root/components/Aliases/ArtistCreditList.js:50
@@ -1911,7 +1942,7 @@ msgstr ""
#: ../root/edit/details/AddArea.js:41 ../root/edit/details/AddArtist.js:51
#: ../root/edit/details/AddEvent.js:38 ../root/edit/details/AddGenre.js:35
#: ../root/edit/details/AddInstrument.js:41 ../root/edit/details/AddLabel.js:41
-#: ../root/edit/details/AddPlace.js:38
+#: ../root/edit/details/AddMedium.js:129 ../root/edit/details/AddPlace.js:38
#: ../root/edit/details/AddRelationshipAttribute.js:34
#: ../root/edit/details/AddRelationshipType.js:66
#: ../root/edit/details/AddRelease.js:51
@@ -1941,36 +1972,27 @@ msgstr ""
#: ../root/entity/Details.js:96
#: ../root/search/components/AnnotationResults.js:55
#: ../root/search/components/AreaResults.js:63
-#: ../root/search/components/ArtistResults.js:52
+#: ../root/search/components/ArtistResults.js:51
#: ../root/search/components/EditorResults.js:42
#: ../root/search/components/EventResults.js:73
#: ../root/search/components/InstrumentResults.js:53
#: ../root/search/components/LabelResults.js:66
#: ../root/search/components/PlaceResults.js:63
#: ../root/search/components/RecordingResults.js:141
-#: ../root/search/components/ReleaseResults.js:112
+#: ../root/search/components/ReleaseResults.js:111
#: ../root/search/components/SeriesResults.js:57
#: ../root/search/components/TagResults.js:51
#: ../root/search/components/WorkResults.js:54
#: ../root/static/scripts/account/components/ApplicationForm.js:81
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:197
#: ../root/static/scripts/common/components/FilterForm.js:135
#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:112
#: ../root/static/scripts/genre/components/GenreEditForm.js:147
+#: ../root/static/scripts/release/components/EditWorkDialog.js:166
#: ../root/user/UserSubscriptions.js:48
msgid "Name"
msgstr "Имя"
-#: ../root/components/forms.tt:226
-#: ../root/relationship/linkattributetype/form.tt:12
-#: ../root/relationship/linktype/form.tt:12
-#: ../root/relationship/linktype/form.tt:77
-#: ../root/relationship/linktype/form.tt:107
-#: ../root/edit/details/AddMedium.js:129
-#: ../root/static/scripts/release/components/EditWorkDialog.js:166
-msgid "Name:"
-msgstr "Имя:"
-
#: ../root/artist/edit_credit.tt:18 ../root/artist/split.tt:45
msgid "New Artist Credit"
msgstr ""
@@ -2021,7 +2043,7 @@ msgid "No releases have cover art marked as \"Front\", cannot set cover art."
msgstr ""
#: ../root/release/edit/tracklist.tt:140 ../root/admin/IpLookup.js:38
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:468
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:472
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:88
msgid "No results"
msgstr "Нет результатов"
@@ -2053,21 +2075,25 @@ msgid ""
"because they have the wrong number of tracks."
msgstr ""
-#: ../root/release/edit/information.tt:283
+#: ../root/release/edit/recordings.tt:3 ../root/edit/details/EditRelease.js:164
+#: ../root/edit/details/MergeReleases.js:347
+#: ../root/edit/details/SetTrackLengths.js:74
+#: ../root/edit/details/historic/MergeReleases.js:55
+#: ../root/user/ReportUser.js:116
+msgid "Note"
+msgstr ""
+
+#: ../root/release/edit/information.tt:285
msgid ""
"Note! If you do not know the month or day of release, please leave them "
"empty. January 1st is not often the actual release date, please double "
"check that you have entered the release date correctly."
msgstr ""
-#: ../root/release/edit/recordings.tt:3
-msgid "Note:"
-msgstr ""
-
#: ../root/edit/search_macros.tt:243
msgid ""
-"Note: only searches edits that: add or edit relationships, created after "
-"2011-05-16; or which remove relationships, created after 2013-07-08; or "
+"Note: only searches edits that: add or edit relationships, entered after "
+"2011-05-16; or which remove relationships, entered after 2013-07-08; or "
"which reorder relationships."
msgstr ""
@@ -2108,29 +2134,31 @@ msgstr "Настройки"
msgid "Orderable direction:"
msgstr ""
-#: ../root/series/edit_form.tt:17
-msgid "Ordering Type:"
+#: ../root/series/edit_form.tt:17 ../root/edit/details/AddSeries.js:52
+#: ../root/edit/details/EditSeries.js:66
+#: ../root/layout/components/sidebar/SeriesSidebar.js:53
+#: ../root/utility/tableColumns.js:765
+msgid "Ordering Type"
msgstr ""
#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:77
msgid "PDF file"
msgstr "PDF файл"
-#: ../root/release/edit/information.tt:238
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:156
-msgid "Packaging:"
+#: ../root/release/edit/information.tt:240
+#: ../root/edit/details/AddRelease.js:105
+#: ../root/edit/details/EditRelease.js:137
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
+msgid "Packaging"
msgstr ""
#: ../root/admin/attributes/form.tt:50
-#: ../root/edit/details/AddRelationshipAttribute.js:55
-#: ../root/edit/details/EditRelationshipAttribute.js:85
-msgid "Parent"
-msgstr ""
-
#: ../root/relationship/linkattributetype/form.tt:4
#: ../root/relationship/linktype/form.tt:4
+#: ../root/edit/details/AddRelationshipAttribute.js:55
+#: ../root/edit/details/EditRelationshipAttribute.js:85
#: ../root/edit/details/EditRelationshipType.js:317
-msgid "Parent:"
+msgid "Parent"
msgstr ""
#: ../root/release/edit/tracklist.tt:238
@@ -2158,10 +2186,10 @@ msgstr ""
msgid "Please choose a condition"
msgstr ""
-#: ../root/release/edit/information.tt:312
+#: ../root/release/edit/information.tt:326
msgid ""
-"Please enter the barcode of the release you are entering, see Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2181,15 +2209,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2240,7 +2265,7 @@ msgstr[3] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr "Запись"
@@ -2281,27 +2306,32 @@ msgstr "Редактор связей"
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr "Тип связи"
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2324,7 +2354,7 @@ msgstr "Релиз Страны"
msgid "Release Duplicates"
msgstr "Дубликаты релизов"
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2344,10 +2374,6 @@ msgstr "Релиз группа"
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2365,7 +2391,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2389,16 +2415,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2414,7 +2432,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2424,11 +2442,11 @@ msgstr "Удалить"
msgid "Remove Example"
msgstr "Удалить Пример"
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr "Удалить Лейбл"
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2439,7 +2457,7 @@ msgstr "Удалить атрибут"
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2500,7 +2518,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2518,29 +2536,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "Сохранить"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
-msgstr ""
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr "Скрипт"
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2559,10 +2581,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr "Поиск:"
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr "Поиск..."
@@ -2630,11 +2648,14 @@ msgid "Set cover art"
msgstr "Установить обложку"
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
-msgstr "Установить длительность композиции"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
+msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr "Сет-лист:"
#: ../root/edit/search_macros.tt:43
@@ -2666,9 +2687,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2679,25 +2707,33 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr "Статус"
#: ../root/release/edit/information.tt:111
-msgid "Status:"
-msgstr "Статус:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
+msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2710,9 +2746,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr "Теггер"
@@ -2722,11 +2758,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2741,11 +2777,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr "Введённая дата некорректна."
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2757,7 +2793,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2765,6 +2809,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2783,7 +2833,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2821,7 +2871,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2873,14 +2923,14 @@ msgstr "Эта сущность была удалена и не может от
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2939,7 +2989,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2978,8 +3028,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2996,7 +3046,7 @@ msgstr "Эта связь устарела"
msgid "This relationship type does not have any examples."
msgstr "Этот тип связи не имеет каких-либо примеров."
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr "Этот релиз не имеет баркода"
@@ -3004,7 +3054,7 @@ msgstr "Этот релиз не имеет баркода"
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -3029,14 +3079,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
-msgstr "Время:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
+msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -3051,20 +3107,16 @@ msgstr "Время:"
msgid "Title"
msgstr "Название"
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
-msgstr "Название:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
+msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -3094,6 +3146,7 @@ msgid "Tracklist"
msgstr "Треклист"
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -3101,7 +3154,7 @@ msgstr "Треклист"
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "Треки"
@@ -3113,10 +3166,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr "Треки:"
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3154,25 +3203,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr "Тип"
@@ -3183,7 +3232,7 @@ msgstr "Тип"
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3197,17 +3246,30 @@ msgstr "Тип:"
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
-msgstr "URL:"
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr "URL"
#: ../root/release/edit/tracklist.tt:21
msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3284,7 +3346,7 @@ msgid "Voter"
msgstr "Участник голосования"
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr "Голоса"
@@ -3296,23 +3358,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr "Период голосования (дни)"
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3368,7 +3427,7 @@ msgstr "Рабочий Атрибут"
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3406,11 +3465,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3426,7 +3485,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr "Вы не произвели никаких изменений!"
@@ -3453,8 +3512,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3463,8 +3522,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3548,8 +3607,10 @@ msgstr ""
msgid "any"
msgstr "любой"
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -4052,12 +4113,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4144,25 +4205,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr "Нормальный"
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4277,15 +4338,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr "Послать e-mail"
@@ -4365,7 +4426,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4448,7 +4509,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4481,7 +4542,7 @@ msgstr "Удалить исполнителя"
msgid "Remove artist alias"
msgstr "Удалить псевдоним исполнителя"
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr "Править исполнителя"
@@ -4523,8 +4584,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr "Добавить событие"
@@ -4536,7 +4597,7 @@ msgstr "Удалить событие"
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr "Редактировать событие"
@@ -4570,7 +4631,7 @@ msgstr "Remove genre"
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr "Edit genre"
@@ -4592,8 +4653,8 @@ msgstr "Добавить связь"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr "Добавить релиз"
@@ -4622,14 +4683,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr "Править релиз"
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr "Изменить качество релиза"
@@ -4650,7 +4711,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr "Править запись"
@@ -4702,11 +4763,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4758,7 +4814,7 @@ msgstr "Добавить лейбл"
msgid "Remove label"
msgstr "Удалить лейбл"
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr "Изменить лейбл"
@@ -4805,7 +4861,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4856,8 +4912,12 @@ msgstr "Объединить записи"
msgid "Remove ISRC"
msgstr "Удалить ISRC"
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr "Связь"
@@ -4936,13 +4996,13 @@ msgstr "Редактировать штрих-коды"
msgid "Edit cover art"
msgstr "Редактировать обложку"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr "Править лейбл релиза"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(неизвестно)"
@@ -4970,6 +5030,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr "Релиз группа"
@@ -4983,7 +5045,7 @@ msgid "Add release group annotation"
msgstr "Добавить пояснение к релиз группе"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr "Добавить группу релиза"
@@ -4995,7 +5057,7 @@ msgstr "Удалить релиз группу"
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr "Править релиз группу"
@@ -5082,7 +5144,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -5090,29 +5152,12 @@ msgstr ""
msgid "Edit series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Merge.pm:11
-#: ../root/series/SeriesMerge.js:28 ../root/series/SeriesMerge.js:30
-msgid "Merge series"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr "URL"
+#: ../lib/MusicBrainz/Server/Edit/Series/Merge.pm:11
+#: ../root/series/SeriesMerge.js:28 ../root/series/SeriesMerge.js:30
+msgid "Merge series"
+msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr "Открытые"
@@ -5130,6 +5175,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5143,11 +5189,11 @@ msgstr ""
msgid "No votes"
msgstr "Нет голосов"
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
-msgstr "Отменено"
+msgstr ""
#: ../lib/MusicBrainz/Server/Edit/WikiDoc.pm:7
msgid "Wiki documentation"
@@ -5170,7 +5216,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr "Добавить работу"
@@ -5613,11 +5659,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr "Некорректное время."
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
-msgstr "Введите допустимый URL-адрес, например \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
+msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr "URL протокол должен быть HTTP, HTTPS или FTP"
@@ -5708,22 +5754,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr "Основной"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr "Промежуточный"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr "Расширенный"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr "Родной"
@@ -5735,17 +5781,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr "Аннотация"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5760,17 +5795,6 @@ msgctxt "noun"
msgid "Tag"
msgstr "Тег"
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr "Документация"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -6023,19 +6047,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr "{almost_last_list_item} и {last_list_item}"
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr "{list_item}, {rest}"
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -6043,7 +6067,7 @@ msgstr "{list_item}, {rest}"
msgid "{last_list_item}"
msgstr "{last_list_item}"
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6162,9 +6186,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr "Электронная почта"
@@ -6532,12 +6557,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6571,15 +6596,16 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr "Сайт"
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
-msgstr "Биография:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
+msgstr ""
#: ../root/admin/EditUser.js:182
msgid "Edit user"
@@ -6594,7 +6620,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6631,20 +6657,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr "Атрибуты"
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6673,26 +6685,8 @@ msgstr "Вы действительно хотите удалить атрибу
msgid "Remove Attribute"
msgstr "Удалить Атрибут"
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr "Язык"
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr "Скрипт"
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6700,15 +6694,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6763,6 +6752,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr "Добавить страницу"
@@ -6775,10 +6765,6 @@ msgstr "Страница:"
msgid "Version:"
msgstr "Версия:"
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr "Создать"
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6866,6 +6852,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr "Сравнение аннотаций"
@@ -6915,9 +6902,12 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
-msgstr "Предварительный просмотр:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
+msgstr ""
#: ../root/annotation/EditAnnotation.js:80
#: ../root/static/scripts/common/components/Annotation.js:71
@@ -6925,10 +6915,9 @@ msgid "Changelog:"
msgstr "Список изменений:"
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
-msgstr "Предварительный просмотр"
+msgstr ""
#: ../root/annotation/EditAnnotation.js:98
msgid "Annotation Formatting"
@@ -7000,10 +6989,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr "Исполнители"
@@ -7042,7 +7031,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -7091,7 +7080,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -7105,7 +7097,10 @@ msgstr "Связи"
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7275,7 +7270,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7578,10 +7573,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7614,7 +7611,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7630,7 +7627,7 @@ msgstr ""
"{pos} {release} {artist}?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7650,15 +7647,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "FreeDB:"
@@ -7668,8 +7656,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Трек"
@@ -7678,21 +7667,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Конец"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7734,7 +7715,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7773,15 +7754,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7874,8 +7855,8 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "Создание новой коллекции"
+msgid "Add a new collection"
+msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -7889,20 +7870,10 @@ msgstr "Вы уверены, что хотите удалить коллекци
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "Псевдоним"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -8082,7 +8053,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Рейтинги"
@@ -8128,7 +8099,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8257,6 +8228,7 @@ msgstr "Subscriptions"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr "Subscribers"
@@ -8307,26 +8279,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Пол"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "Начальная область"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "Конечная область"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8338,13 +8294,6 @@ msgstr ""
msgid "Code"
msgstr "Код"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "Адрес"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8353,22 +8302,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Статус"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr "Авторы"
@@ -8497,7 +8440,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8527,7 +8470,7 @@ msgstr ""
#: ../root/edit/DeleteNote.js:54 ../root/edit/ModifyNote.js:71
#: ../root/user/ReportUser.js:139
msgid "Reason"
-msgstr ""
+msgstr "Причина"
#: ../root/edit/EditData.js:34
msgid "Edit data for edit #{id}"
@@ -8635,6 +8578,8 @@ msgid ""
"{edit} has received one or more \"no\" votes, you must leave an edit note "
"before you can approve it."
msgstr ""
+"Правка {edit} получила один или более голосов \"нет\", вы должны оставить "
+"комментарий прежде чем её одобрять."
#: ../root/edit/NotesReceived.js:35 ../root/edit/NotesReceived.js:37
msgid "Recent Notes Left on Your Edits"
@@ -8643,10 +8588,11 @@ msgstr "Последние комментарии к вашим правкам"
#: ../root/edit/NotesReceived.js:67
msgid "Nobody has left notes on any of your edits in the past three months."
msgstr ""
+"За последние три месяца никто не оставлял комментарии к любым вашим правкам."
#: ../root/edit/OpenEdits.js:27 ../root/edit/OpenEdits.js:29
msgid "Open Edits"
-msgstr ""
+msgstr "Открытые правки"
#: ../root/edit/SubscribedEditorEdits.js:27
#: ../root/edit/SubscribedEditorEdits.js:29
@@ -8682,15 +8628,15 @@ msgstr "Обложка:"
#: ../root/edit/components/EditHeader.js:52
#: ../root/edit/components/EditNoteListEntry.js:27
msgid "Edit #{id} - {name}"
-msgstr "Править #{id} - {name}"
+msgstr "Правка #{id} - {name}"
#: ../root/edit/components/EditHeader.js:78
msgid "Edit by {editor}"
-msgstr ""
+msgstr "Правка пользователя {editor}"
#: ../root/edit/components/EditHeader.js:86
msgid "Editor hidden"
-msgstr ""
+msgstr "Автор правки скрыт"
#: ../root/edit/components/EditHeader.js:92
msgid "log in to see who"
@@ -8702,7 +8648,7 @@ msgstr ""
#: ../root/edit/components/EditHeader.js:114
msgid "My vote: "
-msgstr "Мой голос:"
+msgstr "Мой голос: - "
#: ../root/edit/components/EditHeader.js:118
msgid "N/A"
@@ -8715,13 +8661,13 @@ msgid "None"
msgstr "Нет"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr "Голосование"
#: ../root/edit/components/EditHeader.js:149
msgid "Approved"
-msgstr ""
+msgstr "Одобрена"
#: ../root/edit/components/EditHeader.js:177
#: ../root/edit/components/EditSummary.js:67
@@ -8731,22 +8677,23 @@ msgstr "Одобрить правку"
#: ../root/edit/components/EditList.js:82
msgid "Found at least {n} edit"
msgid_plural "Found at least {n} edits"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Найдена как минимум {n} правка"
+msgstr[1] "Найдено как минимум {n} правки"
+msgstr[2] "Найдено как минимум {n} правок"
+msgstr[3] "Найдено как минимум правок: {n}"
#: ../root/edit/components/EditList.js:89
msgid "Found {n} edit"
msgid_plural "Found {n} edits"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Найдена {n} правка"
+msgstr[1] "Найдено {n} правки"
+msgstr[2] "Найдено {n} правок"
+msgstr[3] "Найдено правок: {n}"
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
-msgstr ""
+msgstr "Отправить голоса и комментарии к правке"
#: ../root/edit/components/EditNote.js:159
msgid "[time missing]"
@@ -8769,7 +8716,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8778,15 +8725,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8799,63 +8746,54 @@ msgstr ""
#: ../root/edit/components/EditNotes.js:55
msgid "No edit notes have been added."
-msgstr ""
+msgstr "Нет комментариев к правке."
#: ../root/edit/components/EditNotes.js:70
msgid "Add an edit note"
-msgstr "Добавить отредактированную заметку"
+msgstr "Добавить комментарий к правке"
#: ../root/edit/components/EditNotes.js:78
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
+"Сейчас вы не можете добавлять комментарии к этой правке. ({url|Подробнее})"
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "Статус:"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
-msgstr "Открыт:"
-
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "Закрыт:"
+msgstr "Открыта:"
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
-msgstr ""
+msgstr "Для быстрого закрытия"
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{n} голос"
+msgstr[1] "{n} голоса"
+msgstr[2] "{n} голосов"
+msgstr[3] "Голосов: {n}"
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr "Дополнительная информация"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Добавить заметку"
@@ -8875,12 +8813,6 @@ msgstr ""
msgid "bot"
msgstr "бот"
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "Релизы:"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8893,7 +8825,7 @@ msgstr ""
#: ../root/edit/components/ListHeader.js:57
msgid "All edits for {user}"
-msgstr ""
+msgstr "Все правки пользователя {user}"
#: ../root/edit/components/ListHeader.js:69
msgid "Open edits for this collection"
@@ -8905,15 +8837,15 @@ msgstr ""
#: ../root/edit/components/ListHeader.js:80
msgid "All edits for this collection"
-msgstr ""
+msgstr "Все правки для этой коллекции"
#: ../root/edit/components/ListHeader.js:81
msgid "All edits for this entity"
-msgstr ""
+msgstr "Все правки для этой сущности"
#: ../root/edit/components/ListHeader.js:92
msgid "All edits for your subscribed entities"
-msgstr ""
+msgstr "Все правки для сущностей, на которые вы подписаны"
#: ../root/edit/components/ListHeader.js:100
msgid "Open edits for your subscribed entities"
@@ -8921,7 +8853,7 @@ msgstr ""
#: ../root/edit/components/ListHeader.js:111
msgid "All edits for your subscribed editors"
-msgstr ""
+msgstr "Все правки редакторов, на которые вы подписаны"
#: ../root/edit/components/ListHeader.js:119
msgid "Open edits for your subscribed editors"
@@ -8929,7 +8861,7 @@ msgstr ""
#: ../root/edit/components/ListHeader.js:134
msgid "Refine this search"
-msgstr ""
+msgstr "Уточнить этот поиск"
#: ../root/edit/components/ListHeader.js:143
msgid "Subscribed entities"
@@ -8997,37 +8929,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -9039,18 +8947,21 @@ msgstr "(нет)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Имя файла:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr "Название файла"
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr ""
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "Комментарий:"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
-msgstr "Сет-лист:"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
msgid "Client:"
@@ -9073,19 +8984,19 @@ msgstr "ISRC {isrc} в {recording}"
msgid "ISWC {iswc} to {work}"
msgstr "ISWC {iswc} в {work}"
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -9146,30 +9057,24 @@ msgstr "(нет)"
msgid "(new release group)"
msgstr "(новая релиз группа)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "Статус:"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "Номер каталога:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "Номер каталога"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9181,17 +9086,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -9199,7 +9104,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "Качество данных"
@@ -9236,16 +9141,8 @@ msgstr ""
msgid "Artist Credit"
msgstr ""
-#: ../root/edit/details/EditArtistCredit.js:41
-msgid "See all uses of the artist credit being changed."
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
+#: ../root/edit/details/EditArtistCredit.js:41
+msgid "See all uses of the artist credit being changed."
msgstr ""
#: ../root/edit/details/EditMedium.js:84
@@ -9272,11 +9169,6 @@ msgstr "Старая запись"
msgid "New recording"
msgstr "Новые записи"
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "Старый Исполнитель"
@@ -9302,25 +9194,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "Номер каталога"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9344,6 +9221,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9356,8 +9234,9 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "Объединить:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -9469,7 +9348,7 @@ msgid "New positions:"
msgstr "Новые положения:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9488,8 +9367,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9531,20 +9410,6 @@ msgstr ""
msgid "CD TOC:"
msgstr "CD TOC:"
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Номер каталога"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9555,11 +9420,6 @@ msgstr ""
msgid "Artist name:"
msgstr "Имя исполнителя:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "Старая связь:"
@@ -9569,9 +9429,9 @@ msgid "New relationships:"
msgstr "Новая связь:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
-msgstr "Старый:"
+msgctxt "release type and status"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
msgid "Type: {type}, status: {status}"
@@ -9586,17 +9446,25 @@ msgid "New Status:"
msgstr "Новый Статус:"
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "Добавлено"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9635,41 +9503,39 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "Псевдоним:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Кандидат:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Кандидат"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
-msgstr "1-ый секундант:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
-msgstr "2-ой секундант:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
#: ../root/elections/ElectionDetails.js:59
msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "Голоса за:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "Голоса за"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "Голоса против:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "Голоса против"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -9685,47 +9551,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "Статус:"
+msgid "Status"
+msgstr "Статус"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "Показать детали"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Кандидат"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "Статус"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr "Секундант 1"
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr "Секундант 2"
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "Голоса за"
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "Голоса против"
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr "Голос"
@@ -10433,7 +10271,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Статистика"
@@ -10585,7 +10423,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10752,39 +10590,33 @@ msgstr "Информация об области"
msgid "Artist information"
msgstr "Информация о исполнителе"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "Добавить запись"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "Добавлено:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr "Последнее изменение:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
-msgstr "Количество просмотров"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
-msgstr "Изменить количество:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "Добавить ID диска к существующему релизу"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr "Искать диск в базе"
@@ -10902,11 +10734,11 @@ msgstr "Авторизуйтесь, чтобы отредактировать"
msgid "Event information"
msgstr "Event information"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr "Дата начала"
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr "Дата окончания"
@@ -10959,10 +10791,6 @@ msgctxt "place"
msgid "Closed"
msgstr "Закрыт"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "Координаты:"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10975,7 +10803,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr "Дата первого релиза"
@@ -11006,27 +10834,27 @@ msgstr "Посмотреть все обложки"
msgid "No cover art available."
msgstr "Обложка недоступна"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "Дополнительные детали"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr "Change data quality"
@@ -11034,21 +10862,13 @@ msgstr "Change data quality"
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "IPI код:"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "ISNI код:"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Лицензия"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Рейтинг"
@@ -11189,7 +11009,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr "Sorry, the page you're looking for does not exist."
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Сообщение ошибки:"
@@ -11288,15 +11108,7 @@ msgstr "Язык интерфейса:"
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Нет данных об этой ошибке)"
@@ -11433,7 +11245,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11648,7 +11460,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11656,11 +11468,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "ID:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11672,6 +11479,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11705,16 +11513,12 @@ msgstr "нет"
msgid "Add child"
msgstr "Добавить дочерний элемент"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11734,7 +11538,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11808,7 +11612,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11827,7 +11631,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11938,8 +11742,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -12145,8 +11949,8 @@ msgstr "Плохие URL-адреса Amazon"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -12156,10 +11960,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12193,7 +11997,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12202,7 +12006,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12482,7 +12286,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12562,7 +12366,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12689,8 +12493,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12861,13 +12665,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr "Recordings with earliest release relationships"
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -13045,7 +12849,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -13069,8 +12873,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13289,20 +13092,6 @@ msgstr "URL-адрес"
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRCs"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr "ISWCs"
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13381,9 +13170,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13392,9 +13181,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13549,6 +13338,10 @@ msgstr ""
msgid "Last edited"
msgstr "Последнее редактирование"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Номер каталога"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13558,7 +13351,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13569,7 +13362,7 @@ msgstr "Начало"
msgid "Alternatively, you may {uri|add a new area}."
msgstr "Кроме того, вы можете {uri|add a new area}."
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "Кроме того, вы можете {uri|add a new artist}."
@@ -13579,11 +13372,12 @@ msgid "Documentation Search"
msgstr "Поиск по документации"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Расположение"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13617,7 +13411,7 @@ msgstr "Кроме того, вы можете {uri|add a new recording}."
msgid "Alternatively, you may {uri|add a new release group}."
msgstr "Кроме того, вы можете {uri|add a new release group}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr "Кроме того, вы можете {uri|add a new release}."
@@ -13701,7 +13495,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13722,42 +13516,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "Дата рождения:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "Известные языки:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Добавить язык"
@@ -13808,15 +13603,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13869,12 +13664,14 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
-msgstr "Старый"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "Новый"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -13922,7 +13719,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13949,33 +13746,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "Показать больше..."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "Детали коллекции"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "Разрешить другим пользователям видеть эту коллекцию"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "Создать коллекцию"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13993,7 +13790,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -14002,32 +13799,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -14037,7 +13829,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -14075,11 +13873,11 @@ msgid "Annotation last modified on {date}."
msgstr "Аннотация последний раз изменена {date}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14180,15 +13978,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14303,7 +14101,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14602,31 +14400,31 @@ msgctxt "plural"
msgid "Series"
msgstr "Серия"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14647,8 +14445,9 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "Завершено"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -14704,8 +14503,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14795,113 +14594,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14948,53 +14747,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -15016,11 +14815,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -15055,11 +14854,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -15121,10 +14920,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15459,8 +15255,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15670,14 +15466,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15686,7 +15482,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15738,34 +15534,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "Связи издания"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr "Связи группы изданий"
@@ -15792,15 +15588,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr "Тип работы:"
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr "Добавить языки"
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr "Удалить языки"
@@ -16057,10 +15849,6 @@ msgstr ""
msgid "Duration"
msgstr "Duration"
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr "Название файла"
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "Поиск по тегу"
@@ -16122,23 +15910,23 @@ msgstr "Информация о ссылке"
msgid "URL Details"
msgstr "Подробности о ссылке"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr "Message"
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "Отправить"
@@ -16243,7 +16031,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16472,10 +16261,6 @@ msgstr ""
msgid "General Information"
msgstr "Общая информация"
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "Электронная почта:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(скрытый)"
@@ -16517,191 +16302,185 @@ msgstr ""
msgid "Age:"
msgstr "Возраст:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "Зарегистрирован с:"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "Последнее имя пользователя:"
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "Описание"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr "Домашняя страница:"
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr "{count} ({url|view list})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr "отписаться"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr "подписаться"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "Языки:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr "{count} ({view_url|view})"
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Правки"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Итого"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Принято"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr "Авто-редактирование"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr "Последние 24 часа"
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr "Голоса ({view_url|view})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr "Последние 28 дней"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16974,7 +16753,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16988,7 +16767,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -17151,15 +16930,15 @@ msgstr ""
"беспорядок, они делают это не специально, а от растерянности: MusicBrainz "
"может быть пугающим для новичков! Если это возможно, исправьте ошибки (и "
"сообщите редактору, что вы это сделали и что он может проверить сделанные "
-"вами правки, чтобы увидеть, как это должно выглядеть), а не голосуйте \"Нет"
-"\" за правки, поскольку голоса \"Нет\" могут быть весьма обескураживающими, "
-"особенно для нового редактора. Если что-то настолько плохо, что это "
-"невозможно исправить, и это ухудшает существующие данные, проголосуйте "
-"против правки, но постарайтесь хорошо объяснить, почему это необходимо, а не "
-"просто молча проголосуйте \"Нет\". Более подробный обзор отношения, на "
-"которое мы рассчитываем, смотрите в {voting_blog|этом посте в нашем блоге о "
-"голосовании}. Кроме того, если новичок делает особенно хорошие правки, вы "
-"можете сообщить ему об этом, чтобы он чувствовал себя хорошо!"
+"вами правки, чтобы увидеть, как это должно выглядеть), а не голосуйте "
+"\"Нет\" за правки, поскольку голоса \"Нет\" могут быть весьма "
+"обескураживающими, особенно для нового редактора. Если что-то настолько "
+"плохо, что это невозможно исправить, и это ухудшает существующие данные, "
+"проголосуйте против правки, но постарайтесь хорошо объяснить, почему это "
+"необходимо, а не просто молча проголосуйте \"Нет\". Более подробный обзор "
+"отношения, на которое мы рассчитываем, смотрите в {voting_blog|этом посте в "
+"нашем блоге о голосовании}. Кроме того, если новичок делает особенно хорошие "
+"правки, вы можете сообщить ему об этом, чтобы он чувствовал себя хорошо!"
#: ../root/vote/VotingIndex.js:259
msgid ""
@@ -17267,6 +17046,249 @@ msgstr ""
"имеют разные ISWC. Пожалуйста, убедитесь, что это действительно одни и те же "
"работы и вы хотите продолжить объединение."
+#~ msgid "Address:"
+#~ msgstr "Адрес:"
+
+#~ msgid "Annotation:"
+#~ msgstr "Аннотация:"
+
+#~ msgid "Area:"
+#~ msgstr "Область:"
+
+#~ msgid "Artist:"
+#~ msgstr "Исполнитель:"
+
+#~ msgid "Attributes:"
+#~ msgstr "Атрибуты:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Штрих-код:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "Начал на территории:"
+
+#~ msgid "Begin date:"
+#~ msgstr "Дата начала:"
+
+#~ msgid "Catalog#:"
+#~ msgstr "Каталог#"
+
+#~ msgid "Country:"
+#~ msgstr "Страна:"
+
+#~ msgid "Created"
+#~ msgstr "Создан"
+
+#~ msgid "Date:"
+#~ msgstr "Дата:"
+
+#~ msgid "Delete"
+#~ msgstr "Удалить"
+
+#~ msgid "Description:"
+#~ msgstr "Описание:"
+
+#~ msgid "Documentation:"
+#~ msgstr "Документация:"
+
+#~ msgid "End Area:"
+#~ msgstr "Закончил на территории:"
+
+#~ msgid "Format:"
+#~ msgstr "Формат"
+
+#~ msgid "Gender:"
+#~ msgstr "Пол:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "IPI кода:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "ISNI кода:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRCs:"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWC:"
+
+#~ msgid "Language:"
+#~ msgstr "Язык"
+
+#~ msgid "Merge"
+#~ msgstr "Объединить"
+
+#~ msgid "Name:"
+#~ msgstr "Имя:"
+
+#~ msgid "Search:"
+#~ msgstr "Поиск:"
+
+#~ msgid "Set track durations"
+#~ msgstr "Установить длительность композиции"
+
+#~ msgid "Setlist:"
+#~ msgstr "Сет-лист:"
+
+#~ msgid "Status:"
+#~ msgstr "Статус:"
+
+#~ msgid "Time:"
+#~ msgstr "Время:"
+
+#~ msgid "Title:"
+#~ msgstr "Название:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Треки:"
+
+#~ msgid "URL:"
+#~ msgstr "URL:"
+
+#~ msgid "Cancelled"
+#~ msgstr "Отменено"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Введите допустимый URL-адрес, например \"http://google.com/\""
+
+#~ msgid "Bio:"
+#~ msgstr "Биография:"
+
+#~ msgid "Create"
+#~ msgstr "Создать"
+
+#~ msgid "Preview:"
+#~ msgstr "Предварительный просмотр:"
+
+#~ msgid "Preview"
+#~ msgstr "Предварительный просмотр"
+
+#~ msgid "Create a new collection"
+#~ msgstr "Создание новой коллекции"
+
+#~ msgid "Status"
+#~ msgstr "Статус"
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "Статус:"
+
+#~ msgid "Closed:"
+#~ msgstr "Закрыт:"
+
+#~ msgid "Releases:"
+#~ msgstr "Релизы:"
+
+#~ msgid "Filename:"
+#~ msgstr "Имя файла:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "Статус:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "Номер каталога:"
+
+#~ msgid "Merge:"
+#~ msgstr "Объединить:"
+
+#~ msgid "Old:"
+#~ msgstr "Старый:"
+
+#~ msgid "Added"
+#~ msgstr "Добавлено"
+
+#~ msgid "Alias:"
+#~ msgstr "Псевдоним:"
+
+#~ msgid "Candidate:"
+#~ msgstr "Кандидат:"
+
+#~ msgid "1st seconder:"
+#~ msgstr "1-ый секундант:"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "2-ой секундант:"
+
+#~ msgid "Votes for:"
+#~ msgstr "Голоса за:"
+
+#~ msgid "Votes against:"
+#~ msgstr "Голоса против:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Статус:"
+
+#~ msgid "Seconder 1"
+#~ msgstr "Секундант 1"
+
+#~ msgid "Seconder 2"
+#~ msgstr "Секундант 2"
+
+#~ msgid "Added:"
+#~ msgstr "Добавлено:"
+
+#~ msgid "Last modified:"
+#~ msgstr "Последнее изменение:"
+
+#~ msgid "Lookup count:"
+#~ msgstr "Количество просмотров"
+
+#~ msgid "Modify count:"
+#~ msgstr "Изменить количество:"
+
+#~ msgid "Coordinates:"
+#~ msgstr "Координаты:"
+
+#~ msgid "IPI code:"
+#~ msgstr "IPI код:"
+
+#~ msgid "ISNI code:"
+#~ msgstr "ISNI код:"
+
+#~ msgid "ID:"
+#~ msgstr "ID:"
+
+#~ msgid "Location"
+#~ msgstr "Расположение"
+
+#~ msgid "Old"
+#~ msgstr "Старый"
+
+#~ msgid "New"
+#~ msgstr "Новый"
+
+#~ msgid "Create collection"
+#~ msgstr "Создать коллекцию"
+
+#~ msgid "Ended:"
+#~ msgstr "Завершено"
+
+#~ msgid "Work Type:"
+#~ msgstr "Тип работы:"
+
+#~ msgid "Email:"
+#~ msgstr "Электронная почта:"
+
+#~ msgid "Member since:"
+#~ msgstr "Зарегистрирован с:"
+
+#~ msgid "Last login:"
+#~ msgstr "Последнее имя пользователя:"
+
+#~ msgid "Languages:"
+#~ msgstr "Языки:"
+
#~ msgid "Artist {n}:"
#~ msgstr "Исполнитель {n}:"
diff --git a/po/mb_server.sk.po b/po/mb_server.sk.po
index 8f5ee0f9d6e..7f278d57f3d 100644
--- a/po/mb_server.sk.po
+++ b/po/mb_server.sk.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:58+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Slovak Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2085,15 +2112,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2144,7 +2168,7 @@ msgstr[3] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr "Nahrávka"
@@ -2185,27 +2209,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2228,7 +2257,7 @@ msgstr ""
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2248,10 +2277,6 @@ msgstr "Skupina vydaní"
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2269,7 +2294,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2293,16 +2318,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2318,7 +2335,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2328,11 +2345,11 @@ msgstr ""
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2343,7 +2360,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2404,7 +2421,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2422,29 +2439,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr ""
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2463,10 +2484,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2534,11 +2551,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2570,9 +2590,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2583,13 +2610,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr ""
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2597,11 +2632,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2614,9 +2649,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr ""
@@ -2626,11 +2661,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2644,11 +2679,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2660,7 +2695,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2668,6 +2711,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2686,7 +2735,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2724,7 +2773,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2776,14 +2825,14 @@ msgstr "Táto entita bola odobraná a nemôže byť správne zobrazená."
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2842,7 +2891,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2881,8 +2930,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2899,7 +2948,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2907,7 +2956,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2932,14 +2981,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2954,20 +3009,16 @@ msgstr ""
msgid "Title"
msgstr "Názov"
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2997,6 +3048,7 @@ msgid "Tracklist"
msgstr "Zoznam stôp"
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -3004,7 +3056,7 @@ msgstr "Zoznam stôp"
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr ""
@@ -3016,10 +3068,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3057,25 +3105,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr ""
@@ -3086,7 +3134,7 @@ msgstr ""
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3100,17 +3148,30 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
-msgstr ""
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr "URL"
#: ../root/release/edit/tracklist.tt:21
msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3187,7 +3248,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3199,23 +3260,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3271,7 +3329,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3309,11 +3367,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3329,7 +3387,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3356,8 +3414,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3366,8 +3424,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3451,8 +3509,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3950,12 +4010,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4040,25 +4100,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4171,15 +4231,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr "Odoslať e-mail"
@@ -4257,7 +4317,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4340,7 +4400,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4373,7 +4433,7 @@ msgstr "Odstrániť umelca"
msgid "Remove artist alias"
msgstr "Odstrániť prezývku umelca"
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr "Upraviť umelca"
@@ -4415,8 +4475,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4428,7 +4488,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4462,7 +4522,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4484,8 +4544,8 @@ msgstr "Pridať vzťah"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr "Pridať vydanie"
@@ -4514,14 +4574,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr "Upraviť vydanie"
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4542,7 +4602,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr "Upraviť nahrávku"
@@ -4594,11 +4654,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4650,7 +4705,7 @@ msgstr "Pridať vydavateľstvo"
msgid "Remove label"
msgstr "Odstrániť vydavateľstvo"
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr "Upraviť vydavateľstvo"
@@ -4697,7 +4752,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4748,8 +4803,12 @@ msgstr "Zlúčiť nahrávky"
msgid "Remove ISRC"
msgstr "Odstrániť ISRC"
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr "Vzťah"
@@ -4828,13 +4887,13 @@ msgstr "Upraviť čiarkové kódy"
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr "Upraviť vydavateľstvo vydania"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(neznáme)"
@@ -4862,6 +4921,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr "Skupina vydaní"
@@ -4875,7 +4936,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr "Pridať skupinu vydaní"
@@ -4887,7 +4948,7 @@ msgstr "Odstrániť skupinu vydaní"
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr "Upraviť skupinu vydaní"
@@ -4974,7 +5035,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4987,24 +5048,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr "URL"
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -5022,6 +5066,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5035,9 +5080,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5062,7 +5107,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5505,11 +5550,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr "Protokol URL musí byť HTTP, HTTPS alebo FTP"
@@ -5600,22 +5645,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5627,17 +5672,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr "Anotácia"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5652,17 +5686,6 @@ msgctxt "noun"
msgid "Tag"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5915,19 +5938,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5935,7 +5958,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6054,9 +6077,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6414,12 +6438,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6453,14 +6477,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6476,7 +6501,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6513,20 +6538,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6555,26 +6566,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr ""
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr ""
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6582,15 +6575,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6645,6 +6633,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr ""
@@ -6657,10 +6646,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6748,6 +6733,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6797,8 +6783,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6807,8 +6796,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6874,10 +6862,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr ""
@@ -6916,7 +6904,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6965,7 +6953,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6979,7 +6970,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7147,7 +7141,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7450,10 +7444,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7486,7 +7482,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7500,7 +7496,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7520,15 +7516,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7538,8 +7525,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7548,21 +7536,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7600,7 +7580,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7639,15 +7619,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7740,7 +7720,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7755,20 +7735,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7941,7 +7911,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7987,7 +7957,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8116,6 +8086,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8166,26 +8137,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8197,37 +8152,24 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
#: ../root/components/list/ReleaseList.js:95
-#: ../root/edit/details/MergeReleases.js:53
-#: ../root/release_group/ReleaseGroupIndex.js:89
-#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
-msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
+#: ../root/edit/details/MergeReleases.js:53
+#: ../root/release_group/ReleaseGroupIndex.js:89
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
msgstr ""
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8352,7 +8294,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8570,7 +8512,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8599,7 +8541,8 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8624,7 +8567,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8633,15 +8576,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8664,24 +8607,15 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
@@ -8689,28 +8623,27 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8730,12 +8663,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8852,37 +8779,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8894,17 +8797,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8928,19 +8834,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8999,29 +8905,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -9034,17 +8934,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -9052,7 +8952,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9093,14 +8993,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9125,11 +9017,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9155,25 +9042,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9197,6 +9069,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9209,7 +9082,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9322,7 +9196,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9341,8 +9215,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9384,20 +9258,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9408,11 +9268,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9422,8 +9277,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9439,17 +9294,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9488,28 +9351,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9517,11 +9376,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9538,47 +9399,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10284,7 +10117,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10436,7 +10269,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10603,39 +10436,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10753,11 +10580,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10810,10 +10637,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10826,7 +10649,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10857,27 +10680,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10885,21 +10708,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -11040,7 +10855,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11139,15 +10954,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11281,7 +11088,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11495,7 +11302,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11503,11 +11310,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11519,6 +11321,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11552,16 +11355,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11581,7 +11380,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11655,7 +11454,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11674,7 +11473,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11785,8 +11584,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11992,8 +11791,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -12003,10 +11802,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12040,7 +11839,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12049,7 +11848,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12329,7 +12128,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12409,7 +12208,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12536,8 +12335,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12708,13 +12507,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12892,7 +12691,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12916,8 +12715,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13136,20 +12934,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13228,9 +13012,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13239,9 +13023,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13396,6 +13180,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13405,7 +13193,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13416,7 +13204,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13426,9 +13214,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13464,7 +13253,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13548,7 +13337,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13569,42 +13358,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13655,15 +13445,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13716,10 +13506,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13769,7 +13561,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13793,33 +13585,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13837,7 +13629,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13846,32 +13638,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13881,7 +13668,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13919,11 +13712,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14024,15 +13817,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14145,7 +13938,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14444,31 +14237,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14489,7 +14282,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14546,8 +14340,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14637,113 +14431,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14790,53 +14584,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14858,11 +14652,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14897,11 +14691,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14963,10 +14757,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15301,8 +15092,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15512,14 +15303,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15528,7 +15319,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15580,34 +15371,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15634,15 +15425,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15899,10 +15686,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15964,23 +15747,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -16082,7 +15865,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16309,10 +16093,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16354,191 +16134,183 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
msgstr ""
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16811,7 +16583,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16825,7 +16597,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
diff --git a/po/mb_server.sl.po b/po/mb_server.sl.po
index 952dd335d4e..d4e2ca8920f 100644
--- a/po/mb_server.sl.po
+++ b/po/mb_server.sl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:58+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Slovenian Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2079,15 +2106,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2138,7 +2162,7 @@ msgstr[3] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr ""
@@ -2179,27 +2203,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2222,7 +2251,7 @@ msgstr ""
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2242,10 +2271,6 @@ msgstr ""
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2263,7 +2288,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2287,16 +2312,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2312,7 +2329,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2322,11 +2339,11 @@ msgstr ""
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2337,7 +2354,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2398,7 +2415,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2416,29 +2433,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr ""
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
-msgstr ""
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr "Skripta"
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2457,10 +2478,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2528,11 +2545,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2564,9 +2584,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2577,13 +2604,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr ""
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2591,11 +2626,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2608,9 +2643,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr ""
@@ -2620,11 +2655,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2638,11 +2673,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2654,7 +2689,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2662,6 +2705,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2680,7 +2729,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2718,7 +2767,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2770,14 +2819,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2836,7 +2885,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2875,8 +2924,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2893,7 +2942,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2901,7 +2950,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2926,14 +2975,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2948,20 +3003,16 @@ msgstr ""
msgid "Title"
msgstr ""
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2991,6 +3042,7 @@ msgid "Tracklist"
msgstr ""
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -2998,7 +3050,7 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr ""
@@ -3010,10 +3062,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3051,25 +3099,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr ""
@@ -3080,7 +3128,7 @@ msgstr ""
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3094,9 +3142,22 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
msgstr ""
#: ../root/release/edit/tracklist.tt:21
@@ -3104,7 +3165,7 @@ msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3181,7 +3242,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3193,23 +3254,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3265,7 +3323,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3303,11 +3361,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3323,7 +3381,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3350,8 +3408,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3360,8 +3418,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3445,8 +3503,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3944,12 +4004,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4034,25 +4094,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4165,15 +4225,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr ""
@@ -4251,7 +4311,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4334,7 +4394,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4367,7 +4427,7 @@ msgstr ""
msgid "Remove artist alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr ""
@@ -4409,8 +4469,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4422,7 +4482,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4456,7 +4516,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4478,8 +4538,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr ""
@@ -4508,14 +4568,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4536,7 +4596,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr ""
@@ -4588,11 +4648,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4644,7 +4699,7 @@ msgstr ""
msgid "Remove label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr ""
@@ -4691,7 +4746,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4742,8 +4797,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr ""
@@ -4822,13 +4881,13 @@ msgstr ""
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr ""
@@ -4856,6 +4915,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr ""
@@ -4869,7 +4930,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr ""
@@ -4881,7 +4942,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -4968,7 +5029,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4981,24 +5042,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -5016,6 +5060,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5029,9 +5074,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5056,7 +5101,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5499,11 +5544,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr ""
@@ -5594,22 +5639,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5621,17 +5666,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5646,17 +5680,6 @@ msgctxt "noun"
msgid "Tag"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5896,19 +5919,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5916,7 +5939,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6035,9 +6058,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6395,12 +6419,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6434,14 +6458,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6457,7 +6482,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6494,20 +6519,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6536,26 +6547,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr ""
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr "Skripta"
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6563,15 +6556,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6626,6 +6614,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr ""
@@ -6638,10 +6627,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6729,6 +6714,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6778,8 +6764,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6788,8 +6777,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6855,10 +6843,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr ""
@@ -6897,7 +6885,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6946,7 +6934,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6960,7 +6951,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7128,7 +7122,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7431,10 +7425,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7467,7 +7463,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7481,7 +7477,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7501,15 +7497,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7519,8 +7506,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7529,21 +7517,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7581,7 +7561,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7620,15 +7600,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7721,7 +7701,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7736,20 +7716,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7922,7 +7892,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7968,7 +7938,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8097,6 +8067,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8147,26 +8118,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8178,37 +8133,24 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
#: ../root/components/list/ReleaseList.js:95
#: ../root/edit/details/MergeReleases.js:53
-#: ../root/release_group/ReleaseGroupIndex.js:89
-#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
-msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
+#: ../root/release_group/ReleaseGroupIndex.js:89
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
msgstr ""
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8333,7 +8275,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8551,7 +8493,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8580,7 +8522,8 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8605,7 +8548,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8614,15 +8557,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8645,24 +8588,15 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
@@ -8670,28 +8604,27 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8711,12 +8644,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8833,37 +8760,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8875,17 +8778,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8909,19 +8815,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8980,29 +8886,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -9015,17 +8915,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -9033,7 +8933,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9074,14 +8974,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9106,11 +8998,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9136,25 +9023,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9178,6 +9050,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9190,7 +9063,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9303,7 +9177,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9322,8 +9196,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9365,20 +9239,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9389,11 +9249,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9403,8 +9258,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9420,17 +9275,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9469,28 +9332,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9498,11 +9357,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9519,47 +9380,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10265,7 +10098,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10417,7 +10250,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10584,39 +10417,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10734,11 +10561,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10791,10 +10618,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10807,7 +10630,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10838,27 +10661,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10866,21 +10689,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -11021,7 +10836,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11120,15 +10935,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11262,7 +11069,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11476,7 +11283,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11484,11 +11291,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11500,6 +11302,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11533,16 +11336,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11562,7 +11361,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11636,7 +11435,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11655,7 +11454,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11766,8 +11565,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11973,8 +11772,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11984,10 +11783,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12021,7 +11820,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12030,7 +11829,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12310,7 +12109,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12390,7 +12189,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12517,8 +12316,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12689,13 +12488,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12873,7 +12672,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12897,8 +12696,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13117,20 +12915,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13209,9 +12993,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13220,9 +13004,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13377,6 +13161,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13386,7 +13174,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13397,7 +13185,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13407,9 +13195,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13445,7 +13234,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13529,7 +13318,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13550,42 +13339,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13636,15 +13426,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13697,10 +13487,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13750,7 +13542,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13774,33 +13566,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13818,7 +13610,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13827,32 +13619,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13862,7 +13649,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13900,11 +13693,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14005,15 +13798,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14126,7 +13919,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14425,31 +14218,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14470,7 +14263,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14527,8 +14321,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14618,113 +14412,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14771,53 +14565,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14839,11 +14633,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14878,11 +14672,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14944,10 +14738,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15282,8 +15073,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15493,14 +15284,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15509,7 +15300,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15561,34 +15352,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15615,15 +15406,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15880,10 +15667,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15945,23 +15728,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -16063,7 +15846,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16290,10 +16074,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16335,191 +16115,183 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
msgstr ""
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16792,7 +16564,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16806,7 +16578,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -17030,3 +16802,6 @@ msgid ""
"ISWCs. Please make sure they are indeed the same works and you wish to "
"continue with the merge."
msgstr ""
+
+#~ msgid "Artist:"
+#~ msgstr "Izvajalec:"
diff --git a/po/mb_server.sq.po b/po/mb_server.sq.po
index 662b6894b80..5a3d7343db5 100644
--- a/po/mb_server.sq.po
+++ b/po/mb_server.sq.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-09-05 14:27+0000\n"
"Last-Translator: reosarevok \n"
@@ -69,8 +69,8 @@ msgstr "\"YY\" janë dy shifrat e fundit të vitit të regjistrimit."
#: ../root/edit/details/historic/AddRelease.js:88
#: ../root/recording/RecordingIndex.js:53
#: ../root/static/scripts/release/components/MediumTable.js:83
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1563
-#: ../root/utility/tableColumns.js:567
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1564
+#: ../root/utility/tableColumns.js:572
msgid "#"
msgstr "#"
@@ -119,8 +119,8 @@ msgstr "(S’ka kopertinë tjetër)"
#: ../root/edit/details/MergeReleases.js:239
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
-#: ../root/utility/tableColumns.js:508 ../root/utility/tableColumns.js:516
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/utility/tableColumns.js:513 ../root/utility/tableColumns.js:521
msgctxt "and"
msgid "/"
msgstr ""
@@ -214,8 +214,8 @@ msgstr "Shtoni Instrument"
msgid "Add Label"
msgstr "Shtoni Etiketë"
-#: ../root/release/edit/information.tt:213
-#: ../root/release/edit/information.tt:214
+#: ../root/release/edit/information.tt:215
+#: ../root/release/edit/information.tt:216
#: ../root/layout/components/BottomMenu.js:248
msgctxt "button/menu"
msgid "Add Label"
@@ -235,8 +235,8 @@ msgctxt "header"
msgid "Add Release"
msgstr "Shtoni Hedhje në Qarkullim"
-#: ../root/release/edit/information.tt:169
-#: ../root/release/edit/information.tt:170
+#: ../root/release/edit/information.tt:171
+#: ../root/release/edit/information.tt:172
msgctxt "button/menu"
msgid "Add Release Event"
msgstr "Shtoni Veprimtari Hedhjeje Në Qarkullim"
@@ -281,7 +281,7 @@ msgstr ""
"Shtoni një medie duke klikuar mbi “Shtoni Medie” më poshtë, ose i vini "
"shenjë kutizës duke ripohuar kështu se lista e pjesëve është e panjohur."
-#: ../root/release/edit/recordings.tt:212
+#: ../root/release/edit/recordings.tt:178
#: ../root/static/scripts/edit/components/AddEntityDialog.js:21
msgid "Add a new recording"
msgstr "Shtoni incizim të ri"
@@ -306,14 +306,17 @@ msgstr "Shtoni {item}"
msgid "Add {num} track(s)"
msgstr "Shtoni {num} pjesë"
-#: ../root/release/edit/information.tt:245
+#: ../root/release/edit/information.tt:247
msgid "Additional information"
msgstr "Informacion shtesë"
-#: ../root/place/edit_form.tt:16
-#: ../root/layout/components/sidebar/PlaceSidebar.js:82
-msgid "Address:"
-msgstr "Adresë:"
+#: ../root/place/edit_form.tt:16 ../root/components/list/PlaceList.js:66
+#: ../root/edit/details/AddPlace.js:55 ../root/edit/details/EditPlace.js:68
+#: ../root/layout/components/sidebar/PlaceSidebar.js:84
+#: ../root/report/PlacesWithoutCoordinates.js:41
+#: ../root/search/components/PlaceResults.js:65
+msgid "Address"
+msgstr "Adresë"
#: ../root/release/edit/recordings.tt:3
msgid ""
@@ -337,9 +340,17 @@ msgstr ""
msgid "An error occurred: "
msgstr "Ndodhi një gabim: "
-#: ../root/release/edit/information.tt:249
-msgid "Annotation:"
-msgstr "Shënim:"
+#: ../root/release/edit/information.tt:251
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
+#: ../root/annotation/AnnotationRevision.js:32
+#: ../root/annotation/EditAnnotation.js:74
+#: ../root/layout/components/Search.js:41
+#: ../root/report/hooks/useAnnotationColumns.js:28
+#: ../root/search/components/AnnotationResults.js:56
+#: ../root/search/components/SearchForm.js:45
+#: ../root/static/scripts/common/components/Annotation.js:51
+msgid "Annotation"
+msgstr "Shënim"
#: ../root/edit/search_macros.tt:423
msgid "Applied Edit Count of Editor"
@@ -351,7 +362,9 @@ msgctxt "vote"
msgid "Approve"
msgstr "Miratoje"
-#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Area.pm:7
+#: ../root/artist/edit_form.tt:20 ../root/edit/search_macros.tt:423
+#: ../root/label/edit_form.tt:18 ../root/place/edit_form.tt:19
+#: ../lib/MusicBrainz/Server/Edit/Area.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:44
#: ../root/components/list/AreaList.js:46
#: ../root/components/list/ArtistList.js:92
@@ -361,8 +374,11 @@ msgstr "Miratoje"
#: ../root/edit/details/AddPlace.js:61 ../root/edit/details/EditArea.js:43
#: ../root/edit/details/EditArtist.js:108 ../root/edit/details/EditLabel.js:119
#: ../root/edit/details/EditPlace.js:75 ../root/layout/components/Search.js:35
+#: ../root/layout/components/sidebar/ArtistSidebar.js:126
+#: ../root/layout/components/sidebar/LabelSidebar.js:90
+#: ../root/layout/components/sidebar/PlaceSidebar.js:91
#: ../root/report/PlacesWithoutCoordinates.js:42
-#: ../root/search/components/ArtistResults.js:56
+#: ../root/search/components/ArtistResults.js:55
#: ../root/search/components/LabelResults.js:69
#: ../root/search/components/PlaceResults.js:66
#: ../root/search/components/SearchForm.js:43
@@ -376,18 +392,12 @@ msgstr "Zonë"
msgid "Area Details"
msgstr "Hollësi Zone"
-#: ../root/artist/edit_form.tt:20 ../root/label/edit_form.tt:18
-#: ../root/place/edit_form.tt:19
-#: ../root/layout/components/sidebar/ArtistSidebar.js:120
-#: ../root/layout/components/sidebar/LabelSidebar.js:87
-#: ../root/layout/components/sidebar/PlaceSidebar.js:88
-msgid "Area:"
-msgstr "Zonë:"
-
#: ../root/cdstub/cdstub.tt:7 ../root/cdtoc/attach_filter_release.tt:29
#: ../root/cdtoc/list.tt:8 ../root/cdtoc/lookup.tt:42
-#: ../root/edit/search_macros.tt:423 ../root/release/edit/tracklist.tt:163
-#: ../root/release/edit/tracklist.tt:453
+#: ../root/cdtoc/lookup.tt:75 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/information.tt:26 ../root/release/edit/tracklist.tt:110
+#: ../root/release/edit/tracklist.tt:163 ../root/release/edit/tracklist.tt:453
+#: ../root/release_group/set_cover_art.tt:32
#: ../lib/MusicBrainz/Server/Edit/Artist.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:38
#: ../root/cdstub/BrowseCDStubs.js:37 ../root/cdstub/CDStubInfo.js:28
@@ -412,8 +422,14 @@ msgstr "Zonë:"
#: ../root/edit/details/historic/AddRelease.js:38
#: ../root/edit/details/historic/AddRelease.js:90
#: ../root/edit/details/historic/AddTrackKV.js:41
-#: ../root/edit/details/historic/EditTrack.js:35 ../root/isrc/Index.js:67
+#: ../root/edit/details/historic/ChangeArtistQuality.js:24
+#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
+#: ../root/edit/details/historic/EditTrack.js:35
+#: ../root/edit/details/historic/MoveRelease.js:30
+#: ../root/edit/details/historic/RemoveRelease.js:26 ../root/isrc/Index.js:67
#: ../root/layout/components/Search.js:24
+#: ../root/layout/components/sidebar/RecordingSidebar.js:49
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
#: ../root/release_group/ReleaseGroupIndex.js:168
#: ../root/report/DuplicateArtists.js:67
#: ../root/report/DuplicateReleaseGroups.js:59
@@ -430,11 +446,12 @@ msgstr "Zonë:"
#: ../root/search/components/CDStubResults.js:45
#: ../root/search/components/RecordingResults.js:143
#: ../root/search/components/ReleaseGroupResults.js:64
-#: ../root/search/components/ReleaseResults.js:113
+#: ../root/search/components/ReleaseResults.js:112
#: ../root/search/components/SearchForm.js:37
#: ../root/static/scripts/common/constants.js:36
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:50
#: ../root/static/scripts/common/utility/formatSetlist.js:52
+#: ../root/static/scripts/edit/components/forms.js:29
#: ../root/static/scripts/release/components/MediumTable.js:86
#: ../root/taglookup/Form.js:25 ../root/user/UserProfile.js:50
msgid "Artist"
@@ -448,19 +465,6 @@ msgstr "Zonë Artisti"
msgid "Artist Details"
msgstr "Hollësi Artisti"
-#: ../root/cdtoc/lookup.tt:75 ../root/release/edit/information.tt:26
-#: ../root/release/edit/tracklist.tt:110
-#: ../root/release_group/set_cover_art.tt:32
-#: ../root/edit/details/historic/ChangeArtistQuality.js:24
-#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
-#: ../root/edit/details/historic/MoveRelease.js:30
-#: ../root/edit/details/historic/RemoveRelease.js:26
-#: ../root/layout/components/sidebar/RecordingSidebar.js:49
-#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
-#: ../root/static/scripts/edit/components/forms.js:29
-msgid "Artist:"
-msgstr "Artist:"
-
#: ../root/cdtoc/attach_artist_releases.tt:40
#: ../root/cdtoc/attach_filter_release.tt:54
msgctxt "button/menu"
@@ -487,8 +491,19 @@ msgid "Attached to releases"
msgstr "Bashkëngjitur te hedhje në qarkullim"
#: ../root/relationship/linktype/form.tt:52
-msgid "Attributes:"
-msgstr "Atribute:"
+#: ../root/admin/attributes/Attribute.js:72
+#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
+#: ../root/admin/attributes/Language.js:33
+#: ../root/admin/attributes/Script.js:33
+#: ../root/components/RelationshipsTable.js:336
+#: ../root/edit/details/AddRelationshipType.js:169
+#: ../root/edit/details/EditRelationshipType.js:297
+#: ../root/edit/details/RemoveRelationshipType.js:117
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
+#: ../root/utility/tableColumns.js:671
+msgid "Attributes"
+msgstr "Atribute"
#: ../root/edit/search_macros.tt:397
msgid "Auto-Editor"
@@ -497,6 +512,8 @@ msgstr "Auto-Përpunues"
#: ../root/cdtoc/attach_artist_releases.tt:19
#: ../root/cdtoc/attach_filter_release.tt:33 ../root/cdtoc/list.tt:13
#: ../root/cdtoc/lookup.tt:47 ../root/release/edit/duplicates.tt:17
+#: ../root/release/edit/information.tt:222
+#: ../root/release_group/set_cover_art.tt:62
#: ../root/components/list/ReleaseList.js:139
#: ../root/edit/details/AddRelease.js:112
#: ../root/edit/details/EditBarcodes.js:45
@@ -506,20 +523,15 @@ msgstr "Auto-Përpunues"
#: ../root/edit/details/MergeReleases.js:242
#: ../root/edit/details/historic/AddRelease.js:125
#: ../root/edit/details/historic/EditReleaseEvents.js:113
+#: ../root/layout/components/sidebar/CDStubSidebar.js:71
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:128
#: ../root/otherlookup/OtherLookupForm.js:62
#: ../root/release_group/ReleaseGroupIndex.js:174
#: ../root/report/ReleasesSameBarcode.js:40
-#: ../root/search/components/ReleaseResults.js:119
+#: ../root/search/components/ReleaseResults.js:118
msgid "Barcode"
msgstr "Kod me vija"
-#: ../root/release/edit/information.tt:220
-#: ../root/release_group/set_cover_art.tt:62
-#: ../root/layout/components/sidebar/CDStubSidebar.js:63
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:126
-msgid "Barcode:"
-msgstr "Kod me vija:"
-
#: ../root/cdtoc/lookup.tt:33
msgid ""
"Based on the above CD stub, we also found the following releases in "
@@ -537,15 +549,25 @@ msgstr ""
"hedhjen tuaj në qarkullim mbi një hedhje ekzistuese në qarkullim, "
"përzgjidheni më poshtë."
-#: ../root/artist/edit_form.tt:42
-msgid "Begin Area:"
-msgstr "Zonë Fillimi:"
+#: ../root/artist/edit_form.tt:42 ../root/components/list/ArtistList.js:102
+#: ../root/search/components/ArtistResults.js:57
+msgid "Begin Area"
+msgstr "Zonë Fillimi"
#: ../root/artist/edit_form.tt:38 ../root/components/forms.tt:212
#: ../root/event/edit_form.tt:36 ../root/artist/utils.js:34
+#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
+#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
+#: ../root/edit/details/AddRemoveAlias.js:90
+#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
+#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
+#: ../root/edit/details/EditPlace.js:93
#: ../root/layout/components/sidebar/AreaSidebar.js:58
-msgid "Begin date:"
-msgstr "Datë fillimi:"
+#: ../root/report/RecordingsWithFutureDates.js:34
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
+msgid "Begin date"
+msgstr "Datë fillimi"
#: ../root/release/add_cover_art.tt:95 ../root/search/error/InternalError.js:29
msgid ""
@@ -644,39 +666,34 @@ msgstr "Anuloje"
msgid "Cardinality of {entity_placeholder}"
msgstr ""
-#: ../root/release/edit/information.tt:192
+#: ../root/release/edit/information.tt:194
msgid "Cat. No:"
msgstr "Kat. Nr:"
#: ../root/cdtoc/attach_artist_releases.tt:18
#: ../root/cdtoc/attach_filter_release.tt:32 ../root/cdtoc/list.tt:12
#: ../root/cdtoc/lookup.tt:46 ../root/release/edit/duplicates.tt:16
+#: ../root/release_group/set_cover_art.tt:56
#: ../root/edit/details/MergeReleases.js:241
#: ../root/recording/RecordingIndex.js:62
#: ../root/release_group/ReleaseGroupIndex.js:173
-#: ../root/search/components/ReleaseResults.js:118
-#: ../root/utility/tableColumns.js:482 ../root/utility/tableColumns.js:487
+#: ../root/search/components/ReleaseResults.js:117
+#: ../root/utility/tableColumns.js:487 ../root/utility/tableColumns.js:492
msgid "Catalog#"
msgstr "Katalog#"
-#: ../root/release_group/set_cover_art.tt:56
-msgid "Catalog#:"
-msgstr ""
-
-#: ../root/admin/attributes/form.tt:53 ../root/admin/attributes/Attribute.js:82
-#: ../root/edit/details/AddRelationshipAttribute.js:50
-#: ../root/edit/details/EditRelationshipAttribute.js:93
-msgid "Child order"
-msgstr "Rend pjelle"
-
+#: ../root/admin/attributes/form.tt:53
#: ../root/relationship/linkattributetype/form.tt:7
#: ../root/relationship/linktype/form.tt:7
+#: ../root/admin/attributes/Attribute.js:82
+#: ../root/edit/details/AddRelationshipAttribute.js:50
+#: ../root/edit/details/EditRelationshipAttribute.js:93
#: ../root/edit/details/EditRelationshipType.js:241
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:122
#: ../root/relationship/linktype/RelationshipTypeIndex.js:162
#: ../root/relationship/linktype/RelationshipTypePairTree.js:58
-msgid "Child order:"
-msgstr "Rend pjelle:"
+msgid "Child order"
+msgstr "Rend pjelle"
#: ../root/release/edit/recordings.tt:114
msgid "Click Edit to edit the recording associations for this disc."
@@ -689,6 +706,7 @@ msgid "Close"
msgstr "Mbylle"
#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditHeader.js:155
+#: ../root/edit/components/EditSidebar.js:59
msgid "Closed"
msgstr ""
@@ -700,22 +718,15 @@ msgstr ""
msgid "Collapse medium"
msgstr ""
-#: ../root/cdstub/index.tt:3 ../root/cdstub/CDStubIndex.js:36
+#: ../root/cdstub/index.tt:3 ../root/release/add_cover_art.tt:69
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:71 ../root/cdstub/CDStubIndex.js:36
msgid "Comment"
msgstr "Koment"
-#: ../root/release/add_cover_art.tt:69 ../root/release/add_cover_art.tt:137
-#: ../root/release/reorder_cover_art.tt:19
-#: ../root/release_group/set_cover_art.tt:71
-#: ../root/edit/details/AddCoverArt.js:54
-#: ../root/edit/details/EditCoverArt.js:67
-#: ../root/edit/details/RemoveCoverArt.js:56
-#: ../root/release/CoverArtFields.js:93
-msgid "Comment:"
-msgstr "Koment:"
-
#: ../root/place/edit_form.tt:28 ../root/edit/details/AddPlace.js:67
#: ../root/edit/details/EditPlace.js:86
+#: ../root/layout/components/sidebar/PlaceSidebar.js:99
msgid "Coordinates"
msgstr "Koordinata"
@@ -746,33 +757,26 @@ msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:44 ../root/release/edit/duplicates.tt:14
+#: ../root/release/edit/information.tt:156
+#: ../root/release_group/set_cover_art.tt:41
#: ../root/edit/details/EditReleaseLabel.js:113
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:122
#: ../root/edit/details/historic/EditReleaseEvents.js:110
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/common/components/FilterForm.js:187
-#: ../root/utility/tableColumns.js:504 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:509 ../root/utility/tableColumns.js:521
msgid "Country"
msgstr "Vend"
-#: ../root/release/edit/information.tt:154
-#: ../root/release_group/set_cover_art.tt:41
-msgid "Country:"
-msgstr "Vend:"
-
#: ../root/release_group/set_cover_art.tt:67
#: ../root/components/EntityTabs.js:114 ../root/release/CoverArt.js:57
#: ../root/user/UserProfile.js:51
msgid "Cover Art"
msgstr "Kopertinë"
-#: ../root/edit/search_macros.tt:423
-msgid "Created"
-msgstr ""
-
#: ../root/release/add_cover_art.tt:85
msgid "Creating edit..."
msgstr "Po krijohet përpunim…"
@@ -781,7 +785,7 @@ msgstr "Po krijohet përpunim…"
msgid "Custom delimiter"
msgstr "Ndarës vetjak"
-#: ../root/release/edit/information.tt:146
+#: ../root/release/edit/information.tt:148
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:253
#: ../root/static/scripts/edit/components/PartialDateInput.js:186
msgid "DD"
@@ -796,6 +800,8 @@ msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:43 ../root/release/edit/duplicates.tt:13
+#: ../root/release/edit/information.tt:130
+#: ../root/release_group/set_cover_art.tt:37
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:25
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:30
#: ../root/admin/statistics-events/StatisticsEventIndex.js:26
@@ -804,14 +810,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:121
#: ../root/edit/details/historic/EditReleaseEvents.js:109
-#: ../root/elections/ElectionVotes.js:28 ../root/recording/RecordingIndex.js:60
+#: ../root/elections/ElectionVotes.js:28
+#: ../root/layout/components/sidebar/EventSidebar.js:61
+#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
#: ../root/search/components/EventResults.js:74
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:106
#: ../root/static/scripts/common/components/FilterForm.js:225
-#: ../root/utility/tableColumns.js:279 ../root/utility/tableColumns.js:284
-#: ../root/utility/tableColumns.js:510 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:284 ../root/utility/tableColumns.js:289
+#: ../root/utility/tableColumns.js:515 ../root/utility/tableColumns.js:521
msgid "Date"
msgstr "Datë"
@@ -821,12 +829,6 @@ msgstr "Datë"
msgid "Date Period"
msgstr "Periudhë Datash"
-#: ../root/release/edit/information.tt:128
-#: ../root/release_group/set_cover_art.tt:37
-#: ../root/layout/components/sidebar/EventSidebar.js:59
-msgid "Date:"
-msgstr "Datë:"
-
#: ../root/artist/edit_form.tt:36 ../root/components/forms.tt:210
#: ../root/event/edit_form.tt:34
#: ../root/static/scripts/edit/components/DateRangeFieldset.js:186
@@ -837,11 +839,10 @@ msgstr ""
"Datat janë në formatin VVVV-MM-DD. S’ka problem me data të pjesshme, të "
"tilla si VVVV-MM apo thjesht VVVV, ose mund ta harroni fare datën."
-#: ../root/edit/search_macros.tt:120
-msgid "Delete"
-msgstr "Fshije"
-
#: ../root/admin/attributes/form.tt:61 ../root/doc/edit_type.tt:23
+#: ../root/instrument/edit_form.tt:13
+#: ../root/relationship/linkattributetype/form.tt:15
+#: ../root/relationship/linktype/form.tt:20
#: ../root/admin/attributes/Attribute.js:80
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:33
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:42
@@ -861,19 +862,13 @@ msgstr "Fshije"
#: ../root/instrument/InstrumentIndex.js:34
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:110
#: ../root/relationship/linktype/RelationshipTypeIndex.js:146
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
#: ../root/search/components/InstrumentResults.js:55
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:206
-#: ../root/utility/tableColumns.js:676
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:209
+#: ../root/utility/tableColumns.js:681
msgid "Description"
msgstr "Përshkrim"
-#: ../root/instrument/edit_form.tt:13
-#: ../root/relationship/linkattributetype/form.tt:15
-#: ../root/relationship/linktype/form.tt:20
-#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
-msgid "Description:"
-msgstr "Përshkrim:"
-
#: ../root/doc/edit_type.tt:28 ../root/components/EntityTabs.js:146
#: ../root/elections/ElectionDetails.js:29 ../root/entity/Details.js:91
#: ../root/entity/Details.js:93
@@ -883,7 +878,7 @@ msgstr "Hollësi"
#: ../root/area/edit_form.tt:10 ../root/artist/edit_form.tt:14
#: ../root/event/edit_form.tt:13 ../root/instrument/edit_form.tt:10
#: ../root/label/edit_form.tt:13 ../root/place/edit_form.tt:13
-#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:256
+#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:258
#: ../root/release_group/edit_form.tt:15 ../root/series/edit_form.tt:13
#: ../root/work/edit_form.tt:13 ../root/edit/details/AddArea.js:54
#: ../root/edit/details/AddArtist.js:62 ../root/edit/details/AddEvent.js:44
@@ -906,7 +901,13 @@ msgstr "Hollësi"
msgid "Disambiguation"
msgstr "Ftillim dykuptimësie"
-#: ../root/release/discids.tt:8 ../root/edit/details/SetTrackLengths.js:54
+#: ../root/release/discids.tt:8 ../root/cdtoc/CDTocInfo.js:32
+#: ../root/edit/details/AddDiscId.js:34 ../root/edit/details/MoveDiscId.js:26
+#: ../root/edit/details/RemoveDiscId.js:31
+#: ../root/edit/details/SetTrackLengths.js:54
+#: ../root/edit/details/historic/AddDiscId.js:27
+#: ../root/edit/details/historic/MoveDiscId.js:21
+#: ../root/edit/details/historic/RemoveDiscId.js:23
#: ../root/otherlookup/OtherLookupForm.js:112
#: ../root/utility/tableColumns.js:199 ../root/utility/tableColumns.js:204
msgid "Disc ID"
@@ -934,15 +935,23 @@ msgid "Do not use any of the above releases as a starting point"
msgstr "Mos përdor si pikënisje ndonjë nga hedhjet më sipër në qarkullim"
#: ../root/relationship/linktype/form.tt:65
-msgid "Documentation:"
-msgstr "Dokumentim:"
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
+#: ../root/edit/details/AddRelationshipType.js:187
+#: ../root/edit/details/EditRelationshipType.js:327
+#: ../root/layout/components/BottomMenu.js:293
+#: ../root/layout/components/Search.js:51
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
+#: ../root/search/components/SearchForm.js:56
+msgid "Documentation"
+msgstr "Dokumentim"
#: ../root/layout.tt:112 ../root/layout/components/Footer.js:26
msgid "Donate"
msgstr "Dhuroni"
#: ../root/release/edit/macros.tt:54
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:166
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:165
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:219
#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:64
#: ../root/static/scripts/edit/components/URLInputPopover.js:134
@@ -1019,12 +1028,12 @@ msgid "Edit Relationship Type"
msgstr "Përpunoni Lloj marrëdhënieje"
#: ../root/doc/edit_type.tt:18 ../root/doc/edit_types.tt:1
-#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:96
+#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:99
#: ../root/layout/components/BottomMenu.js:315
msgid "Edit Types"
msgstr "Përpunoni Lloje"
-#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:28
+#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:26
#: ../root/static/scripts/edit/components/URLInputPopover.js:146
msgid "Edit URL"
msgstr "Përpunoni URL"
@@ -1056,15 +1065,26 @@ msgstr ""
msgid "Enable vinyl track numbers"
msgstr "Aktivizoni numra pjesësh vinili"
-#: ../root/artist/edit_form.tt:56
-msgid "End Area:"
-msgstr "Zonë Mbarimi:"
+#: ../root/artist/edit_form.tt:56 ../root/components/list/ArtistList.js:112
+#: ../root/search/components/ArtistResults.js:59
+msgid "End Area"
+msgstr "Zonë Mbarimi"
#: ../root/artist/edit_form.tt:51 ../root/components/forms.tt:214
#: ../root/event/edit_form.tt:38 ../root/artist/utils.js:65
+#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
+#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
+#: ../root/edit/details/AddRemoveAlias.js:97
+#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
+#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
+#: ../root/edit/details/EditPlace.js:101
+#: ../root/elections/ElectionTable/index.js:25
#: ../root/layout/components/sidebar/AreaSidebar.js:64
-msgid "End date:"
-msgstr "Datë përfundimi:"
+#: ../root/report/RecordingsWithFutureDates.js:39
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
+msgid "End date"
+msgstr "Datë përfundimi"
#: ../root/relationship/linktype/form.tt:112
msgid "Endpoint:"
@@ -1099,6 +1119,10 @@ msgstr ""
"Jepni ndarësin që ndan emrin e pjesës nga emri i artistit (pranohen {url|"
"shprehje të rregullta} të vlefshme)."
+#: ../root/edit/search_macros.tt:423
+msgid "Entered"
+msgstr ""
+
#: ../root/components/forms.tt:30
msgid ""
"Entering an {note|edit note} that describes where you got your information "
@@ -1163,7 +1187,7 @@ msgstr "Veprim skadimi"
#: ../root/area/edit_form.tt:22 ../root/artist/edit_form.tt:70
#: ../root/event/edit_form.tt:46 ../root/instrument/edit_form.tt:32
#: ../root/label/edit_form.tt:41 ../root/place/edit_form.tt:37
-#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:266
+#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:268
#: ../root/release_group/edit_form.tt:23 ../root/series/edit_form.tt:26
#: ../root/work/edit_form.tt:90
#: ../root/static/scripts/genre/components/GenreEditForm.js:160
@@ -1206,25 +1230,21 @@ msgid "For more information, check the {doc_doc|documentation}."
msgstr "Për më tepër të dhëna, kontrolloni {doc_doc|dokumentimin}."
#: ../root/cdtoc/list.tt:9 ../root/release/edit/duplicates.tt:11
+#: ../root/release/edit/tracklist.tt:305
+#: ../root/release_group/set_cover_art.tt:46
#: ../root/components/list/ReleaseList.js:98
-#: ../root/edit/details/EditMedium.js:485
+#: ../root/edit/details/AddMedium.js:136 ../root/edit/details/EditMedium.js:485
#: ../root/edit/details/EditReleaseLabel.js:131
#: ../root/edit/details/MergeReleases.js:237
#: ../root/edit/details/historic/AddRelease.js:126
#: ../root/edit/details/historic/EditReleaseEvents.js:114
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:137
#: ../root/release_group/ReleaseGroupIndex.js:169
#: ../root/report/components/CDTocList.js:49
-#: ../root/search/components/ReleaseResults.js:114
+#: ../root/search/components/ReleaseResults.js:113
msgid "Format"
msgstr "Format"
-#: ../root/release/edit/tracklist.tt:305
-#: ../root/release_group/set_cover_art.tt:46
-#: ../root/edit/details/AddMedium.js:136
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:132
-msgid "Format:"
-msgstr "Format:"
-
#: ../root/layout.tt:114 ../root/layout/components/Footer.js:28
#: ../root/main/index.js:212
msgid "Forums"
@@ -1268,12 +1288,14 @@ msgstr ""
msgid "Full TOC:"
msgstr "PL e plotë:"
-#: ../root/artist/edit_form.tt:17
-#: ../root/layout/components/sidebar/ArtistSidebar.js:84
-#: ../root/static/scripts/account/components/EditProfileForm.js:207
+#: ../root/artist/edit_form.tt:17 ../root/components/list/ArtistList.js:87
+#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
+#: ../root/layout/components/sidebar/ArtistSidebar.js:89
+#: ../root/search/components/ArtistResults.js:54
+#: ../root/static/scripts/account/components/EditProfileForm.js:237
#: ../root/user/UserProfile.js:268
-msgid "Gender:"
-msgstr "Zhanër:"
+msgid "Gender"
+msgstr "Gjini"
#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Genre.pm:7
#: ../root/edit/details/AddGenre.js:24 ../root/edit/details/EditGenre.js:28
@@ -1361,7 +1383,7 @@ msgstr ""
msgid "Historic"
msgstr ""
-#: ../root/release/edit/information.tt:325
+#: ../root/release/edit/information.tt:339
msgid "I confirm that this is the barcode as it appears on the release."
msgstr "E ripohoj se ky është kodi me vija siç duket te hedhja në qarkullim."
@@ -1388,75 +1410,67 @@ msgstr ""
#: ../root/edit/search_macros.tt:423 ../root/admin/attributes/Attribute.js:78
#: ../root/admin/attributes/Language.js:39
#: ../root/admin/attributes/Script.js:40
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
msgid "ID"
msgstr "ID"
#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
#: ../root/edit/details/AddArtist.js:136 ../root/edit/details/AddLabel.js:102
+#: ../root/layout/components/sidebar/SidebarIpis.js:18
msgid "IPI code"
msgstr "Kod IPI"
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/EditArtist.js:162 ../root/edit/details/EditLabel.js:131
+msgid "IPI codes"
+msgstr ""
+
#: ../root/components/forms.tt:333
msgid ""
"IPI codes are assigned by CISAC to “interested parties” in musical rights "
"management. Check {ipi_doc|the documentation} for more info."
msgstr ""
-#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
-#: ../root/edit/details/EditArtist.js:162
-msgid "IPI codes:"
-msgstr "Kode IPI:"
-
#: ../root/layout.tt:115
msgid "IRC"
msgstr ""
#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
#: ../root/edit/details/AddArtist.js:145 ../root/edit/details/AddLabel.js:111
+#: ../root/layout/components/sidebar/SidebarIsnis.js:22
msgid "ISNI code"
msgstr "Kod ISNI"
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/EditArtist.js:170 ../root/edit/details/EditLabel.js:140
+msgid "ISNI codes"
+msgstr ""
+
#: ../root/components/forms.tt:342
msgid ""
"ISNI codes are an ISO standard used to uniquely identify persons and "
"organizations. Check {isni_doc|the documentation} for more info."
msgstr ""
-#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
-#: ../root/edit/details/EditArtist.js:170
-msgid "ISNI codes:"
-msgstr "Kode ISNI:"
-
#: ../root/area/edit_form.tt:12 ../root/edit/details/AddArea.js:68
#: ../root/edit/details/EditArea.js:82
+#: ../root/layout/components/sidebar/AreaSidebar.js:71
msgid "ISO 3166-1"
msgstr "ISO 3166-1"
-#: ../root/area/edit_form.tt:12
-#: ../root/layout/components/sidebar/AreaSidebar.js:71
-msgid "ISO 3166-1:"
-msgstr "ISO 3166-1:"
-
#: ../root/area/edit_form.tt:13 ../root/edit/details/AddArea.js:75
#: ../root/edit/details/EditArea.js:89
+#: ../root/layout/components/sidebar/AreaSidebar.js:81
msgid "ISO 3166-2"
msgstr "ISO 3166-2"
-#: ../root/area/edit_form.tt:13
-#: ../root/layout/components/sidebar/AreaSidebar.js:81
-msgid "ISO 3166-2:"
-msgstr "ISO 3166-2:"
-
#: ../root/area/edit_form.tt:14 ../root/edit/details/AddArea.js:82
#: ../root/edit/details/EditArea.js:96
+#: ../root/layout/components/sidebar/AreaSidebar.js:91
msgid "ISO 3166-3"
msgstr "ISO 3166-3"
-#: ../root/area/edit_form.tt:14
-#: ../root/layout/components/sidebar/AreaSidebar.js:91
-msgid "ISO 3166-3:"
-msgstr "ISO 3166-3:"
-
#: ../root/admin/attributes/form.tt:8 ../root/admin/attributes/Language.js:41
msgid "ISO 639-1"
msgstr "ISO 639-1"
@@ -1488,9 +1502,14 @@ msgstr "Numër ISO"
msgid "ISRC"
msgstr "ISRC"
-#: ../root/recording/edit_form.tt:45
-msgid "ISRCs:"
-msgstr ""
+#: ../root/recording/edit_form.tt:45 ../root/report/ReportsIndex.js:606
+#: ../root/search/components/RecordingResults.js:144
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:721
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:411
+#: ../root/static/scripts/common/components/IsrcList.js:44
+#: ../root/utility/tableColumns.js:694
+msgid "ISRCs"
+msgstr "ISRC-ra"
#: ../root/work/edit_form.tt:16 ../root/edit/details/AddWork.js:47
#: ../root/edit/details/EditWork.js:66 ../root/edit/details/RemoveIswc.js:27
@@ -1498,12 +1517,13 @@ msgstr ""
#: ../root/report/IswcsWithManyWorks.js:49
#: ../root/search/components/WorkResults.js:57
#: ../root/static/scripts/common/components/IswcList.js:26
-#: ../root/utility/tableColumns.js:703
+#: ../root/utility/tableColumns.js:708
msgid "ISWC"
msgstr "ISWC"
-#: ../root/work/edit_form.tt:16
-msgid "ISWCs:"
+#: ../root/work/edit_form.tt:16 ../root/report/ReportsIndex.js:615
+#: ../root/static/scripts/common/components/IswcList.js:44
+msgid "ISWCs"
msgstr ""
#: ../root/event/edit_form.tt:26
@@ -1519,7 +1539,7 @@ msgid ""
"for this release."
msgstr ""
-#: ../root/release/edit/information.tt:298
+#: ../root/release/edit/information.tt:300
msgid ""
"If this is an Amazon ASIN, please do not enter it in the catalog number "
"field, but add it as a URL relationship later."
@@ -1540,7 +1560,7 @@ msgid "If you can't find what you're looking for, you can add a new release:"
msgstr ""
"Nëse s’gjeni dot ç’po kërkoni, mund të shtoni një hedhje të re në qarkullim:"
-#: ../root/release/edit/information.tt:316
+#: ../root/release/edit/information.tt:330
msgid ""
"If you do not know whether the release has a barcode or not, just leave this "
"blank."
@@ -1562,8 +1582,8 @@ msgstr ""
#: ../root/release/edit/information.tt:54
msgid ""
-"If you don’t select an existing release group, a new one will be created "
-"with the types selected below."
+"If you don’t select an existing release group, a new one will be added with "
+"the types selected below."
msgstr ""
#: ../root/release/edit/tracklist.tt:5
@@ -1641,21 +1661,21 @@ msgid ""
"Keep in mind that recording durations are {doc_link|recalculated from "
"tracks} once the duration of a track changes. As such, if you correct the "
"duration of a track whose recording is only used in this release, just reuse "
-"the old recording, don’t create a new one. If the recording is also used "
-"elsewhere and the durations are significantly different, consider creating a "
+"the old recording, don’t add a new one. If the recording is also used "
+"elsewhere and the durations are significantly different, consider adding a "
"new recording instead."
msgstr ""
#: ../root/release/edit/tracklist.tt:502
msgid ""
-"Keep in mind that unselecting this will delete the track if the medium has a "
+"Keep in mind that unselecting this will remove the track if the medium has a "
"disc ID! If you unselect it by mistake, please readd the pregap track before "
"submitting."
msgstr ""
#: ../root/release/edit/tracklist.tt:517
msgid ""
-"Keep in mind that unselecting this will delete the tracks if the medium has "
+"Keep in mind that unselecting this will remove the tracks if the medium has "
"a disc ID! If you unselect it by mistake, please readd the data tracks "
"before submitting."
msgstr ""
@@ -1664,12 +1684,16 @@ msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:31 ../root/cdtoc/list.tt:11
#: ../root/cdtoc/lookup.tt:45 ../root/edit/search_macros.tt:423
#: ../root/release/edit/duplicates.tt:15
+#: ../root/release/edit/information.tt:179
+#: ../root/release_group/set_cover_art.tt:52
#: ../lib/MusicBrainz/Server/Edit/Label.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:43
#: ../root/components/list/LabelList.js:54 ../root/edit/details/AddLabel.js:31
+#: ../root/edit/details/AddReleaseLabel.js:35
#: ../root/edit/details/EditLabel.js:43
#: ../root/edit/details/EditReleaseLabel.js:51
#: ../root/edit/details/MergeReleases.js:240
+#: ../root/edit/details/RemoveReleaseLabel.js:31
#: ../root/edit/details/historic/AddRelease.js:123
#: ../root/edit/details/historic/EditReleaseEvents.js:111
#: ../root/label/LabelHeader.js:25 ../root/layout/components/Search.js:37
@@ -1678,13 +1702,13 @@ msgstr ""
#: ../root/report/ReleaseLabelSameArtist.js:31
#: ../root/report/components/LabelList.js:47
#: ../root/report/components/LabelUrlList.js:35
-#: ../root/search/components/ReleaseResults.js:117
+#: ../root/search/components/ReleaseResults.js:116
#: ../root/search/components/SearchForm.js:42
#: ../root/static/scripts/common/components/FilterForm.js:168
#: ../root/static/scripts/common/constants.js:40
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:60
-#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:533
-#: ../root/utility/tableColumns.js:538
+#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:538
+#: ../root/utility/tableColumns.js:543
msgid "Label"
msgstr "Etiketë"
@@ -1696,28 +1720,31 @@ msgstr "Zonë Etikete"
msgid "Label Details"
msgstr "Hollësi Etikete"
-#: ../root/label/edit_form.tt:28
-#: ../root/layout/components/sidebar/LabelSidebar.js:81
-msgid "Label code:"
-msgstr "Kod etikete:"
-
-#: ../root/release/edit/information.tt:177
-#: ../root/release_group/set_cover_art.tt:52
-#: ../root/edit/details/AddReleaseLabel.js:35
-#: ../root/edit/details/RemoveReleaseLabel.js:31
-msgid "Label:"
-msgstr "Etiketë:"
+#: ../root/label/edit_form.tt:28 ../root/edit/details/AddLabel.js:94
+#: ../root/edit/details/EditLabel.js:85
+#: ../root/layout/components/sidebar/LabelSidebar.js:83
+msgid "Label code"
+msgstr ""
#: ../root/release/edit/information.tt:114
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:177
-msgid "Language:"
-msgstr "Gjuhë:"
+#: ../root/admin/attributes/Language.js:31
+#: ../root/admin/attributes/Language.js:34
+#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
+#: ../root/edit/details/EditRelease.js:113
+#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:191
+#: ../root/report/IswcsWithManyWorks.js:54
+#: ../root/search/components/ReleaseResults.js:119
+#: ../root/utility/tableColumns.js:559
+msgid "Language"
+msgstr "Gjuhë"
#: ../root/layout.tt:139 ../root/layout/components/Footer.js:85
msgid "Last replication packet received at {datetime}"
msgstr ""
-#: ../root/cdstub/cdstub.tt:9 ../root/release/discids.tt:10
+#: ../root/cdstub/cdstub.tt:9 ../root/recording/edit_form.tt:35
+#: ../root/recording/edit_form.tt:38 ../root/release/discids.tt:10
#: ../root/release/edit/tracklist.tt:164 ../root/release/edit/tracklist.tt:454
#: ../root/cdstub/CDStubInfo.js:29 ../root/cdtoc/AttachCDTocConfirmation.js:72
#: ../root/cdtoc/CDTocInfo.js:54 ../root/components/RelationshipsTable.js:338
@@ -1729,6 +1756,8 @@ msgstr ""
#: ../root/edit/details/EditRecording.js:69
#: ../root/edit/details/historic/AddRelease.js:91
#: ../root/edit/details/historic/AddTrackKV.js:54 ../root/isrc/Index.js:68
+#: ../root/layout/components/sidebar/RecordingSidebar.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:146
#: ../root/recording/RecordingIndex.js:55
#: ../root/report/IsrcsWithManyRecordings.js:61
#: ../root/report/components/CDTocList.js:54
@@ -1737,12 +1766,6 @@ msgstr ""
msgid "Length"
msgstr "Gjatësi"
-#: ../root/recording/edit_form.tt:35 ../root/recording/edit_form.tt:38
-#: ../root/layout/components/sidebar/RecordingSidebar.js:54
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:138
-msgid "Length:"
-msgstr "Gjatësi:"
-
#: ../root/release/edit/tracklist.tt:54
msgid "Lines contain track artists"
msgstr ""
@@ -1773,7 +1796,7 @@ msgstr "Hyni"
msgid "Long link phrase:"
msgstr ""
-#: ../root/release/edit/recordings.tt:175
+#: ../root/release/edit/recordings.tt:186
msgid "Looking for suggested recordings..."
msgstr "Po shihet për incizime të sugjeruara…"
@@ -1781,7 +1804,7 @@ msgstr "Po shihet për incizime të sugjeruara…"
msgid "Lookup CD"
msgstr "Kërko CD"
-#: ../root/release/edit/information.tt:139
+#: ../root/release/edit/information.tt:141
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:252
#: ../root/static/scripts/edit/components/PartialDateInput.js:174
msgid "MM"
@@ -1804,7 +1827,8 @@ msgstr "CD me përputhje"
#: ../lib/MusicBrainz/Server/Edit/Medium.pm:8
#: ../root/cdtoc/AttachCDTocConfirmation.js:65
#: ../root/cdtoc/SetTracklistDurations.js:56
-#: ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/RemoveDiscId.js:25
#: ../root/edit/details/RemoveMedium.js:71
#: ../root/edit/details/SetTrackLengths.js:40
#: ../root/search/components/RecordingResults.js:148
@@ -1819,8 +1843,9 @@ msgstr ""
#: ../root/layout/merge-helper.tt:30
#: ../root/layout/components/MergeHelper.js:71
#: ../root/layout/components/sidebar/MergeLink.js:34
+msgctxt "button/link"
msgid "Merge"
-msgstr "Përzieji"
+msgstr ""
#: ../root/layout/merge-helper.tt:3 ../root/layout/components/MergeHelper.js:30
msgid "Merge Process"
@@ -1859,7 +1884,12 @@ msgid "Move track up"
msgstr ""
#: ../root/admin/attributes/form.tt:7 ../root/admin/attributes/form.tt:23
-#: ../root/admin/attributes/form.tt:58 ../root/admin/attributes/Attribute.js:79
+#: ../root/admin/attributes/form.tt:58 ../root/components/forms.tt:226
+#: ../root/relationship/linkattributetype/form.tt:12
+#: ../root/relationship/linktype/form.tt:12
+#: ../root/relationship/linktype/form.tt:77
+#: ../root/relationship/linktype/form.tt:107
+#: ../root/admin/attributes/Attribute.js:79
#: ../root/admin/attributes/Language.js:40
#: ../root/admin/attributes/Script.js:41
#: ../root/components/Aliases/ArtistCreditList.js:50
@@ -1867,7 +1897,7 @@ msgstr ""
#: ../root/edit/details/AddArea.js:41 ../root/edit/details/AddArtist.js:51
#: ../root/edit/details/AddEvent.js:38 ../root/edit/details/AddGenre.js:35
#: ../root/edit/details/AddInstrument.js:41 ../root/edit/details/AddLabel.js:41
-#: ../root/edit/details/AddPlace.js:38
+#: ../root/edit/details/AddMedium.js:129 ../root/edit/details/AddPlace.js:38
#: ../root/edit/details/AddRelationshipAttribute.js:34
#: ../root/edit/details/AddRelationshipType.js:66
#: ../root/edit/details/AddRelease.js:51
@@ -1897,36 +1927,27 @@ msgstr ""
#: ../root/entity/Details.js:96
#: ../root/search/components/AnnotationResults.js:55
#: ../root/search/components/AreaResults.js:63
-#: ../root/search/components/ArtistResults.js:52
+#: ../root/search/components/ArtistResults.js:51
#: ../root/search/components/EditorResults.js:42
#: ../root/search/components/EventResults.js:73
#: ../root/search/components/InstrumentResults.js:53
#: ../root/search/components/LabelResults.js:66
#: ../root/search/components/PlaceResults.js:63
#: ../root/search/components/RecordingResults.js:141
-#: ../root/search/components/ReleaseResults.js:112
+#: ../root/search/components/ReleaseResults.js:111
#: ../root/search/components/SeriesResults.js:57
#: ../root/search/components/TagResults.js:51
#: ../root/search/components/WorkResults.js:54
#: ../root/static/scripts/account/components/ApplicationForm.js:81
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:197
#: ../root/static/scripts/common/components/FilterForm.js:135
#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:112
#: ../root/static/scripts/genre/components/GenreEditForm.js:147
+#: ../root/static/scripts/release/components/EditWorkDialog.js:166
#: ../root/user/UserSubscriptions.js:48
msgid "Name"
msgstr "Emër"
-#: ../root/components/forms.tt:226
-#: ../root/relationship/linkattributetype/form.tt:12
-#: ../root/relationship/linktype/form.tt:12
-#: ../root/relationship/linktype/form.tt:77
-#: ../root/relationship/linktype/form.tt:107
-#: ../root/edit/details/AddMedium.js:129
-#: ../root/static/scripts/release/components/EditWorkDialog.js:166
-msgid "Name:"
-msgstr "Emër:"
-
#: ../root/artist/edit_credit.tt:18 ../root/artist/split.tt:45
msgid "New Artist Credit"
msgstr ""
@@ -1979,7 +2000,7 @@ msgstr ""
"s’caktohet dot kopertinë."
#: ../root/release/edit/tracklist.tt:140 ../root/admin/IpLookup.js:38
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:468
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:472
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:88
msgid "No results"
msgstr "S’ka përfundime"
@@ -2011,7 +2032,15 @@ msgid ""
"because they have the wrong number of tracks."
msgstr ""
-#: ../root/release/edit/information.tt:283
+#: ../root/release/edit/recordings.tt:3 ../root/edit/details/EditRelease.js:164
+#: ../root/edit/details/MergeReleases.js:347
+#: ../root/edit/details/SetTrackLengths.js:74
+#: ../root/edit/details/historic/MergeReleases.js:55
+#: ../root/user/ReportUser.js:116
+msgid "Note"
+msgstr "Shënim"
+
+#: ../root/release/edit/information.tt:285
msgid ""
"Note! If you do not know the month or day of release, please leave them "
"empty. January 1st is not often the actual release date, please double "
@@ -2022,14 +2051,10 @@ msgstr ""
"qarkullim, ju lutemi, rikontrolloni që datën e hedhjes në qarkullim e keni "
"dhënë saktësisht."
-#: ../root/release/edit/recordings.tt:3
-msgid "Note:"
-msgstr "Shënim:"
-
#: ../root/edit/search_macros.tt:243
msgid ""
-"Note: only searches edits that: add or edit relationships, created after "
-"2011-05-16; or which remove relationships, created after 2013-07-08; or "
+"Note: only searches edits that: add or edit relationships, entered after "
+"2011-05-16; or which remove relationships, entered after 2013-07-08; or "
"which reorder relationships."
msgstr ""
@@ -2074,31 +2099,33 @@ msgstr "Mundësi"
msgid "Orderable direction:"
msgstr ""
-#: ../root/series/edit_form.tt:17
-msgid "Ordering Type:"
+#: ../root/series/edit_form.tt:17 ../root/edit/details/AddSeries.js:52
+#: ../root/edit/details/EditSeries.js:66
+#: ../root/layout/components/sidebar/SeriesSidebar.js:53
+#: ../root/utility/tableColumns.js:765
+msgid "Ordering Type"
msgstr ""
#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:77
msgid "PDF file"
msgstr "Kartelë PDF"
-#: ../root/release/edit/information.tt:238
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:156
-msgid "Packaging:"
-msgstr "Paketim:"
+#: ../root/release/edit/information.tt:240
+#: ../root/edit/details/AddRelease.js:105
+#: ../root/edit/details/EditRelease.js:137
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
+msgid "Packaging"
+msgstr ""
#: ../root/admin/attributes/form.tt:50
+#: ../root/relationship/linkattributetype/form.tt:4
+#: ../root/relationship/linktype/form.tt:4
#: ../root/edit/details/AddRelationshipAttribute.js:55
#: ../root/edit/details/EditRelationshipAttribute.js:85
+#: ../root/edit/details/EditRelationshipType.js:317
msgid "Parent"
msgstr "Mëmë"
-#: ../root/relationship/linkattributetype/form.tt:4
-#: ../root/relationship/linktype/form.tt:4
-#: ../root/edit/details/EditRelationshipType.js:317
-msgid "Parent:"
-msgstr "Mëmë:"
-
#: ../root/release/edit/tracklist.tt:238
msgid "Parse Tracks"
msgstr ""
@@ -2124,10 +2151,10 @@ msgstr "Hollësi Vendi"
msgid "Please choose a condition"
msgstr "Ju lutemi, zgjidhni një kusht"
-#: ../root/release/edit/information.tt:312
+#: ../root/release/edit/information.tt:326
msgid ""
-"Please enter the barcode of the release you are entering, see Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
"Ju lutemi, jepni kodin me vija të hedhjes në qarkullim që po jepni, për më "
"tepër të dhëna, shihni Kod me vija."
@@ -2153,15 +2180,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr "Pozicion"
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr "Pozicion:"
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr "Media të Mundshme:"
@@ -2210,7 +2234,7 @@ msgstr[1] "Vlerësim: {rating} yje"
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr "Incizim"
@@ -2251,27 +2275,32 @@ msgstr "Përpunues Marrëdhënieje"
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr "Lloj Marrëdhënieje"
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2294,7 +2323,7 @@ msgstr "Vend Hedhjeje Në Qarkullim"
msgid "Release Duplicates"
msgstr "Përsëdytje Hedhjeje Në Qarkullim"
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2314,10 +2343,6 @@ msgstr "Grup Hedhjeje Në Qarkullim"
msgid "Release Group Details"
msgstr "Hollësi Grupi Hedhjesh Në Qarkullim"
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr "Grup Hedhjeje Në Qarkullim:"
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2335,7 +2360,7 @@ msgstr "Gjuhë Hedhjeje Në Qarkullim"
msgid "Release Quality"
msgstr "Cilësi Hedhjeje Në Qarkullim"
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr "Veprimtari hedhjeje në qarkullim"
@@ -2359,16 +2384,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr "Hedhje në qarkullim “{name}” nga {artist}"
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr "Hedhje në qarkullim:"
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2384,7 +2401,7 @@ msgstr "Hedhje në qarkullim:"
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2394,11 +2411,11 @@ msgstr "Hiqe"
msgid "Remove Example"
msgstr "Hiqni Shembull"
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr "Hiqni Etiketë"
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr "Hiqni Veprimtari Hedhjeje Në Qarkullim"
@@ -2409,7 +2426,7 @@ msgstr "Hiqni atribut"
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2470,7 +2487,7 @@ msgstr "Ripërdor incizime të dikurshme"
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr "Për ndihmë, shqyrtoni {packaging|listën e llojeve të paketimit}."
@@ -2488,29 +2505,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "Ruaje"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
-msgstr "Shkrim:"
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr "Programth"
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2529,10 +2550,6 @@ msgstr "Kërkim sipas hedhjesh në qarkullim"
msgid "Search for Edits"
msgstr "Kërkim për Përpunime"
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr "Kërko:"
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr "Po kërkohet…"
@@ -2607,11 +2624,14 @@ msgid "Set cover art"
msgstr "Caktoni kopertinë"
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
-msgstr "Caktoni kohëzgjatje pjesësh"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
+msgstr "Cakton gjatësi pjesësh"
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2645,9 +2665,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2658,25 +2685,33 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr "Ndaje Në Artistë të Veçantë"
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr "Gjendje"
#: ../root/release/edit/information.tt:111
-msgid "Status:"
-msgstr "Gjendje:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
+msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
msgid "Stop using beta site"
msgstr "Reshtni së përdoruri sajt beta"
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr "Po parashtrohen përpunime…"
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr "Incizime të sugjeruara:"
@@ -2689,9 +2724,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr "Etiketues"
@@ -2701,11 +2736,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2719,11 +2754,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr "Data që dhatë s’është e vlefshme."
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2735,7 +2770,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2743,6 +2786,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2761,7 +2810,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2799,7 +2848,7 @@ msgstr "Këto koordinata s’u përtypën dot."
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2851,14 +2900,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr "Kjo veprimtari qe anuluar."
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2917,7 +2966,7 @@ msgstr ""
msgid "This label has ended."
msgstr "Kjo etiketë ka përfunduar."
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2956,8 +3005,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr "Ky regjistrim është një video"
@@ -2974,7 +3023,7 @@ msgstr "Kjo marrëdhënie është nxjerrë nga përdorimi"
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr "Kjo hedhje në qarkullim s’ka kod me vija"
@@ -2982,7 +3031,7 @@ msgstr "Kjo hedhje në qarkullim s’ka kod me vija"
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -3007,14 +3056,20 @@ msgstr "Kjo pistë është pistë të dhënash."
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
-msgstr "Kohë:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
+msgstr "Kohë"
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -3029,20 +3084,16 @@ msgstr "Kohë:"
msgid "Title"
msgstr "Titull"
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
-msgstr "Titull:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
+msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -3072,6 +3123,7 @@ msgid "Tracklist"
msgstr "Listë pjesësh"
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -3079,7 +3131,7 @@ msgstr "Listë pjesësh"
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "Pjesë"
@@ -3091,10 +3143,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr "Pjesë:"
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3132,25 +3180,25 @@ msgstr "Twitter"
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr "Lloj"
@@ -3161,7 +3209,7 @@ msgstr "Lloj"
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3175,17 +3223,30 @@ msgstr "Lloj:"
msgid "Types:"
msgstr "Lloje:"
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
-msgstr "URL:"
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr "URL"
#: ../root/release/edit/tracklist.tt:21
msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr "I pabesuar"
@@ -3262,7 +3323,7 @@ msgid "Voter"
msgstr "Votues"
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr "Vota"
@@ -3274,23 +3335,20 @@ msgstr "Votimi është mbyllur"
msgid "Voting period (days)"
msgstr "Periudhë votimi (ditë)"
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr "Sinjalizim"
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr "Kujdes:"
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3346,7 +3404,7 @@ msgstr "Atribute Vepre"
msgid "Work Details"
msgstr "Hollësi Vepre"
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3384,11 +3442,11 @@ msgstr "Po shihni hedhje në qarkullim nga {artist}."
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3404,7 +3462,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3431,8 +3489,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3441,8 +3499,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3526,9 +3584,11 @@ msgstr ""
msgid "any"
msgstr "çfarëdo"
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
-msgstr "shfaqet në:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
+msgstr "shfaqet në"
#: ../root/edit/search_macros.tt:20
msgid "auto-edits"
@@ -4016,12 +4076,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr "Shprehje e rregullt e pavlefshme."
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4106,25 +4166,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr "Normal"
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4237,15 +4297,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr "Dërgo Email"
@@ -4323,7 +4383,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4406,7 +4466,7 @@ msgstr "Hiqni zonë"
msgid "Remove area alias"
msgstr "Hiqni alias zone"
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr "Përpunoni zonë"
@@ -4439,7 +4499,7 @@ msgstr "Hiqni artist"
msgid "Remove artist alias"
msgstr "Hiqni alias artisti"
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr "Përpunoni artist"
@@ -4481,8 +4541,8 @@ msgid "Add event annotation"
msgstr "Shtoni shënim veprimtarie"
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr "Shtoni veprimtari"
@@ -4494,7 +4554,7 @@ msgstr "Hiqni veprimtari"
msgid "Remove event alias"
msgstr "Hiqni alias veprimtarie"
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr "Përpunoni veprimtari"
@@ -4528,7 +4588,7 @@ msgstr "Hiqe zhanrin"
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr "Përpunoni zhanër"
@@ -4550,8 +4610,8 @@ msgstr "Shtoni marrëdhënie"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr "Shtoni hedhje në qarkullim"
@@ -4580,14 +4640,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr "Përpunoni hedhje në qarkullim"
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr "Ndryshoni cilësi të dhënash hedhjeje në qarkullim"
@@ -4608,7 +4668,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr "Përpunoni incizim"
@@ -4660,11 +4720,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr "Cakton gjatësi pjesësh"
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr "Shtoni alias instrumenti"
@@ -4716,7 +4771,7 @@ msgstr "Shtoni etiketë"
msgid "Remove label"
msgstr "Hiqni etiketë"
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr "Përpunoni etiketë"
@@ -4763,7 +4818,7 @@ msgstr "Hiqe vendin"
msgid "Remove place alias"
msgstr "Hiqni alias vendi"
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr "Përpunoni vend"
@@ -4814,8 +4869,12 @@ msgstr "Përzieni incizime"
msgid "Remove ISRC"
msgstr "Hiqni ISRC"
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr "Marrëdhënie"
@@ -4894,13 +4953,13 @@ msgstr "Përpunoni kode me vija"
msgid "Edit cover art"
msgstr "Përpunoni kopertinë"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr "Përpunoni etiketë hedhjeje në qarkullim"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(e panjohur)"
@@ -4928,6 +4987,8 @@ msgstr "Rirenditi media"
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr "Grup hedhjeje në qarkullim"
@@ -4941,7 +5002,7 @@ msgid "Add release group annotation"
msgstr "Shtoni shënim grupi hedhjesh në qarkullim"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr "Shtoni grup hedhjeje në qarkullim"
@@ -4953,7 +5014,7 @@ msgstr "Hiqni grup hedhjeje në qarkullim"
msgid "Remove release group alias"
msgstr "Hiqni alias grupi hedhjeje në qarkullim"
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr "Përpunoni grup hedhjesh në qarkullim"
@@ -5032,7 +5093,7 @@ msgstr "Hiqni seri"
msgid "Remove series alias"
msgstr "Hiqni alias serie"
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr "Përpunoni seri"
@@ -5045,24 +5106,7 @@ msgstr "Përpunoni alias serie"
msgid "Merge series"
msgstr "Përzieni seri"
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr "URL"
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -5080,6 +5124,7 @@ msgid "Failed dependency"
msgstr "Varësi e paplotësuar"
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5093,11 +5138,11 @@ msgstr "Parakusht i paplotësuar"
msgid "No votes"
msgstr "S’ka vota"
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
-msgstr "U anulua"
+msgstr ""
#: ../lib/MusicBrainz/Server/Edit/WikiDoc.pm:7
msgid "Wiki documentation"
@@ -5120,7 +5165,7 @@ msgid "Add ISWCs"
msgstr "Shtoni ISWCra"
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr "Shtoni vepër"
@@ -5563,11 +5608,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr "Kjo s’është kohë e vlefshme."
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
-msgstr "Jepni një URL të vlefshme, p.sh, \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
+msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr "Protokolli për URL-në duhet të jetë HTTP, HTTPS ose FTP"
@@ -5658,22 +5703,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr "Fillestar"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr "Mesatar"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr "I përparuar"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5685,17 +5730,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr "Shënim"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5710,17 +5744,6 @@ msgctxt "noun"
msgid "Tag"
msgstr "Etiketë"
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr "Dokumentim"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5966,19 +5989,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr "{list_item}, {rest}"
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5986,7 +6009,7 @@ msgstr "{list_item}, {rest}"
msgid "{last_list_item}"
msgstr "{last_list_item}"
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6113,9 +6136,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr "Emaili"
@@ -6493,12 +6517,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr "Përpunimi/votimi është i çaktivizuar"
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6532,15 +6556,16 @@ msgstr "Anashkaloje verifikimin"
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr "Sajt"
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
-msgstr "Jetëshkrim:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
+msgstr "Jetëshkrim"
#: ../root/admin/EditUser.js:182
msgid "Edit user"
@@ -6555,7 +6580,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6592,20 +6617,6 @@ msgstr "ID të lejuara disku"
msgid "Free text"
msgstr "Tekst i lirë"
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr "Atribute"
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6634,26 +6645,8 @@ msgstr "Jeni i sigurt se dëshironi të hiqet atributi {name}?"
msgid "Remove Attribute"
msgstr "Hiqni Atribut"
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr "Gjuhë"
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr "Programth"
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr "Anëtar që prej"
@@ -6661,15 +6654,10 @@ msgstr "Anëtar që prej"
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr "Jetëshkrim"
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6724,6 +6712,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr "Shtoni Faqe"
@@ -6736,10 +6725,6 @@ msgstr "Faqe:"
msgid "Version:"
msgstr "Version:"
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr "Krijoje"
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6833,6 +6818,7 @@ msgstr "Pati një problem me hyrjen te API e wiki-it."
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr "Krahasim shënimesh"
@@ -6884,9 +6870,12 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
-msgstr "Paraparje:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
+msgstr ""
#: ../root/annotation/EditAnnotation.js:80
#: ../root/static/scripts/common/components/Annotation.js:71
@@ -6894,10 +6883,9 @@ msgid "Changelog:"
msgstr "Regjistër ndryshimesh:"
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
-msgstr "Paraparje"
+msgstr ""
#: ../root/annotation/EditAnnotation.js:98
msgid "Annotation Formatting"
@@ -6969,10 +6957,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr "Artistë"
@@ -7011,7 +6999,7 @@ msgstr "{area_type} në {parent_areas}"
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -7060,7 +7048,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -7074,7 +7065,10 @@ msgstr "Marrëdhënie"
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7240,7 +7234,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7529,10 +7523,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr "Ndryshoni numër"
@@ -7565,10 +7561,8 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr "Na ndjeni, {discid}
s’është ID e vlefshme disku."
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
-"Ju lutemi, kërkoni për artistin për të cilin doni të krijoni një hedhje të "
-"re në qarkullim:"
#: ../root/cdstub/ImportCDStub.js:100
msgid "Import CD stub"
@@ -7583,7 +7577,7 @@ msgstr ""
"te {format} {pos} e {release} nga {artist}?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7603,15 +7597,6 @@ msgstr ""
msgid "CD TOC details"
msgstr "Hollësi PL CD-je"
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr "ID Disku:"
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "FreeDB:"
@@ -7621,8 +7606,9 @@ msgid "Track details:"
msgstr "Hollësi pjese:"
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "Pjesë"
@@ -7631,21 +7617,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Fund"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr "Kohë"
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7685,12 +7663,9 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
-"Nëse s’e shihni artistin që po kërkoni, mundeni prapëseprapë të shtoni një "
-"hedhje të re në qarkullim. Kjo do t’ju lejojë të krijoni këtë artist dhe, në "
-"të njëjtën kohë, një hedhje në qarkullim"
#: ../root/cdtoc/SetTracklistDurations.js:46
#: ../root/cdtoc/SetTracklistDurations.js:47
@@ -7727,15 +7702,15 @@ msgstr "Shihni krejt koleksionet tuaja"
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr "Bashkëpunëtorë"
@@ -7828,8 +7803,8 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "Krijoni një koleksion të ri"
+msgid "Add a new collection"
+msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -7843,20 +7818,10 @@ msgstr "Jeni i sigurt se doni të hiqet koleksioni {collection}?"
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "Alias"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr "Datë Fillimi"
@@ -8027,7 +7992,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Vlerësime"
@@ -8073,7 +8038,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8184,6 +8149,7 @@ msgstr "Pajtime"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr "Pajtimtarë"
@@ -8228,26 +8194,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Gjini"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "Zonë Fillimi"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "Zonë Mbarimi"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8259,13 +8209,6 @@ msgstr "Rol"
msgid "Code"
msgstr "Kod"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "Adresë"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr "Lloj i papërcaktuar"
@@ -8274,22 +8217,16 @@ msgstr "Lloj i papërcaktuar"
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr "[mungon media]"
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Gjendje"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr "Shkrues"
@@ -8418,7 +8355,7 @@ msgid "There was a problem cancelling {edit}."
msgstr "Pati një problem në anulimin e {edit}."
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8637,7 +8574,7 @@ msgid "None"
msgstr "Asnjë"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8662,7 +8599,8 @@ msgid_plural "Found {n} edits"
msgstr[0] "U gjet {n} përpunim"
msgstr[1] "U gjetën {n} përpunime"
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8687,7 +8625,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8696,15 +8634,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8727,51 +8665,41 @@ msgstr "Shtoni shënim përpunimi"
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "Gjendje:"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr "Për mbyllje më të shpejtë"
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] "1 votë"
msgstr[1] "{n} vota unanime"
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr "Të dhëna bruto përpunimi për këtë përpunim"
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr "Për më tepër të dhëna:"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr "FAQ votimi"
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Shtoni Shënim"
@@ -8791,12 +8719,6 @@ msgstr "Ky përdorues është i automatizuar."
msgid "bot"
msgstr "robot"
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "Hedhje në qarkullim:"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8913,39 +8835,15 @@ msgstr "Ky shënim është i zbrazët."
msgid "Summary"
msgstr "Përmbledhje"
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr "Datë fillimi"
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "Datë përfundimi"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
-msgstr "Përfundoi"
+msgstr ""
#: ../root/edit/details/AddCoverArt.js:39
#: ../root/edit/details/RemoveCoverArt.js:39
@@ -8955,17 +8853,20 @@ msgstr "(asnjë)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Emër kartele:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr "Emër kartele"
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr "Media:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "Koment:"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8989,20 +8890,20 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
-msgstr "Kredite Artisti:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr "Kredite Artisti"
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
-msgstr "Marrëdhënie:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddRelationship.js:33
msgid "Link order:"
@@ -9060,30 +8961,24 @@ msgstr "(asnjë)"
msgid "(new release group)"
msgstr "(grup i ri hedhjeje në qarkullim)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "Gjendje:"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr "Veprimtari hedhjesh në qarkullim"
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "Numër katalogu:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "Numër katalogu"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9095,17 +8990,17 @@ msgstr "shihini krejt aliaset"
msgid "Primary for locale"
msgstr "Parësor për vendoren"
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr "Gjuhë Vargjesh"
@@ -9113,7 +9008,7 @@ msgstr "Gjuhë Vargjesh"
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "Cilësi të Dhënash"
@@ -9154,14 +9049,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9186,11 +9073,6 @@ msgstr "Incizim i vjetër"
msgid "New recording"
msgstr "Incizim i ri"
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr "Kredite Artisti"
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "Artist i Vjetër"
@@ -9216,25 +9098,10 @@ msgstr ""
msgid "Deprecated:"
msgstr "Nxjerrë nga përdorimi:"
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr "Shënim"
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "Numër katalogu"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9256,6 +9123,7 @@ msgid "Search for the target URL."
msgstr "Kërko për URL objektiv."
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9268,8 +9136,9 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "Përzieji:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -9381,8 +9250,8 @@ msgid "New positions:"
msgstr "Pozicione të reja:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
-msgstr "Media:"
+msgid "Mediums"
+msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
@@ -9402,11 +9271,11 @@ msgstr "Meda {new} (media e re)"
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
-"Media {new} (e lëvizur nga pozicioni {old})"
+"Media {new} (e lëvizur nga pozicioni {old})"
#: ../root/edit/details/ReorderRelationships.js:21
msgid "Old Order"
@@ -9440,26 +9309,12 @@ msgid "Track lengths:"
msgstr "Gjatësi pjesësh:"
#: ../root/edit/details/SetTrackLengths.js:76
-msgid "This edit makes subsecond changes to track lengths"
-msgstr ""
-
-#: ../root/edit/details/historic/AddDiscId.js:23
-msgid "CD TOC:"
-msgstr "PL CD-je:"
-
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "Marrëdhënie:"
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr "Veprimtari Hedhjeje Në Qarkullim:"
+msgid "This edit makes subsecond changes to track lengths"
+msgstr ""
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Numër Katalogu"
+#: ../root/edit/details/historic/AddDiscId.js:23
+msgid "CD TOC:"
+msgstr "PL CD-je:"
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
@@ -9471,11 +9326,6 @@ msgstr "Numër pjese"
msgid "Artist name:"
msgstr "Emër artisti:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr "Grup hedhjeje në qarkullim:"
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "Marrëdhënie e vjetër:"
@@ -9485,8 +9335,8 @@ msgid "New relationships:"
msgstr "Marrëdhënie të reja:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9502,16 +9352,24 @@ msgid "New Status:"
msgstr "Gjendje e Re:"
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "U shtua"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
-msgstr "U hoq"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
-msgstr "U përpunua"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
@@ -9551,28 +9409,24 @@ msgstr ""
msgid "Change track artists:"
msgstr "Ndryshoni artistë pjesësh:"
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "Alias:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr "Pjesë:"
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Kandidat:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Kandidat"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9580,12 +9434,14 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
-msgstr "Vota pro:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr "Vota pro"
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
-msgstr "Vota kundër:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr "Vota kundër"
#: ../root/elections/ElectionDetails.js:71
msgid "Abstentions"
@@ -9601,47 +9457,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "Gjendje:"
+msgid "Status"
+msgstr "Gjendje"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "Shihni hollësitë"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Kandidat"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "Gjendje"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr "Datë fillimi"
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr "Vota pro"
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr "Vota kundër"
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10331,7 +10159,7 @@ msgstr "Zgjedhje Auto-përpunuesi"
msgid "Privileged User Accounts"
msgstr "Llogari Përdoruesish të Privilegjuar"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Statistika"
@@ -10483,7 +10311,7 @@ msgstr "Tregues i Dokumentimit"
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "Lloje Marrëdhëniesh"
@@ -10650,39 +10478,33 @@ msgstr "Të dhëna zone"
msgid "Artist information"
msgstr "Të dhëna artisti"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "Shtoni incizim"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "Ndaje në artistë të veçantë"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr "Ndryshuar së fundi më:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
-msgstr "Ndryshoni numër:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr "Importoje si hedhje në qarkullim MusicBrainz"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "Shtoni ID disku te një hedhje ekzistuese në qarkullim"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr "Kërko për këtë CD te baza e të dhënave"
@@ -10798,11 +10620,11 @@ msgstr "Hyni që të përpunoni"
msgid "Event information"
msgstr "Të dhëna veprimtarie"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr "Datë Fillimi:"
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr "Datë Përfundimi:"
@@ -10855,10 +10677,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "Koordinata:"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10871,7 +10689,7 @@ msgstr ""
msgid "Recording information"
msgstr "Të dhëna incizimi"
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10902,27 +10720,27 @@ msgstr "Shihni krejt grafikën"
msgid "No cover art available."
msgstr "S’ka kopertinë të passhme."
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "Hollësi shtesë"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr "Vlerësim grupi hedhjesh në qarkullim"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr "Shqyrtime grupi hedhjesh në qarkullim"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr "Lidhje të jashtme grupi hedhjesh në qarkullim"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr "Përpunoni marrëdhënie"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr "Ndryshoni cilësi të dhënash"
@@ -10930,21 +10748,13 @@ msgstr "Ndryshoni cilësi të dhënash"
msgid "Series information"
msgstr "Të dhëna serish"
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "Kod IPI:"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "Kod ISNI:"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Licencë"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Vlerësim"
@@ -11089,7 +10899,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr "Na ndjeni, faqja që po kërkoni nuk ekziston."
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Mesazh gabimi: "
@@ -11196,13 +11006,7 @@ msgstr "Gjuhë ndërfaqeje:"
msgid "Request data:"
msgstr "Të dhëna kërkese:"
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] "Gabim:"
-msgstr[1] "Gabime:"
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(S’ka hollësitë rreth këtij gabimi)"
@@ -11336,7 +11140,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11552,7 +11356,7 @@ msgstr "Atribut marrëdhënieje në përdorim"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11560,11 +11364,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "ID:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11576,6 +11375,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11609,17 +11409,13 @@ msgstr "asnjë"
msgid "Add child"
msgstr "Shtoni pjellë"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr "Vlera të mundshme:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "S’u gjetën atribute marrëdhëniesh."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
-msgstr "Krijoni atribut të ri marrëdhënieje"
+msgid "Add a new relationship attribute"
+msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
@@ -11640,7 +11436,7 @@ msgstr "Lloj Marrëdhënieje Në Përdorim"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11714,8 +11510,8 @@ msgid "{type0}-{type1} relationship types"
msgstr "Lloje marrëdhëniesh {type0}-{type1}"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
-msgstr "Krijoni një marrëdhënie të re {type0}-{type1}"
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
msgid "Expand all descriptions"
@@ -11733,7 +11529,7 @@ msgstr "S’u gjetën lloje marrëdhëniesh {type0}-{type1}."
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11844,8 +11640,8 @@ msgstr ""
"{artist}?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "Grup hedhjesh në qarkullim nga {artist}"
@@ -12051,8 +11847,8 @@ msgstr "URLra Amazon të Gabuara"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -12062,10 +11858,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12099,7 +11895,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12108,7 +11904,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12388,7 +12184,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12468,7 +12264,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12595,8 +12391,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12767,13 +12563,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12951,7 +12747,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12975,8 +12771,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13195,20 +12990,6 @@ msgstr "URL-ra"
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr "ISRC-ra"
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13287,9 +13068,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13298,9 +13079,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13455,6 +13236,10 @@ msgstr ""
msgid "Last edited"
msgstr "Përpunuar së fundi më"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Numër Katalogu"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr "Kërkim etiketash"
@@ -13464,7 +13249,7 @@ msgid "Other lookups"
msgstr "Kërkime të tjera"
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13475,7 +13260,7 @@ msgstr "Fillim"
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13485,11 +13270,12 @@ msgid "Documentation Search"
msgstr "Kërkim Në Dokumentim"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Vend"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13523,7 +13309,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13609,7 +13395,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr "Na ndjeni, kërkesa juaj qe shumë e madhe."
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr "Kjo seri hëpërhë është e zbrazët."
@@ -13630,42 +13416,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr "Nëse ndryshoni adresën tuaj email, do t’ju kërkohet ta verifikoni."
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
-msgstr "Vendndodhje:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "Datëlindje:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "Gjuhë të Ditura:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Shtoni një gjuhë"
@@ -13716,15 +13503,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13779,10 +13566,12 @@ msgid "This alias is no longer current."
msgstr "Ky alias s’është më në përdorim."
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13832,7 +13621,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13860,33 +13649,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "Shfaqni më tepër…"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "Hollësi koleksioni"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "Lejoju përdoruesve të tjerë ta shohin këtë koleksion"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "Krijoni koleksion"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr "Përditësoni koleksion"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr "Shtoni bashkëpunëtor"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr "Hiqe bashkëpunëtorin"
@@ -13904,7 +13693,7 @@ msgid "Try with indexed search instead."
msgstr "Provoni më mirë me kërkim të indeksuar."
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr "Shtypni që të kërkohet, ose hidhni një MBID"
@@ -13913,32 +13702,27 @@ msgstr "Shtypni që të kërkohet, ose hidhni një MBID"
msgid "Clear recent items"
msgstr "Spastro zëra së fundi"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr "S’u gjet? Riprovoni me kërkim të drejtpërdrejtë."
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr "shfaqet në"
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr "{release_group_type} nga {artist}"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr "Ekzekutues"
@@ -13948,8 +13732,14 @@ msgid "Vote on all edits:"
msgstr "Votoni në krejt përpunimet:"
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
-msgstr "Fshije Shënimin"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
@@ -13986,11 +13776,11 @@ msgid "Annotation last modified on {date}."
msgstr "Shënim i ndryshua së fundi më {date}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14091,15 +13881,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14210,8 +14000,8 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
-msgstr "Kredit artisti:"
+msgid "Artist credit"
+msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
msgid "Setlist contains"
@@ -14505,31 +14295,31 @@ msgctxt "plural"
msgid "Series"
msgstr "Seri"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr "më {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr "më {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr "nga {begin_date} deri më {end_date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr "nga {date} në ????"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr "nga {date} në tani"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr "deri më {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14550,8 +14340,9 @@ msgid "Began:"
msgstr "Filloi më:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "Përfundoi më:"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -14607,8 +14398,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14698,113 +14489,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14851,53 +14642,53 @@ msgstr "Shtoni seri të re"
msgid "Add a new work"
msgstr "Shtoni vepër të re"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr "Artist në MusicBrainz:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr "Shtoni Kredite Artisti"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr "Kopjoni Kredite"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr "Ngjitni Kredite"
@@ -14919,11 +14710,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14958,11 +14749,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -15028,10 +14819,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr "Veprimtari hedhjeje në qarkullim:"
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15366,8 +15154,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15573,17 +15361,15 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
-"Përdoreni këtë mundësi pasi të keni provuar kërkimin për veprën(at) që doni "
-"të krijoni, dhe pasi të jeni të sigurt se s’ekzistojnë tashmë në MusicBrainz."
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:94
@@ -15591,7 +15377,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15643,34 +15429,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr "Marrëdhënie Pjesësh"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr "Vepra të Ngjashme"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "Marrëdhënie Hedhjeje Në Qarkullim"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr "Marrëdhënie Grupi Hedhjesh Në Qarkullim"
@@ -15697,15 +15483,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr "Lloj Vepre:"
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr "Shtoni Gjuhë"
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr "Hiqe Gjuhën"
@@ -15946,10 +15728,6 @@ msgstr ""
msgid "Duration"
msgstr "Kohëzgjatje"
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr "Emër kartele"
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "Kërkim Etiketash"
@@ -16014,23 +15792,23 @@ msgstr "Të dhëna URL-je"
msgid "URL Details"
msgstr "Hollësi URL-je"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr "Subjekt:"
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr "Mesazh"
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr "Tregoje adresën time email"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr "Dërgo një kopje te adresa ime email"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "Dërgoje"
@@ -16146,11 +15924,9 @@ msgstr "Përpunues mesazhesh banderolë"
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
-"Përpunues mesazhesh banderolë janë përdorues që mund të caktojnë një mesazh "
-"që shfaqet në një banderolë në krejt faqet, p.sh., për t’i sinjalizuar "
-"përdoruesit rreth mirëmbajtjesh s’afërmi të sajtit."
#: ../root/user/PrivilegedUsers.js:114
msgid "The following {count} users are banner message editors:"
@@ -16381,10 +16157,6 @@ msgstr ""
msgid "General Information"
msgstr "Të dhëna të Përgjithshme"
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "Email:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(fshehur)"
@@ -16426,191 +16198,185 @@ msgstr ""
msgid "Age:"
msgstr "Moshë:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "Anëtar që prej:"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "Hyrja e fundit:"
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "Përshkrim"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr "S’ka bërë ende hyrjen"
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr "Faqe hyrëse:"
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr "Pajtimtarë:"
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr "{count} ({url|view list})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr "shpajtohuni"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr "pajtohuni"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "Gjuhë:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr "{count} ({view_url|view})"
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Githsej"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Pranuar"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr "Auto-përpunime"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr "24 orët e fundit"
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr "Vota ({view_url|shihini})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr "28 ditët e fundit"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr "Gjithsej"
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr "Raportojeni këtë përdorues për sjellje të keqe"
@@ -16861,12 +16627,9 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
-"Ky përpunim dështoi ngaqë të dhënat që ndryshonte qenë ndryshuar pasi qe "
-"krijuar ky përpunim. Kjo mund të ndodhë kur i njëjti përpunim është dhënë dy "
-"herë; njëri do të kalojë, por tjetri do të dështojë."
#: ../root/utility/edit.js:86
msgid ""
@@ -16880,7 +16643,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr "Ky përpunim qe anuluar."
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -17105,6 +16868,350 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Address:"
+#~ msgstr "Adresë:"
+
+#~ msgid "Annotation:"
+#~ msgstr "Shënim:"
+
+#~ msgid "Area:"
+#~ msgstr "Zonë:"
+
+#~ msgid "Artist:"
+#~ msgstr "Artist:"
+
+#~ msgid "Attributes:"
+#~ msgstr "Atribute:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Kod me vija:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "Zonë Fillimi:"
+
+#~ msgid "Begin date:"
+#~ msgstr "Datë fillimi:"
+
+#~ msgid "Child order:"
+#~ msgstr "Rend pjelle:"
+
+#~ msgid "Country:"
+#~ msgstr "Vend:"
+
+#~ msgid "Date:"
+#~ msgstr "Datë:"
+
+#~ msgid "Delete"
+#~ msgstr "Fshije"
+
+#~ msgid "Description:"
+#~ msgstr "Përshkrim:"
+
+#~ msgid "Documentation:"
+#~ msgstr "Dokumentim:"
+
+#~ msgid "End Area:"
+#~ msgstr "Zonë Mbarimi:"
+
+#~ msgid "End date:"
+#~ msgstr "Datë përfundimi:"
+
+#~ msgid "Format:"
+#~ msgstr "Format:"
+
+#~ msgid "Gender:"
+#~ msgstr "Zhanër:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "Kode IPI:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "Kode ISNI:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "Label code:"
+#~ msgstr "Kod etikete:"
+
+#~ msgid "Label:"
+#~ msgstr "Etiketë:"
+
+#~ msgid "Language:"
+#~ msgstr "Gjuhë:"
+
+#~ msgid "Length:"
+#~ msgstr "Gjatësi:"
+
+#~ msgid "Merge"
+#~ msgstr "Përzieji"
+
+#~ msgid "Name:"
+#~ msgstr "Emër:"
+
+#~ msgid "Note:"
+#~ msgstr "Shënim:"
+
+#~ msgid "Packaging:"
+#~ msgstr "Paketim:"
+
+#~ msgid "Parent:"
+#~ msgstr "Mëmë:"
+
+#~ msgid "Position:"
+#~ msgstr "Pozicion:"
+
+#~ msgid "Release Group:"
+#~ msgstr "Grup Hedhjeje Në Qarkullim:"
+
+#~ msgid "Release:"
+#~ msgstr "Hedhje në qarkullim:"
+
+#~ msgid "Script:"
+#~ msgstr "Shkrim:"
+
+#~ msgid "Search:"
+#~ msgstr "Kërko:"
+
+#~ msgid "Set track durations"
+#~ msgstr "Caktoni kohëzgjatje pjesësh"
+
+#~ msgid "Status:"
+#~ msgstr "Gjendje:"
+
+#~ msgid "Time:"
+#~ msgstr "Kohë:"
+
+#~ msgid "Title:"
+#~ msgstr "Titull:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Pjesë:"
+
+#~ msgid "URL:"
+#~ msgstr "URL:"
+
+#~ msgid "Warning:"
+#~ msgstr "Kujdes:"
+
+#~ msgid "appears on:"
+#~ msgstr "shfaqet në:"
+
+#~ msgid "Cancelled"
+#~ msgstr "U anulua"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Jepni një URL të vlefshme, p.sh, \"http://google.com/\""
+
+#~ msgid "Bio:"
+#~ msgstr "Jetëshkrim:"
+
+#~ msgid "Create"
+#~ msgstr "Krijoje"
+
+#~ msgid "Preview:"
+#~ msgstr "Paraparje:"
+
+#~ msgid "Preview"
+#~ msgstr "Paraparje"
+
+#~ msgid "Please search for the artist you wish to create a new release for:"
+#~ msgstr ""
+#~ "Ju lutemi, kërkoni për artistin për të cilin doni të krijoni një hedhje "
+#~ "të re në qarkullim:"
+
+#~ msgid "Disc ID:"
+#~ msgstr "ID Disku:"
+
+#~ msgid ""
+#~ "If you don't see the artist you are looking for, you can still add a new "
+#~ "release. This will allow you to create this artist and a release at the "
+#~ "same time"
+#~ msgstr ""
+#~ "Nëse s’e shihni artistin që po kërkoni, mundeni prapëseprapë të shtoni "
+#~ "një hedhje të re në qarkullim. Kjo do t’ju lejojë të krijoni këtë artist "
+#~ "dhe, në të njëjtën kohë, një hedhje në qarkullim"
+
+#~ msgid "Create a new collection"
+#~ msgstr "Krijoni një koleksion të ri"
+
+#~ msgid "Status"
+#~ msgstr "Gjendje"
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "Gjendje:"
+
+#~ msgid "Releases:"
+#~ msgstr "Hedhje në qarkullim:"
+
+#~ msgid "Ended"
+#~ msgstr "Përfundoi"
+
+#~ msgid "Filename:"
+#~ msgstr "Emër kartele:"
+
+#~ msgid "Medium:"
+#~ msgstr "Media:"
+
+#~ msgid "Artist Credits:"
+#~ msgstr "Kredite Artisti:"
+
+#~ msgid "Relationship:"
+#~ msgstr "Marrëdhënie:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "Gjendje:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "Numër katalogu:"
+
+#~ msgid "Merge:"
+#~ msgstr "Përzieji:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Media:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Marrëdhënie:"
+
+#~ msgid "Release Events:"
+#~ msgstr "Veprimtari Hedhjeje Në Qarkullim:"
+
+#~ msgid "Release group:"
+#~ msgstr "Grup hedhjeje në qarkullim:"
+
+#~ msgid "Added"
+#~ msgstr "U shtua"
+
+#~ msgid "Removed"
+#~ msgstr "U hoq"
+
+#~ msgid "Edited"
+#~ msgstr "U përpunua"
+
+#~ msgid "Alias:"
+#~ msgstr "Alias:"
+
+#~ msgid "Track:"
+#~ msgstr "Pjesë:"
+
+#~ msgid "Candidate:"
+#~ msgstr "Kandidat:"
+
+#~ msgid "Votes for:"
+#~ msgstr "Vota pro:"
+
+#~ msgid "Votes against:"
+#~ msgstr "Vota kundër:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Gjendje:"
+
+#~ msgid "Last modified:"
+#~ msgstr "Ndryshuar së fundi më:"
+
+#~ msgid "Modify count:"
+#~ msgstr "Ndryshoni numër:"
+
+#~ msgid "Coordinates:"
+#~ msgstr "Koordinata:"
+
+#~ msgid "IPI code:"
+#~ msgstr "Kod IPI:"
+
+#~ msgid "ISNI code:"
+#~ msgstr "Kod ISNI:"
+
+#~ msgid "Error:"
+#~ msgid_plural "Errors:"
+#~ msgstr[0] "Gabim:"
+#~ msgstr[1] "Gabime:"
+
+#~ msgid "ID:"
+#~ msgstr "ID:"
+
+#~ msgid "Possible values:"
+#~ msgstr "Vlera të mundshme:"
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "Krijoni atribut të ri marrëdhënieje"
+
+#~ msgid "Create a new {type0}-{type1} relationship"
+#~ msgstr "Krijoni një marrëdhënie të re {type0}-{type1}"
+
+#~ msgid "Location"
+#~ msgstr "Vend"
+
+#~ msgid "Location:"
+#~ msgstr "Vendndodhje:"
+
+#~ msgid "Create collection"
+#~ msgstr "Krijoni koleksion"
+
+#~ msgid "Delete Note"
+#~ msgstr "Fshije Shënimin"
+
+#~ msgid "Artist credit:"
+#~ msgstr "Kredit artisti:"
+
+#~ msgid "Ended:"
+#~ msgstr "Përfundoi më:"
+
+#~ msgid "Release events:"
+#~ msgstr "Veprimtari hedhjeje në qarkullim:"
+
+#~ msgid ""
+#~ "Only use this option after you’ve tried searching for the work(s) you "
+#~ "want to create, and are certain they do not already exist on MusicBrainz."
+#~ msgstr ""
+#~ "Përdoreni këtë mundësi pasi të keni provuar kërkimin për veprën(at) që "
+#~ "doni të krijoni, dhe pasi të jeni të sigurt se s’ekzistojnë tashmë në "
+#~ "MusicBrainz."
+
+#~ msgid "Work Type:"
+#~ msgstr "Lloj Vepre:"
+
+#~ msgid ""
+#~ "Banner message editors are users who can set a message that is shown in a "
+#~ "banner on all pages, e.g. to warn users about upcoming site maintenance."
+#~ msgstr ""
+#~ "Përpunues mesazhesh banderolë janë përdorues që mund të caktojnë një "
+#~ "mesazh që shfaqet në një banderolë në krejt faqet, p.sh., për t’i "
+#~ "sinjalizuar përdoruesit rreth mirëmbajtjesh s’afërmi të sajtit."
+
+#~ msgid "Email:"
+#~ msgstr "Email:"
+
+#~ msgid "Member since:"
+#~ msgstr "Anëtar që prej:"
+
+#~ msgid "Last login:"
+#~ msgstr "Hyrja e fundit:"
+
+#~ msgid "Subscribers:"
+#~ msgstr "Pajtimtarë:"
+
+#~ msgid "Languages:"
+#~ msgstr "Gjuhë:"
+
+#~ msgid ""
+#~ "This edit failed because the data it was changing was modified after this "
+#~ "edit was created. This may happen when the same edit is entered in twice; "
+#~ "one will pass but the other will fail."
+#~ msgstr ""
+#~ "Ky përpunim dështoi ngaqë të dhënat që ndryshonte qenë ndryshuar pasi qe "
+#~ "krijuar ky përpunim. Kjo mund të ndodhë kur i njëjti përpunim është dhënë "
+#~ "dy herë; njëri do të kalojë, por tjetri do të dështojë."
+
#~ msgid "Artist {n}:"
#~ msgstr "Artist {n}:"
diff --git a/po/mb_server.sr.po b/po/mb_server.sr.po
index c8d1f569f5e..d5775fb5aba 100644
--- a/po/mb_server.sr.po
+++ b/po/mb_server.sr.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:59+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Serbian =2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.18.2\n"
#: ../root/components/common-macros.tt:12
@@ -66,8 +66,8 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:88
#: ../root/recording/RecordingIndex.js:53
#: ../root/static/scripts/release/components/MediumTable.js:83
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1563
-#: ../root/utility/tableColumns.js:567
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1564
+#: ../root/utility/tableColumns.js:572
msgid "#"
msgstr "#"
@@ -116,8 +116,8 @@ msgstr "(без других слика омота)"
#: ../root/edit/details/MergeReleases.js:239
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
-#: ../root/utility/tableColumns.js:508 ../root/utility/tableColumns.js:516
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/utility/tableColumns.js:513 ../root/utility/tableColumns.js:521
msgctxt "and"
msgid "/"
msgstr ""
@@ -204,8 +204,8 @@ msgstr "Додај инструмент"
msgid "Add Label"
msgstr ""
-#: ../root/release/edit/information.tt:213
-#: ../root/release/edit/information.tt:214
+#: ../root/release/edit/information.tt:215
+#: ../root/release/edit/information.tt:216
#: ../root/layout/components/BottomMenu.js:248
msgctxt "button/menu"
msgid "Add Label"
@@ -225,8 +225,8 @@ msgctxt "header"
msgid "Add Release"
msgstr "Додај дистрибуцију"
-#: ../root/release/edit/information.tt:169
-#: ../root/release/edit/information.tt:170
+#: ../root/release/edit/information.tt:171
+#: ../root/release/edit/information.tt:172
msgctxt "button/menu"
msgid "Add Release Event"
msgstr "Додај дешавање везано за дистрибуцију"
@@ -269,7 +269,7 @@ msgid ""
"tracklist is unknown."
msgstr ""
-#: ../root/release/edit/recordings.tt:212
+#: ../root/release/edit/recordings.tt:178
#: ../root/static/scripts/edit/components/AddEntityDialog.js:21
msgid "Add a new recording"
msgstr "Додај нови снимак"
@@ -294,13 +294,16 @@ msgstr ""
msgid "Add {num} track(s)"
msgstr ""
-#: ../root/release/edit/information.tt:245
+#: ../root/release/edit/information.tt:247
msgid "Additional information"
msgstr ""
-#: ../root/place/edit_form.tt:16
-#: ../root/layout/components/sidebar/PlaceSidebar.js:82
-msgid "Address:"
+#: ../root/place/edit_form.tt:16 ../root/components/list/PlaceList.js:66
+#: ../root/edit/details/AddPlace.js:55 ../root/edit/details/EditPlace.js:68
+#: ../root/layout/components/sidebar/PlaceSidebar.js:84
+#: ../root/report/PlacesWithoutCoordinates.js:41
+#: ../root/search/components/PlaceResults.js:65
+msgid "Address"
msgstr ""
#: ../root/release/edit/recordings.tt:3
@@ -320,8 +323,16 @@ msgstr ""
msgid "An error occurred: "
msgstr ""
-#: ../root/release/edit/information.tt:249
-msgid "Annotation:"
+#: ../root/release/edit/information.tt:251
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
+#: ../root/annotation/AnnotationRevision.js:32
+#: ../root/annotation/EditAnnotation.js:74
+#: ../root/layout/components/Search.js:41
+#: ../root/report/hooks/useAnnotationColumns.js:28
+#: ../root/search/components/AnnotationResults.js:56
+#: ../root/search/components/SearchForm.js:45
+#: ../root/static/scripts/common/components/Annotation.js:51
+msgid "Annotation"
msgstr ""
#: ../root/edit/search_macros.tt:423
@@ -334,7 +345,9 @@ msgctxt "vote"
msgid "Approve"
msgstr ""
-#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Area.pm:7
+#: ../root/artist/edit_form.tt:20 ../root/edit/search_macros.tt:423
+#: ../root/label/edit_form.tt:18 ../root/place/edit_form.tt:19
+#: ../lib/MusicBrainz/Server/Edit/Area.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:44
#: ../root/components/list/AreaList.js:46
#: ../root/components/list/ArtistList.js:92
@@ -344,8 +357,11 @@ msgstr ""
#: ../root/edit/details/AddPlace.js:61 ../root/edit/details/EditArea.js:43
#: ../root/edit/details/EditArtist.js:108 ../root/edit/details/EditLabel.js:119
#: ../root/edit/details/EditPlace.js:75 ../root/layout/components/Search.js:35
+#: ../root/layout/components/sidebar/ArtistSidebar.js:126
+#: ../root/layout/components/sidebar/LabelSidebar.js:90
+#: ../root/layout/components/sidebar/PlaceSidebar.js:91
#: ../root/report/PlacesWithoutCoordinates.js:42
-#: ../root/search/components/ArtistResults.js:56
+#: ../root/search/components/ArtistResults.js:55
#: ../root/search/components/LabelResults.js:69
#: ../root/search/components/PlaceResults.js:66
#: ../root/search/components/SearchForm.js:43
@@ -359,18 +375,12 @@ msgstr ""
msgid "Area Details"
msgstr ""
-#: ../root/artist/edit_form.tt:20 ../root/label/edit_form.tt:18
-#: ../root/place/edit_form.tt:19
-#: ../root/layout/components/sidebar/ArtistSidebar.js:120
-#: ../root/layout/components/sidebar/LabelSidebar.js:87
-#: ../root/layout/components/sidebar/PlaceSidebar.js:88
-msgid "Area:"
-msgstr ""
-
#: ../root/cdstub/cdstub.tt:7 ../root/cdtoc/attach_filter_release.tt:29
#: ../root/cdtoc/list.tt:8 ../root/cdtoc/lookup.tt:42
-#: ../root/edit/search_macros.tt:423 ../root/release/edit/tracklist.tt:163
-#: ../root/release/edit/tracklist.tt:453
+#: ../root/cdtoc/lookup.tt:75 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/information.tt:26 ../root/release/edit/tracklist.tt:110
+#: ../root/release/edit/tracklist.tt:163 ../root/release/edit/tracklist.tt:453
+#: ../root/release_group/set_cover_art.tt:32
#: ../lib/MusicBrainz/Server/Edit/Artist.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:38
#: ../root/cdstub/BrowseCDStubs.js:37 ../root/cdstub/CDStubInfo.js:28
@@ -395,8 +405,14 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:38
#: ../root/edit/details/historic/AddRelease.js:90
#: ../root/edit/details/historic/AddTrackKV.js:41
-#: ../root/edit/details/historic/EditTrack.js:35 ../root/isrc/Index.js:67
+#: ../root/edit/details/historic/ChangeArtistQuality.js:24
+#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
+#: ../root/edit/details/historic/EditTrack.js:35
+#: ../root/edit/details/historic/MoveRelease.js:30
+#: ../root/edit/details/historic/RemoveRelease.js:26 ../root/isrc/Index.js:67
#: ../root/layout/components/Search.js:24
+#: ../root/layout/components/sidebar/RecordingSidebar.js:49
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
#: ../root/release_group/ReleaseGroupIndex.js:168
#: ../root/report/DuplicateArtists.js:67
#: ../root/report/DuplicateReleaseGroups.js:59
@@ -413,11 +429,12 @@ msgstr ""
#: ../root/search/components/CDStubResults.js:45
#: ../root/search/components/RecordingResults.js:143
#: ../root/search/components/ReleaseGroupResults.js:64
-#: ../root/search/components/ReleaseResults.js:113
+#: ../root/search/components/ReleaseResults.js:112
#: ../root/search/components/SearchForm.js:37
#: ../root/static/scripts/common/constants.js:36
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:50
#: ../root/static/scripts/common/utility/formatSetlist.js:52
+#: ../root/static/scripts/edit/components/forms.js:29
#: ../root/static/scripts/release/components/MediumTable.js:86
#: ../root/taglookup/Form.js:25 ../root/user/UserProfile.js:50
msgid "Artist"
@@ -431,19 +448,6 @@ msgstr ""
msgid "Artist Details"
msgstr ""
-#: ../root/cdtoc/lookup.tt:75 ../root/release/edit/information.tt:26
-#: ../root/release/edit/tracklist.tt:110
-#: ../root/release_group/set_cover_art.tt:32
-#: ../root/edit/details/historic/ChangeArtistQuality.js:24
-#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
-#: ../root/edit/details/historic/MoveRelease.js:30
-#: ../root/edit/details/historic/RemoveRelease.js:26
-#: ../root/layout/components/sidebar/RecordingSidebar.js:49
-#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
-#: ../root/static/scripts/edit/components/forms.js:29
-msgid "Artist:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:40
#: ../root/cdtoc/attach_filter_release.tt:54
msgctxt "button/menu"
@@ -470,7 +474,18 @@ msgid "Attached to releases"
msgstr ""
#: ../root/relationship/linktype/form.tt:52
-msgid "Attributes:"
+#: ../root/admin/attributes/Attribute.js:72
+#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
+#: ../root/admin/attributes/Language.js:33
+#: ../root/admin/attributes/Script.js:33
+#: ../root/components/RelationshipsTable.js:336
+#: ../root/edit/details/AddRelationshipType.js:169
+#: ../root/edit/details/EditRelationshipType.js:297
+#: ../root/edit/details/RemoveRelationshipType.js:117
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
+#: ../root/utility/tableColumns.js:671
+msgid "Attributes"
msgstr ""
#: ../root/edit/search_macros.tt:397
@@ -480,6 +495,8 @@ msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:19
#: ../root/cdtoc/attach_filter_release.tt:33 ../root/cdtoc/list.tt:13
#: ../root/cdtoc/lookup.tt:47 ../root/release/edit/duplicates.tt:17
+#: ../root/release/edit/information.tt:222
+#: ../root/release_group/set_cover_art.tt:62
#: ../root/components/list/ReleaseList.js:139
#: ../root/edit/details/AddRelease.js:112
#: ../root/edit/details/EditBarcodes.js:45
@@ -489,20 +506,15 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:242
#: ../root/edit/details/historic/AddRelease.js:125
#: ../root/edit/details/historic/EditReleaseEvents.js:113
+#: ../root/layout/components/sidebar/CDStubSidebar.js:71
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:128
#: ../root/otherlookup/OtherLookupForm.js:62
#: ../root/release_group/ReleaseGroupIndex.js:174
#: ../root/report/ReleasesSameBarcode.js:40
-#: ../root/search/components/ReleaseResults.js:119
+#: ../root/search/components/ReleaseResults.js:118
msgid "Barcode"
msgstr ""
-#: ../root/release/edit/information.tt:220
-#: ../root/release_group/set_cover_art.tt:62
-#: ../root/layout/components/sidebar/CDStubSidebar.js:63
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:126
-msgid "Barcode:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:33
msgid ""
"Based on the above CD stub, we also found the following releases in "
@@ -516,14 +528,24 @@ msgid ""
"release on an existing release, select it below."
msgstr ""
-#: ../root/artist/edit_form.tt:42
-msgid "Begin Area:"
+#: ../root/artist/edit_form.tt:42 ../root/components/list/ArtistList.js:102
+#: ../root/search/components/ArtistResults.js:57
+msgid "Begin Area"
msgstr ""
#: ../root/artist/edit_form.tt:38 ../root/components/forms.tt:212
#: ../root/event/edit_form.tt:36 ../root/artist/utils.js:34
+#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
+#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
+#: ../root/edit/details/AddRemoveAlias.js:90
+#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
+#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
+#: ../root/edit/details/EditPlace.js:93
#: ../root/layout/components/sidebar/AreaSidebar.js:58
-msgid "Begin date:"
+#: ../root/report/RecordingsWithFutureDates.js:34
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
+msgid "Begin date"
msgstr ""
#: ../root/release/add_cover_art.tt:95 ../root/search/error/InternalError.js:29
@@ -615,38 +637,33 @@ msgstr ""
msgid "Cardinality of {entity_placeholder}"
msgstr ""
-#: ../root/release/edit/information.tt:192
+#: ../root/release/edit/information.tt:194
msgid "Cat. No:"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:18
#: ../root/cdtoc/attach_filter_release.tt:32 ../root/cdtoc/list.tt:12
#: ../root/cdtoc/lookup.tt:46 ../root/release/edit/duplicates.tt:16
+#: ../root/release_group/set_cover_art.tt:56
#: ../root/edit/details/MergeReleases.js:241
#: ../root/recording/RecordingIndex.js:62
#: ../root/release_group/ReleaseGroupIndex.js:173
-#: ../root/search/components/ReleaseResults.js:118
-#: ../root/utility/tableColumns.js:482 ../root/utility/tableColumns.js:487
+#: ../root/search/components/ReleaseResults.js:117
+#: ../root/utility/tableColumns.js:487 ../root/utility/tableColumns.js:492
msgid "Catalog#"
msgstr ""
-#: ../root/release_group/set_cover_art.tt:56
-msgid "Catalog#:"
-msgstr ""
-
-#: ../root/admin/attributes/form.tt:53 ../root/admin/attributes/Attribute.js:82
-#: ../root/edit/details/AddRelationshipAttribute.js:50
-#: ../root/edit/details/EditRelationshipAttribute.js:93
-msgid "Child order"
-msgstr ""
-
+#: ../root/admin/attributes/form.tt:53
#: ../root/relationship/linkattributetype/form.tt:7
#: ../root/relationship/linktype/form.tt:7
+#: ../root/admin/attributes/Attribute.js:82
+#: ../root/edit/details/AddRelationshipAttribute.js:50
+#: ../root/edit/details/EditRelationshipAttribute.js:93
#: ../root/edit/details/EditRelationshipType.js:241
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:122
#: ../root/relationship/linktype/RelationshipTypeIndex.js:162
#: ../root/relationship/linktype/RelationshipTypePairTree.js:58
-msgid "Child order:"
+msgid "Child order"
msgstr ""
#: ../root/release/edit/recordings.tt:114
@@ -658,6 +675,7 @@ msgid "Close"
msgstr ""
#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditHeader.js:155
+#: ../root/edit/components/EditSidebar.js:59
msgid "Closed"
msgstr ""
@@ -669,22 +687,15 @@ msgstr ""
msgid "Collapse medium"
msgstr ""
-#: ../root/cdstub/index.tt:3 ../root/cdstub/CDStubIndex.js:36
+#: ../root/cdstub/index.tt:3 ../root/release/add_cover_art.tt:69
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:71 ../root/cdstub/CDStubIndex.js:36
msgid "Comment"
msgstr ""
-#: ../root/release/add_cover_art.tt:69 ../root/release/add_cover_art.tt:137
-#: ../root/release/reorder_cover_art.tt:19
-#: ../root/release_group/set_cover_art.tt:71
-#: ../root/edit/details/AddCoverArt.js:54
-#: ../root/edit/details/EditCoverArt.js:67
-#: ../root/edit/details/RemoveCoverArt.js:56
-#: ../root/release/CoverArtFields.js:93
-msgid "Comment:"
-msgstr ""
-
#: ../root/place/edit_form.tt:28 ../root/edit/details/AddPlace.js:67
#: ../root/edit/details/EditPlace.js:86
+#: ../root/layout/components/sidebar/PlaceSidebar.js:99
msgid "Coordinates"
msgstr ""
@@ -712,33 +723,26 @@ msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:44 ../root/release/edit/duplicates.tt:14
+#: ../root/release/edit/information.tt:156
+#: ../root/release_group/set_cover_art.tt:41
#: ../root/edit/details/EditReleaseLabel.js:113
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:122
#: ../root/edit/details/historic/EditReleaseEvents.js:110
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/common/components/FilterForm.js:187
-#: ../root/utility/tableColumns.js:504 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:509 ../root/utility/tableColumns.js:521
msgid "Country"
msgstr "Држава"
-#: ../root/release/edit/information.tt:154
-#: ../root/release_group/set_cover_art.tt:41
-msgid "Country:"
-msgstr ""
-
#: ../root/release_group/set_cover_art.tt:67
#: ../root/components/EntityTabs.js:114 ../root/release/CoverArt.js:57
#: ../root/user/UserProfile.js:51
msgid "Cover Art"
msgstr ""
-#: ../root/edit/search_macros.tt:423
-msgid "Created"
-msgstr ""
-
#: ../root/release/add_cover_art.tt:85
msgid "Creating edit..."
msgstr ""
@@ -747,7 +751,7 @@ msgstr ""
msgid "Custom delimiter"
msgstr ""
-#: ../root/release/edit/information.tt:146
+#: ../root/release/edit/information.tt:148
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:253
#: ../root/static/scripts/edit/components/PartialDateInput.js:186
msgid "DD"
@@ -762,6 +766,8 @@ msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:43 ../root/release/edit/duplicates.tt:13
+#: ../root/release/edit/information.tt:130
+#: ../root/release_group/set_cover_art.tt:37
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:25
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:30
#: ../root/admin/statistics-events/StatisticsEventIndex.js:26
@@ -770,14 +776,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:121
#: ../root/edit/details/historic/EditReleaseEvents.js:109
-#: ../root/elections/ElectionVotes.js:28 ../root/recording/RecordingIndex.js:60
+#: ../root/elections/ElectionVotes.js:28
+#: ../root/layout/components/sidebar/EventSidebar.js:61
+#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
#: ../root/search/components/EventResults.js:74
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:106
#: ../root/static/scripts/common/components/FilterForm.js:225
-#: ../root/utility/tableColumns.js:279 ../root/utility/tableColumns.js:284
-#: ../root/utility/tableColumns.js:510 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:284 ../root/utility/tableColumns.js:289
+#: ../root/utility/tableColumns.js:515 ../root/utility/tableColumns.js:521
msgid "Date"
msgstr ""
@@ -787,12 +795,6 @@ msgstr ""
msgid "Date Period"
msgstr ""
-#: ../root/release/edit/information.tt:128
-#: ../root/release_group/set_cover_art.tt:37
-#: ../root/layout/components/sidebar/EventSidebar.js:59
-msgid "Date:"
-msgstr ""
-
#: ../root/artist/edit_form.tt:36 ../root/components/forms.tt:210
#: ../root/event/edit_form.tt:34
#: ../root/static/scripts/edit/components/DateRangeFieldset.js:186
@@ -801,11 +803,10 @@ msgid ""
"YYYY are OK, or you can omit the date entirely."
msgstr ""
-#: ../root/edit/search_macros.tt:120
-msgid "Delete"
-msgstr ""
-
#: ../root/admin/attributes/form.tt:61 ../root/doc/edit_type.tt:23
+#: ../root/instrument/edit_form.tt:13
+#: ../root/relationship/linkattributetype/form.tt:15
+#: ../root/relationship/linktype/form.tt:20
#: ../root/admin/attributes/Attribute.js:80
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:33
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:42
@@ -825,19 +826,13 @@ msgstr ""
#: ../root/instrument/InstrumentIndex.js:34
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:110
#: ../root/relationship/linktype/RelationshipTypeIndex.js:146
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
#: ../root/search/components/InstrumentResults.js:55
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:206
-#: ../root/utility/tableColumns.js:676
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:209
+#: ../root/utility/tableColumns.js:681
msgid "Description"
msgstr ""
-#: ../root/instrument/edit_form.tt:13
-#: ../root/relationship/linkattributetype/form.tt:15
-#: ../root/relationship/linktype/form.tt:20
-#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
-msgid "Description:"
-msgstr ""
-
#: ../root/doc/edit_type.tt:28 ../root/components/EntityTabs.js:146
#: ../root/elections/ElectionDetails.js:29 ../root/entity/Details.js:91
#: ../root/entity/Details.js:93
@@ -847,7 +842,7 @@ msgstr ""
#: ../root/area/edit_form.tt:10 ../root/artist/edit_form.tt:14
#: ../root/event/edit_form.tt:13 ../root/instrument/edit_form.tt:10
#: ../root/label/edit_form.tt:13 ../root/place/edit_form.tt:13
-#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:256
+#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:258
#: ../root/release_group/edit_form.tt:15 ../root/series/edit_form.tt:13
#: ../root/work/edit_form.tt:13 ../root/edit/details/AddArea.js:54
#: ../root/edit/details/AddArtist.js:62 ../root/edit/details/AddEvent.js:44
@@ -870,7 +865,13 @@ msgstr ""
msgid "Disambiguation"
msgstr ""
-#: ../root/release/discids.tt:8 ../root/edit/details/SetTrackLengths.js:54
+#: ../root/release/discids.tt:8 ../root/cdtoc/CDTocInfo.js:32
+#: ../root/edit/details/AddDiscId.js:34 ../root/edit/details/MoveDiscId.js:26
+#: ../root/edit/details/RemoveDiscId.js:31
+#: ../root/edit/details/SetTrackLengths.js:54
+#: ../root/edit/details/historic/AddDiscId.js:27
+#: ../root/edit/details/historic/MoveDiscId.js:21
+#: ../root/edit/details/historic/RemoveDiscId.js:23
#: ../root/otherlookup/OtherLookupForm.js:112
#: ../root/utility/tableColumns.js:199 ../root/utility/tableColumns.js:204
msgid "Disc ID"
@@ -898,7 +899,15 @@ msgid "Do not use any of the above releases as a starting point"
msgstr ""
#: ../root/relationship/linktype/form.tt:65
-msgid "Documentation:"
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
+#: ../root/edit/details/AddRelationshipType.js:187
+#: ../root/edit/details/EditRelationshipType.js:327
+#: ../root/layout/components/BottomMenu.js:293
+#: ../root/layout/components/Search.js:51
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
+#: ../root/search/components/SearchForm.js:56
+msgid "Documentation"
msgstr ""
#: ../root/layout.tt:112 ../root/layout/components/Footer.js:26
@@ -906,7 +915,7 @@ msgid "Donate"
msgstr ""
#: ../root/release/edit/macros.tt:54
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:166
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:165
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:219
#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:64
#: ../root/static/scripts/edit/components/URLInputPopover.js:134
@@ -981,12 +990,12 @@ msgid "Edit Relationship Type"
msgstr ""
#: ../root/doc/edit_type.tt:18 ../root/doc/edit_types.tt:1
-#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:96
+#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:99
#: ../root/layout/components/BottomMenu.js:315
msgid "Edit Types"
msgstr ""
-#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:28
+#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:26
#: ../root/static/scripts/edit/components/URLInputPopover.js:146
msgid "Edit URL"
msgstr ""
@@ -1018,14 +1027,25 @@ msgstr ""
msgid "Enable vinyl track numbers"
msgstr ""
-#: ../root/artist/edit_form.tt:56
-msgid "End Area:"
+#: ../root/artist/edit_form.tt:56 ../root/components/list/ArtistList.js:112
+#: ../root/search/components/ArtistResults.js:59
+msgid "End Area"
msgstr ""
#: ../root/artist/edit_form.tt:51 ../root/components/forms.tt:214
#: ../root/event/edit_form.tt:38 ../root/artist/utils.js:65
+#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
+#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
+#: ../root/edit/details/AddRemoveAlias.js:97
+#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
+#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
+#: ../root/edit/details/EditPlace.js:101
+#: ../root/elections/ElectionTable/index.js:25
#: ../root/layout/components/sidebar/AreaSidebar.js:64
-msgid "End date:"
+#: ../root/report/RecordingsWithFutureDates.js:39
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
+msgid "End date"
msgstr ""
#: ../root/relationship/linktype/form.tt:112
@@ -1059,6 +1079,10 @@ msgid ""
"(valid {url|regular expressions} are accepted)."
msgstr ""
+#: ../root/edit/search_macros.tt:423
+msgid "Entered"
+msgstr ""
+
#: ../root/components/forms.tt:30
msgid ""
"Entering an {note|edit note} that describes where you got your information "
@@ -1119,7 +1143,7 @@ msgstr ""
#: ../root/area/edit_form.tt:22 ../root/artist/edit_form.tt:70
#: ../root/event/edit_form.tt:46 ../root/instrument/edit_form.tt:32
#: ../root/label/edit_form.tt:41 ../root/place/edit_form.tt:37
-#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:266
+#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:268
#: ../root/release_group/edit_form.tt:23 ../root/series/edit_form.tt:26
#: ../root/work/edit_form.tt:90
#: ../root/static/scripts/genre/components/GenreEditForm.js:160
@@ -1158,25 +1182,21 @@ msgid "For more information, check the {doc_doc|documentation}."
msgstr ""
#: ../root/cdtoc/list.tt:9 ../root/release/edit/duplicates.tt:11
+#: ../root/release/edit/tracklist.tt:305
+#: ../root/release_group/set_cover_art.tt:46
#: ../root/components/list/ReleaseList.js:98
-#: ../root/edit/details/EditMedium.js:485
+#: ../root/edit/details/AddMedium.js:136 ../root/edit/details/EditMedium.js:485
#: ../root/edit/details/EditReleaseLabel.js:131
#: ../root/edit/details/MergeReleases.js:237
#: ../root/edit/details/historic/AddRelease.js:126
#: ../root/edit/details/historic/EditReleaseEvents.js:114
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:137
#: ../root/release_group/ReleaseGroupIndex.js:169
#: ../root/report/components/CDTocList.js:49
-#: ../root/search/components/ReleaseResults.js:114
+#: ../root/search/components/ReleaseResults.js:113
msgid "Format"
msgstr "Формат"
-#: ../root/release/edit/tracklist.tt:305
-#: ../root/release_group/set_cover_art.tt:46
-#: ../root/edit/details/AddMedium.js:136
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:132
-msgid "Format:"
-msgstr ""
-
#: ../root/layout.tt:114 ../root/layout/components/Footer.js:28
#: ../root/main/index.js:212
msgid "Forums"
@@ -1222,11 +1242,13 @@ msgstr ""
msgid "Full TOC:"
msgstr ""
-#: ../root/artist/edit_form.tt:17
-#: ../root/layout/components/sidebar/ArtistSidebar.js:84
-#: ../root/static/scripts/account/components/EditProfileForm.js:207
+#: ../root/artist/edit_form.tt:17 ../root/components/list/ArtistList.js:87
+#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
+#: ../root/layout/components/sidebar/ArtistSidebar.js:89
+#: ../root/search/components/ArtistResults.js:54
+#: ../root/static/scripts/account/components/EditProfileForm.js:237
#: ../root/user/UserProfile.js:268
-msgid "Gender:"
+msgid "Gender"
msgstr ""
#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Genre.pm:7
@@ -1312,7 +1334,7 @@ msgstr ""
msgid "Historic"
msgstr ""
-#: ../root/release/edit/information.tt:325
+#: ../root/release/edit/information.tt:339
msgid "I confirm that this is the barcode as it appears on the release."
msgstr ""
@@ -1339,73 +1361,65 @@ msgstr ""
#: ../root/edit/search_macros.tt:423 ../root/admin/attributes/Attribute.js:78
#: ../root/admin/attributes/Language.js:39
#: ../root/admin/attributes/Script.js:40
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
msgid "ID"
msgstr ""
#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
#: ../root/edit/details/AddArtist.js:136 ../root/edit/details/AddLabel.js:102
+#: ../root/layout/components/sidebar/SidebarIpis.js:18
msgid "IPI code"
msgstr ""
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/EditArtist.js:162 ../root/edit/details/EditLabel.js:131
+msgid "IPI codes"
+msgstr ""
+
#: ../root/components/forms.tt:333
msgid ""
"IPI codes are assigned by CISAC to “interested parties” in musical rights "
"management. Check {ipi_doc|the documentation} for more info."
msgstr ""
-#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
-#: ../root/edit/details/EditArtist.js:162
-msgid "IPI codes:"
-msgstr ""
-
#: ../root/layout.tt:115
msgid "IRC"
msgstr ""
#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
#: ../root/edit/details/AddArtist.js:145 ../root/edit/details/AddLabel.js:111
+#: ../root/layout/components/sidebar/SidebarIsnis.js:22
msgid "ISNI code"
msgstr ""
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/EditArtist.js:170 ../root/edit/details/EditLabel.js:140
+msgid "ISNI codes"
+msgstr ""
+
#: ../root/components/forms.tt:342
msgid ""
"ISNI codes are an ISO standard used to uniquely identify persons and "
"organizations. Check {isni_doc|the documentation} for more info."
msgstr ""
-#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
-#: ../root/edit/details/EditArtist.js:170
-msgid "ISNI codes:"
-msgstr ""
-
#: ../root/area/edit_form.tt:12 ../root/edit/details/AddArea.js:68
#: ../root/edit/details/EditArea.js:82
-msgid "ISO 3166-1"
-msgstr ""
-
-#: ../root/area/edit_form.tt:12
#: ../root/layout/components/sidebar/AreaSidebar.js:71
-msgid "ISO 3166-1:"
+msgid "ISO 3166-1"
msgstr ""
#: ../root/area/edit_form.tt:13 ../root/edit/details/AddArea.js:75
#: ../root/edit/details/EditArea.js:89
-msgid "ISO 3166-2"
-msgstr ""
-
-#: ../root/area/edit_form.tt:13
#: ../root/layout/components/sidebar/AreaSidebar.js:81
-msgid "ISO 3166-2:"
+msgid "ISO 3166-2"
msgstr ""
#: ../root/area/edit_form.tt:14 ../root/edit/details/AddArea.js:82
#: ../root/edit/details/EditArea.js:96
-msgid "ISO 3166-3"
-msgstr ""
-
-#: ../root/area/edit_form.tt:14
#: ../root/layout/components/sidebar/AreaSidebar.js:91
-msgid "ISO 3166-3:"
+msgid "ISO 3166-3"
msgstr ""
#: ../root/admin/attributes/form.tt:8 ../root/admin/attributes/Language.js:41
@@ -1439,8 +1453,13 @@ msgstr ""
msgid "ISRC"
msgstr ""
-#: ../root/recording/edit_form.tt:45
-msgid "ISRCs:"
+#: ../root/recording/edit_form.tt:45 ../root/report/ReportsIndex.js:606
+#: ../root/search/components/RecordingResults.js:144
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:721
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:411
+#: ../root/static/scripts/common/components/IsrcList.js:44
+#: ../root/utility/tableColumns.js:694
+msgid "ISRCs"
msgstr ""
#: ../root/work/edit_form.tt:16 ../root/edit/details/AddWork.js:47
@@ -1449,12 +1468,13 @@ msgstr ""
#: ../root/report/IswcsWithManyWorks.js:49
#: ../root/search/components/WorkResults.js:57
#: ../root/static/scripts/common/components/IswcList.js:26
-#: ../root/utility/tableColumns.js:703
+#: ../root/utility/tableColumns.js:708
msgid "ISWC"
msgstr ""
-#: ../root/work/edit_form.tt:16
-msgid "ISWCs:"
+#: ../root/work/edit_form.tt:16 ../root/report/ReportsIndex.js:615
+#: ../root/static/scripts/common/components/IswcList.js:44
+msgid "ISWCs"
msgstr ""
#: ../root/event/edit_form.tt:26
@@ -1470,7 +1490,7 @@ msgid ""
"for this release."
msgstr ""
-#: ../root/release/edit/information.tt:298
+#: ../root/release/edit/information.tt:300
msgid ""
"If this is an Amazon ASIN, please do not enter it in the catalog number "
"field, but add it as a URL relationship later."
@@ -1486,7 +1506,7 @@ msgstr ""
msgid "If you can't find what you're looking for, you can add a new release:"
msgstr ""
-#: ../root/release/edit/information.tt:316
+#: ../root/release/edit/information.tt:330
msgid ""
"If you do not know whether the release has a barcode or not, just leave this "
"blank."
@@ -1504,8 +1524,8 @@ msgstr ""
#: ../root/release/edit/information.tt:54
msgid ""
-"If you don’t select an existing release group, a new one will be created "
-"with the types selected below."
+"If you don’t select an existing release group, a new one will be added with "
+"the types selected below."
msgstr ""
#: ../root/release/edit/tracklist.tt:5
@@ -1583,21 +1603,21 @@ msgid ""
"Keep in mind that recording durations are {doc_link|recalculated from "
"tracks} once the duration of a track changes. As such, if you correct the "
"duration of a track whose recording is only used in this release, just reuse "
-"the old recording, don’t create a new one. If the recording is also used "
-"elsewhere and the durations are significantly different, consider creating a "
+"the old recording, don’t add a new one. If the recording is also used "
+"elsewhere and the durations are significantly different, consider adding a "
"new recording instead."
msgstr ""
#: ../root/release/edit/tracklist.tt:502
msgid ""
-"Keep in mind that unselecting this will delete the track if the medium has a "
+"Keep in mind that unselecting this will remove the track if the medium has a "
"disc ID! If you unselect it by mistake, please readd the pregap track before "
"submitting."
msgstr ""
#: ../root/release/edit/tracklist.tt:517
msgid ""
-"Keep in mind that unselecting this will delete the tracks if the medium has "
+"Keep in mind that unselecting this will remove the tracks if the medium has "
"a disc ID! If you unselect it by mistake, please readd the data tracks "
"before submitting."
msgstr ""
@@ -1606,12 +1626,16 @@ msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:31 ../root/cdtoc/list.tt:11
#: ../root/cdtoc/lookup.tt:45 ../root/edit/search_macros.tt:423
#: ../root/release/edit/duplicates.tt:15
+#: ../root/release/edit/information.tt:179
+#: ../root/release_group/set_cover_art.tt:52
#: ../lib/MusicBrainz/Server/Edit/Label.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:43
#: ../root/components/list/LabelList.js:54 ../root/edit/details/AddLabel.js:31
+#: ../root/edit/details/AddReleaseLabel.js:35
#: ../root/edit/details/EditLabel.js:43
#: ../root/edit/details/EditReleaseLabel.js:51
#: ../root/edit/details/MergeReleases.js:240
+#: ../root/edit/details/RemoveReleaseLabel.js:31
#: ../root/edit/details/historic/AddRelease.js:123
#: ../root/edit/details/historic/EditReleaseEvents.js:111
#: ../root/label/LabelHeader.js:25 ../root/layout/components/Search.js:37
@@ -1620,13 +1644,13 @@ msgstr ""
#: ../root/report/ReleaseLabelSameArtist.js:31
#: ../root/report/components/LabelList.js:47
#: ../root/report/components/LabelUrlList.js:35
-#: ../root/search/components/ReleaseResults.js:117
+#: ../root/search/components/ReleaseResults.js:116
#: ../root/search/components/SearchForm.js:42
#: ../root/static/scripts/common/components/FilterForm.js:168
#: ../root/static/scripts/common/constants.js:40
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:60
-#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:533
-#: ../root/utility/tableColumns.js:538
+#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:538
+#: ../root/utility/tableColumns.js:543
msgid "Label"
msgstr "Издавачка кућа"
@@ -1638,28 +1662,31 @@ msgstr ""
msgid "Label Details"
msgstr ""
-#: ../root/label/edit_form.tt:28
-#: ../root/layout/components/sidebar/LabelSidebar.js:81
-msgid "Label code:"
-msgstr ""
-
-#: ../root/release/edit/information.tt:177
-#: ../root/release_group/set_cover_art.tt:52
-#: ../root/edit/details/AddReleaseLabel.js:35
-#: ../root/edit/details/RemoveReleaseLabel.js:31
-msgid "Label:"
+#: ../root/label/edit_form.tt:28 ../root/edit/details/AddLabel.js:94
+#: ../root/edit/details/EditLabel.js:85
+#: ../root/layout/components/sidebar/LabelSidebar.js:83
+msgid "Label code"
msgstr ""
#: ../root/release/edit/information.tt:114
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:177
-msgid "Language:"
+#: ../root/admin/attributes/Language.js:31
+#: ../root/admin/attributes/Language.js:34
+#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
+#: ../root/edit/details/EditRelease.js:113
+#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:191
+#: ../root/report/IswcsWithManyWorks.js:54
+#: ../root/search/components/ReleaseResults.js:119
+#: ../root/utility/tableColumns.js:559
+msgid "Language"
msgstr ""
#: ../root/layout.tt:139 ../root/layout/components/Footer.js:85
msgid "Last replication packet received at {datetime}"
msgstr ""
-#: ../root/cdstub/cdstub.tt:9 ../root/release/discids.tt:10
+#: ../root/cdstub/cdstub.tt:9 ../root/recording/edit_form.tt:35
+#: ../root/recording/edit_form.tt:38 ../root/release/discids.tt:10
#: ../root/release/edit/tracklist.tt:164 ../root/release/edit/tracklist.tt:454
#: ../root/cdstub/CDStubInfo.js:29 ../root/cdtoc/AttachCDTocConfirmation.js:72
#: ../root/cdtoc/CDTocInfo.js:54 ../root/components/RelationshipsTable.js:338
@@ -1671,6 +1698,8 @@ msgstr ""
#: ../root/edit/details/EditRecording.js:69
#: ../root/edit/details/historic/AddRelease.js:91
#: ../root/edit/details/historic/AddTrackKV.js:54 ../root/isrc/Index.js:68
+#: ../root/layout/components/sidebar/RecordingSidebar.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:146
#: ../root/recording/RecordingIndex.js:55
#: ../root/report/IsrcsWithManyRecordings.js:61
#: ../root/report/components/CDTocList.js:54
@@ -1679,12 +1708,6 @@ msgstr ""
msgid "Length"
msgstr ""
-#: ../root/recording/edit_form.tt:35 ../root/recording/edit_form.tt:38
-#: ../root/layout/components/sidebar/RecordingSidebar.js:54
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:138
-msgid "Length:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:54
msgid "Lines contain track artists"
msgstr ""
@@ -1715,7 +1738,7 @@ msgstr ""
msgid "Long link phrase:"
msgstr ""
-#: ../root/release/edit/recordings.tt:175
+#: ../root/release/edit/recordings.tt:186
msgid "Looking for suggested recordings..."
msgstr ""
@@ -1723,7 +1746,7 @@ msgstr ""
msgid "Lookup CD"
msgstr ""
-#: ../root/release/edit/information.tt:139
+#: ../root/release/edit/information.tt:141
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:252
#: ../root/static/scripts/edit/components/PartialDateInput.js:174
msgid "MM"
@@ -1746,7 +1769,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Medium.pm:8
#: ../root/cdtoc/AttachCDTocConfirmation.js:65
#: ../root/cdtoc/SetTracklistDurations.js:56
-#: ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/RemoveDiscId.js:25
#: ../root/edit/details/RemoveMedium.js:71
#: ../root/edit/details/SetTrackLengths.js:40
#: ../root/search/components/RecordingResults.js:148
@@ -1761,6 +1785,7 @@ msgstr ""
#: ../root/layout/merge-helper.tt:30
#: ../root/layout/components/MergeHelper.js:71
#: ../root/layout/components/sidebar/MergeLink.js:34
+msgctxt "button/link"
msgid "Merge"
msgstr ""
@@ -1801,7 +1826,12 @@ msgid "Move track up"
msgstr ""
#: ../root/admin/attributes/form.tt:7 ../root/admin/attributes/form.tt:23
-#: ../root/admin/attributes/form.tt:58 ../root/admin/attributes/Attribute.js:79
+#: ../root/admin/attributes/form.tt:58 ../root/components/forms.tt:226
+#: ../root/relationship/linkattributetype/form.tt:12
+#: ../root/relationship/linktype/form.tt:12
+#: ../root/relationship/linktype/form.tt:77
+#: ../root/relationship/linktype/form.tt:107
+#: ../root/admin/attributes/Attribute.js:79
#: ../root/admin/attributes/Language.js:40
#: ../root/admin/attributes/Script.js:41
#: ../root/components/Aliases/ArtistCreditList.js:50
@@ -1809,7 +1839,7 @@ msgstr ""
#: ../root/edit/details/AddArea.js:41 ../root/edit/details/AddArtist.js:51
#: ../root/edit/details/AddEvent.js:38 ../root/edit/details/AddGenre.js:35
#: ../root/edit/details/AddInstrument.js:41 ../root/edit/details/AddLabel.js:41
-#: ../root/edit/details/AddPlace.js:38
+#: ../root/edit/details/AddMedium.js:129 ../root/edit/details/AddPlace.js:38
#: ../root/edit/details/AddRelationshipAttribute.js:34
#: ../root/edit/details/AddRelationshipType.js:66
#: ../root/edit/details/AddRelease.js:51
@@ -1839,36 +1869,27 @@ msgstr ""
#: ../root/entity/Details.js:96
#: ../root/search/components/AnnotationResults.js:55
#: ../root/search/components/AreaResults.js:63
-#: ../root/search/components/ArtistResults.js:52
+#: ../root/search/components/ArtistResults.js:51
#: ../root/search/components/EditorResults.js:42
#: ../root/search/components/EventResults.js:73
#: ../root/search/components/InstrumentResults.js:53
#: ../root/search/components/LabelResults.js:66
#: ../root/search/components/PlaceResults.js:63
#: ../root/search/components/RecordingResults.js:141
-#: ../root/search/components/ReleaseResults.js:112
+#: ../root/search/components/ReleaseResults.js:111
#: ../root/search/components/SeriesResults.js:57
#: ../root/search/components/TagResults.js:51
#: ../root/search/components/WorkResults.js:54
#: ../root/static/scripts/account/components/ApplicationForm.js:81
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:197
#: ../root/static/scripts/common/components/FilterForm.js:135
#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:112
#: ../root/static/scripts/genre/components/GenreEditForm.js:147
+#: ../root/static/scripts/release/components/EditWorkDialog.js:166
#: ../root/user/UserSubscriptions.js:48
msgid "Name"
msgstr ""
-#: ../root/components/forms.tt:226
-#: ../root/relationship/linkattributetype/form.tt:12
-#: ../root/relationship/linktype/form.tt:12
-#: ../root/relationship/linktype/form.tt:77
-#: ../root/relationship/linktype/form.tt:107
-#: ../root/edit/details/AddMedium.js:129
-#: ../root/static/scripts/release/components/EditWorkDialog.js:166
-msgid "Name:"
-msgstr ""
-
#: ../root/artist/edit_credit.tt:18 ../root/artist/split.tt:45
msgid "New Artist Credit"
msgstr ""
@@ -1919,7 +1940,7 @@ msgid "No releases have cover art marked as \"Front\", cannot set cover art."
msgstr ""
#: ../root/release/edit/tracklist.tt:140 ../root/admin/IpLookup.js:38
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:468
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:472
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:88
msgid "No results"
msgstr ""
@@ -1951,21 +1972,25 @@ msgid ""
"because they have the wrong number of tracks."
msgstr ""
-#: ../root/release/edit/information.tt:283
+#: ../root/release/edit/recordings.tt:3 ../root/edit/details/EditRelease.js:164
+#: ../root/edit/details/MergeReleases.js:347
+#: ../root/edit/details/SetTrackLengths.js:74
+#: ../root/edit/details/historic/MergeReleases.js:55
+#: ../root/user/ReportUser.js:116
+msgid "Note"
+msgstr ""
+
+#: ../root/release/edit/information.tt:285
msgid ""
"Note! If you do not know the month or day of release, please leave them "
"empty. January 1st is not often the actual release date, please double "
"check that you have entered the release date correctly."
msgstr ""
-#: ../root/release/edit/recordings.tt:3
-msgid "Note:"
-msgstr ""
-
#: ../root/edit/search_macros.tt:243
msgid ""
-"Note: only searches edits that: add or edit relationships, created after "
-"2011-05-16; or which remove relationships, created after 2013-07-08; or "
+"Note: only searches edits that: add or edit relationships, entered after "
+"2011-05-16; or which remove relationships, entered after 2013-07-08; or "
"which reorder relationships."
msgstr ""
@@ -2006,29 +2031,31 @@ msgstr ""
msgid "Orderable direction:"
msgstr ""
-#: ../root/series/edit_form.tt:17
-msgid "Ordering Type:"
+#: ../root/series/edit_form.tt:17 ../root/edit/details/AddSeries.js:52
+#: ../root/edit/details/EditSeries.js:66
+#: ../root/layout/components/sidebar/SeriesSidebar.js:53
+#: ../root/utility/tableColumns.js:765
+msgid "Ordering Type"
msgstr ""
#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:77
msgid "PDF file"
msgstr ""
-#: ../root/release/edit/information.tt:238
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:156
-msgid "Packaging:"
+#: ../root/release/edit/information.tt:240
+#: ../root/edit/details/AddRelease.js:105
+#: ../root/edit/details/EditRelease.js:137
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
+msgid "Packaging"
msgstr ""
#: ../root/admin/attributes/form.tt:50
-#: ../root/edit/details/AddRelationshipAttribute.js:55
-#: ../root/edit/details/EditRelationshipAttribute.js:85
-msgid "Parent"
-msgstr ""
-
#: ../root/relationship/linkattributetype/form.tt:4
#: ../root/relationship/linktype/form.tt:4
+#: ../root/edit/details/AddRelationshipAttribute.js:55
+#: ../root/edit/details/EditRelationshipAttribute.js:85
#: ../root/edit/details/EditRelationshipType.js:317
-msgid "Parent:"
+msgid "Parent"
msgstr ""
#: ../root/release/edit/tracklist.tt:238
@@ -2056,10 +2083,10 @@ msgstr ""
msgid "Please choose a condition"
msgstr ""
-#: ../root/release/edit/information.tt:312
+#: ../root/release/edit/information.tt:326
msgid ""
-"Please enter the barcode of the release you are entering, see Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2079,15 +2106,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2137,7 +2161,7 @@ msgstr[2] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr ""
@@ -2178,27 +2202,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2221,7 +2250,7 @@ msgstr ""
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2241,10 +2270,6 @@ msgstr ""
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2262,7 +2287,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2286,16 +2311,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2311,7 +2328,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2321,11 +2338,11 @@ msgstr ""
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2336,7 +2353,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2397,7 +2414,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2415,29 +2432,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr ""
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2456,10 +2477,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2527,11 +2544,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2563,9 +2583,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2576,13 +2603,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr ""
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2590,11 +2625,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2607,9 +2642,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr ""
@@ -2619,11 +2654,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2637,11 +2672,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2653,7 +2688,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2661,6 +2704,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2679,7 +2728,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2717,7 +2766,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2769,14 +2818,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2835,7 +2884,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2874,8 +2923,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2892,7 +2941,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2900,7 +2949,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2925,14 +2974,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2947,20 +3002,16 @@ msgstr ""
msgid "Title"
msgstr ""
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2990,6 +3041,7 @@ msgid "Tracklist"
msgstr ""
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -2997,7 +3049,7 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "Песме"
@@ -3009,10 +3061,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3050,25 +3098,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr ""
@@ -3079,7 +3127,7 @@ msgstr ""
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3093,9 +3141,22 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
msgstr ""
#: ../root/release/edit/tracklist.tt:21
@@ -3103,7 +3164,7 @@ msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3180,7 +3241,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3192,23 +3253,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3264,7 +3322,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3302,11 +3360,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3322,7 +3380,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3349,8 +3407,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3359,8 +3417,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3444,8 +3502,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3938,12 +3998,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4028,25 +4088,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4159,15 +4219,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr ""
@@ -4245,7 +4305,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4328,7 +4388,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4361,7 +4421,7 @@ msgstr ""
msgid "Remove artist alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr ""
@@ -4403,8 +4463,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4416,7 +4476,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4450,7 +4510,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4472,8 +4532,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr ""
@@ -4502,14 +4562,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4530,7 +4590,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr ""
@@ -4582,11 +4642,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4638,7 +4693,7 @@ msgstr ""
msgid "Remove label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr ""
@@ -4685,7 +4740,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4736,8 +4791,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr ""
@@ -4816,13 +4875,13 @@ msgstr ""
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(непознато)"
@@ -4850,6 +4909,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr ""
@@ -4863,7 +4924,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr ""
@@ -4875,7 +4936,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -4958,7 +5019,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4971,24 +5032,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -5006,6 +5050,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5019,9 +5064,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5046,7 +5091,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5489,11 +5534,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr ""
@@ -5584,22 +5629,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5611,17 +5656,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5636,17 +5670,6 @@ msgctxt "noun"
msgid "Tag"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5886,19 +5909,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5906,7 +5929,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6025,9 +6048,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6385,12 +6409,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6424,14 +6448,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6447,7 +6472,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6484,20 +6509,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6526,26 +6537,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr ""
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr ""
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6553,15 +6546,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6616,6 +6604,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr "Додај страницу"
@@ -6628,10 +6617,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6719,6 +6704,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6768,8 +6754,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6778,8 +6767,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6847,10 +6835,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr ""
@@ -6889,7 +6877,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6938,7 +6926,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6952,7 +6943,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7119,7 +7113,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7414,10 +7408,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7450,7 +7446,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7464,7 +7460,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7484,15 +7480,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7502,8 +7489,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7512,21 +7500,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7564,7 +7544,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7603,15 +7583,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7704,7 +7684,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7719,20 +7699,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7904,7 +7874,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7950,7 +7920,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8070,6 +8040,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8117,26 +8088,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8148,37 +8103,24 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
#: ../root/components/list/ReleaseList.js:95
#: ../root/edit/details/MergeReleases.js:53
-#: ../root/release_group/ReleaseGroupIndex.js:89
-#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
-msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
+#: ../root/release_group/ReleaseGroupIndex.js:89
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
msgstr ""
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8303,7 +8245,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8521,7 +8463,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8548,7 +8490,8 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8573,7 +8516,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8582,15 +8525,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8613,52 +8556,42 @@ msgstr "Додај белешку о измени"
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8678,12 +8611,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8800,37 +8727,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8842,17 +8745,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8876,19 +8782,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8947,29 +8853,23 @@ msgstr ""
msgid "(new release group)"
msgstr "(нова група дистрибуција)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8982,17 +8882,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -9000,7 +8900,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9041,14 +8941,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9073,11 +8965,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9103,25 +8990,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9144,6 +9016,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9156,7 +9029,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9269,7 +9143,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9288,8 +9162,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9331,20 +9205,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9355,11 +9215,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9369,8 +9224,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9386,17 +9241,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9435,28 +9298,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9464,11 +9323,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9485,47 +9346,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10220,7 +10053,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10372,7 +10205,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10539,39 +10372,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10688,11 +10515,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10745,10 +10572,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10761,7 +10584,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10792,27 +10615,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10820,21 +10643,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -10974,7 +10789,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11073,14 +10888,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Не постоји више детаља о овој грешци)"
@@ -11214,7 +11022,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11428,7 +11236,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11436,11 +11244,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11452,6 +11255,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11485,16 +11289,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11514,7 +11314,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11588,7 +11388,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11607,7 +11407,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11717,8 +11517,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11924,8 +11724,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11935,10 +11735,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11972,7 +11772,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11981,7 +11781,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12261,7 +12061,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12341,7 +12141,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12468,8 +12268,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12640,13 +12440,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12824,7 +12624,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12848,8 +12648,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13068,20 +12867,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13160,9 +12945,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13171,9 +12956,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13328,6 +13113,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13337,7 +13126,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13348,7 +13137,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13358,9 +13147,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13396,7 +13186,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13480,7 +13270,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13501,42 +13291,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Додај језик"
@@ -13587,15 +13378,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13648,10 +13439,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13700,7 +13493,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13724,33 +13517,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13768,7 +13561,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13777,32 +13570,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13812,7 +13600,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13850,11 +13644,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13955,15 +13749,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14075,7 +13869,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14372,31 +14166,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14417,7 +14211,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14474,8 +14269,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14565,113 +14360,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14718,53 +14513,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr "Додај уметничке заслуге"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14786,11 +14581,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14825,11 +14620,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14891,10 +14686,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15229,8 +15021,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15438,14 +15230,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15454,7 +15246,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15506,34 +15298,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15560,15 +15352,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15817,10 +15605,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15882,23 +15666,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -16000,7 +15784,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16227,10 +16012,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(скривено)"
@@ -16272,191 +16053,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Actions"
+msgid "Restrictions"
+msgstr "Акције"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Прихваћено"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16716,7 +16491,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16730,7 +16505,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
diff --git a/po/mb_server.sv.po b/po/mb_server.sv.po
index a7dc6611e69..dbc4d8db6b8 100644
--- a/po/mb_server.sv.po
+++ b/po/mb_server.sv.po
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:59+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Swedish Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2103,15 +2130,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr "Position"
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr "Position:"
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2160,7 +2184,7 @@ msgstr[1] "Betyg: {rating} stjärnor"
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr "Inspelning"
@@ -2201,27 +2225,32 @@ msgstr "Förhållanderedigerare"
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr "Förhållandetyp"
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2244,7 +2273,7 @@ msgstr "Utgivningsland"
msgid "Release Duplicates"
msgstr "Utgivningsdubbletter"
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2264,10 +2293,6 @@ msgstr "Utgivningsgrupp"
msgid "Release Group Details"
msgstr "Utgivningsgruppsdetaljer"
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr "Utgivningsgrupp:"
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2285,7 +2310,7 @@ msgstr "Utgivningsspråk"
msgid "Release Quality"
msgstr "Utgivningskvalitet"
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr "Utgivningshändelse"
@@ -2309,16 +2334,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr "Utgivning “{name}” av {artist}"
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr "Utgivning:"
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2334,7 +2351,7 @@ msgstr "Utgivning:"
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2344,11 +2361,11 @@ msgstr "Ta bort"
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2359,7 +2376,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2420,7 +2437,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2438,29 +2455,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "Spara"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
-msgstr ""
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr "Skript"
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2479,10 +2500,6 @@ msgstr "Sök efter utgivning"
msgid "Search for Edits"
msgstr "Sök efter redigeringar"
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr "Sök:"
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr "Söker..."
@@ -2550,11 +2567,14 @@ msgid "Set cover art"
msgstr "Ändra omslag"
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2586,9 +2606,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2599,25 +2626,33 @@ msgstr "Dela upp artist"
msgid "Split Into Separate Artists"
msgstr "Dela upp i separata artister"
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr "Status"
#: ../root/release/edit/information.tt:111
-msgid "Status:"
-msgstr "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
+msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr "Skickar redigeringar..."
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2630,9 +2665,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr "Taggare"
@@ -2644,11 +2679,11 @@ msgstr ""
"Omslagsarkivet upplever för tillfället problem. Det är osannolikt att det "
"för tillfället går att lägga till bilder för denna utgivning."
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2664,11 +2699,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr "Datumet du angav är inte giltigt."
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2680,7 +2715,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2688,6 +2731,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr "Servern är för tillfället i skrivskyddat läge för databasunderhåll."
@@ -2706,7 +2755,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2744,7 +2793,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2796,14 +2845,14 @@ msgstr "Den här enheten har tagits bort och kan inte visas korrekt."
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2862,7 +2911,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2901,8 +2950,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2919,7 +2968,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2927,7 +2976,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2952,14 +3001,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2974,20 +3029,16 @@ msgstr ""
msgid "Title"
msgstr "Titel"
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -3017,6 +3068,7 @@ msgid "Tracklist"
msgstr "Låtlista"
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -3024,7 +3076,7 @@ msgstr "Låtlista"
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "Spår"
@@ -3036,10 +3088,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr "Spår:"
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3077,25 +3125,25 @@ msgstr "Twitter"
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr "Typ"
@@ -3106,7 +3154,7 @@ msgstr "Typ"
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3120,17 +3168,30 @@ msgstr "Typ:"
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
-msgstr ""
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr "Webbadress"
#: ../root/release/edit/tracklist.tt:21
msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3207,7 +3268,7 @@ msgid "Voter"
msgstr "Röstare"
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr "Röster"
@@ -3219,23 +3280,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3291,7 +3349,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3329,11 +3387,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3349,7 +3407,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3376,8 +3434,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3386,8 +3444,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3471,8 +3529,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3968,12 +4028,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4058,25 +4118,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr "Låg"
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr "Normal"
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr "Hög"
@@ -4189,15 +4249,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr "Skicka e-post"
@@ -4279,7 +4339,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4364,7 +4424,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4397,7 +4457,7 @@ msgstr "Ta bort artist"
msgid "Remove artist alias"
msgstr "Ta bort artistalias"
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr "Ändra artist"
@@ -4439,8 +4499,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4452,7 +4512,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4486,7 +4546,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4508,8 +4568,8 @@ msgstr "Lägg till förhållande"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr "Lägg till utgåva"
@@ -4538,14 +4598,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr "Ändra utgivningens datakvalitet"
@@ -4566,7 +4626,7 @@ msgstr "Redigera utgivningshändelser (historiska)"
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr "Redigera inspelning"
@@ -4618,11 +4678,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4674,7 +4729,7 @@ msgstr "Lägg till etikett"
msgid "Remove label"
msgstr "Ta bort etikett"
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr "Redigera etiketten"
@@ -4721,7 +4776,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4772,8 +4827,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr "Ta bort ISRC"
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr "Förhållande"
@@ -4852,13 +4911,13 @@ msgstr "Redigera streckkoder"
msgid "Edit cover art"
msgstr "Redigera omslag"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(okänd)"
@@ -4886,6 +4945,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr "Utgivningsgrupp"
@@ -4899,7 +4960,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr "Lägg till utgivningsgrupp"
@@ -4911,7 +4972,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -4990,7 +5051,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -5003,24 +5064,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr "Webbadress"
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -5038,6 +5082,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5051,11 +5096,11 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
-msgstr "Avbruten"
+msgstr ""
#: ../lib/MusicBrainz/Server/Edit/WikiDoc.pm:7
msgid "Wiki documentation"
@@ -5078,7 +5123,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr "Lägg till verk"
@@ -5521,11 +5566,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
-msgstr "Ange en giltig webbadress, t.ex: \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
+msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr "Webbadressprotokollet måste vara HTTP, HTTPS eller FTP"
@@ -5616,22 +5661,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr "Avancerad"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5643,17 +5688,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr "Födelseår måste vara efter 1900"
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr "Anteckning"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5668,17 +5702,6 @@ msgctxt "noun"
msgid "Tag"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr "Dokumentation"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5918,19 +5941,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5938,7 +5961,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr "{last_list_item}"
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6062,9 +6085,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr "E-post"
@@ -6438,12 +6462,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr "Redigering/röstning inaktiverat"
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6477,14 +6501,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6500,7 +6525,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6537,20 +6562,6 @@ msgstr ""
msgid "Free text"
msgstr "Fri text"
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr "Attribut"
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6579,26 +6590,8 @@ msgstr "Är du säker på att du vill ta bort attributet{name}?
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr "Språk"
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr "Skript"
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6606,15 +6599,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6669,6 +6657,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr "Lägg till sida"
@@ -6681,10 +6670,6 @@ msgstr "Sida:"
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr "Skapa"
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6772,6 +6757,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr "Anteckningsjämförelse"
@@ -6823,9 +6809,12 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
-msgstr "Förhandsvisning:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
+msgstr ""
#: ../root/annotation/EditAnnotation.js:80
#: ../root/static/scripts/common/components/Annotation.js:71
@@ -6833,10 +6822,9 @@ msgid "Changelog:"
msgstr "Ändringslogg:"
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
-msgstr "Förhandsvisning"
+msgstr ""
#: ../root/annotation/EditAnnotation.js:98
msgid "Annotation Formatting"
@@ -6901,10 +6889,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr "Artister"
@@ -6943,7 +6931,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6992,7 +6980,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -7006,7 +6997,10 @@ msgstr "Förhållanden"
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7172,7 +7166,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7461,10 +7455,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr "Slå upp antal"
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7497,7 +7493,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7511,7 +7507,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7531,15 +7527,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr "FreeDB:"
@@ -7549,8 +7536,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7559,21 +7547,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "Slut"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7613,7 +7593,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7652,15 +7632,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7753,8 +7733,8 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "Skapa en ny samling"
+msgid "Add a new collection"
+msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -7768,20 +7748,10 @@ msgstr "Är du säker på att du vill ta bort samlingen {collection}?"
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "Alias"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7952,7 +7922,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "Betyg"
@@ -7998,7 +7968,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr "-"
@@ -8109,6 +8079,7 @@ msgstr "Prenumerationer"
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr "Prenumeranter"
@@ -8153,26 +8124,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "Kön"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "Startområde"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "Slutområde"
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8184,13 +8139,6 @@ msgstr ""
msgid "Code"
msgstr "Kod"
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "Adress"
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8199,22 +8147,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "Status"
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8343,7 +8285,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8561,7 +8503,7 @@ msgid "None"
msgstr "Inga"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8586,7 +8528,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8611,7 +8554,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8620,15 +8563,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8651,51 +8594,41 @@ msgstr "Lägg till en redigeringsnotis"
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr "Status:"
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr "Öppnade:"
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr "Stängd:"
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr "För mer information:"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr "Redigerar vanliga frågor"
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Lägg till anteckning"
@@ -8715,12 +8648,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr "Utgivningar:"
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8837,39 +8764,15 @@ msgstr ""
msgid "Summary"
msgstr "Sammanfattning"
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
-msgstr "Slutdatum"
-
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
-msgstr "Slutade"
+msgstr ""
#: ../root/edit/details/AddCoverArt.js:39
#: ../root/edit/details/RemoveCoverArt.js:39
@@ -8879,17 +8782,20 @@ msgstr "(inga)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Filnamn:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8913,20 +8819,20 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
-msgstr "Förhållande:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
#: ../root/edit/details/AddRelationship.js:33
msgid "Link order:"
@@ -8984,30 +8890,24 @@ msgstr "(inga)"
msgid "(new release group)"
msgstr "(ny utgivningsgrupp)"
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr "Status:"
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr "Utgivningshändelser"
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "Katalognummer:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "Katalognummer"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -9019,17 +8919,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -9037,7 +8937,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr "datakvalitet"
@@ -9075,15 +8975,7 @@ msgid "Artist Credit"
msgstr ""
#: ../root/edit/details/EditArtistCredit.js:41
-msgid "See all uses of the artist credit being changed."
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
+msgid "See all uses of the artist credit being changed."
msgstr ""
#: ../root/edit/details/EditMedium.js:84
@@ -9110,11 +9002,6 @@ msgstr "Gammal inspelning"
msgid "New recording"
msgstr "Ny inspelning"
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr "Gammal artist"
@@ -9140,25 +9027,10 @@ msgstr ""
msgid "Deprecated:"
msgstr "Föråldrade:"
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "Katalognummer"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9180,6 +9052,7 @@ msgid "Search for the target URL."
msgstr "Sök efter målwebbadressen"
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9192,8 +9065,9 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
-msgstr "Sammanfoga:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
#: ../root/edit/details/MergeAreas.js:25
#: ../root/edit/details/MergeArtists.js:26
@@ -9305,7 +9179,7 @@ msgid "New positions:"
msgstr "Nya positioner:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9324,8 +9198,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9367,20 +9241,6 @@ msgstr ""
msgid "CD TOC:"
msgstr "Innehållsförteckning för CD:"
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr "Förhållanden:"
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr "Utgivningshändelser:"
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Katalognummer"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9391,11 +9251,6 @@ msgstr ""
msgid "Artist name:"
msgstr "Artist namn:"
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr "Utgivningsgrupp:"
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr "Gamla förhållanden:"
@@ -9405,9 +9260,9 @@ msgid "New relationships:"
msgstr "Nytt förhållande:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
-msgstr "Gammal:"
+msgctxt "release type and status"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
msgid "Type: {type}, status: {status}"
@@ -9422,16 +9277,24 @@ msgid "New Status:"
msgstr "Ny status:"
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "Lades till"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
-msgstr "Borttagen"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
-msgstr "Redigerad"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
@@ -9471,28 +9334,24 @@ msgstr ""
msgid "Change track artists:"
msgstr "Ändra spårartister:"
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "Alias:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Kandidat:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Kandidat"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9500,11 +9359,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9521,47 +9382,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
-msgstr "Status:"
+msgid "Status"
+msgstr "Status"
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr "Visa detaljer"
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Kandidat"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr "Status"
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr "Startdatum"
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr "Rösta"
@@ -10247,7 +10080,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr "Behörigt användarkonto"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr "Statistik"
@@ -10399,7 +10232,7 @@ msgstr "Dokumentationsindex"
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr "Förhållandetyper"
@@ -10566,39 +10399,33 @@ msgstr "Områdesinformation"
msgid "Artist information"
msgstr "Artist information"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr "Lägg till inspelning"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr "Dela upp i separata artister"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr "Lade till:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr "Senast ändrad:"
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
-msgstr "Slå upp antal:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr "Lägg till skiv-ID till en befintlig utgivning"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr "Sök databasen för denna CD"
@@ -10714,11 +10541,11 @@ msgstr "Logga in för att redigera"
msgid "Event information"
msgstr "Händelseinformation"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr "Startdatum:"
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr "Slutdatum:"
@@ -10771,10 +10598,6 @@ msgctxt "place"
msgid "Closed"
msgstr "Stängd"
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr "Koordinater:"
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10787,7 +10610,7 @@ msgstr ""
msgid "Recording information"
msgstr "Inspelningsinformation"
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10818,27 +10641,27 @@ msgstr ""
msgid "No cover art available."
msgstr "Inget omslag tillgängligt"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr "Ytterligare detaljer"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr "Utgivningsgruppsbetyg"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr "Utgivningsgruppsrecensioner"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr "Redigera förhållanden"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10846,21 +10669,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr "IPI-kod:"
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr "ISNI-kod:"
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Licens"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Betyg"
@@ -11003,7 +10818,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr "Felmeddelande:"
@@ -11103,13 +10918,7 @@ msgstr "Gränssnittsspråk:"
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr "(Inga detaljer om detta fel finns tillgängligt)"
@@ -11253,7 +11062,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11469,7 +11278,7 @@ msgstr "Förhållandeattribut används"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11477,11 +11286,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr "ID:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11493,6 +11297,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11526,17 +11331,13 @@ msgstr ""
msgid "Add child"
msgstr "Lägg till underordnad"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr "Möjliga värden:"
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr "Inga förhållandeattribut hittades."
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
-msgstr "Skapa ett nytt förhållandeattribut"
+msgid "Add a new relationship attribute"
+msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
@@ -11557,7 +11358,7 @@ msgstr "Förhållandetyp används"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11631,7 +11432,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11650,7 +11451,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11762,8 +11563,8 @@ msgstr ""
"Är du säker på att du vill ta bort omslaget nedan från {release} av {artist}?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr "Utgivningsgrupp efter {artist}"
@@ -11969,8 +11770,8 @@ msgstr "Trasiga Amazon-webbadresser"
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11980,10 +11781,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -12017,7 +11818,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -12026,7 +11827,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12306,7 +12107,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12386,7 +12187,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12513,8 +12314,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12685,13 +12486,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12872,7 +12673,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12896,8 +12697,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13116,20 +12916,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13208,9 +12994,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13219,9 +13005,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13376,6 +13162,10 @@ msgstr ""
msgid "Last edited"
msgstr "Senast redigerad"
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Katalognummer"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr "Kolla upp tagg"
@@ -13385,7 +13175,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13396,7 +13186,7 @@ msgstr "Börja"
msgid "Alternatively, you may {uri|add a new area}."
msgstr "Alternativt kan du {uri|lägga till ett nytt område}."
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr "Alternativt kan du {uri|lägga till en ny artist}."
@@ -13406,11 +13196,12 @@ msgid "Documentation Search"
msgstr "Dokumentationssökning"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Plats"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13444,7 +13235,7 @@ msgstr "Alternativt kan du {uri|lägga till en ny inspelning}."
msgid "Alternatively, you may {uri|add a new release group}."
msgstr "Alternativt kan du {uri|lägga till en ny utgivningsgrupp}."
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr "Alternativt kan du {uri|lägga till en ny utgivning}."
@@ -13528,7 +13319,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13549,42 +13340,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr "Om du ändrar din e-postadress måste du bekräfta den."
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
-msgstr "Plats:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr "Födelsedatum:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr "Kända språk:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr "Lägg till nytt språk"
@@ -13637,16 +13429,16 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr "Skicka e-post med redigeringar i mina prenumerationer:"
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
-msgstr "Prenumerera automatiskt på artister jag skapar."
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
-msgstr "Prenumerera automatiskt på skivbolag jag skapar."
+msgid "Automatically subscribe me to labels I add."
+msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
-msgstr "Prenumerera automatiskt på serier jag skapar."
+msgid "Automatically subscribe me to series I add."
+msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
msgid "Your username will be publicly visible."
@@ -13699,12 +13491,14 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
-msgstr "Gammal"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "Ny"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
@@ -13750,7 +13544,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13774,33 +13568,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr "Visa mer..."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr "Samlingsdetaljer"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr "Tillåt andra användare att se denna samling"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "Skapa samling"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13818,7 +13612,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13827,32 +13621,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13862,7 +13651,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13900,11 +13695,11 @@ msgid "Annotation last modified on {date}."
msgstr "Anteckningen ändrades senast den {date}."
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -14005,15 +13800,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14124,7 +13919,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14419,31 +14214,31 @@ msgctxt "plural"
msgid "Series"
msgstr "Serie"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14464,8 +14259,9 @@ msgid "Began:"
msgstr "Började:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
-msgstr "Slutade:"
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
@@ -14521,8 +14317,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14612,113 +14408,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14765,53 +14561,53 @@ msgstr ""
msgid "Add a new work"
msgstr "Lägg till nytt verk"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14833,11 +14629,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14872,11 +14668,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14938,10 +14734,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr "Utgivningshändelser:"
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15276,8 +15069,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15483,14 +15276,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15499,7 +15292,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15551,34 +15344,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr "Relaterade verk"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr "Utgivningsförhållanden"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr "Utgivningsgruppsförhållanden"
@@ -15605,15 +15398,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15854,10 +15643,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "Kolla upp tagg"
@@ -15919,23 +15704,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr "Ämne:"
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr "Avslöja min e-postadress"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr "Skicka en kopia till min e-postadress"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "Skicka"
@@ -16038,7 +15823,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16265,10 +16051,6 @@ msgstr ""
msgid "General Information"
msgstr "Allmän information"
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr "E-post:"
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr "(gömd)"
@@ -16310,191 +16092,185 @@ msgstr ""
msgid "Age:"
msgstr "Ålder:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr "Medlem sedan:"
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr "Senaste inloggning:"
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "Beskrivning"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr "Har inte loggat in ännu"
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr "Hemsida:"
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr "Prenumeranter:"
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr "avprenumerera"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr "prenumerera"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
-msgstr "Språk"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr "Redigeringar"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "Totalt"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "Accepterad"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr "Automatiska redigeringar"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr "Misslyckades"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr "Senaste 24 timmar"
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr "Senaste 28 dagar"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16741,7 +16517,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16755,7 +16531,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr "Prenumererar"
@@ -16980,6 +16756,258 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Address:"
+#~ msgstr "Adress:"
+
+#~ msgid "Annotation:"
+#~ msgstr "Anteckningar:"
+
+#~ msgid "Area:"
+#~ msgstr "Område:"
+
+#~ msgid "Artist:"
+#~ msgstr "Artist:"
+
+#~ msgid "Attributes:"
+#~ msgstr "Attribut:"
+
+#~ msgid "Barcode:"
+#~ msgstr "Streckkod:"
+
+#~ msgid "Country:"
+#~ msgstr "Land:"
+
+#~ msgid "Created"
+#~ msgstr "Skapades"
+
+#~ msgid "Date:"
+#~ msgstr "Datum:"
+
+#~ msgid "Delete"
+#~ msgstr "Ta bort"
+
+#~ msgid "Description:"
+#~ msgstr "Beskrivning:"
+
+#~ msgid "Documentation:"
+#~ msgstr "Dokumentation:"
+
+#~ msgid "End Area:"
+#~ msgstr "Slutområde:"
+
+#~ msgid "End date:"
+#~ msgstr "Slutdatum:"
+
+#~ msgid "Format:"
+#~ msgstr "Format:"
+
+#~ msgid "Gender:"
+#~ msgstr "Kön:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "IPI-koder:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "ISNI-koder:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "Label code:"
+#~ msgstr "Skivbolagskod:"
+
+#~ msgid "Label:"
+#~ msgstr "Skivbolag:"
+
+#~ msgid "Language:"
+#~ msgstr "Språk:"
+
+#~ msgid "Length:"
+#~ msgstr "Längd:"
+
+#~ msgid "Merge"
+#~ msgstr "Sammanfoga"
+
+#~ msgid "Name:"
+#~ msgstr "Namn:"
+
+#~ msgid "Position:"
+#~ msgstr "Position:"
+
+#~ msgid "Release Group:"
+#~ msgstr "Utgivningsgrupp:"
+
+#~ msgid "Release:"
+#~ msgstr "Utgivning:"
+
+#~ msgid "Search:"
+#~ msgstr "Sök:"
+
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Spår:"
+
+#~ msgid "Cancelled"
+#~ msgstr "Avbruten"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Ange en giltig webbadress, t.ex: \"http://google.com/\""
+
+#~ msgid "Create"
+#~ msgstr "Skapa"
+
+#~ msgid "Preview:"
+#~ msgstr "Förhandsvisning:"
+
+#~ msgid "Preview"
+#~ msgstr "Förhandsvisning"
+
+#~ msgid "Create a new collection"
+#~ msgstr "Skapa en ny samling"
+
+#~ msgid "Status"
+#~ msgstr "Status"
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Closed:"
+#~ msgstr "Stängd:"
+
+#~ msgid "Releases:"
+#~ msgstr "Utgivningar:"
+
+#~ msgid "Ended"
+#~ msgstr "Slutade"
+
+#~ msgid "Filename:"
+#~ msgstr "Filnamn:"
+
+#~ msgid "Relationship:"
+#~ msgstr "Förhållande:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "Katalognummer:"
+
+#~ msgid "Merge:"
+#~ msgstr "Sammanfoga:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Förhållanden:"
+
+#~ msgid "Release Events:"
+#~ msgstr "Utgivningshändelser:"
+
+#~ msgid "Release group:"
+#~ msgstr "Utgivningsgrupp:"
+
+#~ msgid "Old:"
+#~ msgstr "Gammal:"
+
+#~ msgid "Added"
+#~ msgstr "Lades till"
+
+#~ msgid "Removed"
+#~ msgstr "Borttagen"
+
+#~ msgid "Edited"
+#~ msgstr "Redigerad"
+
+#~ msgid "Alias:"
+#~ msgstr "Alias:"
+
+#~ msgid "Candidate:"
+#~ msgstr "Kandidat:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "Status:"
+
+#~ msgid "Added:"
+#~ msgstr "Lade till:"
+
+#~ msgid "Last modified:"
+#~ msgstr "Senast ändrad:"
+
+#~ msgid "Lookup count:"
+#~ msgstr "Slå upp antal:"
+
+#~ msgid "Coordinates:"
+#~ msgstr "Koordinater:"
+
+#~ msgid "IPI code:"
+#~ msgstr "IPI-kod:"
+
+#~ msgid "ISNI code:"
+#~ msgstr "ISNI-kod:"
+
+#~ msgid "ID:"
+#~ msgstr "ID:"
+
+#~ msgid "Possible values:"
+#~ msgstr "Möjliga värden:"
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "Skapa ett nytt förhållandeattribut"
+
+#~ msgid "Location"
+#~ msgstr "Plats"
+
+#~ msgid "Location:"
+#~ msgstr "Plats:"
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "Prenumerera automatiskt på artister jag skapar."
+
+#~ msgid "Automatically subscribe me to labels I create."
+#~ msgstr "Prenumerera automatiskt på skivbolag jag skapar."
+
+#~ msgid "Automatically subscribe me to series I create."
+#~ msgstr "Prenumerera automatiskt på serier jag skapar."
+
+#~ msgid "Old"
+#~ msgstr "Gammal"
+
+#~ msgid "New"
+#~ msgstr "Ny"
+
+#~ msgid "Create collection"
+#~ msgstr "Skapa samling"
+
+#~ msgid "Ended:"
+#~ msgstr "Slutade:"
+
+#~ msgid "Release events:"
+#~ msgstr "Utgivningshändelser:"
+
+#~ msgid "Email:"
+#~ msgstr "E-post:"
+
+#~ msgid "Member since:"
+#~ msgstr "Medlem sedan:"
+
+#~ msgid "Last login:"
+#~ msgstr "Senaste inloggning:"
+
+#~ msgid "Subscribers:"
+#~ msgstr "Prenumeranter:"
+
+#~ msgid "Languages:"
+#~ msgstr "Språk"
+
#~ msgid "Artist {n}:"
#~ msgstr "Artist {n}:"
diff --git a/po/mb_server.th.po b/po/mb_server.th.po
new file mode 100644
index 00000000000..d6d3fb4efdc
--- /dev/null
+++ b/po/mb_server.th.po
@@ -0,0 +1,16646 @@
+# #-#-#-#-# mb_server.pot (PACKAGE VERSION) #-#-#-#-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: th\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../root/components/common-macros.tt:12
+msgid " ({text})"
+msgstr ""
+
+#: ../root/components/forms.tt:313
+msgid "\"C\" is a single check digit."
+msgstr ""
+
+#: ../root/components/forms.tt:323
+msgid ""
+"\"CC\" is the appropriate for the registrant two-character country code."
+msgstr ""
+
+#: ../root/components/forms.tt:312
+msgid "\"DDD\" is a nine digit work identifier."
+msgstr ""
+
+#: ../root/components/forms.tt:326
+msgid ""
+"\"NNNNN\" is a unique 5-digit number identifying the particular sound "
+"recording."
+msgstr ""
+
+#: ../root/components/forms.tt:324
+msgid ""
+"\"XXX\" is a three character alphanumeric registrant code, uniquely "
+"identifying the organisation which registered the code."
+msgstr ""
+
+#: ../root/components/forms.tt:325
+msgid "\"YY\" is the last two digits of the year of registration."
+msgstr ""
+
+#: ../root/cdstub/cdstub.tt:4 ../root/release/edit/tracklist.tt:161
+#: ../root/release/edit/tracklist.tt:451 ../root/cdstub/CDStubInfo.js:26
+#: ../root/cdtoc/AttachCDTocConfirmation.js:69
+#: ../root/edit/details/AddMedium.js:167 ../root/edit/details/EditMedium.js:314
+#: ../root/edit/details/EditMedium.js:318
+#: ../root/edit/details/EditMedium.js:519
+#: ../root/edit/details/EditMedium.js:577
+#: ../root/edit/details/historic/AddRelease.js:88
+#: ../root/recording/RecordingIndex.js:53
+#: ../root/static/scripts/release/components/MediumTable.js:83
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1564
+#: ../root/utility/tableColumns.js:572
+msgid "#"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:43
+msgid "✔"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:43
+msgid "✕"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:104
+msgid "⚠ Error creating edit"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:88
+msgid "⚠ Error requesting signature"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:102
+msgid "⚠ Error uploading image"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:103
+msgid "⚠ Server busy, try again later"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:87
+msgid "⚠ Unrecognized file"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:86
+msgid "✓ Success"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:63
+msgid "(add a new recording)"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:129
+msgid "(no other cover art)"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:16
+#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
+#: ../root/edit/details/MergeReleases.js:239
+#: ../root/recording/RecordingIndex.js:60
+#: ../root/release_group/ReleaseGroupIndex.js:171
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/utility/tableColumns.js:513 ../root/utility/tableColumns.js:521
+msgctxt "and"
+msgid "/"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:137
+msgid ""
+"Note: In classical music, {csg_recording_artist|recording "
+"artists} should almost always be different from {csg_track_artist|track "
+"artists}, so don’t use the “copy artist credits” option while editing a "
+"classical release unless you’re very sure it’s a good idea!"
+msgstr ""
+
+#: ../root/components/common-macros.tt:480 ../root/recording/edit_form.tt:6
+msgid "Warning:"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:22
+msgid ""
+"A CD Stub was found that matches the disc ID you provided. If the below "
+"tracklist appears correct, you may use it as a starting point as a new "
+"MusicBrainz release"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:323
+msgid ""
+"A format is required. If you don’t know it, tick the “I don’t know” checkbox "
+"next to the format dropdown."
+msgstr ""
+
+#: ../root/release/edit/information.tt:23
+msgid "A release title is required."
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:40
+msgid ""
+"A value of 1 or 2 indicates that either entity1 or entity0 are orderable, "
+"respectively."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
+#: ../lib/MusicBrainz/Server/Data/Vote.pm:175
+#: ../root/edit/components/Vote.js:100
+msgctxt "vote"
+msgid "Abstain"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:8
+msgid "Accept"
+msgstr ""
+
+#: ../root/event/edit_form.tt:22
+msgid ""
+"Add \"@ \" at line start to indicate artists, \"* \" for a work/song, \"# \" "
+"for additional info (such as \"Encore\"). [mbid|name] allows linking to "
+"artists and works."
+msgstr ""
+
+#: ../root/area/create.tt:1 ../root/area/create.tt:3
+msgid "Add Area"
+msgstr ""
+
+#: ../root/artist/create.tt:1 ../root/artist/create.tt:3
+msgid "Add Artist"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:1 ../root/release/add_cover_art.tt:8
+msgctxt "header"
+msgid "Add Cover Art"
+msgstr ""
+
+#: ../root/event/create.tt:1 ../root/event/create.tt:3
+msgid "Add Event"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:154
+msgid "Add Example"
+msgstr ""
+
+#: ../root/instrument/create.tt:1 ../root/instrument/create.tt:3
+msgid "Add Instrument"
+msgstr ""
+
+#: ../root/label/create.tt:1 ../root/label/create.tt:3
+msgid "Add Label"
+msgstr ""
+
+#: ../root/release/edit/information.tt:215
+#: ../root/release/edit/information.tt:216
+#: ../root/layout/components/BottomMenu.js:248
+msgctxt "button/menu"
+msgid "Add Label"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:67 ../root/release/edit/tracklist.tt:267
+#: ../root/static/scripts/release-editor/dialogs.js:309
+msgid "Add Medium"
+msgstr ""
+
+#: ../root/place/create.tt:1 ../root/place/create.tt:3
+msgid "Add Place"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:7
+msgctxt "header"
+msgid "Add Release"
+msgstr ""
+
+#: ../root/release/edit/information.tt:171
+#: ../root/release/edit/information.tt:172
+msgctxt "button/menu"
+msgid "Add Release Event"
+msgstr ""
+
+#: ../root/release_group/create.tt:1
+msgid "Add Release Group"
+msgstr ""
+
+#: ../root/release_group/create.tt:3
+msgctxt "header"
+msgid "Add Release Group"
+msgstr ""
+
+#: ../root/series/create.tt:1 ../root/series/create.tt:3
+msgid "Add Series"
+msgstr ""
+
+#: ../root/recording/create.tt:1 ../root/recording/create.tt:3
+msgctxt "header"
+msgid "Add Standalone Recording"
+msgstr ""
+
+#: ../root/work/create.tt:1 ../root/work/create.tt:2
+msgctxt "header"
+msgid "Add Work"
+msgstr ""
+
+#: ../root/work/edit_form.tt:77
+msgctxt "button/menu"
+msgid "Add Work Attribute"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:105
+msgid "Add a New Example"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:273
+msgid ""
+"Add a medium by clicking “Add Medium” below, or tick the box confirming the "
+"tracklist is unknown."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:178
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:21
+msgid "Add a new recording"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:54
+#: ../root/cdtoc/attach_filter_release.tt:74
+#: ../root/cdtoc/attach_filter_release.tt:81
+#: ../root/cdtoc/SelectArtistForCDToc.js:110
+#: ../root/cdtoc/SelectArtistForCDToc.js:130
+msgid "Add a new release"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:533
+msgid "Add track(s)"
+msgstr ""
+
+#: ../root/components/forms.tt:173
+msgid "Add {item}"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:532
+msgid "Add {num} track(s)"
+msgstr ""
+
+#: ../root/release/edit/information.tt:247
+msgid "Additional information"
+msgstr ""
+
+#: ../root/place/edit_form.tt:16 ../root/components/list/PlaceList.js:66
+#: ../root/edit/details/AddPlace.js:55 ../root/edit/details/EditPlace.js:68
+#: ../root/layout/components/sidebar/PlaceSidebar.js:84
+#: ../root/report/PlacesWithoutCoordinates.js:41
+#: ../root/search/components/PlaceResults.js:65
+msgid "Address"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:3
+msgid ""
+"All tracks require an associated recording. Click “Edit” to select a "
+"recording for each track. Choose “Add a new recording” if an appropriate one "
+"doesn’t exist yet."
+msgstr ""
+
+#: ../root/components/common-macros.tt:577
+msgid ""
+"An entity with that name and disambiguation already exists. You must enter a "
+"unique disambiguation comment."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:144
+msgid "An error occurred: "
+msgstr ""
+
+#: ../root/release/edit/information.tt:251
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
+#: ../root/annotation/AnnotationRevision.js:32
+#: ../root/annotation/EditAnnotation.js:74
+#: ../root/layout/components/Search.js:41
+#: ../root/report/hooks/useAnnotationColumns.js:28
+#: ../root/search/components/AnnotationResults.js:56
+#: ../root/search/components/SearchForm.js:45
+#: ../root/static/scripts/common/components/Annotation.js:51
+msgid "Annotation"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Applied Edit Count of Editor"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
+#: ../lib/MusicBrainz/Server/Data/Vote.pm:178
+msgctxt "vote"
+msgid "Approve"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:20 ../root/edit/search_macros.tt:423
+#: ../root/label/edit_form.tt:18 ../root/place/edit_form.tt:19
+#: ../lib/MusicBrainz/Server/Edit/Area.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:44
+#: ../root/components/list/AreaList.js:46
+#: ../root/components/list/ArtistList.js:92
+#: ../root/components/list/LabelList.js:75
+#: ../root/components/list/PlaceList.js:71 ../root/edit/details/AddArea.js:30
+#: ../root/edit/details/AddArtist.js:83 ../root/edit/details/AddLabel.js:80
+#: ../root/edit/details/AddPlace.js:61 ../root/edit/details/EditArea.js:43
+#: ../root/edit/details/EditArtist.js:108 ../root/edit/details/EditLabel.js:119
+#: ../root/edit/details/EditPlace.js:75 ../root/layout/components/Search.js:35
+#: ../root/layout/components/sidebar/ArtistSidebar.js:126
+#: ../root/layout/components/sidebar/LabelSidebar.js:90
+#: ../root/layout/components/sidebar/PlaceSidebar.js:91
+#: ../root/report/PlacesWithoutCoordinates.js:42
+#: ../root/search/components/ArtistResults.js:55
+#: ../root/search/components/LabelResults.js:69
+#: ../root/search/components/PlaceResults.js:66
+#: ../root/search/components/SearchForm.js:43
+#: ../root/static/scripts/common/constants.js:35
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:48
+#: ../root/user/UserProfile.js:49
+msgid "Area"
+msgstr ""
+
+#: ../root/area/edit_form.tt:8
+msgid "Area Details"
+msgstr ""
+
+#: ../root/cdstub/cdstub.tt:7 ../root/cdtoc/attach_filter_release.tt:29
+#: ../root/cdtoc/list.tt:8 ../root/cdtoc/lookup.tt:42
+#: ../root/cdtoc/lookup.tt:75 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/information.tt:26 ../root/release/edit/tracklist.tt:110
+#: ../root/release/edit/tracklist.tt:163 ../root/release/edit/tracklist.tt:453
+#: ../root/release_group/set_cover_art.tt:32
+#: ../lib/MusicBrainz/Server/Edit/Artist.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:38
+#: ../root/cdstub/BrowseCDStubs.js:37 ../root/cdstub/CDStubInfo.js:28
+#: ../root/cdstub/ImportCDStub.js:45
+#: ../root/cdtoc/AttachCDTocConfirmation.js:71
+#: ../root/cdtoc/SelectArtistForCDToc.js:43
+#: ../root/components/RelationshipsTable.js:337
+#: ../root/components/list/ArtistList.js:68
+#: ../root/components/list/RecordingList.js:106
+#: ../root/components/list/ReleaseGroupList.js:98
+#: ../root/components/list/ReleaseList.js:88
+#: ../root/edit/details/AddArtist.js:40 ../root/edit/details/AddMedium.js:168
+#: ../root/edit/details/AddRelease.js:56
+#: ../root/edit/details/AddReleaseGroup.js:47
+#: ../root/edit/details/AddStandaloneRecording.js:46
+#: ../root/edit/details/EditArtist.js:56 ../root/edit/details/EditMedium.js:316
+#: ../root/edit/details/EditMedium.js:320
+#: ../root/edit/details/EditRecording.js:84
+#: ../root/edit/details/EditRelease.js:65
+#: ../root/edit/details/EditReleaseGroup.js:87
+#: ../root/edit/details/MergeReleases.js:236
+#: ../root/edit/details/historic/AddRelease.js:38
+#: ../root/edit/details/historic/AddRelease.js:90
+#: ../root/edit/details/historic/AddTrackKV.js:41
+#: ../root/edit/details/historic/ChangeArtistQuality.js:24
+#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
+#: ../root/edit/details/historic/EditTrack.js:35
+#: ../root/edit/details/historic/MoveRelease.js:30
+#: ../root/edit/details/historic/RemoveRelease.js:26 ../root/isrc/Index.js:67
+#: ../root/layout/components/Search.js:24
+#: ../root/layout/components/sidebar/RecordingSidebar.js:49
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
+#: ../root/release_group/ReleaseGroupIndex.js:168
+#: ../root/report/DuplicateArtists.js:67
+#: ../root/report/DuplicateReleaseGroups.js:59
+#: ../root/report/IsrcsWithManyRecordings.js:59
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:53
+#: ../root/report/components/ArtistList.js:51
+#: ../root/report/components/ArtistUrlList.js:35
+#: ../root/report/components/CDTocReleaseList.js:56
+#: ../root/report/components/RecordingList.js:55
+#: ../root/report/components/ReleaseGroupList.js:57
+#: ../root/report/components/ReleaseGroupUrlList.js:38
+#: ../root/report/components/ReleaseList.js:58
+#: ../root/report/components/ReleaseUrlList.js:38
+#: ../root/search/components/CDStubResults.js:45
+#: ../root/search/components/RecordingResults.js:143
+#: ../root/search/components/ReleaseGroupResults.js:64
+#: ../root/search/components/ReleaseResults.js:112
+#: ../root/search/components/SearchForm.js:37
+#: ../root/static/scripts/common/constants.js:36
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:50
+#: ../root/static/scripts/common/utility/formatSetlist.js:52
+#: ../root/static/scripts/edit/components/forms.js:29
+#: ../root/static/scripts/release/components/MediumTable.js:86
+#: ../root/taglookup/Form.js:25 ../root/user/UserProfile.js:50
+msgid "Artist"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Artist Area"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:10
+msgid "Artist Details"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:40
+#: ../root/cdtoc/attach_filter_release.tt:54
+msgctxt "button/menu"
+msgid "Attach CD TOC"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:3
+#: ../root/cdtoc/attach_artist_releases.tt:4
+#: ../root/cdtoc/attach_filter_release.tt:3
+#: ../root/cdtoc/attach_filter_release.tt:4
+#: ../root/cdtoc/AttachCDTocConfirmation.js:48
+#: ../root/cdtoc/AttachCDTocConfirmation.js:49
+#: ../root/cdtoc/SelectArtistForCDToc.js:32
+msgctxt "header"
+msgid "Attach CD TOC"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:66 ../root/release/edit/tracklist.tt:478
+msgid "Attach Disc ID"
+msgstr ""
+
+#: ../root/cdtoc/index.tt:8
+msgid "Attached to releases"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:52
+#: ../root/admin/attributes/Attribute.js:72
+#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
+#: ../root/admin/attributes/Language.js:33
+#: ../root/admin/attributes/Script.js:33
+#: ../root/components/RelationshipsTable.js:336
+#: ../root/edit/details/AddRelationshipType.js:169
+#: ../root/edit/details/EditRelationshipType.js:297
+#: ../root/edit/details/RemoveRelationshipType.js:117
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
+#: ../root/utility/tableColumns.js:671
+msgid "Attributes"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397
+msgid "Auto-Editor"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:19
+#: ../root/cdtoc/attach_filter_release.tt:33 ../root/cdtoc/list.tt:13
+#: ../root/cdtoc/lookup.tt:47 ../root/release/edit/duplicates.tt:17
+#: ../root/release/edit/information.tt:222
+#: ../root/release_group/set_cover_art.tt:62
+#: ../root/components/list/ReleaseList.js:139
+#: ../root/edit/details/AddRelease.js:112
+#: ../root/edit/details/EditBarcodes.js:45
+#: ../root/edit/details/EditBarcodes.js:51
+#: ../root/edit/details/EditRelease.js:149
+#: ../root/edit/details/EditReleaseLabel.js:124
+#: ../root/edit/details/MergeReleases.js:242
+#: ../root/edit/details/historic/AddRelease.js:125
+#: ../root/edit/details/historic/EditReleaseEvents.js:113
+#: ../root/layout/components/sidebar/CDStubSidebar.js:71
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:128
+#: ../root/otherlookup/OtherLookupForm.js:62
+#: ../root/release_group/ReleaseGroupIndex.js:174
+#: ../root/report/ReleasesSameBarcode.js:40
+#: ../root/search/components/ReleaseResults.js:118
+msgid "Barcode"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:33
+msgid ""
+"Based on the above CD stub, we also found the following releases in "
+"MusicBrainz that may be related:"
+msgstr ""
+
+#: ../root/release/edit/duplicates.tt:4
+msgid ""
+"Based on the information you have provided, we have found the following "
+"similar release to already exist in MusicBrainz. If you wish to base your "
+"release on an existing release, select it below."
+msgstr ""
+
+#: ../root/artist/edit_form.tt:42 ../root/components/list/ArtistList.js:102
+#: ../root/search/components/ArtistResults.js:57
+msgid "Begin Area"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:38 ../root/components/forms.tt:212
+#: ../root/event/edit_form.tt:36 ../root/artist/utils.js:34
+#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
+#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
+#: ../root/edit/details/AddRemoveAlias.js:90
+#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
+#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
+#: ../root/edit/details/EditPlace.js:93
+#: ../root/layout/components/sidebar/AreaSidebar.js:58
+#: ../root/report/RecordingsWithFutureDates.js:34
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
+msgid "Begin date"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:95 ../root/search/error/InternalError.js:29
+msgid ""
+"Below is the error information. If you wish to file a bug report, you may do "
+"so at {bugs|our bug tracker}. The information below will help, so please be "
+"sure to include it!"
+msgstr ""
+
+#: ../root/layout.tt:117 ../root/layout/components/ExternalLinks.js:132
+#: ../root/layout/components/Footer.js:33
+msgid "Blog"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:128
+#: ../root/admin/PrivilegeSearch.js:121
+msgid "Bot"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:30
+msgid ""
+"Both Other and Uncommon are shown in the \"other\" section, but Uncommon "
+"should be used for scripts in Unicode which are unlikely to be used."
+msgstr ""
+
+#: ../root/layout.tt:125 ../root/layout/components/Footer.js:52
+msgid ""
+"Brought to you by {MeB|MetaBrainz Foundation} and our {spon|sponsors} and "
+"{supp|supporters}. Cover Art provided by the {caa|Cover Art Archive}."
+msgstr ""
+
+#: ../root/layout.tt:116 ../root/layout/components/Footer.js:32
+#: ../root/main/index.js:209
+msgid "Bug Tracker"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:6
+msgid "By default, the parser expects the following format:"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:21
+msgid "CD Stub found"
+msgstr ""
+
+#: ../root/cdstub/header.tt:5 ../root/cdstub/CDStubHeader.js:21
+msgid "CD stub by {artist}"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:248
+msgid "CD stub import"
+msgstr ""
+
+#: ../root/cdstub/layout.tt:2 ../root/cdstub/CDStubLayout.js:27
+msgid "CD stub “{title}” by {artist}"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:42
+msgid "Can be approved"
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:34 ../root/release/edit/layout.tt:59
+#: ../root/release/edit/tracklist.tt:117 ../root/area/AreaMerge.js:51
+#: ../root/artist/ArtistMerge.js:79 ../root/collection/CollectionMerge.js:193
+#: ../root/components/ConfirmLayout.js:46 ../root/edit/DeleteNote.js:72
+#: ../root/edit/ModifyNote.js:89 ../root/event/EventMerge.js:54
+#: ../root/instrument/InstrumentMerge.js:51 ../root/label/LabelMerge.js:51
+#: ../root/layout/components/MergeHelper.js:83 ../root/place/PlaceMerge.js:51
+#: ../root/recording/RecordingMerge.js:67 ../root/release/ReleaseMerge.js:68
+#: ../root/release_group/ReleaseGroupMerge.js:52
+#: ../root/series/SeriesMerge.js:51
+#: ../root/static/scripts/common/components/FilterForm.js:269
+#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:210
+#: ../root/static/scripts/edit/components/URLInputPopover.js:126
+#: ../root/static/scripts/relationship-editor/components/DialogButtons.js:28
+#: ../root/work/WorkMerge.js:65
+msgid "Cancel"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:26
+#: ../root/relationship/linktype/form.tt:31
+#: ../root/edit/details/AddRelationshipType.js:135
+#: ../root/edit/details/AddRelationshipType.js:148
+#: ../root/edit/details/EditRelationshipType.js:265
+#: ../root/edit/details/EditRelationshipType.js:275
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:169
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:177
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:94
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:103
+msgid "Cardinality of {entity_placeholder}"
+msgstr ""
+
+#: ../root/release/edit/information.tt:194
+msgid "Cat. No:"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:18
+#: ../root/cdtoc/attach_filter_release.tt:32 ../root/cdtoc/list.tt:12
+#: ../root/cdtoc/lookup.tt:46 ../root/release/edit/duplicates.tt:16
+#: ../root/release_group/set_cover_art.tt:56
+#: ../root/edit/details/MergeReleases.js:241
+#: ../root/recording/RecordingIndex.js:62
+#: ../root/release_group/ReleaseGroupIndex.js:173
+#: ../root/search/components/ReleaseResults.js:117
+#: ../root/utility/tableColumns.js:487 ../root/utility/tableColumns.js:492
+msgid "Catalog#"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:53
+#: ../root/relationship/linkattributetype/form.tt:7
+#: ../root/relationship/linktype/form.tt:7
+#: ../root/admin/attributes/Attribute.js:82
+#: ../root/edit/details/AddRelationshipAttribute.js:50
+#: ../root/edit/details/EditRelationshipAttribute.js:93
+#: ../root/edit/details/EditRelationshipType.js:241
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:122
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:162
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:58
+msgid "Child order"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:114
+msgid "Click Edit to edit the recording associations for this disc."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:237 ../root/release/edit/tracklist.tt:266
+msgid "Close"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditHeader.js:155
+#: ../root/edit/components/EditSidebar.js:59
+msgid "Closed"
+msgstr ""
+
+#: ../root/artist/split.tt:36
+msgid "Collaborators on this artist"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:301
+msgid "Collapse medium"
+msgstr ""
+
+#: ../root/cdstub/index.tt:3 ../root/release/add_cover_art.tt:69
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:71 ../root/cdstub/CDStubIndex.js:36
+msgid "Comment"
+msgstr ""
+
+#: ../root/place/edit_form.tt:28 ../root/edit/details/AddPlace.js:67
+#: ../root/edit/details/EditPlace.js:86
+#: ../root/layout/components/sidebar/PlaceSidebar.js:99
+msgid "Coordinates"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:149
+msgid "Copy all track artist credits to associated recordings."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:143
+msgid "Copy all track titles to associated recordings."
+msgstr ""
+
+#: ../root/components/forms.tt:242
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:122
+msgid "Copy name"
+msgstr ""
+
+#: ../root/release/edit/information.tt:83
+msgid "Copy the release artist credit to the release group"
+msgstr ""
+
+#: ../root/release/edit/information.tt:68
+msgid "Copy the release title to the release group"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:16
+#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
+#: ../root/cdtoc/lookup.tt:44 ../root/release/edit/duplicates.tt:14
+#: ../root/release/edit/information.tt:156
+#: ../root/release_group/set_cover_art.tt:41
+#: ../root/edit/details/EditReleaseLabel.js:113
+#: ../root/edit/details/MergeReleases.js:239
+#: ../root/edit/details/historic/AddRelease.js:122
+#: ../root/edit/details/historic/EditReleaseEvents.js:110
+#: ../root/recording/RecordingIndex.js:60
+#: ../root/release_group/ReleaseGroupIndex.js:171
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/static/scripts/common/components/FilterForm.js:187
+#: ../root/utility/tableColumns.js:509 ../root/utility/tableColumns.js:521
+msgid "Country"
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:67
+#: ../root/components/EntityTabs.js:114 ../root/release/CoverArt.js:57
+#: ../root/user/UserProfile.js:51
+msgid "Cover Art"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:85
+msgid "Creating edit..."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:81
+msgid "Custom delimiter"
+msgstr ""
+
+#: ../root/release/edit/information.tt:148
+#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:253
+#: ../root/static/scripts/edit/components/PartialDateInput.js:186
+msgid "DD"
+msgstr ""
+
+#: ../root/medium/tracklist.tt:37 ../root/release/edit/tracklist.tt:466
+#: ../root/medium/MediumTracklist.js:53
+#: ../root/static/scripts/release/components/MediumTable.js:128
+msgid "Data Tracks"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:16
+#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
+#: ../root/cdtoc/lookup.tt:43 ../root/release/edit/duplicates.tt:13
+#: ../root/release/edit/information.tt:130
+#: ../root/release_group/set_cover_art.tt:37
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:25
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:30
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:26
+#: ../root/components/RelationshipsTable.js:333
+#: ../root/edit/details/EditReleaseLabel.js:105
+#: ../root/edit/details/MergeReleases.js:239
+#: ../root/edit/details/historic/AddRelease.js:121
+#: ../root/edit/details/historic/EditReleaseEvents.js:109
+#: ../root/elections/ElectionVotes.js:28
+#: ../root/layout/components/sidebar/EventSidebar.js:61
+#: ../root/recording/RecordingIndex.js:60
+#: ../root/release_group/ReleaseGroupIndex.js:171
+#: ../root/search/components/EventResults.js:74
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:106
+#: ../root/static/scripts/common/components/FilterForm.js:225
+#: ../root/utility/tableColumns.js:284 ../root/utility/tableColumns.js:289
+#: ../root/utility/tableColumns.js:515 ../root/utility/tableColumns.js:521
+msgid "Date"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:34 ../root/components/forms.tt:208
+#: ../root/event/edit_form.tt:32
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:184
+msgid "Date Period"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:36 ../root/components/forms.tt:210
+#: ../root/event/edit_form.tt:34
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:186
+msgid ""
+"Dates are in the format YYYY-MM-DD. Partial dates such as YYYY-MM or just "
+"YYYY are OK, or you can omit the date entirely."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:61 ../root/doc/edit_type.tt:23
+#: ../root/instrument/edit_form.tt:13
+#: ../root/relationship/linkattributetype/form.tt:15
+#: ../root/relationship/linktype/form.tt:20
+#: ../root/admin/attributes/Attribute.js:80
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:33
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:42
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:28
+#: ../root/collection/CollectionIndex.js:189
+#: ../root/edit/details/AddInstrument.js:65
+#: ../root/edit/details/AddRelationshipAttribute.js:42
+#: ../root/edit/details/AddRelationshipType.js:74
+#: ../root/edit/details/EditInstrument.js:71
+#: ../root/edit/details/EditRelationshipAttribute.js:70
+#: ../root/edit/details/EditRelationshipAttribute.js:76
+#: ../root/edit/details/EditRelationshipType.js:196
+#: ../root/edit/details/EditRelationshipType.js:202
+#: ../root/edit/details/EditUrl.js:62
+#: ../root/edit/details/RemoveRelationshipAttribute.js:39
+#: ../root/edit/details/RemoveRelationshipType.js:49
+#: ../root/instrument/InstrumentIndex.js:34
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:110
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:146
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
+#: ../root/search/components/InstrumentResults.js:55
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:209
+#: ../root/utility/tableColumns.js:681
+msgid "Description"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:28 ../root/components/EntityTabs.js:146
+#: ../root/elections/ElectionDetails.js:29 ../root/entity/Details.js:91
+#: ../root/entity/Details.js:93
+msgid "Details"
+msgstr ""
+
+#: ../root/area/edit_form.tt:10 ../root/artist/edit_form.tt:14
+#: ../root/event/edit_form.tt:13 ../root/instrument/edit_form.tt:10
+#: ../root/label/edit_form.tt:13 ../root/place/edit_form.tt:13
+#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:258
+#: ../root/release_group/edit_form.tt:15 ../root/series/edit_form.tt:13
+#: ../root/work/edit_form.tt:13 ../root/edit/details/AddArea.js:54
+#: ../root/edit/details/AddArtist.js:62 ../root/edit/details/AddEvent.js:44
+#: ../root/edit/details/AddGenre.js:41 ../root/edit/details/AddInstrument.js:51
+#: ../root/edit/details/AddLabel.js:54 ../root/edit/details/AddPlace.js:43
+#: ../root/edit/details/AddRelease.js:75
+#: ../root/edit/details/AddReleaseGroup.js:57
+#: ../root/edit/details/AddSeries.js:38
+#: ../root/edit/details/AddStandaloneRecording.js:53
+#: ../root/edit/details/AddWork.js:41 ../root/edit/details/EditArea.js:66
+#: ../root/edit/details/EditArtist.js:79 ../root/edit/details/EditEvent.js:47
+#: ../root/edit/details/EditGenre.js:44
+#: ../root/edit/details/EditInstrument.js:51
+#: ../root/edit/details/EditLabel.js:65 ../root/edit/details/EditPlace.js:52
+#: ../root/edit/details/EditRecording.js:53
+#: ../root/edit/details/EditRelease.js:93
+#: ../root/edit/details/EditReleaseGroup.js:50
+#: ../root/edit/details/EditSeries.js:48 ../root/edit/details/EditWork.js:59
+#: ../root/static/scripts/genre/components/GenreEditForm.js:151
+msgid "Disambiguation"
+msgstr ""
+
+#: ../root/release/discids.tt:8 ../root/cdtoc/CDTocInfo.js:32
+#: ../root/edit/details/AddDiscId.js:34 ../root/edit/details/MoveDiscId.js:26
+#: ../root/edit/details/RemoveDiscId.js:31
+#: ../root/edit/details/SetTrackLengths.js:54
+#: ../root/edit/details/historic/AddDiscId.js:27
+#: ../root/edit/details/historic/MoveDiscId.js:21
+#: ../root/edit/details/historic/RemoveDiscId.js:23
+#: ../root/otherlookup/OtherLookupForm.js:112
+#: ../root/utility/tableColumns.js:199 ../root/utility/tableColumns.js:204
+msgid "Disc ID"
+msgstr ""
+
+#: ../root/cdstub/index.tt:10 ../root/cdstub/CDStubIndex.js:44
+msgid "Disc ID information"
+msgstr ""
+
+#: ../root/cdtoc/index.tt:3
+msgid "Disc ID “{discid}
”"
+msgstr ""
+
+#: ../root/cdtoc/index.tt:1
+msgid "Disc ID “{discid}”"
+msgstr ""
+
+#: ../root/release/discids.tt:1 ../root/release/discids.tt:3
+#: ../root/components/EntityTabs.js:104 ../root/report/ReportsIndex.js:624
+msgid "Disc IDs"
+msgstr ""
+
+#: ../root/release/edit/duplicates.tt:40
+msgid "Do not use any of the above releases as a starting point"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:65
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
+#: ../root/edit/details/AddRelationshipType.js:187
+#: ../root/edit/details/EditRelationshipType.js:327
+#: ../root/layout/components/BottomMenu.js:293
+#: ../root/layout/components/Search.js:51
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
+#: ../root/search/components/SearchForm.js:56
+msgid "Documentation"
+msgstr ""
+
+#: ../root/layout.tt:112 ../root/layout/components/Footer.js:26
+msgid "Donate"
+msgstr ""
+
+#: ../root/release/edit/macros.tt:54
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:165
+#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:219
+#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:64
+#: ../root/static/scripts/edit/components/URLInputPopover.js:134
+#: ../root/static/scripts/relationship-editor/components/DialogButtons.js:37
+msgid "Done"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:158
+msgid ""
+"Each track in the MusicBrainz database has to be linked to a recording, "
+"choose the appropriate recording or look for it in the database."
+msgstr ""
+
+#: ../root/cdtoc/list.tt:18 ../root/entity/edit.tt:1
+#: ../root/release/discids.tt:12 ../root/release/edit/recordings.tt:73
+#: ../root/release/edit/recordings.tt:109
+#: ../root/account/applications/ApplicationList.js:41
+#: ../root/admin/attributes/Attribute.js:102
+#: ../root/admin/attributes/Language.js:64
+#: ../root/admin/attributes/Script.js:61
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:45
+#: ../root/collection/CollectionHeader.js:86
+#: ../root/collection/EditCollection.js:32
+#: ../root/components/Aliases/AliasTableRow.js:61
+#: ../root/components/Aliases/ArtistCreditList.js:78
+#: ../root/components/Aliases/ArtistCreditList.js:79
+#: ../root/components/EntityTabs.js:153
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:96
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:68
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:133
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:119
+#: ../root/release/CoverArt.js:110
+#: ../root/static/scripts/edit/components/ArtistCreditEditor.js:444
+#: ../root/user/UserCollections.js:134
+msgid "Edit"
+msgstr ""
+
+#: ../root/artist/edit_credit.tt:1 ../root/artist/edit_credit.tt:6
+msgid "Edit Artist Credit"
+msgstr ""
+
+#: ../root/admin/attributes/edit.tt:1 ../root/admin/attributes/edit.tt:3
+msgid "Edit Attribute"
+msgstr ""
+
+#: ../root/release/edit_cover_art.tt:1 ../root/release/edit_cover_art.tt:4
+msgid "Edit Cover Art"
+msgstr ""
+
+#: ../root/forms/edit-note.tt:2 ../root/release/edit/editnote.tt:27
+#: ../root/release/edit/layout.tt:18
+#: ../root/static/scripts/edit/components/EnterEditNote.js:48
+msgid "Edit Note"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Edit Note Authors"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Edit Note Content"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/edit.tt:1
+#: ../root/relationship/linkattributetype/edit.tt:3
+msgid "Edit Relationship Attribute"
+msgstr ""
+
+#: ../root/relationship/linktype/edit.tt:1
+#: ../root/relationship/linktype/edit.tt:3
+msgid "Edit Relationship Type"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:18 ../root/doc/edit_types.tt:1
+#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:99
+#: ../root/layout/components/BottomMenu.js:315
+msgid "Edit Types"
+msgstr ""
+
+#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:26
+#: ../root/static/scripts/edit/components/URLInputPopover.js:146
+msgid "Edit URL"
+msgstr ""
+
+#: ../root/components/forms.tt:36 ../root/components/forms.tt:40
+#: ../root/static/scripts/edit/components/EnterEditNote.js:77
+msgid "Edit note:"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Edited entity"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:48
+#: ../root/admin/components/UserList.js:29
+#: ../root/layout/components/Search.js:48
+#: ../root/report/components/EditorList.js:63
+#: ../root/search/components/SearchForm.js:47
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:105
+msgid "Editor"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Editor Flag"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:45
+msgid "Enable vinyl track numbers"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:56 ../root/components/list/ArtistList.js:112
+#: ../root/search/components/ArtistResults.js:59
+msgid "End Area"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:51 ../root/components/forms.tt:214
+#: ../root/event/edit_form.tt:38 ../root/artist/utils.js:65
+#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
+#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
+#: ../root/edit/details/AddRemoveAlias.js:97
+#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
+#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
+#: ../root/edit/details/EditPlace.js:101
+#: ../root/elections/ElectionTable/index.js:25
+#: ../root/layout/components/sidebar/AreaSidebar.js:64
+#: ../root/report/RecordingsWithFutureDates.js:39
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
+msgid "End date"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:112
+msgid "Endpoint:"
+msgstr ""
+
+#: ../root/components/forms.tt:258 ../root/components/forms.tt:283
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:113
+msgid "English"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:3
+msgid "Enter a tracklist below:"
+msgstr ""
+
+#: ../root/place/edit_form.tt:50
+msgid ""
+"Enter coordinates manually or click the map to get coordinates from the "
+"marker. If you’re too far out, clicking will zoom instead."
+msgstr ""
+
+#: ../root/components/forms.tt:51 ../root/release/add_cover_art.tt:170
+#: ../root/release/edit/layout.tt:58
+#: ../root/static/scripts/edit/components/EnterEdit.js:74
+msgid "Enter edit"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:86
+msgid ""
+"Enter the delimiter that separates the track name from the artist name "
+"(valid {url|regular expressions} are accepted)."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Entered"
+msgstr ""
+
+#: ../root/components/forms.tt:30
+msgid ""
+"Entering an {note|edit note} that describes where you got your information "
+"is highly recommended. Not only does it make it clear where you got your "
+"information, but it can also encourage other users to vote on your edit "
+"— thus making your edit get applied faster."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:37 ../root/admin/attributes/Attribute.js:36
+msgid "Entity type"
+msgstr ""
+
+#: ../root/components/forms.tt:32
+#: ../root/static/scripts/edit/components/EnterEditNote.js:63
+msgid ""
+"Even just providing a URL or two is helpful! For more suggestions, see "
+"{doc_how_to|our guide for writing good edit notes}."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Event.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:52
+#: ../root/components/list/EventList.js:75 ../root/edit/details/AddEvent.js:27
+#: ../root/edit/details/EditEvent.js:35 ../root/layout/components/Search.js:27
+#: ../root/report/components/EventList.js:53
+#: ../root/search/components/SearchForm.js:51
+#: ../root/static/scripts/common/constants.js:37
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:54
+#: ../root/user/UserProfile.js:52
+msgid "Event"
+msgstr ""
+
+#: ../root/event/edit_form.tt:11
+msgid "Event Details"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:71
+#: ../root/edit/details/EditRelationshipType.js:335
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:240
+msgid "Examples"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:247
+msgid "Existing medium"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:151
+msgid "Expand"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:301
+msgid "Expand medium"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:38
+msgid "Expire action"
+msgstr ""
+
+#: ../root/area/edit_form.tt:22 ../root/artist/edit_form.tt:70
+#: ../root/event/edit_form.tt:46 ../root/instrument/edit_form.tt:32
+#: ../root/label/edit_form.tt:41 ../root/place/edit_form.tt:37
+#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:268
+#: ../root/release_group/edit_form.tt:23 ../root/series/edit_form.tt:26
+#: ../root/work/edit_form.tt:90
+#: ../root/static/scripts/genre/components/GenreEditForm.js:160
+msgid "External Links"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:48
+msgid "File:"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:126
+msgid "Find Relationships"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:64
+msgid "Finish"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:17
+msgid ""
+"First enter all track information, including titles and artist credits, in "
+"order to edit their recordings."
+msgstr ""
+
+#: ../root/artist/edit_form.tt:3 ../root/recording/edit_form.tt:17
+#: ../root/release_group/edit_form.tt:5 ../root/series/edit_form.tt:3
+msgid ""
+"For more information, check the {doc_doc|documentation} and {doc_styleguide|"
+"style guidelines}."
+msgstr ""
+
+#: ../root/event/edit_form.tt:3 ../root/label/edit_form.tt:3
+#: ../root/place/edit_form.tt:3 ../root/work/edit_form.tt:4
+#: ../root/search/components/SearchForm.js:106
+msgid "For more information, check the {doc_doc|documentation}."
+msgstr ""
+
+#: ../root/cdtoc/list.tt:9 ../root/release/edit/duplicates.tt:11
+#: ../root/release/edit/tracklist.tt:305
+#: ../root/release_group/set_cover_art.tt:46
+#: ../root/components/list/ReleaseList.js:98
+#: ../root/edit/details/AddMedium.js:136 ../root/edit/details/EditMedium.js:485
+#: ../root/edit/details/EditReleaseLabel.js:131
+#: ../root/edit/details/MergeReleases.js:237
+#: ../root/edit/details/historic/AddRelease.js:126
+#: ../root/edit/details/historic/EditReleaseEvents.js:114
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:137
+#: ../root/release_group/ReleaseGroupIndex.js:169
+#: ../root/report/components/CDTocList.js:49
+#: ../root/search/components/ReleaseResults.js:113
+msgid "Format"
+msgstr ""
+
+#: ../root/layout.tt:114 ../root/layout/components/Footer.js:28
+#: ../root/main/index.js:212
+msgid "Forums"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:13
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:198
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:65
+msgid "Forward link phrase:"
+msgstr ""
+
+#: ../root/components/with-pager.tt:5 ../root/components/PaginatedResults.js:52
+msgid "Found {n} result"
+msgid_plural "Found {n} results"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/with-pager.tt:7 ../root/components/PaginatedResults.js:58
+msgid "Found {n} result for \"{q}\""
+msgid_plural "Found {n} results for \"{q}\""
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/forms.tt:260 ../root/components/forms.tt:285
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:115
+msgid "French"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:12 ../root/admin/attributes/form.tt:26
+#: ../root/admin/attributes/Language.js:45
+#: ../root/admin/attributes/Script.js:44
+msgid "Frequency"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:14 ../root/admin/attributes/form.tt:28
+msgid "Frequency notes:"
+msgstr ""
+
+#: ../root/cdstub/index.tt:30 ../root/cdstub/CDStubIndex.js:59
+#: ../root/cdtoc/CDTocInfo.js:27
+msgid "Full TOC:"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:17 ../root/components/list/ArtistList.js:87
+#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
+#: ../root/layout/components/sidebar/ArtistSidebar.js:89
+#: ../root/search/components/ArtistResults.js:54
+#: ../root/static/scripts/account/components/EditProfileForm.js:237
+#: ../root/user/UserProfile.js:268
+msgid "Gender"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Genre.pm:7
+#: ../root/edit/details/AddGenre.js:24 ../root/edit/details/EditGenre.js:28
+#: ../root/genre/GenreHeader.js:29 ../root/search/components/TagResults.js:52
+#: ../root/static/scripts/common/constants.js:38
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:56
+#: ../root/tag/TagIndex.js:36
+msgid "Genre"
+msgstr ""
+
+#: ../root/components/forms.tt:228 ../root/release/edit/information.tt:14
+#: ../root/release/edit/tracklist.tt:527
+#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:153
+msgid "Guess case"
+msgstr ""
+
+#: ../root/components/forms.tt:254
+msgctxt "button/menu"
+msgid "Guess case"
+msgstr ""
+
+#: ../root/components/forms.tt:249
+msgctxt "header"
+msgid "Guess case"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:320
+msgid "Guess case medium title"
+msgstr ""
+
+#: ../root/components/forms.tt:232 ../root/release/edit/information.tt:16
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:111
+#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:26
+msgid "Guess case options"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:224
+msgid "Guess case track"
+msgstr ""
+
+#: ../root/components/forms.tt:230 ../root/release/edit/information.tt:15
+#: ../root/release/edit/tracklist.tt:225
+#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:159
+msgid "Guess feat. artists"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:528
+msgid "Guess feat. artists from track titles"
+msgstr ""
+
+#: ../root/components/forms.tt:241
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:115
+msgid "Guess sort name"
+msgstr ""
+
+#: ../root/components/forms.tt:124
+msgid "HH:MM"
+msgstr ""
+
+#: ../root/instrument/edit_form.tt:20
+msgid "HTML tags allowed in the description: {tag_list}."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:17
+msgid ""
+"Hidden is used by default for ancient languages and languages only in ISO "
+"639-3 (until requested by a user)."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:31
+msgid "Hidden should be used for scripts not in Unicode."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:16
+msgid ""
+"Hidden should be used for sign languages and languages with no ISO 639-3 "
+"code."
+msgstr ""
+
+#: ../root/doc/edit_types.tt:5 ../root/doc/edit_types.tt:19
+#: ../root/doc/edit_types.tt:21 ../lib/MusicBrainz/Server/Edit/Historic.pm:10
+msgid "Historic"
+msgstr ""
+
+#: ../root/release/edit/information.tt:339
+msgid "I confirm that this is the barcode as it appears on the release."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:390
+msgid "I confirm this is a correct medium format/packaging combination."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:413
+msgid "I confirm this is an intentional use of Various Artists on tracks."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:314
+msgid "I don’t know"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:426
+msgid "I don’t know the tracklist for this medium."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:280
+msgid "I have no information about this release’s media and tracklist."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/admin/attributes/Attribute.js:78
+#: ../root/admin/attributes/Language.js:39
+#: ../root/admin/attributes/Script.js:40
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
+msgid "ID"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/AddArtist.js:136 ../root/edit/details/AddLabel.js:102
+#: ../root/layout/components/sidebar/SidebarIpis.js:18
+msgid "IPI code"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/EditArtist.js:162 ../root/edit/details/EditLabel.js:131
+msgid "IPI codes"
+msgstr ""
+
+#: ../root/components/forms.tt:333
+msgid ""
+"IPI codes are assigned by CISAC to “interested parties” in musical rights "
+"management. Check {ipi_doc|the documentation} for more info."
+msgstr ""
+
+#: ../root/layout.tt:115
+msgid "IRC"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/AddArtist.js:145 ../root/edit/details/AddLabel.js:111
+#: ../root/layout/components/sidebar/SidebarIsnis.js:22
+msgid "ISNI code"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/EditArtist.js:170 ../root/edit/details/EditLabel.js:140
+msgid "ISNI codes"
+msgstr ""
+
+#: ../root/components/forms.tt:342
+msgid ""
+"ISNI codes are an ISO standard used to uniquely identify persons and "
+"organizations. Check {isni_doc|the documentation} for more info."
+msgstr ""
+
+#: ../root/area/edit_form.tt:12 ../root/edit/details/AddArea.js:68
+#: ../root/edit/details/EditArea.js:82
+#: ../root/layout/components/sidebar/AreaSidebar.js:71
+msgid "ISO 3166-1"
+msgstr ""
+
+#: ../root/area/edit_form.tt:13 ../root/edit/details/AddArea.js:75
+#: ../root/edit/details/EditArea.js:89
+#: ../root/layout/components/sidebar/AreaSidebar.js:81
+msgid "ISO 3166-2"
+msgstr ""
+
+#: ../root/area/edit_form.tt:14 ../root/edit/details/AddArea.js:82
+#: ../root/edit/details/EditArea.js:96
+#: ../root/layout/components/sidebar/AreaSidebar.js:91
+msgid "ISO 3166-3"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:8 ../root/admin/attributes/Language.js:41
+msgid "ISO 639-1"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:9 ../root/admin/attributes/Language.js:42
+msgid "ISO 639-2/B"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:10 ../root/admin/attributes/Language.js:43
+msgid "ISO 639-2/T"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:11 ../root/admin/attributes/Language.js:44
+msgid "ISO 639-3"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:24 ../root/admin/attributes/Script.js:42
+msgid "ISO code"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:25 ../root/admin/attributes/Script.js:43
+msgid "ISO number"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:45 ../root/edit/details/RemoveIsrc.js:27
+#: ../root/otherlookup/OtherLookupForm.js:72
+#: ../root/report/IsrcsWithManyRecordings.js:58
+#: ../root/static/scripts/common/components/IsrcList.js:26
+msgid "ISRC"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:45 ../root/report/ReportsIndex.js:606
+#: ../root/search/components/RecordingResults.js:144
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:721
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:411
+#: ../root/static/scripts/common/components/IsrcList.js:44
+#: ../root/utility/tableColumns.js:694
+msgid "ISRCs"
+msgstr ""
+
+#: ../root/work/edit_form.tt:16 ../root/edit/details/AddWork.js:47
+#: ../root/edit/details/EditWork.js:66 ../root/edit/details/RemoveIswc.js:27
+#: ../root/otherlookup/OtherLookupForm.js:77
+#: ../root/report/IswcsWithManyWorks.js:49
+#: ../root/search/components/WorkResults.js:57
+#: ../root/static/scripts/common/components/IswcList.js:26
+#: ../root/utility/tableColumns.js:708
+msgid "ISWC"
+msgstr ""
+
+#: ../root/work/edit_form.tt:16 ../root/report/ReportsIndex.js:615
+#: ../root/static/scripts/common/components/IswcList.js:44
+msgid "ISWCs"
+msgstr ""
+
+#: ../root/event/edit_form.tt:26
+msgid ""
+"If needed, the characters \"[\", \"]\", and \"&\" can be escaped using the "
+"HTML entities \"[\", \"]\", and \"&\" respectively."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:134
+msgid ""
+"If the {recording_doc|recording titles/artists} listed above are incorrect, "
+"you can check the boxes below to replace them with the track titles/artists "
+"for this release."
+msgstr ""
+
+#: ../root/release/edit/information.tt:300
+msgid ""
+"If this is an Amazon ASIN, please do not enter it in the catalog number "
+"field, but add it as a URL relationship later."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:160
+msgid ""
+"If we do not have a recording for this track in the database yet, please "
+"select \"Add a new recording\" below."
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:49
+msgid "If you can't find what you're looking for, you can add a new release:"
+msgstr ""
+
+#: ../root/release/edit/information.tt:330
+msgid ""
+"If you do not know whether the release has a barcode or not, just leave this "
+"blank."
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:75
+msgid ""
+"If you don't see the release you are looking for, you can still add a new "
+"one, using this CD TOC:"
+msgstr ""
+
+#: ../root/components/forms.tt:336 ../root/components/forms.tt:345
+msgid "If you don’t know the code for this entity, just leave the field blank."
+msgstr ""
+
+#: ../root/release/edit/information.tt:54
+msgid ""
+"If you don’t select an existing release group, a new one will be added with "
+"the types selected below."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:5
+msgid "If you have a tracklist you can copy and paste, you can input it here."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:15
+msgid ""
+"If you select “{enable_vinyl_numbers}”, the parser will also accept strings "
+"such as “A1” as track numbers."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:10
+msgid ""
+"If you want to save an edit search for future use, you can just bookmark it!"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:393
+msgid ""
+"If you’re sure the combination of “Digital Media” and the selected packaging "
+"is correct, confirm it above. Otherwise, please fix the data."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:353
+msgid ""
+"If you’re sure the entered medium title is correct, confirm it above. "
+"Otherwise, please fix the data."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:416
+msgid ""
+"If you’re sure the use of Various Artists is correct, confirm it above. "
+"Otherwise, please fix the data."
+msgstr ""
+
+#: ../root/components/common-macros.tt:60 ../root/components/Artwork.js:50
+msgid "Image not available, please try again later."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:28 ../root/cdstub/ImportCDStub.js:36
+msgid "Import CD Stub"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../lib/MusicBrainz/Server/Edit/Instrument.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:50
+#: ../root/components/list/InstrumentList.js:47
+#: ../root/edit/details/AddInstrument.js:29
+#: ../root/edit/details/EditInstrument.js:37
+#: ../root/instrument/InstrumentLayout.js:37
+#: ../root/layout/components/Search.js:36
+#: ../root/report/components/InstrumentList.js:47
+#: ../root/search/components/SearchForm.js:49
+#: ../root/static/scripts/common/constants.js:39
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:58
+#: ../root/user/UserProfile.js:53
+msgid "Instrument"
+msgstr ""
+
+#: ../root/instrument/edit_form.tt:8
+msgid "Instrument Details"
+msgstr ""
+
+#: ../root/components/common-macros.tt:486
+msgid "Javascript is required for this page to work properly."
+msgstr ""
+
+#: ../root/components/forms.tt:267 ../root/components/forms.tt:292
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:133
+msgid "Keep all-uppercase words uppercased"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:7
+msgid ""
+"Keep in mind that recording durations are {doc_link|recalculated from "
+"tracks} once the duration of a track changes. As such, if you correct the "
+"duration of a track whose recording is only used in this release, just reuse "
+"the old recording, don’t add a new one. If the recording is also used "
+"elsewhere and the durations are significantly different, consider adding a "
+"new recording instead."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:502
+msgid ""
+"Keep in mind that unselecting this will remove the track if the medium has a "
+"disc ID! If you unselect it by mistake, please readd the pregap track before "
+"submitting."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:517
+msgid ""
+"Keep in mind that unselecting this will remove the tracks if the medium has "
+"a disc ID! If you unselect it by mistake, please readd the data tracks "
+"before submitting."
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:17
+#: ../root/cdtoc/attach_filter_release.tt:31 ../root/cdtoc/list.tt:11
+#: ../root/cdtoc/lookup.tt:45 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/duplicates.tt:15
+#: ../root/release/edit/information.tt:179
+#: ../root/release_group/set_cover_art.tt:52
+#: ../lib/MusicBrainz/Server/Edit/Label.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:43
+#: ../root/components/list/LabelList.js:54 ../root/edit/details/AddLabel.js:31
+#: ../root/edit/details/AddReleaseLabel.js:35
+#: ../root/edit/details/EditLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:51
+#: ../root/edit/details/MergeReleases.js:240
+#: ../root/edit/details/RemoveReleaseLabel.js:31
+#: ../root/edit/details/historic/AddRelease.js:123
+#: ../root/edit/details/historic/EditReleaseEvents.js:111
+#: ../root/label/LabelHeader.js:25 ../root/layout/components/Search.js:37
+#: ../root/recording/RecordingIndex.js:61
+#: ../root/release_group/ReleaseGroupIndex.js:172
+#: ../root/report/ReleaseLabelSameArtist.js:31
+#: ../root/report/components/LabelList.js:47
+#: ../root/report/components/LabelUrlList.js:35
+#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/SearchForm.js:42
+#: ../root/static/scripts/common/components/FilterForm.js:168
+#: ../root/static/scripts/common/constants.js:40
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:60
+#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:538
+#: ../root/utility/tableColumns.js:543
+msgid "Label"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Label Area"
+msgstr ""
+
+#: ../root/label/edit_form.tt:10
+msgid "Label Details"
+msgstr ""
+
+#: ../root/label/edit_form.tt:28 ../root/edit/details/AddLabel.js:94
+#: ../root/edit/details/EditLabel.js:85
+#: ../root/layout/components/sidebar/LabelSidebar.js:83
+msgid "Label code"
+msgstr ""
+
+#: ../root/release/edit/information.tt:114
+#: ../root/admin/attributes/Language.js:31
+#: ../root/admin/attributes/Language.js:34
+#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
+#: ../root/edit/details/EditRelease.js:113
+#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:191
+#: ../root/report/IswcsWithManyWorks.js:54
+#: ../root/search/components/ReleaseResults.js:119
+#: ../root/utility/tableColumns.js:559
+msgid "Language"
+msgstr ""
+
+#: ../root/layout.tt:139 ../root/layout/components/Footer.js:85
+msgid "Last replication packet received at {datetime}"
+msgstr ""
+
+#: ../root/cdstub/cdstub.tt:9 ../root/recording/edit_form.tt:35
+#: ../root/recording/edit_form.tt:38 ../root/release/discids.tt:10
+#: ../root/release/edit/tracklist.tt:164 ../root/release/edit/tracklist.tt:454
+#: ../root/cdstub/CDStubInfo.js:29 ../root/cdtoc/AttachCDTocConfirmation.js:72
+#: ../root/cdtoc/CDTocInfo.js:54 ../root/components/RelationshipsTable.js:338
+#: ../root/components/list/RecordingList.js:115
+#: ../root/edit/details/AddStandaloneRecording.js:59
+#: ../root/edit/details/EditMedium.js:317
+#: ../root/edit/details/EditMedium.js:321
+#: ../root/edit/details/EditRecording.js:61
+#: ../root/edit/details/EditRecording.js:69
+#: ../root/edit/details/historic/AddRelease.js:91
+#: ../root/edit/details/historic/AddTrackKV.js:54 ../root/isrc/Index.js:68
+#: ../root/layout/components/sidebar/RecordingSidebar.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:146
+#: ../root/recording/RecordingIndex.js:55
+#: ../root/report/IsrcsWithManyRecordings.js:61
+#: ../root/report/components/CDTocList.js:54
+#: ../root/search/components/RecordingResults.js:142
+#: ../root/static/scripts/release/components/MediumTable.js:89
+msgid "Length"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:54
+msgid "Lines contain track artists"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:31
+msgid "Lines start with a track number"
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:15
+msgid "Loading edit previews..."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397
+msgid "Location Editor"
+msgstr ""
+
+#: ../root/components/common-macros.tt:421
+#: ../root/components/RequestLogin.js:23
+msgid "Log in"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:15
+#: ../root/edit/details/AddRelationshipType.js:121
+#: ../root/edit/details/EditRelationshipType.js:233
+#: ../root/edit/details/RemoveRelationshipType.js:104
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:208
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:79
+msgid "Long link phrase:"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:186
+msgid "Looking for suggested recordings..."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:3 ../root/cdtoc/lookup.tt:4
+msgid "Lookup CD"
+msgstr ""
+
+#: ../root/release/edit/information.tt:141
+#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:252
+#: ../root/static/scripts/edit/components/PartialDateInput.js:174
+msgid "MM"
+msgstr ""
+
+#: ../root/components/forms.tt:15 ../root/components/forms.tt:20
+#: ../root/static/scripts/edit/components/EnterEdit.js:63
+msgid "Make all edits votable."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:246
+msgid "Manual entry"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:5
+msgid "Matching CDs"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:41 ../root/components/common-macros.tt:503
+#: ../lib/MusicBrainz/Server/Edit/Medium.pm:8
+#: ../root/cdtoc/AttachCDTocConfirmation.js:65
+#: ../root/cdtoc/SetTracklistDurations.js:56
+#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/RemoveDiscId.js:25
+#: ../root/edit/details/RemoveMedium.js:71
+#: ../root/edit/details/SetTrackLengths.js:40
+#: ../root/search/components/RecordingResults.js:148
+#: ../root/static/scripts/common/utility/mediumFormatName.js:14
+msgid "Medium"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:318
+msgid "Medium title:"
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:30
+#: ../root/layout/components/MergeHelper.js:71
+#: ../root/layout/components/sidebar/MergeLink.js:34
+msgctxt "button/link"
+msgid "Merge"
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:3 ../root/layout/components/MergeHelper.js:30
+msgid "Merge Process"
+msgstr ""
+
+#: ../root/cdtoc/list.tt:63 ../root/release/discids.tt:45
+msgid "Move"
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:1 ../root/cdtoc/move_search.tt:2
+msgid "Move Disc ID"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:44
+msgid "Move file down"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:42
+msgid "Move file up"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:328
+msgid "Move medium down"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:329
+msgid "Move medium up"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:197
+msgid "Move track down"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:201
+msgid "Move track up"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:7 ../root/admin/attributes/form.tt:23
+#: ../root/admin/attributes/form.tt:58 ../root/components/forms.tt:226
+#: ../root/relationship/linkattributetype/form.tt:12
+#: ../root/relationship/linktype/form.tt:12
+#: ../root/relationship/linktype/form.tt:77
+#: ../root/relationship/linktype/form.tt:107
+#: ../root/admin/attributes/Attribute.js:79
+#: ../root/admin/attributes/Language.js:40
+#: ../root/admin/attributes/Script.js:41
+#: ../root/components/Aliases/ArtistCreditList.js:50
+#: ../root/components/list/RecordingList.js:97
+#: ../root/edit/details/AddArea.js:41 ../root/edit/details/AddArtist.js:51
+#: ../root/edit/details/AddEvent.js:38 ../root/edit/details/AddGenre.js:35
+#: ../root/edit/details/AddInstrument.js:41 ../root/edit/details/AddLabel.js:41
+#: ../root/edit/details/AddMedium.js:129 ../root/edit/details/AddPlace.js:38
+#: ../root/edit/details/AddRelationshipAttribute.js:34
+#: ../root/edit/details/AddRelationshipType.js:66
+#: ../root/edit/details/AddRelease.js:51
+#: ../root/edit/details/AddReleaseGroup.js:42
+#: ../root/edit/details/AddSeries.js:33
+#: ../root/edit/details/AddStandaloneRecording.js:42
+#: ../root/edit/details/AddWork.js:36 ../root/edit/details/EditArea.js:52
+#: ../root/edit/details/EditArtist.js:65 ../root/edit/details/EditEvent.js:40
+#: ../root/edit/details/EditGenre.js:37
+#: ../root/edit/details/EditInstrument.js:44
+#: ../root/edit/details/EditLabel.js:49 ../root/edit/details/EditMedium.js:477
+#: ../root/edit/details/EditPlace.js:45
+#: ../root/edit/details/EditRecording.js:46
+#: ../root/edit/details/EditRelationshipAttribute.js:51
+#: ../root/edit/details/EditRelationshipAttribute.js:60
+#: ../root/edit/details/EditRelationshipType.js:186
+#: ../root/edit/details/EditRelease.js:57
+#: ../root/edit/details/EditReleaseGroup.js:43
+#: ../root/edit/details/EditSeries.js:41 ../root/edit/details/EditWork.js:52
+#: ../root/edit/details/RemoveRelationshipAttribute.js:31
+#: ../root/edit/details/RemoveRelationshipType.js:41
+#: ../root/edit/details/historic/AddRelease.js:33
+#: ../root/edit/details/historic/AddRelease.js:89
+#: ../root/edit/details/historic/AddTrackKV.js:30
+#: ../root/edit/details/historic/AddTrackOld.js:22
+#: ../root/edit/details/historic/EditReleaseName.js:22
+#: ../root/entity/Details.js:96
+#: ../root/search/components/AnnotationResults.js:55
+#: ../root/search/components/AreaResults.js:63
+#: ../root/search/components/ArtistResults.js:51
+#: ../root/search/components/EditorResults.js:42
+#: ../root/search/components/EventResults.js:73
+#: ../root/search/components/InstrumentResults.js:53
+#: ../root/search/components/LabelResults.js:66
+#: ../root/search/components/PlaceResults.js:63
+#: ../root/search/components/RecordingResults.js:141
+#: ../root/search/components/ReleaseResults.js:111
+#: ../root/search/components/SeriesResults.js:57
+#: ../root/search/components/TagResults.js:51
+#: ../root/search/components/WorkResults.js:54
+#: ../root/static/scripts/account/components/ApplicationForm.js:81
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:197
+#: ../root/static/scripts/common/components/FilterForm.js:135
+#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:112
+#: ../root/static/scripts/genre/components/GenreEditForm.js:147
+#: ../root/static/scripts/release/components/EditWorkDialog.js:166
+#: ../root/user/UserSubscriptions.js:48
+msgid "Name"
+msgstr ""
+
+#: ../root/artist/edit_credit.tt:18 ../root/artist/split.tt:45
+msgid "New Artist Credit"
+msgstr ""
+
+#: ../root/admin/attributes/create.tt:1 ../root/admin/attributes/create.tt:3
+msgid "New Attribute"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:148
+msgid "New Image Goes Here"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/create.tt:1
+#: ../root/relationship/linkattributetype/create.tt:3
+msgid "New Relationship Attribute"
+msgstr ""
+
+#: ../root/relationship/linktype/create.tt:1
+#: ../root/relationship/linktype/create.tt:3
+msgid "New Relationship Type"
+msgstr ""
+
+#: ../root/components/paginator.tt:44 ../root/components/paginator.tt:46
+#: ../root/release/edit/macros.tt:53 ../root/components/Paginator.js:140
+#: ../root/components/Paginator.js:145
+#: ../root/static/scripts/common/artworkViewer.js:42
+#: ../root/static/scripts/release-editor/bindingHandlers.js:41
+msgid "Next"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:62
+msgid "Next »"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
+#: ../lib/MusicBrainz/Server/Data/Vote.pm:176
+#: ../root/edit/components/Vote.js:93
+msgctxt "vote"
+msgid "No"
+msgstr ""
+
+#: ../root/components/forms.tt:369
+msgid "No description available."
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:96
+msgid "No releases have cover art marked as \"Front\", cannot set cover art."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:140 ../root/admin/IpLookup.js:38
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:472
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:88
+msgid "No results"
+msgstr ""
+
+#: ../root/components/search.tt:43 ../root/admin/EmailSearch.js:87
+#: ../root/otherlookup/OtherLookupReleaseResults.js:32
+msgid "No results found."
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:61
+#: ../root/cdtoc/SelectArtistForCDToc.js:102
+#: ../root/search/components/PaginatedSearchResults.js:58
+msgid "No results found. Try refining your search query."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291
+msgid "No vote"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:444
+#: ../root/static/scripts/release-editor/fields.js:211
+msgid ""
+"None of the attached disc IDs can fit a pregap track of the given length."
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:78
+msgid ""
+"None of the mediums on this release can have the given CD TOC attached, "
+"because they have the wrong number of tracks."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:3 ../root/edit/details/EditRelease.js:164
+#: ../root/edit/details/MergeReleases.js:347
+#: ../root/edit/details/SetTrackLengths.js:74
+#: ../root/edit/details/historic/MergeReleases.js:55
+#: ../root/user/ReportUser.js:116
+msgid "Note"
+msgstr ""
+
+#: ../root/release/edit/information.tt:285
+msgid ""
+"Note! If you do not know the month or day of release, please leave them "
+"empty. January 1st is not often the actual release date, please double "
+"check that you have entered the release date correctly."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:243
+msgid ""
+"Note: only searches edits that: add or edit relationships, entered after "
+"2011-05-16; or which remove relationships, entered after 2013-07-08; or "
+"which reorder relationships."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:120
+msgid "Now loading recording associations..."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:180 ../root/release/edit/tracklist.tt:400
+msgid "Now loading tracklist..."
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:13
+msgid ""
+"Only releases with a front cover on the {caa|Cover Art Archive} can be "
+"selected."
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:7
+msgid ""
+"Only releases with the same amount of tracks ({n}) as the release the disc "
+"ID is currently attached to are shown."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:101
+msgid ""
+"Oops! It seems your search parameters are not correct, please double check "
+"your input!"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:139 ../root/release/edit/tracklist.tt:24
+msgid "Options"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:37
+#: ../root/edit/details/AddRelationshipType.js:160
+#: ../root/edit/details/EditRelationshipType.js:285
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:184
+msgid "Orderable direction:"
+msgstr ""
+
+#: ../root/series/edit_form.tt:17 ../root/edit/details/AddSeries.js:52
+#: ../root/edit/details/EditSeries.js:66
+#: ../root/layout/components/sidebar/SeriesSidebar.js:53
+#: ../root/utility/tableColumns.js:765
+msgid "Ordering Type"
+msgstr ""
+
+#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:77
+msgid "PDF file"
+msgstr ""
+
+#: ../root/release/edit/information.tt:240
+#: ../root/edit/details/AddRelease.js:105
+#: ../root/edit/details/EditRelease.js:137
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
+msgid "Packaging"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:50
+#: ../root/relationship/linkattributetype/form.tt:4
+#: ../root/relationship/linktype/form.tt:4
+#: ../root/edit/details/AddRelationshipAttribute.js:55
+#: ../root/edit/details/EditRelationshipAttribute.js:85
+#: ../root/edit/details/EditRelationshipType.js:317
+msgid "Parent"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:238
+msgid "Parse Tracks"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Place.pm:8
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:45
+#: ../root/components/list/PlaceList.js:54 ../root/edit/details/AddPlace.js:30
+#: ../root/edit/details/EditPlace.js:40 ../root/layout/components/Search.js:38
+#: ../root/report/PlacesWithoutCoordinates.js:40
+#: ../root/report/components/PlaceList.js:47
+#: ../root/search/components/SearchForm.js:44
+#: ../root/static/scripts/common/constants.js:41
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:62
+#: ../root/user/UserProfile.js:55
+msgid "Place"
+msgstr ""
+
+#: ../root/place/edit_form.tt:10
+msgid "Place Details"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:421
+msgid "Please choose a condition"
+msgstr ""
+
+#: ../root/release/edit/information.tt:326
+msgid ""
+"Please enter the barcode of the release you are entering, see Barcode for more information."
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:24
+#: ../root/layout/components/MergeHelper.js:58
+msgid ""
+"Please navigate to the pages of other entities you wish to merge and select "
+"the \"merge\" link."
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:66 ../root/release/CoverArtFields.js:84
+msgid ""
+"Please see the {doc|Cover Art Types} documentation for a description of "
+"these types."
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:7
+msgid "Please select the medium you wish to attach this CD TOC to."
+msgstr ""
+
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
+msgid "Position"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:32
+msgid "Possible Mediums"
+msgstr ""
+
+#: ../root/components/paginator.tt:6 ../root/components/paginator.tt:8
+#: ../root/release/edit/macros.tt:52 ../root/components/Paginator.js:72
+#: ../root/components/Paginator.js:77
+#: ../root/static/scripts/common/artworkViewer.js:38
+#: ../root/static/scripts/release-editor/bindingHandlers.js:44
+msgid "Previous"
+msgstr ""
+
+#: ../root/release/edit/information.tt:95 ../root/release_group/edit_form.tt:16
+#: ../root/edit/details/AddReleaseGroup.js:67
+#: ../root/edit/details/EditReleaseGroup.js:60
+msgid "Primary Type:"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:46
+msgid "Priority:"
+msgstr ""
+
+#: ../root/components/search.tt:9 ../root/search/components/SearchForm.js:78
+msgid "Query:"
+msgstr ""
+
+#: ../root/components/rating-macros.tt:1
+#: ../root/static/scripts/common/utility/ratingTooltip.js:13
+msgid "Rate: {rating} star"
+msgid_plural "Rate: {rating} stars"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../lib/MusicBrainz/Server/Edit/Recording.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:41
+#: ../root/edit/details/AddStandaloneRecording.js:32
+#: ../root/edit/details/EditRecording.js:39
+#: ../root/edit/details/MergeReleases.js:305
+#: ../root/edit/details/RemoveIsrc.js:31
+#: ../root/edit/details/historic/EditTrack.js:27
+#: ../root/layout/components/Search.js:28
+#: ../root/report/IsrcsWithManyRecordings.js:60
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:54
+#: ../root/report/components/RecordingList.js:49
+#: ../root/search/components/SearchForm.js:40
+#: ../root/static/scripts/common/constants.js:42
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
+#: ../root/user/UserProfile.js:56
+msgid "Recording"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:24
+msgid "Recording Details"
+msgstr ""
+
+#: ../root/recording/layout.tt:3 ../root/recording/RecordingLayout.js:40
+msgid "Recording “{name}” by {artist}"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:17 ../root/area/AreaRecordings.js:25
+#: ../root/artist/ArtistRecordings.js:144
+#: ../root/artist/ArtistRecordings.js:146
+#: ../root/artist_credit/ArtistCreditIndex.js:145
+#: ../root/artist_credit/ArtistCreditLayout.js:28
+#: ../root/components/EntityTabs.js:30
+#: ../root/components/TagEntitiesList.js:190
+#: ../root/edit/details/EditMedium.js:514
+#: ../root/instrument/InstrumentRecordings.js:37
+#: ../root/instrument/InstrumentRecordings.js:39
+#: ../root/report/ReportsIndex.js:472
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:29
+#: ../root/tag/TagLayout.js:27 ../root/work/WorkIndex.js:55
+msgid "Recordings"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:8
+msgid "Reject"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397
+msgid "Relationship Editor"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../root/edit/details/AddRelationshipType.js:56
+#: ../root/edit/details/EditRelationshipType.js:156
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
+#: ../root/utility/tableColumns.js:750
+msgid "Relationship Type"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:15
+#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
+#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
+#: ../root/components/list/ReleaseList.js:81
+#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
+#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
+#: ../root/edit/details/ChangeReleaseQuality.js:24
+#: ../root/edit/details/EditBarcodes.js:38
+#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
+#: ../root/edit/details/EditReleaseLabel.js:42
+#: ../root/edit/details/MergeReleases.js:235
+#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
+#: ../root/edit/details/ReorderCoverArt.js:34
+#: ../root/edit/details/ReorderMediums.js:25
+#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
+#: ../root/layout/components/Search.js:29
+#: ../root/release_group/ReleaseGroupIndex.js:167
+#: ../root/report/components/CDTocReleaseList.js:50
+#: ../root/report/components/ReleaseList.js:52
+#: ../root/report/components/ReleaseUrlList.js:37
+#: ../root/search/components/RecordingResults.js:145
+#: ../root/search/components/SearchForm.js:39
+#: ../root/static/scripts/common/constants.js:43
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:66
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:397
+#: ../root/taglookup/Form.js:30 ../root/user/UserProfile.js:57
+msgid "Release"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Release Country"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:14
+msgid "Release Duplicates"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
+#: ../root/layout/components/Search.js:30
+#: ../root/report/DuplicateReleaseGroups.js:60
+#: ../root/report/ReleaseRgDifferentName.js:30
+#: ../root/report/ReleasesSameBarcode.js:46
+#: ../root/report/components/ReleaseGroupList.js:50
+#: ../root/report/components/ReleaseGroupUrlList.js:37
+#: ../root/search/components/ReleaseGroupResults.js:63
+#: ../root/search/components/SearchForm.js:38
+#: ../root/static/scripts/common/i18n/localizeTypeNameForEntity.js:36
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:68
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:404
+msgid "Release Group"
+msgstr ""
+
+#: ../root/release_group/edit_form.tt:12
+msgid "Release Group Details"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:31
+#: ../root/cdtoc/attach_filter_release.tt:46
+msgid "Release Group: {release_group_link}"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:12
+msgid "Release Information"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Release Language"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Release Quality"
+msgstr ""
+
+#: ../root/release/edit/information.tt:124
+#: ../root/static/scripts/common/components/ReleaseEvents.js:34
+msgid "Release event"
+msgstr ""
+
+#: ../root/release_group/layout.tt:1
+#: ../root/release_group/ReleaseGroupLayout.js:35
+msgid "Release group “{name}” by {artist}"
+msgstr ""
+
+#: ../root/release/edit/information.tt:3
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:121
+msgid "Release information"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:9 ../root/cdtoc/lookup.tt:85
+#: ../root/cdtoc/move_search.tt:15
+msgid "Release title or MBID"
+msgstr ""
+
+#: ../root/release/layout.tt:1 ../root/release/ReleaseLayout.js:32
+msgid "Release “{name}” by {artist}"
+msgstr ""
+
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
+#: ../root/account/applications/ApplicationList.js:45
+#: ../root/admin/attributes/Attribute.js:106
+#: ../root/admin/attributes/Language.js:68
+#: ../root/admin/attributes/Script.js:65
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:49
+#: ../root/admin/wikidoc/WikiDocIndex.js:108
+#: ../root/collection/CollectionHeader.js:93
+#: ../root/collection/DeleteCollection.js:26
+#: ../root/components/Aliases/AliasTableRow.js:65
+#: ../root/layout/components/sidebar/RemoveLink.js:34
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:102
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:74
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
+#: ../root/release/CoverArt.js:116
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
+#: ../root/static/scripts/edit/components/Multiselect.js:210
+#: ../root/user/UserCollections.js:135
+msgid "Remove"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:81
+msgid "Remove Example"
+msgstr ""
+
+#: ../root/release/edit/information.tt:199
+msgid "Remove Label"
+msgstr ""
+
+#: ../root/release/edit/information.tt:159
+msgid "Remove Release Event"
+msgstr ""
+
+#: ../root/work/edit_form.tt:60
+msgid "Remove attribute"
+msgstr ""
+
+#: ../root/components/common-macros.tt:584
+#: ../root/components/common-macros.tt:592
+#: ../root/components/RemoveFromMergeTableCell.js:39
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
+msgid "Remove from merge"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:330
+#: ../lib/MusicBrainz/Server/Edit/Medium/Delete.pm:23
+msgid "Remove medium"
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:33
+#: ../root/layout/components/MergeHelper.js:75
+msgid "Remove selected entities"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:227
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveTrack.pm:11
+msgid "Remove track"
+msgstr ""
+
+#: ../root/components/rating-macros.tt:1
+#: ../root/static/scripts/common/utility/ratingTooltip.js:12
+msgid "Remove your rating"
+msgstr ""
+
+#: ../root/components/forms.tt:163 ../root/components/forms.tt:168
+msgid "Remove {item}"
+msgstr ""
+
+#: ../root/release/reorder_cover_art.tt:1
+#: ../root/release/reorder_cover_art.tt:4
+msgctxt "header"
+msgid "Reorder Cover Art"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:83
+msgid "Request signature..."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:525
+msgid "Reset track numbers"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:58 ../root/cdtoc/move_search.tt:25
+#: ../root/components/search.tt:19 ../root/cdtoc/SelectArtistForCDToc.js:63
+#: ../root/cdtoc/SelectArtistForCDToc.js:99
+msgid "Results:"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:14
+msgid "Reuse previous recordings"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:14
+#: ../root/edit/details/AddRelationshipType.js:113
+#: ../root/edit/details/EditRelationshipType.js:223
+#: ../root/edit/details/RemoveRelationshipType.js:92
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:203
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:72
+msgid "Reverse link phrase:"
+msgstr ""
+
+#: ../root/release/edit/information.tt:307
+msgid "Review the {packaging|list of packaging types} for help."
+msgstr ""
+
+#: ../root/release/edit/layout.tt:27
+msgid ""
+"Review the {url|documentation} on release editor seeding and make sure your "
+"data is formatted correctly."
+msgstr ""
+
+#: ../root/layout.tt:132
+msgid ""
+"Running: {branch} ({sha})"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:82
+#: ../root/relationship/linkattributetype/form.tt:24
+#: ../root/relationship/linktype/form.tt:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
+#: ../root/static/scripts/account/components/PreferencesForm.js:260
+msgid "Save"
+msgstr ""
+
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
+#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
+#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/doc/components/DocSearchBox.js:22
+#: ../root/layout/components/BottomMenu.js:217
+#: ../root/layout/components/Search.js:94
+#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
+#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
+#: ../root/static/scripts/common/components/SearchIcon.js:14
+#: ../root/taglookup/Form.js:54
+msgid "Search"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:71
+msgid "Search by artist"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:81
+msgid "Search by release"
+msgstr ""
+
+#: ../root/edit/search.tt:2 ../root/edit/search_macros.tt:8
+#: ../root/edit/search_results.tt:3
+msgid "Search for Edits"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:136
+msgid "Searching..."
+msgstr ""
+
+#: ../root/release/edit/information.tt:98 ../root/release_group/edit_form.tt:17
+#: ../root/edit/details/AddReleaseGroup.js:80
+#: ../root/edit/details/EditReleaseGroup.js:79
+msgid "Secondary Types:"
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:42 ../root/cdtoc/SelectArtistForCDToc.js:94
+msgid "Select"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:123
+msgid ""
+"Select a medium from the search results below and then click \"Add Medium\"."
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:4
+msgid ""
+"Select a release to which the disc ID {discid}
. should be moved "
+"to."
+msgstr ""
+
+#: ../root/components/forms.tt:360
+msgid ""
+"Select any type from the list to see its description. If the work doesn’t "
+"seem to match any type, just leave this blank."
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:31
+msgid "Select images..."
+msgstr ""
+
+#: ../root/components/forms.tt:259 ../root/components/forms.tt:284
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:114
+msgid "Sentence"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Series.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:51
+#: ../root/components/list/SeriesList.js:47
+#: ../root/layout/components/Search.js:31
+#: ../root/search/components/SearchForm.js:50
+#: ../root/static/scripts/common/constants.js:45
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:70
+#: ../root/user/UserProfile.js:59
+msgctxt "singular"
+msgid "Series"
+msgstr ""
+
+#: ../root/series/edit_form.tt:10
+msgid "Series Details"
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:1
+msgid "Set Release Group Cover Art"
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:4
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/SetCoverArt.pm:20
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:88
+msgid "Set cover art"
+msgstr ""
+
+#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
+msgstr ""
+
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:43
+msgid ""
+"Show me {autoedit_select_block} sorted {sort_select_block} that "
+"{match_or_negation_block} {and_vs_or_block} of the following conditions:"
+msgstr ""
+
+#: ../root/release/edit/duplicates.tt:2
+msgid "Similar releases"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:499
+msgid ""
+"Some discs contain a hidden track in the pregap section that precedes track "
+"1. Use this to add (or remove) the special pregap track section."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:514
+msgid ""
+"Some discs contain one or more data tracks after all audio tracks. Use this "
+"to add (or remove) the special data tracks section. You should only add data "
+"tracks that contain audio or video ({info|more info})"
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:4
+msgid ""
+"Some errors were detected in the data you’ve entered. Click on the "
+"highlighted tabs and correct any visible errors."
+msgstr ""
+
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
+msgstr ""
+
+#: ../root/artist/split.tt:1
+msgid "Split Artist"
+msgstr ""
+
+#: ../root/artist/split.tt:6 ../root/artist/CannotSplit.js:22
+msgid "Split Into Separate Artists"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
+msgctxt "edit status"
+msgid "Status"
+msgstr ""
+
+#: ../root/release/edit/information.tt:111
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
+msgstr ""
+
+#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
+msgid "Stop using beta site"
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:44
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
+msgid "Submitting edits..."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:193
+msgid "Suggested recordings:"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:526
+msgid "Swap track titles with artist credits"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:21
+#: ../root/cdtoc/attach_filter_release.tt:35 ../root/cdtoc/list.tt:15
+#: ../root/recording/RecordingIndex.js:65
+#: ../root/release_group/ReleaseGroupIndex.js:177
+#: ../root/search/components/RecordingResults.js:146
+#: ../root/search/components/ReleaseResults.js:124
+#: ../root/static/scripts/common/components/TaggerIcon.js:82
+#: ../root/utility/tableColumns.js:782
+msgid "Tagger"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:12
+msgid ""
+"The Cover Art Archive is currently experiencing difficulties. Adding images "
+"for this release is unlikely to work at the moment."
+msgstr ""
+
+#: ../root/release/edit/information.tt:348
+msgid "The annotation field functions like a miniature wiki."
+msgstr ""
+
+#: ../root/release/edit/information.tt:297
+msgid "The catalog number you have entered looks like an Amazon ASIN."
+msgstr ""
+
+#: ../root/layout.tt:91 ../root/layout/index.js:285
+msgid ""
+"The data you have submitted does not make any changes to the data already "
+"present."
+msgstr ""
+
+#: ../root/release/edit/layout.tt:23
+msgid "The data you’ve seeded contained the following errors:"
+msgstr ""
+
+#: ../root/release/edit/information.tt:163
+msgid "The date you've entered is not valid."
+msgstr ""
+
+#: ../root/release/edit/information.tt:361
+msgid ""
+"The disambiguation field is used to help users distinguish between "
+"identically named releases."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:9
+msgid ""
+"The filters below allow you to find only edits fulfilling specific criteria. "
+"See the {doc_link|documentation} for more info about using the filters."
+msgstr ""
+
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
+msgid ""
+"The purpose of this field is to add information that usually doesn't fit "
+"into the strict structural data schema of MusicBrainz (be it due to "
+"technical limitations that may be addressed later, or because the "
+"information in itself has to be free-text)."
+msgstr ""
+
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
+#: ../root/layout.tt:71 ../root/layout/index.js:245
+msgid "The server is temporarily in read-only mode for database maintenance."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:124
+msgid ""
+"The tracklist for the medium (including the track/recording associations, "
+"but not other data such as medium format) will be loaded as a medium on this "
+"release."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:30 ../root/edit/details/AddMedium.js:154
+#: ../root/edit/details/RemoveMedium.js:91
+#: ../root/edit/details/RemoveMedium.js:108
+#: ../root/static/scripts/release/components/MediumRelationshipEditor.js:193
+msgid "The tracklist for this medium is unknown."
+msgstr ""
+
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
+#: ../root/static/scripts/edit/components/PartialDateInput.js:52
+msgid ""
+"The year should have four digits. If you want to enter a year earlier than "
+"1000 CE, please pad with zeros, such as “0123”."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:14
+msgid ""
+"There are currently no discs in MusicBrainz associated with the information "
+"you provided. You can search using the form below in order to attach this "
+"disc to another MusicBrainz release, or to add a new one if the search shows "
+"it is missing from the database."
+msgstr ""
+
+#: ../root/release/discids.tt:56
+msgid ""
+"There are no disc IDs attached to this release; to find out more about how "
+"to add one, see {doc|How to Add Disc IDs}."
+msgstr ""
+
+#: ../root/artist/split.tt:10
+msgid ""
+"There are no recordings, release groups, releases or tracks credited to only "
+"{name}. If you are trying to remove {name}, please edit all artist credits "
+"at the bottom of the {alias_uri|aliases} tab and remove all existing "
+"{rel_uri|relationships} instead, which will allow ModBot to automatically "
+"remove this artist in the upcoming days."
+msgstr ""
+
+#: ../root/place/edit_form.tt:29
+msgid "These coordinates could not be parsed."
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:54 ../root/cdtoc/attach_list.tt:67
+msgid "This CDTOC is already attached to this medium."
+msgstr ""
+
+#: ../root/release/edit/information.tt:354
+msgid ""
+"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
+"text that you don't have the right to release under that license. While you "
+"can quote a source to support a point you're making, you should never enter "
+"promotional texts or other artist or label-owned texts into the annotation."
+msgstr ""
+
+#: ../root/area/edit_form.tt:17
+msgid "This area has ended."
+msgstr ""
+
+#: ../root/artist/edit_form.tt:53
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:53
+msgid "This artist has ended."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/form.tt:20
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:145
+msgid "This attribute supports free text credits"
+msgstr ""
+
+#: ../root/work/edit_form.tt:56
+msgid "This attribute type is only used for grouping, please select a subtype"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/form.tt:21
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:151
+msgid "This attribute uses free text values"
+msgstr ""
+
+#: ../root/layout.tt:37 ../root/layout/index.js:111
+msgid ""
+"This beta test server allows testing of new features with the live database."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:509
+msgid "This disc contains data tracks at the end"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:494
+msgid "This disc has a hidden pregap track before track 1"
+msgstr ""
+
+#: ../root/components/common-macros.tt:186
+#: ../root/static/scripts/common/components/EntityLink.js:37
+msgid "This entity has been removed, and cannot be displayed correctly."
+msgstr ""
+
+#: ../root/components/common-macros.tt:186
+#: ../root/static/scripts/common/components/EntityLink.js:36
+msgid "This entity will be added by this edit."
+msgstr ""
+
+#: ../root/event/edit_form.tt:15
+msgid "This event was cancelled."
+msgstr ""
+
+#: ../root/release/edit/information.tt:364
+msgid ""
+"This field is not a place to store general background information about the "
+"release: that kind of information should go in the annotation field."
+msgstr ""
+
+#: ../root/artist/edit_credit.tt:12
+msgid ""
+"This form allows you to edit the artist credit \"{ac}\". When the edit is "
+"accepted, all tracks, recordings, releases and release groups using this "
+"artist credit will be update to use the new one."
+msgstr ""
+
+#: ../root/artist/split.tt:29
+msgid ""
+"This form allows you to split {artist} into separate artists. When the edit "
+"is accepted, existing artist credits will be updated, and collaboration "
+"relationships will be removed"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:73
+msgid "This format can have disc IDs"
+msgstr ""
+
+#: ../root/layout.tt:37 ../root/layout/index.js:115
+msgid "This is a MusicBrainz development server."
+msgstr ""
+
+#: ../root/layout.tt:54 ../root/layout/index.js:143
+msgid ""
+"This is a MusicBrainz mirror server. To edit or make changes to the data, "
+"please {uri|return to musicbrainz.org}."
+msgstr ""
+
+#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:73
+msgid ""
+"This is a PDF file, the thumbnail may not show the entire contents of the "
+"file."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:77
+msgid "This is a free text work attribute"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:386
+msgid ""
+"This is almost always incorrect. Please make sure whether you actually "
+"wanted a different format (such as “USB Flash Drive” or “Music Card”) or "
+"packaging type."
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:76
+msgid "This is the current release group image"
+msgstr ""
+
+#: ../root/label/edit_form.tt:36
+msgid "This label has ended."
+msgstr ""
+
+#: ../root/release/edit/information.tt:209
+msgid "This label/catalog number pair already exists."
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:56
+msgid "This medium format cannot have a disc ID attached."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:383
+msgid ""
+"This medium format is set to “Digital Media”, but the packaging type for "
+"this release is not “None”."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:334
+msgid ""
+"This medium has a disc ID, pregap track, or data track, so you can only "
+"change the format to one that can have disc IDs."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:363 ../root/release/edit/tracklist.tt:373
+msgid ""
+"This medium is set to a format that did not exist on the selected release "
+"date."
+msgstr ""
+
+#: ../root/place/edit_form.tt:32
+msgid "This place has ended."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:369
+msgid ""
+"This problem already existed before you opened the release editor, so you "
+"don’t need to do anything about it. But if you have some time, consider "
+"trying to find out what the real format should be or if the release should "
+"be split!"
+msgstr ""
+
+#: ../root/components/common-macros.tt:229
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
+#: ../root/static/scripts/common/components/EntityLink.js:323
+msgid "This recording is a video"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:17
+msgid "This relationship allows setting dates"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:16
+msgid "This relationship is deprecated"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:100
+msgid "This relationship type does not have any examples."
+msgstr ""
+
+#: ../root/release/edit/information.tt:235
+msgid "This release does not have a barcode"
+msgstr ""
+
+#: ../root/release/discids.tt:58
+msgid "This release has no mediums that can have disc IDs."
+msgstr ""
+
+#: ../root/release/edit/information.tt:370
+msgid ""
+"This release status should be used for unofficial translations and "
+"transliterations of tracklists and release titles, and does not denote a "
+"separate real release. It should not be used to denote bootlegs, mixtape/"
+"street albums, demos, or digital albums. Be sure to link to the "
+"corresponding real release with the {url|transl(iter)ation relationship}."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:366
+msgid ""
+"This should never be correct. Make sure that, say, your release set to CD "
+"isn’t meant to be a vinyl, or your vinyl isn’t actually a shellac disc."
+msgstr ""
+
+#: ../root/components/common-macros.tt:559
+#: ../root/static/scripts/common/components/DataTrackIcon.js:13
+msgid "This track is a data track."
+msgstr ""
+
+#: ../root/components/common-macros.tt:555
+#: ../root/static/scripts/common/components/PregapTrackIcon.js:13
+msgid "This track is hidden in the pregap."
+msgstr ""
+
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
+#: ../root/main/error/components/ErrorEnvironment.js:27
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
+msgstr ""
+
+#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
+#: ../root/cdstub/BrowseCDStubs.js:36 ../root/cdstub/CDStubInfo.js:27
+#: ../root/cdtoc/AttachCDTocConfirmation.js:70
+#: ../root/components/RelationshipsTable.js:334
+#: ../root/components/list/ReleaseGroupList.js:91
+#: ../root/edit/details/EditMedium.js:315
+#: ../root/edit/details/EditMedium.js:319 ../root/isrc/Index.js:66
+#: ../root/iswc/Index.js:57 ../root/recording/RecordingIndex.js:54
+#: ../root/static/scripts/release/components/MediumTable.js:84
+msgid "Title"
+msgstr ""
+
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:243
+msgid ""
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
+"stub, select the appropriate tab."
+msgstr ""
+
+#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
+#: ../root/cdtoc/CDTocInfo.js:44
+msgid "Total length:"
+msgstr ""
+
+#: ../root/cdstub/index.tt:17 ../root/cdstub/CDStubIndex.js:51
+#: ../root/cdtoc/CDTocInfo.js:40
+msgid "Total tracks:"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:524
+#: ../root/static/scripts/release-editor/dialogs.js:40
+msgid "Track Parser"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:114
+msgid "Track count:"
+msgstr ""
+
+#: ../root/cdstub/index.tt:7 ../root/release/edit/layout.tt:16
+#: ../root/cdstub/CDStubIndex.js:41 ../root/edit/details/AddMedium.js:144
+#: ../root/edit/details/EditMedium.js:497
+#: ../root/edit/details/RemoveMedium.js:81
+#: ../root/static/scripts/release-editor/fields.js:768
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:359
+msgid "Tracklist"
+msgstr ""
+
+#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
+#: ../root/artist_credit/ArtistCreditIndex.js:156
+#: ../root/artist_credit/ArtistCreditLayout.js:29
+#: ../root/components/list/ReleaseList.js:108
+#: ../root/edit/details/MergeReleases.js:238
+#: ../root/edit/details/historic/AddRelease.js:83
+#: ../root/release_group/ReleaseGroupIndex.js:170
+#: ../root/search/components/CDStubResults.js:46
+#: ../root/search/components/ReleaseResults.js:114
+msgid "Tracks"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:432
+msgid ""
+"Tracks are required. If you don’t know them, but do know some info (such as "
+"the format or number of media), tick the “I don’t know the tracklist for "
+"this medium” checkbox above and enter the available info. If you have no "
+"information about this release’s media, remove all media."
+msgstr ""
+
+#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
+msgid "Turkish"
+msgstr ""
+
+#: ../root/layout.tt:118 ../root/layout/components/Footer.js:34
+msgid "Twitter"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../root/account/applications/ApplicationList.js:155
+#: ../root/components/Aliases/AliasTable.js:26
+#: ../root/components/list/ReleaseGroupList.js:105
+#: ../root/components/list/ReleaseList.js:155
+#: ../root/edit/details/AddArea.js:61 ../root/edit/details/AddArtist.js:69
+#: ../root/edit/details/AddEvent.js:56 ../root/edit/details/AddInstrument.js:58
+#: ../root/edit/details/AddLabel.js:87 ../root/edit/details/AddPlace.js:49
+#: ../root/edit/details/AddReleaseGroup.js:66
+#: ../root/edit/details/AddRemoveAlias.js:83
+#: ../root/edit/details/AddSeries.js:44 ../root/edit/details/AddWork.js:53
+#: ../root/edit/details/EditAlias.js:105 ../root/edit/details/EditArea.js:73
+#: ../root/edit/details/EditArtist.js:86 ../root/edit/details/EditEvent.js:61
+#: ../root/edit/details/EditInstrument.js:58
+#: ../root/edit/details/EditLabel.js:73 ../root/edit/details/EditPlace.js:59
+#: ../root/edit/details/EditReleaseGroup.js:59
+#: ../root/edit/details/EditSeries.js:55
+#: ../root/edit/details/historic/AddRelease.js:45 ../root/iswc/Index.js:60
+#: ../root/release/CoverArtFields.js:56 ../root/report/DuplicateArtists.js:69
+#: ../root/report/DuplicateReleaseGroups.js:61
+#: ../root/report/IswcsWithManyWorks.js:53
+#: ../root/report/components/ArtistList.js:62
+#: ../root/report/components/EventList.js:64
+#: ../root/report/components/InstrumentList.js:58
+#: ../root/report/components/ReleaseGroupList.js:65
+#: ../root/report/components/WorkList.js:66
+#: ../root/search/components/AnnotationResults.js:54
+#: ../root/search/components/AreaResults.js:64
+#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/EventResults.js:76
+#: ../root/search/components/InstrumentResults.js:54
+#: ../root/search/components/LabelResults.js:67
+#: ../root/search/components/PlaceResults.js:64
+#: ../root/search/components/RecordingResults.js:149
+#: ../root/search/components/ReleaseGroupResults.js:65
+#: ../root/search/components/ReleaseResults.js:120
+#: ../root/search/components/SeriesResults.js:58
+#: ../root/search/components/WorkResults.js:58
+#: ../root/static/scripts/account/components/ApplicationForm.js:88
+#: ../root/static/scripts/alias/AliasEditForm.js:331
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
+#: ../root/static/scripts/common/components/FilterForm.js:83
+#: ../root/static/scripts/edit/externalLinks.js:1207
+#: ../root/static/scripts/edit/externalLinks.js:1529
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
+msgid "Type"
+msgstr ""
+
+#: ../root/area/edit_form.tt:11 ../root/artist/edit_form.tt:16
+#: ../root/event/edit_form.tt:14 ../root/instrument/edit_form.tt:11
+#: ../root/label/edit_form.tt:15 ../root/place/edit_form.tt:15
+#: ../root/release/add_cover_art.tt:54 ../root/release/edit/information.tt:103
+#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
+#: ../root/layout/components/sidebar/CollectionSidebar.js:59
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
+#: ../root/layout/components/sidebar/SidebarType.js:25
+#: ../root/search/components/SearchForm.js:84
+msgid "Type:"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:69
+#: ../root/edit/details/AddCoverArt.js:33
+#: ../root/edit/details/EditCoverArt.js:58
+#: ../root/edit/details/RemoveCoverArt.js:33 ../root/release/CoverArt.js:86
+msgid "Types:"
+msgstr ""
+
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
+#: ../root/main/error/components/ErrorEnvironment.js:49
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:21
+msgid "Unable to parse the tracklist you entered."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
+msgid "Untrusted"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:98
+msgid "Update the recording artist credit to match the track artist credit."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:93
+msgid "Update the recording title to match the track title."
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:84
+msgid "Uploading image..."
+msgstr ""
+
+#: ../root/components/forms.tt:272 ../root/components/forms.tt:297
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:142
+msgid "Uppercase Roman numerals"
+msgstr ""
+
+#: ../root/layout.tt:120 ../root/layout/components/Footer.js:45
+msgid "Use beta site"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:68
+msgid "Use custom artist delimiter"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:261
+msgid "Use the following fields to search for a CD stub."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:256
+msgid "Use the following fields to search for an existing medium."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:60
+msgid "Use track artists"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:95
+msgid "Use track lengths"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:37
+msgid "Use track numbers"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:74
+msgid "Use track titles"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:81
+msgid "Validating file..."
+msgstr ""
+
+#: ../root/recording/edit_form.tt:44
+#: ../root/edit/details/AddStandaloneRecording.js:64
+#: ../root/edit/details/EditRecording.js:77
+msgid "Video"
+msgstr ""
+
+#: ../root/recording/layout.tt:3 ../root/recording/RecordingLayout.js:39
+msgid "Video “{name}” by {artist}"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/edit/EditIndex.js:76
+#: ../root/edit/components/EditHeader.js:128
+msgid "Vote tally"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/elections/ElectionVotes.js:26
+msgid "Voter"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
+#: ../root/user/UserProfile.js:698
+msgid "Votes"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Voting closed"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:32
+msgid "Voting period (days)"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
+#: ../root/static/scripts/common/components/Warning.js:28
+#: ../root/static/scripts/common/components/WarningIcon.js:14
+msgid "Warning"
+msgstr ""
+
+#: ../root/release/edit/information.tt:282
+msgid ""
+"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
+"for which they don't know the actual date. Please use this date only "
+"if you're certain this date is correct!"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:61
+msgid "We couldn’t find a release matching that MBID."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:7
+msgid ""
+"We found discs matching the information you requested, listed below. If none "
+"of these are the release you are looking for, you can search using the form "
+"below in order to attach this disc to another MusicBrainz release, or to add "
+"a new one if the search shows it is missing from the database."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:12
+msgid "We used DiscID {discid}
to look up this information."
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:18
+#: ../root/layout/components/MergeHelper.js:53
+msgid ""
+"When you are ready to merge these, just click the Merge button. You may "
+"still add more to this merge queue by simply browsing to the entities page "
+"and following the merge link."
+msgstr ""
+
+#: ../root/layout.tt:113 ../root/layout/components/Footer.js:27
+msgid "Wiki"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397
+msgid "Wiki Transcluder"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Work.pm:9
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:42
+#: ../root/components/list/WorkList.js:61 ../root/edit/details/AddWork.js:30
+#: ../root/edit/details/EditWork.js:45 ../root/edit/details/RemoveIswc.js:31
+#: ../root/layout/components/Search.js:32
+#: ../root/report/IswcsWithManyWorks.js:50
+#: ../root/report/components/WorkList.js:50
+#: ../root/search/components/SearchForm.js:41
+#: ../root/static/scripts/common/constants.js:47
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:74
+#: ../root/user/UserProfile.js:60 ../root/work/WorkLayout.js:33
+msgid "Work"
+msgstr ""
+
+#: ../root/work/edit_form.tt:20
+#: ../root/static/scripts/common/components/AttributeList.js:65
+msgid "Work Attributes"
+msgstr ""
+
+#: ../root/work/edit_form.tt:11
+msgid "Work Details"
+msgstr ""
+
+#: ../root/release/edit/information.tt:133
+#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
+#: ../root/static/scripts/edit/components/PartialDateInput.js:161
+msgid "YYYY"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:68 ../root/admin/attributes/Attribute.js:29
+#: ../root/components/list/ReleaseGroupList.js:84
+msgid "Year"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
+#: ../lib/MusicBrainz/Server/Data/Vote.pm:177
+#: ../root/edit/components/Vote.js:86
+msgctxt "vote"
+msgid "Yes"
+msgstr ""
+
+#: ../root/components/forms.tt:320
+msgid ""
+"You are about to add an ISRC to this recording. The ISRC must be entered in "
+"standard CCXXXYYNNNNN
format:"
+msgstr ""
+
+#: ../root/components/forms.tt:309
+msgid ""
+"You are about to add an ISWC to this work. The ISWC must be entered in "
+"standard T-DDD.DDD.DDD-C
format:"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:5
+msgid "You are viewing releases by {artist}."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:12
+msgid ""
+"You can use the checkboxes under the parser to deactivate some sections. For "
+"example, you can deactivate “{lines_have_artists}” if your data has no track "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
+"parser to ignore them."
+msgstr ""
+
+#: ../root/release/edit/information.tt:165
+msgid "You cannot use the same country more than once."
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:4 ../root/layout/components/MergeHelper.js:32
+msgid "You currently have the following entities selected for merging:"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:7
+msgid ""
+"You have used the {valink|Various Artists} special purpose artist on this "
+"recording."
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:10
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
+msgid "You haven’t made any changes!"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:414
+msgid "You must be logged in to use this option."
+msgstr ""
+
+#: ../root/components/common-macros.tt:576
+msgid "You must enter a disambiguation comment for this entity."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:436
+msgid ""
+"You must enter a title for every track (if the track is untitled, enter "
+"“{untitled_track}”)."
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:32
+msgid "You must provide an edit note when adding a release."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:440
+msgid ""
+"You must select an artist for every track (the background color of every "
+"artist field should be green). If you’ve entered an artist but the "
+"background remains uncolored, click the magnifying glass to match the name "
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"down."
+msgstr ""
+
+#: ../root/release/edit/information.tt:30
+msgid ""
+"You must select an artist for the release (the background color of the "
+"artist field should be green). If you’ve entered an artist but the "
+"background remains uncolored, click the magnifying glass to match the name "
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"down."
+msgstr ""
+
+#: ../root/release/edit/information.tt:56
+msgid "You must select an existing release group."
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:36
+#: ../lib/MusicBrainz/Server/Form/EditNoteModify.pm:32
+#: ../lib/MusicBrainz/Server/Form/Role/EditNote.pm:30
+msgid ""
+"Your edit note seems to have no actual content. Please provide a note that "
+"will be helpful to your fellow editors!"
+msgstr ""
+
+#: ../root/edit/search.tt:7
+msgid ""
+"Your search took too long and was cancelled. It may help to be more "
+"specific, or to try again."
+msgstr ""
+
+#: ../root/layout.tt:21 ../root/layout/index.js:210
+msgid ""
+"You’re currently not allowed to edit or vote because an admin has revoked "
+"your privileges. If you haven’t already been contacted about why, please "
+"{uri|send us a message}."
+msgstr ""
+
+#: ../root/layout.tt:17 ../root/layout/index.js:202
+msgid ""
+"You’re currently not allowed to edit, vote or leave edit notes because an "
+"admin has revoked your privileges. If you haven’t already been contacted "
+"about why, please {uri|send us a message}."
+msgstr ""
+
+#: ../root/layout.tt:25 ../lib/MusicBrainz/Server/Controller/EditNote.pm:63
+#: ../root/layout/index.js:219
+msgid ""
+"You’re currently not allowed to leave or change edit notes because an admin "
+"has revoked your privileges. If you haven’t already been contacted about "
+"why, please {uri|send us a message}."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:289
+msgid ""
+"You’ve seeded some Disc IDs that aren’t matched to any medium. If this is "
+"wrong, use the “Attach Disc ID” options below."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:409
+msgid ""
+"You’ve used the {valink|Various Artists} special purpose artist on some "
+"tracks below. {valink|Various Artists} should very rarely be used on tracks; "
+"please make sure the artists have been entered correctly."
+msgstr ""
+
+#: ../root/components/common-macros.tt:186
+#: ../lib/MusicBrainz/Server/Edit/Relationship/RemoveLinkType.pm:86
+#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:112
+#: ../root/edit/details/EditAlias.js:76
+#: ../root/edit/details/SetTrackLengths.js:58
+#: ../root/static/scripts/common/components/EntityLink.js:48
+#: ../root/static/scripts/common/i18n/localizeLanguageName.js:15
+#: ../root/static/scripts/edit/components/Multiselect.js:197
+msgid "[removed]"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:172
+msgid "after"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:39
+msgid "all"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:287
+msgid "and voted"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:39
+msgid "any"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:20
+msgid "auto-edits"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:172
+msgid "before"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:172
+msgid "between"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:79 ../root/release/edit/recordings.tt:83
+msgid "by"
+msgstr ""
+
+#: ../root/components/common-macros.tt:107
+#: ../root/static/scripts/common/components/EntityLink.js:96
+msgid "cancelled"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "do not include"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "do not include editors in my subscriptions"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "do not include me"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:35
+msgid "do not match"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:378
+msgid "does not include"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "earliest closed first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:20
+msgid "edits"
+msgstr ""
+
+#: ../root/components/forms.tt:263 ../root/components/forms.tt:288
+#: ../root/edit/search_macros.tt:188 ../root/release/edit/tracklist.tt:3
+#: ../root/release/edit/tracklist.tt:83 ../root/release/edit/tracklist.tt:316
+#: ../root/release/edit/tracklist.tt:495 ../root/release/edit/tracklist.tt:510
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:121
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:886
+msgid "help"
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:94 ../root/cdtoc/list.tt:84
+msgid "hide tracklist"
+msgstr ""
+
+#: ../root/components/common-macros.tt:98
+#: ../root/static/scripts/common/components/EntityLink.js:117
+msgid "historical"
+msgstr ""
+
+#: ../root/components/common-macros.tt:96
+#: ../root/static/scripts/common/components/EntityLink.js:119
+msgid "historical, until {end}"
+msgstr ""
+
+#: ../root/components/common-macros.tt:94
+#: ../root/static/scripts/common/components/EntityLink.js:113
+msgid "historical, {begin}-{end}"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "in an unspecified order (possibly faster)"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include a beginner editor"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include an editor in my subscriptions"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include me"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include someone other than the edit author"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:378
+msgid "includes"
+msgstr ""
+
+#: ../root/components/common-macros.tt:153
+#: ../root/components/common-macros.tt:229
+#: ../root/static/scripts/common/components/EntityLink.js:141
+#: ../root/static/scripts/common/components/EntityLink.js:426
+msgid "info"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134 ../root/edit/search_macros.tt:151
+#: ../root/edit/search_macros.tt:193 ../root/edit/search_macros.tt:208
+#: ../root/edit/search_macros.tt:230 ../root/edit/search_macros.tt:248
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:321
+#: ../root/edit/search_macros.tt:336 ../root/edit/search_macros.tt:360
+#: ../root/edit/search_macros.tt:393
+msgid "is"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:360
+msgid "is a beginner"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134
+msgid "is after"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134
+msgid "is before"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134 ../root/edit/search_macros.tt:151
+msgid "is between"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:321
+#: ../root/edit/search_macros.tt:360 ../root/edit/search_macros.tt:387
+msgid "is in my subscriptions"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:151
+msgid "is less than"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:360
+msgid "is me"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:151
+msgid "is more than"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134 ../root/edit/search_macros.tt:151
+#: ../root/edit/search_macros.tt:172 ../root/edit/search_macros.tt:193
+#: ../root/edit/search_macros.tt:208 ../root/edit/search_macros.tt:230
+#: ../root/edit/search_macros.tt:248 ../root/edit/search_macros.tt:271
+#: ../root/edit/search_macros.tt:321 ../root/edit/search_macros.tt:336
+#: ../root/edit/search_macros.tt:360 ../root/edit/search_macros.tt:393
+msgid "is not"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:321
+#: ../root/edit/search_macros.tt:360 ../root/edit/search_macros.tt:387
+msgid "is not in my subscriptions"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:360
+msgid "is not me"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:484
+msgid "link"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:35
+msgid "match"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "newest first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:20
+msgid "non-auto-edits"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "oldest first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:172
+msgid "on"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:33
+msgid "or drop files here"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "recently closed first"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:38
+msgid "recording"
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:18 ../root/cdtoc/attach_list.tt:92
+#: ../root/cdtoc/list.tt:82
+msgid "show tracklist"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:37
+msgid "track"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "voting closing later first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "voting closing sooner first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "with recent edit notes first"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:24
+msgid "{artist} - {name}"
+msgstr ""
+
+#: ../root/components/common-macros.tt:131
+#: ../root/static/scripts/common/components/ExpandedArtistCredit.js:34
+msgid "{artist} as {name}"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:45
+msgid "{artist} has no releases which have only {n} track."
+msgid_plural "{artist} has no releases which have {n} tracks."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/cdstub/index.tt:13 ../root/cdstub/CDStubIndex.js:47
+msgid "{doc|Disc ID}:"
+msgstr ""
+
+#: ../root/components/common-macros.tt:199 ../root/main/index.js:268
+#: ../root/static/scripts/common/components/DescriptiveLink.js:74
+#: ../root/static/scripts/release-editor/dialogs.js:150
+msgid "{entity} by {artist}"
+msgstr ""
+
+#: ../root/layout.tt:82 ../root/layout/index.js:272
+msgid ""
+"{link|New notes} have been left on some of your edits. Please make sure to "
+"read them and respond if necessary."
+msgstr ""
+
+#: ../root/components/common-macros.tt:260
+#: ../root/static/scripts/common/components/EntityLink.js:262
+msgid "{name} – {additional_info}"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:20
+msgid "{num} release found matching your query."
+msgid_plural "{num} releases found matching your query."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/common-macros.tt:199
+#: ../root/static/scripts/common/components/DescriptiveLink.js:87
+msgid "{place} in {area}"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:39
+msgid ""
+"{recording_length} ({length_info|derived} from the associated track lengths)"
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:33
+msgid "{release} by {artist}"
+msgstr ""
+
+#: ../root/instrument/layout.tt:1 ../root/instrument/InstrumentLayout.js:33
+msgid "{type} “{instrument}”"
+msgstr ""
+
+#: ../root/work/layout.tt:1 ../root/work/WorkLayout.js:30
+msgid "{type} “{work}”"
+msgstr ""
+
+#: ../root/layout.tt:45 ../root/layout/index.js:124
+msgid "{uri|Return to musicbrainz.org}."
+msgstr ""
+
+#: ../root/recording/edit_form.tt:10
+msgid ""
+"{valink|Various Artists} should very rarely be used on recordings, make sure "
+"that the artist has been entered correctly."
+msgstr ""
+
+#: ../root/components/common-macros.tt:550
+#: ../root/static/scripts/common/i18n/addColon.js:13
+#: ../root/static/scripts/common/i18n/addColon.js:17
+msgid "{variable}:"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:61
+msgid "« Previous"
+msgstr ""
+
+#: ../root/components/paginator.tt:19 ../root/components/paginator.tt:31
+#: ../root/components/paginator.tt:39 ../root/components/Paginator.js:94
+#: ../root/components/Paginator.js:119 ../root/components/Paginator.js:133
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:162
+msgid "…"
+msgstr ""
+
+#: ../lib/MusicBrainz/Script/RemoveEmpty.pm:139
+msgid ""
+"This entity was automatically removed because it was empty: it had no "
+"relationships associated with it, nor (if relevant for the type of entity in "
+"question) any recordings, releases nor release groups. If you consider this "
+"was a valid, non-duplicate entry that does belong in MusicBrainz, feel free "
+"to add it again, but please ensure enough data is added to it this time to "
+"avoid another automatic removal."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller.pm:34
+#, perl-brace-format
+msgid "'{id}' is not a valid MusicBrainz ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller.pm:122
+#, perl-brace-format
+msgid ""
+"Thank you, your {edit_url|edit} ({edit_ids}) has been automatically accepted "
+"and applied."
+msgid_plural ""
+"Thank you, your {num_edits} {edit_url|edits} ({edit_ids}) have been "
+"automatically accepted and applied."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Controller.pm:128
+#, perl-brace-format
+msgid ""
+"Thank you, your {edit_url|edit} ({edit_ids}) has been entered into the edit "
+"queue for peer review."
+msgid_plural ""
+"Thank you, your {num_edits} {edit_url|edits} ({edit_ids}) have been entered "
+"into the edit queue for peer review."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Controller.pm:136
+#, perl-brace-format
+msgid ""
+"Thank you, your {edit_url|edit} ({edit_ids}) has been entered, with "
+"{num_open_edits} in the edit queue for peer review, and the rest "
+"automatically accepted and applied."
+msgid_plural ""
+"Thank you, your {num_edits} {edit_url|edits} ({edit_ids}) have been entered, "
+"with {num_open_edits} in the edit queue for peer review, and the rest "
+"automatically accepted and applied."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:57
+msgid "The user ID is missing or is in an invalid format."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:67
+msgid "The email address is missing."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:77
+msgid "The time is missing or is in an invalid format."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:88
+msgid "The verification key is missing."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:99
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:274
+msgid "The checksum is invalid, please double check your email."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:110
+msgid "Sorry, this email verification link has expired."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:122
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:286
+#, perl-brace-format
+msgid "The user with ID '{user_id}' could not be found."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:173
+msgid ""
+"We were unable to send login information to your email address. Please try "
+"again, however if you continue to experience difficulty contact us at "
+"support@musicbrainz.org."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:199
+msgid "There is no user with this username"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:204
+msgid "There is no user with this username and email"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:207
+msgid ""
+"We can't send a password reset email, because we have no email on record for "
+"this user."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:237
+msgid "Your password has been reset."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:252
+msgid "Missing one or more required parameters."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:263
+msgid "Sorry, this password reset link has expired."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:337
+msgid "There is no user with this email"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:420
+msgid "Your profile has been updated."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:424
+#, perl-brace-format
+msgid ""
+"We have sent you a verification email to {email}
. Please check "
+"your mailbox and click on the link in the email to verify the new email "
+"address."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:463
+msgid "Your password has been changed."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:701
+msgid ""
+"We were unable to send a verification email to you.
Please confirm that you have entered a valid address by editing your "
+"{settings|account settings}. If the problem still persists, please contact "
+"us at {mail|support@musicbrainz.org}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:785
+msgid "There is no OAuth token with these parameters."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account/Subscriptions/Collection.pm:22
+msgid "The provided collection ID doesn’t exist."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Admin.pm:91
+msgid "User successfully edited."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Admin.pm:164
+msgid ""
+"Banner updated. Remember that each server has its own, independent banner."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Admin.pm:200
+#: ../lib/MusicBrainz/Server/Controller/Admin.pm:266
+#: ../root/static/scripts/release-editor/trackParser.js:497
+msgid "Invalid regular expression."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
+#, perl-brace-format
+msgid "You cannot remove the attribute \"{name}\" because it is still in use."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
+#, perl-brace-format
+msgid ""
+"You cannot remove the attribute “{name}” because it is the parent of other "
+"attributes."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Artist.pm:738
+msgid "You cannot merge a special purpose artist into another artist"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Artist.pm:743
+msgid "You cannot merge into Deleted Artist"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/AutoEditorElections.pm:86
+#, perl-brace-format
+msgid "'{id}' is not a valid election ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:78
+msgid "Please provide a CD TOC ID."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:82
+msgid "The provided CD TOC ID is not valid."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:88
+msgid "Please provide a medium ID."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:92
+msgid "The provided medium id is not valid."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:98
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:226
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:441
+msgid "The provided medium ID doesn’t exist."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:104
+msgid ""
+"The provided CD TOC ID doesn’t exist or is not connected to the provided "
+"medium."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:153
+msgid "Please provide a medium ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:158
+msgid "Could not find medium"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:206
+msgid ""
+"The provided CD TOC is not valid. This is probably an issue with the "
+"software you used to generate it. Try again and please report the error to "
+"your software maker if it persists, including the technical information "
+"below."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:213
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:435
+msgid "The provided medium id is not valid"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:234
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:448
+msgid "The selected medium cannot have disc IDs"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:279
+msgid "The provided artist id is not valid"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:421
+msgid "The provided CD TOC ID doesn’t exist."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
+#, perl-brace-format
+msgid ""
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
+#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
+#: ../root/static/scripts/common/constants.js:355
+msgid "Low"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
+#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:357
+msgid "Normal"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
+#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
+#: ../root/static/scripts/common/constants.js:358
+msgid "High"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
+msgid "Default"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:49
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:61
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:79
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:105
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:123
+msgid "Can’t change edit note"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:50
+msgid "You can’t change other users’ edit notes."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:80
+msgid "This note has already been removed."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:107
+msgid ""
+"You can’t change this note, since somebody else has already replied to it. "
+"If there’s an important reason why it should be changed (for example, it "
+"contains private data), please {contact_url|contact us}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:125
+msgid ""
+"You can’t change this note, since it was entered too long ago. If there’s an "
+"important reason why it should be changed (for example, it contains private "
+"data), please {contact_url|contact us}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Label.pm:256
+msgid "You cannot merge a special purpose label into another label."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Label.pm:261
+msgid "You cannot merge into Deleted Label."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Rating.pm:41
+msgid "The rating should be an integer between 0 and 100."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Relationship/LinkType.pm:71
+#, perl-brace-format
+msgid "'{types}' is not a valid pair of types for relationships."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Release.pm:600
+msgid ""
+"This merge strategy is not applicable to the releases you have selected."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Release.pm:629
+msgid "This release has no artwork."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Release.pm:635
+#, perl-brace-format
+msgid "Found no artwork with ID “{id}”."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Role/Annotation.pm:68
+msgid "The annotation revision ID must be a positive integer"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Role/Annotation.pm:76
+#, perl-brace-format
+msgid "Found no annotation with ID “{id}”."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Role/Annotation.pm:91
+#, perl-brace-format
+msgid "The annotation with ID “{id}” is not associated with this entity."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Role/Annotation.pm:230
+msgid "The old and new annotation ids must be unique, positive integers."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Role/EditRelationships.pm:222
+#: ../root/layout/components/sidebar/SidebarEndDate.js:38
+#: ../root/static/scripts/common/utility/formatEndDate.js:18
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:108
+#: ../root/static/scripts/relationship-editor/components/DialogSourceEntity.js:117
+msgid "[unknown]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Root.pm:88
+#, perl-brace-format
+msgid ""
+"Language set. If it was not intended, just {url|set “{prev_lang_name}” back}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Root.pm:96
+msgid ""
+"If you find any problems with the translation, please {url|help us improve "
+"it}!"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Root.pm:317
+msgid ""
+"Our Redis server appears to be down; some features may not work as intended "
+"or expected."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
+msgid "Series that have different entity types cannot be merged."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:304
+#: ../lib/MusicBrainz/Server/Controller/User.pm:330
+#: ../lib/MusicBrainz/Server/Controller/User.pm:345
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
+msgid "Send Email"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:305
+msgid ""
+"You cannot contact other users because you have not {url|verified your email "
+"address}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:332
+msgid "You are not allowed to send messages to editors."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:346
+#, perl-brace-format
+msgid "The editor {name} has no email address attached to their account."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:360
+msgid "Email Sent"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:361
+#, perl-brace-format
+msgid ""
+"Your email has been successfully sent! Click {link|here} to continue to "
+"{user}'s profile."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:389
+msgid "Your message could not be sent"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:552
+#, perl-brace-format
+msgid "'{type}' is not an entity type that can have ratings."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:807
+msgid "An error occurred while trying to send your report."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:811
+msgid "Your report has been sent."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/WS/2/DiscID.pm:101
+msgid "Invalid TOC"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/WS/js.pm:285
+msgid ""
+"An error occurred trying to communicate with the Internet Archive servers. "
+"Please wait a few moments and try again."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/WS/js.pm:298
+msgid ""
+"We’ve hit a temporary delay while trying to fetch metadata from the Internet "
+"Archive. Please wait a minute and try again."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/WS/js.pm:414
+#: ../root/release/CoverArtDarkened.js:25
+msgid ""
+"The Cover Art Archive has had a takedown request in the past for this "
+"release, so we are unable to allow any more uploads."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/WS/js.pm:451
+#, perl-brace-format
+msgid ""
+"Cover art can’t be uploaded to this release because we don’t own the "
+"associated item at the Internet Archive. Please contact us at {contact_url} "
+"so we can resolve this."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
+msgid ""
+"You must be logged in to submit edits. {url|Log in} first, and then try "
+"submitting your edits again."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/ControllerUtils/Delete.pm:25
+msgid ""
+"Since your edit adding this object was still open, that edit has been "
+"cancelled instead of opening a new edit."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/LinkType.pm:214
+#, perl-brace-format
+msgid "{t0}-{t1} relationships"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:51
+#, perl-brace-format
+msgid ""
+"Unable to determine which recording {source_recording} should be merged "
+"into. There are multiple valid options: {target_recordings}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:52
+msgid ""
+"Some mediums being merged don’t have an equivalent on the target release: "
+"either the target release has less mediums, or the positions don’t match."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:53
+msgid "The medium positions conflict."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:54
+msgid ""
+"The track counts on at least one set of corresponding mediums do not match."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:55
+msgid ""
+"Merging a medium with tracks into one without them is not currently "
+"supported. You can always merge in the other direction!"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:56
+msgid ""
+"Mediums with a pregap track can only be merged with other mediums with a "
+"pregap track."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:57
+#, perl-brace-format
+msgid ""
+"A merge cycle exists whereby two recordings ({recording1} and {recording2}) "
+"each want to merge into the other. This is likely because the tracks or "
+"recordings are in an inconsistent order on the releases."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Vote.pm:160
+msgid "Total"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/AddAlias.pm:11
+msgid "Add area alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/AddAnnotation.pm:11
+msgid "Add area annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/Create.pm:23
+msgid "Add area"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/Delete.pm:10
+msgid "Remove area"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/DeleteAlias.pm:15
+msgid "Remove area alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
+msgid "Edit area"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/EditAlias.pm:12
+msgid "Edit area alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/Merge.pm:11 ../root/area/AreaMerge.js:28
+#: ../root/area/AreaMerge.js:30
+msgid "Merge areas"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/AddAlias.pm:11
+msgid "Add artist alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/AddAnnotation.pm:11
+msgid "Add artist annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/Create.pm:29
+msgid "Add artist"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/Delete.pm:11
+msgid "Remove artist"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/DeleteAlias.pm:15
+msgid "Remove artist alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
+msgid "Edit artist"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/EditAlias.pm:12
+msgid "Edit artist alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/EditArtistCredit.pm:26
+msgid "Edit artist credit"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/Merge.pm:16
+#: ../root/artist/ArtistMerge.js:30 ../root/artist/ArtistMerge.js:32
+msgid "Merge artists"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/Merge.pm:72
+#, perl-brace-format
+msgid ""
+"The “{artist_type}” type has not been added to the destination artist "
+"because it conflicted with the gender setting of one of the artists here. "
+"Group artists cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/Merge.pm:97
+#, perl-brace-format
+msgid ""
+"The “{gender}” gender has not been added to the destination artist because "
+"it conflicted with the group type of one of the artists here. Group artists "
+"cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/AddAlias.pm:11
+msgid "Add event alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/AddAnnotation.pm:11
+msgid "Add event annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
+msgid "Add event"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/Delete.pm:11
+msgid "Remove event"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/DeleteAlias.pm:16
+msgid "Remove event alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
+msgid "Edit event"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/EditAlias.pm:12
+msgid "Edit event alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/Merge.pm:11
+#: ../root/event/EventMerge.js:28 ../root/event/EventMerge.js:30
+msgid "Merge events"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/AddAlias.pm:11
+msgid "Add genre alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/AddAnnotation.pm:11
+msgid "Add genre annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/Create.pm:21
+msgid "Add genre"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/Delete.pm:10
+#: ../root/genre/DeleteGenre.js:31 ../root/genre/DeleteGenre.js:33
+msgid "Remove genre"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/DeleteAlias.pm:16
+msgid "Remove genre alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
+#: ../root/genre/EditGenre.js:30
+msgid "Edit genre"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/EditAlias.pm:12
+msgid "Edit genre alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddDiscID.pm:12
+#: ../lib/MusicBrainz/Server/Edit/Medium/AddDiscID.pm:11
+msgid "Add disc ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddLink.pm:11
+#: ../lib/MusicBrainz/Server/Edit/Relationship/Create.pm:32
+#: ../root/static/scripts/relationship-editor/components/RelationshipTargetTypeGroups.js:109
+msgid "Add relationship"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
+#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
+msgid "Add release"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddReleaseAnnotation.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Release/AddAnnotation.pm:12
+msgid "Add release annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddReleaseEvents.pm:12
+msgid "Add release events (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddTrack.pm:12
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddTrackKV.pm:11
+msgid "Add track (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeArtistQuality.pm:13
+msgid "Change artist quality (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseGroup.pm:13
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseAttrs.pm:17
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseLanguage.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
+#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
+#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
+msgid "Edit release"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
+#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
+#: ../root/release/ChangeQuality.js:37
+msgid "Change release data quality"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeTrackArtist.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackNum.pm:14
+msgid "Edit track (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditLink.pm:16
+#: ../lib/MusicBrainz/Server/Edit/Relationship/Edit.pm:40
+msgid "Edit relationship"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseEvents.pm:12
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseEventsOld.pm:18
+msgid "Edit release events (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
+msgid "Edit recording"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/MACToSAC.pm:13
+msgid "Convert release to single artist (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/MergeRelease.pm:13
+#: ../lib/MusicBrainz/Server/Edit/Historic/MergeReleaseMAC.pm:10
+#: ../lib/MusicBrainz/Server/Edit/Release/Merge.pm:139
+#: ../root/release/ReleaseMerge.js:37 ../root/release/ReleaseMerge.js:39
+msgid "Merge releases"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/MoveDiscID.pm:12
+#: ../lib/MusicBrainz/Server/Edit/Medium/MoveDiscID.pm:21
+msgid "Move disc ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveDiscID.pm:12
+#: ../lib/MusicBrainz/Server/Edit/Medium/RemoveDiscID.pm:10
+msgid "Remove disc ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveLabelAlias.pm:12
+#: ../lib/MusicBrainz/Server/Edit/Label/DeleteAlias.pm:16
+msgid "Remove label alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveLink.pm:11
+#: ../lib/MusicBrainz/Server/Edit/Relationship/Delete.pm:36
+msgid "Remove relationship"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveRelease.pm:15
+#: ../lib/MusicBrainz/Server/Edit/Release/Delete.pm:12
+msgid "Remove release"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveReleaseEvents.pm:12
+msgid "Remove release events (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveReleases.pm:12
+msgid "Remove releases (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/SACToMAC.pm:16
+msgid "Convert release to multiple artists (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
+msgid "Add instrument alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAnnotation.pm:11
+msgid "Add instrument annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/Create.pm:20
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:39
+msgid "Add instrument"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/Delete.pm:10
+msgid "Remove instrument"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/DeleteAlias.pm:16
+msgid "Remove instrument alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/Edit.pm:26
+msgid "Edit instrument"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/EditAlias.pm:12
+msgid "Edit instrument alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/Merge.pm:11
+#: ../root/instrument/InstrumentMerge.js:28
+#: ../root/instrument/InstrumentMerge.js:30
+msgid "Merge instruments"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/AddAlias.pm:11
+msgid "Add label alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/AddAnnotation.pm:11
+msgid "Add label annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/Create.pm:28
+msgid "Add label"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/Delete.pm:12
+msgid "Remove label"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
+msgid "Edit label"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/EditAlias.pm:12
+msgid "Edit label alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/Merge.pm:12
+#: ../root/label/LabelMerge.js:28 ../root/label/LabelMerge.js:30
+msgid "Merge labels"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Medium/Create.pm:31
+msgid "Add medium"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Medium/Edit.pm:51
+msgid "Edit medium"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:169
+msgid ""
+"The CD TOC the track times were being set from has been removed since this "
+"edit was entered."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/AddAlias.pm:11
+msgid "Add place alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/AddAnnotation.pm:11
+msgid "Add place annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/Create.pm:26
+msgid "Add place"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/Delete.pm:10
+msgid "Remove place"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/DeleteAlias.pm:15
+msgid "Remove place alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
+msgid "Edit place"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/EditAlias.pm:12
+msgid "Edit place alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/Merge.pm:11
+#: ../root/place/PlaceMerge.js:28 ../root/place/PlaceMerge.js:30
+msgid "Merge places"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/AddAlias.pm:11
+msgid "Add recording alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/AddAnnotation.pm:12
+msgid "Add recording annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/AddISRCs.pm:23
+msgid "Add ISRCs"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/Create.pm:26
+msgid "Add standalone recording"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/Delete.pm:12
+msgid "Remove recording"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/DeleteAlias.pm:15
+msgid "Remove recording alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/EditAlias.pm:12
+msgid "Edit recording alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/Merge.pm:15
+#: ../root/recording/RecordingMerge.js:30
+#: ../root/recording/RecordingMerge.js:32
+msgid "Merge recordings"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/RemoveISRC.pm:21
+msgid "Remove ISRC"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
+#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
+msgid "Relationship"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/AddLinkAttribute.pm:16
+msgid "Add relationship attribute"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/AddLinkType.pm:15
+msgid "Add relationship type"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/Delete.pm:295
+msgid ""
+"This edit would remove a relationship that is set as an example of its "
+"relationship type in the documentation. If you still think this should be "
+"removed, please {contact_url|contact us}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/Edit.pm:423
+#, perl-brace-format
+msgid ""
+"The “{relationship_type}” relationship between “{entity0}” and “{entity1}” "
+"already exists."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/EditLinkAttribute.pm:17
+msgid "Edit relationship attribute"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/EditLinkType.pm:23
+msgid "Edit relationship type"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/RemoveLinkAttribute.pm:13
+msgid "Remove relationship attribute"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/RemoveLinkType.pm:14
+msgid "Remove relationship type"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/Reorder.pm:23
+msgid "Reorder relationships"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/AddAlias.pm:11
+msgid "Add release alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/AddCoverArt.pm:21
+msgid "Add cover art"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/AddReleaseLabel.pm:19
+msgid "Add release label"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/DeleteAlias.pm:15
+msgid "Remove release alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/DeleteReleaseLabel.pm:21
+msgid "Remove release label"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/EditAlias.pm:12
+msgid "Edit release alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/EditBarcodes.pm:20
+msgid "Edit barcodes"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/EditCoverArt.pm:23
+msgid "Edit cover art"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
+msgid "Edit release label"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
+#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
+#: ../root/static/scripts/release-editor/duplicates.js:192
+msgctxt "medium format"
+msgid "(unknown)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/Merge.pm:337
+#, perl-brace-format
+msgid "These releases could not be merged: {reason}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/RemoveCoverArt.pm:21
+msgid "Remove cover art"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/ReorderCoverArt.pm:24
+msgid "Reorder cover art"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/ReorderMediums.pm:14
+msgid "Reorder mediums"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup.pm:7
+#: ../root/edit/details/AddRelease.js:65
+#: ../root/edit/details/AddReleaseGroup.js:29
+#: ../root/edit/details/EditRelease.js:81
+#: ../root/edit/details/EditReleaseGroup.js:36
+#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
+#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
+msgid "Release group"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/AddAlias.pm:11
+msgid "Add release group alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/AddAnnotation.pm:12
+msgid "Add release group annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
+msgid "Add release group"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Delete.pm:12
+msgid "Remove release group"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/DeleteAlias.pm:15
+msgid "Remove release group alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
+msgid "Edit release group"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/EditAlias.pm:12
+msgid "Edit release group alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Merge.pm:13
+#: ../root/artist/ArtistIndex.js:303
+#: ../root/release_group/ReleaseGroupMerge.js:28
+#: ../root/release_group/ReleaseGroupMerge.js:30
+msgid "Merge release groups"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Role/IPI.pm:40
+#, perl-brace-format
+msgid ""
+"The IPI {ipi} is already in use on {artist_count} artist. Please check "
+"{artist_search|all uses of this IPI}."
+msgid_plural ""
+"The IPI {ipi} is already in use on {artist_count} artists. Please check "
+"{artist_search|all uses of this IPI}."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Edit/Role/IPI.pm:46
+#, perl-brace-format
+msgid ""
+"The IPI {ipi} is already in use on {label_count} label. Please check "
+"{label_search|all uses of this IPI}."
+msgid_plural ""
+"The IPI {ipi} is already in use on {label_count} labels. Please check "
+"{label_search|all uses of this IPI}."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Edit/Role/ISNI.pm:40
+#, perl-brace-format
+msgid ""
+"The ISNI {isni} is already in use on {artist_count} artist. Please check "
+"{artist_search|all uses of this ISNI}."
+msgid_plural ""
+"The ISNI {isni} is already in use on {artist_count} artists. Please check "
+"{artist_search|all uses of this ISNI}."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Edit/Role/ISNI.pm:46
+#, perl-brace-format
+msgid ""
+"The ISNI {isni} is already in use on {label_count} label. Please check "
+"{label_search|all uses of this ISNI}."
+msgid_plural ""
+"The ISNI {isni} is already in use on {label_count} labels. Please check "
+"{label_search|all uses of this ISNI}."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/AddAlias.pm:11
+msgid "Add series alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/AddAnnotation.pm:11
+msgid "Add series annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/Create.pm:22
+msgid "Add series"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/Delete.pm:12
+msgid "Remove series"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/DeleteAlias.pm:16
+msgid "Remove series alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
+msgid "Edit series"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/EditAlias.pm:12
+msgid "Edit series alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/Merge.pm:11
+#: ../root/series/SeriesMerge.js:28 ../root/series/SeriesMerge.js:30
+msgid "Merge series"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
+#: ../root/utility/edit.js:47
+msgid "Open"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:272 ../root/utility/edit.js:40
+msgid "Applied"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:273 ../root/utility/edit.js:45
+msgid "Failed vote"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:274 ../root/utility/edit.js:43
+msgid "Failed dependency"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
+#: ../root/report/ReportNotAvailable.js:13
+#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
+#, fuzzy
+msgid "Error"
+msgstr ""
+"#-#-#-#-# mb_server.pot (PACKAGE VERSION) #-#-#-#-#\n"
+"#-#-#-#-# javascript.pot (PACKAGE VERSION) #-#-#-#-#\n"
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:276 ../root/utility/edit.js:44
+msgid "Failed prerequisite"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:277 ../root/utility/edit.js:46
+msgid "No votes"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/WikiDoc.pm:7
+msgid "Wiki documentation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/WikiDoc/Change.pm:16
+msgid "Change WikiDoc"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/AddAlias.pm:12
+msgid "Add work alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/AddAnnotation.pm:12
+msgid "Add work annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/AddISWCs.pm:21
+msgid "Add ISWCs"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
+msgid "Add work"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/Delete.pm:11
+msgid "Remove work"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/DeleteAlias.pm:16
+msgid "Remove work alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/Edit.pm:88
+msgid "Edit work"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/EditAlias.pm:13
+msgid "Edit work alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/Merge.pm:12 ../root/work/WorkMerge.js:30
+#: ../root/work/WorkMerge.js:32
+msgid "Merge works"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/RemoveISWC.pm:23
+msgid "Remove ISWC"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/EditSearch/Predicate.pm:67
+msgid "This operator is not supported"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:91
+msgctxt "autoeditor election status"
+msgid "Awaiting 1st seconder"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:92
+msgctxt "autoeditor election status"
+msgid "Awaiting 2nd seconder"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:93
+#, perl-brace-format
+msgctxt "autoeditor election status"
+msgid "Voting open since {date}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:94
+#, perl-brace-format
+msgctxt "autoeditor election status"
+msgid "Accepted at {date}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:95
+#, perl-brace-format
+msgctxt "autoeditor election status"
+msgid "Declined at {date}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:96
+#, perl-brace-format
+msgctxt "autoeditor election status"
+msgid "Cancelled at {date}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:100
+msgctxt "autoeditor election status (short)"
+msgid "Awaiting 1st seconder"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:101
+msgctxt "autoeditor election status (short)"
+msgid "Awaiting 2nd seconder"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:102
+msgctxt "autoeditor election status (short)"
+msgid "Voting open"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:103
+msgctxt "autoeditor election status (short)"
+msgid "Accepted"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:104
+msgctxt "autoeditor election status (short)"
+msgid "Declined"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:105
+msgctxt "autoeditor election status (short)"
+msgid "Cancelled"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Barcode.pm:25
+#: ../root/static/scripts/common/utility/formatBarcode.js:15
+msgid "[none]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/LinkAttribute.pm:33
+#: ../root/static/scripts/common/utility/displayLinkAttribute.js:39
+#, perl-brace-format
+msgid "{attribute} [{credited_as}]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/LinkAttribute.pm:37
+#: ../root/static/scripts/common/utility/displayLinkAttribute.js:29
+#, perl-brace-format
+msgid "{attribute}: {value}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:50
+msgid " – ????"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:56
+#, perl-brace-format
+msgid "{begindate} – {enddate}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:60
+#, perl-brace-format
+msgid "– {enddate}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:64
+#, perl-brace-format
+msgid "{begindate} – ????"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:66
+#, perl-brace-format
+msgid "{begindate} –"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Role/Relatable.pm:59
+#: ../root/static/scripts/common/utility/groupRelationships.js:460
+#: ../root/static/scripts/common/utility/groupRelationships.js:466
+#, perl-brace-format
+msgid "{role} (as {credited_name})"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Anghami.pm:10
+msgid "Stream at Anghami"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Audiomack.pm:10
+msgid "Stream at Audiomack"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Boomplay.pm:10
+msgid "Stream at Boomplay"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/CPDL.pm:9
+msgid "Score(s) at CPDL"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Deezer.pm:10
+msgid "Stream at Deezer"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Dogmazic.pm:10
+msgid "Stream at Dogmazic"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Gutenberg.pm:9
+msgid "Project Gutenberg"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/IMSLP.pm:31
+msgid "Score at IMSLP"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/MiguMusic.pm:9
+msgid "Stream at Migu Music"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/NicoNicoVideo.pm:9
+msgid "Niconico"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/RateYourMusic.pm:13
+msgid "Interview at Rate Your Music"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Runeberg.pm:9
+msgid "Project Runeberg"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Spotify.pm:14
+msgid "Playlists at Spotify"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Spotify.pm:16
+msgid "Stream at Spotify"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Tidal.pm:14
+msgid "Purchase at Tidal"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Tidal.pm:16
+msgid "Stream at Tidal"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Weibo.pm:9
+msgid "Weibo"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Wikisource.pm:9
+msgid "Wikisource"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/YouTubeMusic.pm:10
+msgid "Stream at YouTube Music"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Language.pm:51
+#: ../root/admin/attributes/Language.js:16
+msgctxt "language optgroup"
+msgid "Hidden"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Language.pm:52
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:58
+#: ../root/admin/attributes/Language.js:17
+msgctxt "language optgroup"
+msgid "Other"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Language.pm:53
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:58
+#: ../root/admin/attributes/Language.js:18
+msgctxt "language optgroup"
+msgid "Frequently used"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Script.pm:42
+#: ../root/admin/attributes/Script.js:16
+msgctxt "script frequency"
+msgid "Hidden"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Script.pm:43
+#: ../root/admin/attributes/Script.js:17
+msgctxt "script frequency"
+msgid "Other (Uncommon)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Script.pm:44
+#: ../root/admin/attributes/Script.js:18
+msgctxt "script frequency"
+msgid "Other"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Script.pm:45
+#: ../root/admin/attributes/Script.js:19
+msgctxt "script frequency"
+msgid "Frequently used"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/LinkAttributeType.pm:59
+msgid ""
+"Cannot add or edit instruments here; use the instrument editing forms "
+"instead."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Alias.pm:114
+msgid "This alias can only be a primary alias if a locale is selected"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Alias.pm:126
+msgid "This alias already exists."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Application.pm:47
+msgid "Redirect URL must be entered for web applications."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Application.pm:51
+msgid ""
+"Redirect URL scheme must be either http
or https
"
+"for web applications."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Application.pm:58
+msgid ""
+"Redirect URL scheme must be a reverse-DNS string, as in org.example."
+"app://auth
, for installed applications."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Area.pm:88
+msgid "An area already exists with this ISO code"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Artist.pm:75
+msgid "Group artists cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Artist.pm:82
+msgid "Orchestras cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Artist.pm:89
+msgid "Choirs cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Collection.pm:92
+msgid "The collection type must match the type of entities it contains."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Collection.pm:110
+#, perl-brace-format
+msgid ""
+"To add “{editor}” as a collaborator, please select them from the dropdown."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Collection.pm:115
+#, perl-brace-format
+msgid "Editor “{editor}” does not exist."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/EditNoteModify.pm:30
+msgid ""
+"You must provide an edit note. If you want to blank the note, please remove "
+"it instead."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:50
+#, perl-brace-format
+msgid "Please add an artist name for {credit}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:57
+#, perl-brace-format
+msgid ""
+"Artist \"{artist}\" is unlinked, please select an existing artist. You may "
+"need to add a new artist to MusicBrainz first."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:63
+msgid "Please add an artist name for each credit."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:78
+msgid "Artist credit field is required"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Coordinates.pm:58
+msgid "These coordinates could not be parsed"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/DatePeriod.pm:42
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:68
+msgid "The end date cannot precede the begin date."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/DiscID.pm:15
+msgid "This is not a valid disc ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/FreeDBID.pm:15
+msgid "This is not a valid FreeDB ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/GID.pm:15
+msgid "This is not a valid MBID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ID.pm:15
+msgid "This is not a valid database ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/IPI.pm:15
+#: ../lib/MusicBrainz/Server/Form/Field/IPI.pm:19
+msgid "This is not a valid IPI."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISNI.pm:15
+#: ../lib/MusicBrainz/Server/Form/Field/ISNI.pm:19
+msgid "This is not a valid ISNI."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISO_3166_1.pm:15
+msgid "This is not a valid ISO 3166-1 code"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISO_3166_2.pm:15
+msgid "This is not a valid ISO 3166-2 code"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISO_3166_3.pm:15
+msgid "This is not a valid ISO 3166-3 code"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISRC.pm:17
+msgid "This is not a valid ISRC"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISRC.pm:21
+msgid "This is not a valid ISRC."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISWC.pm:15
+#: ../lib/MusicBrainz/Server/Form/Field/ISWC.pm:19
+msgid "This is not a valid ISWC"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/LabelCode.pm:17
+msgid "Label codes must be greater than 0 and 5 digits at most"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Length.pm:31
+msgid "Not a valid time. Must be in the format MM:SS"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/PartialDate.pm:68
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:103
+msgid "invalid date"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Relationship.pm:95
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:290
+msgid ""
+"You must select a relationship type and target entity for every relationship."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Setlist.pm:15
+msgid "Please ensure all lines start with @, * or #, followed by a space."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Text.pm:21
+msgid "The characters you’ve entered are invalid or not allowed."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Time.pm:19
+msgid "This is not a valid time."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
+msgid "URL protocol must be HTTP, HTTPS or FTP"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Event.pm:31
+msgctxt "event type"
+msgid "[none]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Release.pm:95
+msgid ""
+"Must be a valid date or partial date. Examples: 2006-05-25, "
+"1990-01, ????-01, ..."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/ReleaseGroup.pm:54
+#: ../lib/MusicBrainz/Server/Form/Filter/ReleaseGroup.pm:63
+msgctxt "release group type"
+msgid "[none]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Work.pm:29
+msgid "As performer"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Work.pm:30
+msgid "As writer"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Work.pm:37
+msgctxt "work type"
+msgid "[none]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge.pm:21
+msgid "Please pick the entity you want the others merged into."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:54
+#: ../root/edit/details/MergeReleases.js:35
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:38
+msgid "Append mediums to target release"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:55
+#: ../root/edit/details/MergeReleases.js:36
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:39
+msgid "Merge mediums and recordings"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:66
+msgid "Another medium is already in this position"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:69
+msgid "Positions must be greater than 0"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Recording.pm:68
+msgid ""
+"This recording’s duration is determined by the tracks that are linked to it, "
+"and cannot be changed directly."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Recording/Standalone.pm:11
+msgid "You must provide an edit note when adding a standalone recording"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Release/AddCoverArt.pm:59
+#: ../lib/MusicBrainz/Server/Form/Role/CSRFToken.pm:10
+#: ../lib/MusicBrainz/Server/Form/Role/CSRFToken.pm:81
+msgid "The form you’ve submitted has expired. Please resubmit your request."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/EditNote.pm:26
+msgid "You must provide an edit note"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:34
+msgid "Invalid URL format"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:65
+msgid "A language is required."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:71
+msgid "A fluency level is required."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
+#: ../root/static/scripts/common/constants.js:366
+msgid "Basic"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
+#: ../root/static/scripts/common/constants.js:367
+msgid "Intermediate"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
+#: ../root/static/scripts/common/constants.js:365
+msgid "Advanced"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
+#: ../root/static/scripts/common/constants.js:368
+msgid "Native"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:96
+msgid "You must supply a complete birth date for us to display your age."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:100
+msgid "Birth year must be after 1900"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
+#: ../root/layout/components/Search.js:45
+#: ../root/search/components/CDStubResults.js:44
+#: ../root/search/components/SearchForm.js:46
+msgid "CD Stub"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:49
+#: ../root/layout/components/Search.js:42
+#: ../root/search/components/SearchForm.js:48
+msgctxt "noun"
+msgid "Tag"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
+#: ../root/search/components/SearchForm.js:60
+msgid "Indexed search"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:64
+msgid "Indexed search with advanced query syntax"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:65
+#: ../root/search/components/SearchForm.js:67
+msgid "Direct database search"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Series.pm:29
+msgid "A type is required."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/ChangePassword.pm:53
+msgid "The old password is incorrect"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/ChangePassword.pm:58
+msgid "An account with this name could not be found"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Login.pm:15
+msgid "Username field is required"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Login.pm:23
+msgid "Password field is required"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Preferences.pm:84
+#: ../root/static/scripts/account/components/PreferencesForm.js:80
+msgid "Daily"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Preferences.pm:85
+#: ../root/static/scripts/account/components/PreferencesForm.js:81
+msgid "Weekly"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Preferences.pm:86
+#: ../root/static/scripts/account/components/PreferencesForm.js:82
+msgid "Never"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Register.pm:15
+#, perl-brace-format
+msgid ""
+"The value of this field cannot be longer than {max} characters, but you "
+"entered {actual}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Register.pm:44
+msgid "Please enter a password in this field"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Register.pm:55
+msgid "The password confirmation does not match the password"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:35
+#: ../root/user/ReportUser.js:48
+msgid "Editor is spamming"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:36
+#: ../root/user/ReportUser.js:52
+msgid "Editor is unresponsive to edit notes"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:37
+#: ../root/user/ReportUser.js:56
+msgid "Editor intentionally ignores accepted guidelines"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:38
+#: ../root/user/ReportUser.js:60
+msgid "Editor is overzealous in enforcing guidelines as rules"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:39
+#: ../root/user/ReportUser.js:64
+msgid "Editor engages in overzealous or abusive yes/no voting"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:40
+#: ../root/user/ReportUser.js:69
+msgid "Editor has violated some other part of our Code of Conduct"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:46
+#: ../root/static/scripts/common/i18n/localizeLanguageName.js:19
+msgid "[No lyrics]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:82
+msgctxt "script optgroup"
+msgid "Frequently used"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:82
+msgctxt "script optgroup"
+msgid "Other"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:214
+msgid ""
+"This username contains invalid characters. (Check for consecutive spaces.)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:217
+msgid "This username is reserved for internal use."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:220
+msgid "Please choose another username, this one is already taken."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:60
+msgid "Please select a work attribute type."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:67
+msgid "Please enter a work attribute value."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:94
+msgid ""
+"You cannot select “[Multiple languages]” and specific languages at the same "
+"time."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:99
+msgid "You cannot select “[No lyrics]” and a lyrics language at the same time."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:104
+msgid "You cannot select the same language more than once."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:146
+msgid "Unknown work attribute type."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:155
+msgid "You cannot enter the same attribute and value more than once."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:162
+msgid "This value is not allowed for this work attribute type."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:30
+msgid "(Special case)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:31
+msgid ""
+"An album release primarily consists of previously unreleased material. This "
+"includes album re-issues, with or without bonus tracks."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:32
+msgid ""
+"A single typically has one main song and possibly a handful of additional "
+"tracks or remixes of the main track. A single is usually named after its "
+"main song."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:33
+msgid ""
+"An EP is an Extended Play release and often contains the letters EP in the "
+"title."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:34
+msgid ""
+"A compilation is a collection of previously released tracks by one or more "
+"artists."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:35
+msgid ""
+"A soundtrack is the musical score to a movie, TV series, stage show, "
+"computer game etc."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:36
+msgid "Non-music spoken word releases."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:37
+msgid "An interview release contains an interview with the Artist."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:38
+msgid "An audiobook is a book read by a narrator without music."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:39
+msgid "A release that was recorded live."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:40
+msgid "A release that was (re)mixed from previously released material."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:41
+msgid "Any release that does not fit any of the categories above."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:43
+msgid ""
+"Any release officially sanctioned by the artist and/or their record company. "
+"(Most releases will fit into this category.)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:44
+msgid ""
+"A giveaway release or a release intended to promote an upcoming official "
+"release. (e.g. prerelease albums or releases included with a magazine)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:45
+msgid ""
+"An unofficial/underground release that was not sanctioned by the artist and/"
+"or the record company."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:46
+msgid ""
+"A pseudo-release is a duplicate release for translation/transliteration "
+"purposes."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Translation.pm:254
+#: ../root/static/scripts/common/i18n/commaList.js:24
+#, perl-brace-format
+msgid "{almost_last_list_item} and {last_list_item}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Translation.pm:260
+#: ../root/static/scripts/common/i18n/commaList.js:30
+#, perl-brace-format
+msgid "{list_item}, {rest}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Translation.pm:271
+#: ../root/static/scripts/common/i18n/commaList.js:21
+#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
+#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
+#, perl-brace-format
+msgid "{last_list_item}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Translation.pm:274
+#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
+#, perl-brace-format
+msgid "{commas_only_list_item}, {rest}"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:45
+msgid ""
+"Please change your password. Unfortunately we've discovered that secure "
+"hashes user's passwords were temporarily available for download on our FTP "
+"site. While it is extremely unlikely that anyone will be able to derive the "
+"original passwords from this mishap, we are requiring all of our users to "
+"change their passwords. Sorry for the inconvenience. For more information "
+"see {blog|the recent blog post}."
+msgstr ""
+
+#: ../root/account/ChangePassword.js:58
+msgid "Please enter your old password below, and then your new password."
+msgstr ""
+
+#: ../root/account/ChangePassword.js:69 ../root/account/LostPassword.js:44
+#: ../root/admin/EditUser.js:155
+#: ../root/static/scripts/account/components/RegisterForm.js:64
+#: ../root/user/Login.js:100
+msgid "Username"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:77
+msgid "Old password:"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:85 ../root/account/ResetPassword.js:41
+msgid "New password:"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:93 ../root/account/ResetPassword.js:49
+#: ../root/static/scripts/account/components/RegisterForm.js:100
+msgid "Confirm password:"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:99 ../root/account/ChangePassword.js:117
+#: ../root/account/ChangePassword.js:119 ../root/account/ChangePassword.js:130
+#: ../root/account/ChangePassword.js:131
+#: ../root/components/UserAccountTabs.js:86
+msgid "Change Password"
+msgstr ""
+
+#: ../root/account/Donation.js:32 ../root/account/Donation.js:34
+#: ../root/components/UserAccountTabs.js:92
+msgid "Donation Check"
+msgstr ""
+
+#: ../root/account/Donation.js:38
+msgid ""
+"We were not able to check your donation status right now. Please try again "
+"later."
+msgstr ""
+
+#: ../root/account/Donation.js:45
+msgid ""
+"We have not received a donation from you recently. If you have just made a "
+"PayPal donation, then we have not received a notification from PayPal yet. "
+"Please wait a few minutes and reload this page to check again."
+msgstr ""
+
+#: ../root/account/Donation.js:52
+msgid ""
+"If you would like to make a donation, {donate|you can do that here}. If you "
+"have donated, but you are still being nagged, please {contact|contact us}."
+msgstr ""
+
+#: ../root/account/Donation.js:62
+msgid "Thank you for contributing to MusicBrainz."
+msgstr ""
+
+#: ../root/account/Donation.js:68
+msgid "You will not be nagged for another {days} days."
+msgstr ""
+
+#: ../root/account/Donation.js:74
+msgid "You will never be nagged again!"
+msgstr ""
+
+#: ../root/account/EditProfile.js:34 ../root/account/EditProfile.js:36
+#: ../root/components/UserAccountTabs.js:74
+msgid "Edit Profile"
+msgstr ""
+
+#: ../root/account/EditProfile.js:39
+msgid ""
+"See also your {uri|user preferences}, which include your privacy settings."
+msgstr ""
+
+#: ../root/account/EmailVerificationStatus.js:19
+msgid "Email Verification"
+msgstr ""
+
+#: ../root/account/EmailVerificationStatus.js:23
+msgid ""
+"Thank you, your email address has now been verified! If you still can't "
+"edit, please try to log out and log in again."
+msgstr ""
+
+#: ../root/account/LostPassword.js:29 ../root/account/LostPassword.js:30
+#: ../root/account/LostPasswordSent.js:14
+msgid "Lost Password"
+msgstr ""
+
+#: ../root/account/LostPassword.js:33
+msgid ""
+"Enter your username and email below. We will send you an email with a link "
+"to reset your password. If you have forgotten your username, {link|retrieve "
+"it} first and then reset your password."
+msgstr ""
+
+#: ../root/account/LostPassword.js:50 ../root/account/LostUsername.js:37
+#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
+#: ../root/admin/components/UserList.js:32
+#: ../root/report/components/EditorList.js:79
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
+#: ../root/static/scripts/account/components/PreferencesForm.js:208
+#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
+msgid "Email"
+msgstr ""
+
+#: ../root/account/LostPassword.js:55 ../root/account/ResetPassword.js:29
+#: ../root/account/ResetPassword.js:30 ../root/account/ResetPassword.js:55
+#: ../root/account/ResetPasswordStatus.js:19
+msgid "Reset Password"
+msgstr ""
+
+#: ../root/account/LostPasswordSent.js:14
+#: ../root/account/LostUsernameSent.js:14
+msgid "Email Sent!"
+msgstr ""
+
+#: ../root/account/LostPasswordSent.js:17
+msgid ""
+"We've sent you instructions on how to reset your password. If you don't "
+"receive this email or still have problems logging in, please {link|contact "
+"us}."
+msgstr ""
+
+#: ../root/account/LostUsername.js:27 ../root/account/LostUsername.js:28
+#: ../root/account/LostUsernameSent.js:14
+msgid "Lost Username"
+msgstr ""
+
+#: ../root/account/LostUsername.js:30
+msgid ""
+"Enter your email address below and we will send you an email with your "
+"MusicBrainz account information."
+msgstr ""
+
+#: ../root/account/LostUsernameSent.js:17
+msgid ""
+"We've sent you information about your MusicBrainz account. If you don't "
+"receive this email or still have problems logging in, please {link|contact "
+"us}."
+msgstr ""
+
+#: ../root/account/Preferences.js:34 ../root/account/PreferencesSaved.js:18
+#: ../root/components/UserAccountTabs.js:80
+msgid "Preferences"
+msgstr ""
+
+#: ../root/account/PreferencesSaved.js:21
+msgid ""
+"Your preferences have been saved. Click {link|here} to continue to your user "
+"page."
+msgstr ""
+
+#: ../root/account/Register.js:28 ../root/account/Register.js:35
+msgid "Create an Account"
+msgstr ""
+
+#: ../root/account/Register.js:31
+msgid "Captcha incorrect. Try again."
+msgstr ""
+
+#: ../root/account/Register.js:39
+msgid ""
+"Note that any contributions you make to MusicBrainz will be released "
+"into the Public Domain and/or licensed under a Creative Commons by-nc-sa "
+"license. Furthermore, you give the MetaBrainz Foundation the right to "
+"license this data for commercial use. Please read our {doc|license page} for "
+"more details."
+msgstr ""
+
+#: ../root/account/Register.js:51
+msgid ""
+"MusicBrainz believes strongly in the privacy of its users! Any personal "
+"information you choose to provide will not be sold or shared with anyone "
+"else. For full details, please read our {doc|Privacy Policy}."
+msgstr ""
+
+#: ../root/account/Register.js:61
+msgid ""
+"You may remove your personal information from our services anytime by "
+"deleting your account. For more details, see our {doc|GDPR compliance "
+"statement}."
+msgstr ""
+
+#: ../root/account/Register.js:73
+msgid ""
+"If you have any questions, please review the {faq|FAQs} or {doc|"
+"documentation} before {con|contacting us}. "
+msgstr ""
+
+#: ../root/account/Register.js:85
+msgid ""
+"Follow our {bl|blog} or {tw|twitter account}! To talk to other users, try "
+"the {fo|forums} or {irc|IRC}."
+msgstr ""
+
+#: ../root/account/Register.js:98
+msgid ""
+"MusicBrainz has one account type for all users. If you represent an artist "
+"or label, please use the above form to create an account."
+msgstr ""
+
+#: ../root/account/ResetPassword.js:33
+msgid "Set a new password for your MusicBrainz account."
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:34
+#: ../root/static/scripts/account/components/ApplicationForm.js:40
+msgid "Web Application"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:35
+#: ../root/static/scripts/account/components/ApplicationForm.js:41
+msgid "Installed Application"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:65
+msgid "Revoke Access"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:77
+msgid "Offline Access"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:94
+#: ../root/account/applications/ApplicationList.js:95
+#: ../root/layout/components/TopMenu.js:51
+msgid "Applications"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:97
+msgid "Authorized Applications"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:101
+msgid ""
+"Some applications and websites support accessing private data from or "
+"submitting data to MusicBrainz but require your permission to access your "
+"account. These are the applications that you have authorized to access your "
+"MusicBrainz account. If you no longer use some of the applications, you can "
+"revoke their access."
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:115
+#: ../root/account/applications/ApplicationList.js:154
+msgid "Application"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:116
+msgid "Access"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:117
+msgid "Last granted token"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:118
+#: ../root/account/applications/ApplicationList.js:158
+#: ../root/admin/attributes/Attribute.js:85
+#: ../root/admin/attributes/Language.js:46
+#: ../root/admin/attributes/Script.js:45
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:30
+#: ../root/admin/wikidoc/WikiDocIndex.js:118
+#: ../root/components/Aliases/AliasTable.js:29
+#: ../root/components/Aliases/ArtistCreditList.js:54
+#: ../root/static/scripts/common/components/FingerprintTable.js:80
+#: ../root/utility/tableColumns.js:82
+msgid "Actions"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:129
+msgid "You have not authorized any applications."
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:132
+msgid "Developer Applications"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:136
+msgid ""
+"Do you want to develop an application that uses the {mb_api_doc_url|"
+"MusicBrainz API}? {register_url|Register an application} to generate OAuth "
+"tokens. See our {oauth2_doc_url|OAuth documentation} for more details."
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:156
+msgid "OAuth Client ID"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:157
+msgid "OAuth Client Secret"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:167
+msgid "You do not have any registered applications."
+msgstr ""
+
+#: ../root/account/applications/EditApplication.js:21
+#: ../root/account/applications/EditApplication.js:22
+msgid "Edit Application"
+msgstr ""
+
+#: ../root/account/applications/EditApplication.js:26
+#: ../root/admin/EditBanner.js:39 ../root/admin/wikidoc/EditWikiDoc.js:51
+#: ../root/admin/wikidoc/WikiDocIndex.js:102
+msgid "Update"
+msgstr ""
+
+#: ../root/account/applications/RegisterApplication.js:22
+#: ../root/account/applications/RegisterApplication.js:23
+msgid "Register Application"
+msgstr ""
+
+#: ../root/account/applications/RegisterApplication.js:27
+msgid "Register"
+msgstr ""
+
+#: ../root/account/applications/RemoveApplication.js:21
+msgid "Are you sure you want to remove this application?"
+msgstr ""
+
+#: ../root/account/applications/RemoveApplication.js:22
+msgid "Remove Application"
+msgstr ""
+
+#: ../root/account/applications/RevokeApplicationAccess.js:30
+msgid "You’re about to revoke {app}’s permissions to:"
+msgstr ""
+
+#: ../root/account/applications/RevokeApplicationAccess.js:42
+msgid "Are you sure you want to revoke this application’s access?"
+msgstr ""
+
+#: ../root/account/applications/RevokeApplicationAccess.js:46
+msgid "Revoke Application Access"
+msgstr ""
+
+#: ../root/account/sso/DiscourseRegistered.js:19
+#: ../root/account/sso/DiscourseRegistered.js:20
+msgid "Account Created"
+msgstr ""
+
+#: ../root/account/sso/DiscourseRegistered.js:23
+#: ../root/account/sso/DiscourseUnconfirmedEmailAddress.js:17
+msgid ""
+"You must verify your email address before you can log in to {discourse|"
+"MetaBrainz Community Discourse}."
+msgstr ""
+
+#: ../root/account/sso/DiscourseRegistered.js:30
+msgid ""
+"An email has been sent to {addr}. Please check your mailbox and click on the "
+"link in the email to verify your email address."
+msgstr ""
+
+#: ../root/account/sso/DiscourseUnconfirmedEmailAddress.js:13
+#: ../root/account/sso/DiscourseUnconfirmedEmailAddress.js:14
+msgid "Unverified Email Address"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:47 ../root/admin/DeleteUser.js:49
+#: ../root/components/UserAccountTabs.js:111
+msgid "Delete Account"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:54
+msgid ""
+"Are you sure you want to delete all information about {e}? This cannot be "
+"undone!"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:66
+msgid "Allow the name “{editor_name}” to be reused."
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:75
+msgid "Delete {e}"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:84
+msgid ""
+"For information about the account deletion process, please read the {uri|"
+"account FAQ}."
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:92
+msgid ""
+"This will also cancel all your open edits and change all of your votes on "
+"any edits currently open to Abstain."
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:100
+msgid ""
+"Keep in mind this process might take a fairly long time if you have entered "
+"a lot of tags. If the process times out, please {contact_url|contact us}."
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:109
+msgid "Are you sure you want to delete your account? This cannot be undone!"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:120
+msgid "Delete my account"
+msgstr ""
+
+#: ../root/admin/EditBanner.js:25 ../root/layout/components/TopMenu.js:156
+msgid "Edit Banner Message"
+msgstr ""
+
+#: ../root/admin/EditBanner.js:27
+msgid "Edit banner message"
+msgstr ""
+
+#: ../root/admin/EditBanner.js:29
+msgid ""
+"This will set the banner message that is shown at the top of each page. An "
+"empty string removes the banner."
+msgstr ""
+
+#: ../root/admin/EditBanner.js:36
+msgid "Banner message"
+msgstr ""
+
+#: ../root/admin/EditUser.js:69
+msgid "Adjust User Account Flags"
+msgstr ""
+
+#: ../root/admin/EditUser.js:76 ../root/admin/PrivilegeSearch.js:63
+msgid "User permissions"
+msgstr ""
+
+#: ../root/admin/EditUser.js:79 ../root/admin/PrivilegeSearch.js:67
+msgid "Auto-editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:84 ../root/admin/PrivilegeSearch.js:72
+msgid "Transclusion editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:89 ../root/admin/PrivilegeSearch.js:77
+msgid "Relationship editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:94 ../root/admin/PrivilegeSearch.js:82
+msgid "Location editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:99 ../root/admin/PrivilegeSearch.js:87
+msgid "Banner message editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:103 ../root/admin/PrivilegeSearch.js:92
+msgid "User sanctions"
+msgstr ""
+
+#: ../root/admin/EditUser.js:106 ../root/admin/PrivilegeSearch.js:96
+msgid "Spammer"
+msgstr ""
+
+#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
+#: ../root/user/UserProfile.js:901
+msgid "Editing/voting disabled"
+msgstr ""
+
+#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
+#: ../root/user/UserProfile.js:904
+msgid "Edit notes disabled"
+msgstr ""
+
+#: ../root/admin/EditUser.js:125 ../root/admin/PrivilegeSearch.js:117
+msgid "Technical flags"
+msgstr ""
+
+#: ../root/admin/EditUser.js:133 ../root/admin/PrivilegeSearch.js:126
+msgid "No nag"
+msgstr ""
+
+#: ../root/admin/EditUser.js:137 ../root/admin/PrivilegeSearch.js:131
+msgid "Administration flags"
+msgstr ""
+
+#: ../root/admin/EditUser.js:141
+msgid "MBID submitter"
+msgstr ""
+
+#: ../root/admin/EditUser.js:148 ../root/admin/PrivilegeSearch.js:140
+msgid "Account admin"
+msgstr ""
+
+#: ../root/admin/EditUser.js:152
+msgid "Edit profile"
+msgstr ""
+
+#: ../root/admin/EditUser.js:166
+msgid "Skip verification"
+msgstr ""
+
+#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
+#: ../root/report/components/EditorList.js:74
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
+msgid "Website"
+msgstr ""
+
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
+msgstr ""
+
+#: ../root/admin/EditUser.js:182
+msgid "Edit user"
+msgstr ""
+
+#: ../root/admin/EmailSearch.js:31 ../root/admin/EmailSearch.js:33
+msgid "Search users by email"
+msgstr ""
+
+#: ../root/admin/EmailSearch.js:38
+msgid "Enter a {link|POSIX regular expression}."
+msgstr ""
+
+#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
+#: ../root/user/UserProfile.js:428
+msgid "IP lookup"
+msgstr ""
+
+#: ../root/admin/IpLookup.js:30
+msgid "IP hash:"
+msgstr ""
+
+#: ../root/admin/PrivilegeSearch.js:44 ../root/admin/PrivilegeSearch.js:46
+msgid "Search users by privileges"
+msgstr ""
+
+#: ../root/admin/PrivilegeSearch.js:50
+msgid ""
+"Select the flags you want to match. Editors which have other flags in "
+"addition to the selected ones will also be shown, unless you select “Exact "
+"match only” below."
+msgstr ""
+
+#: ../root/admin/PrivilegeSearch.js:58
+msgid "Exact match only"
+msgstr ""
+
+#: ../root/admin/PrivilegeSearch.js:135
+msgid "MBID submitter"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:30
+msgid "Disc IDs allowed"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:39
+#: ../root/edit/details/AddRelationshipAttribute.js:64
+#: ../root/edit/details/EditRelationshipAttribute.js:109
+msgid "Free text"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:81
+#: ../root/otherlookup/OtherLookupForm.js:107
+msgid "MBID"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:83
+msgid "Parent ID"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:116
+#: ../root/admin/attributes/Language.js:77
+#: ../root/admin/attributes/Script.js:75
+msgid "Add new attribute"
+msgstr ""
+
+#: ../root/admin/attributes/CannotRemoveAttribute.js:19
+#: ../root/admin/attributes/CannotRemoveAttribute.js:20
+msgid "Cannot Remove Attribute"
+msgstr ""
+
+#: ../root/admin/attributes/DeleteAttribute.js:26
+msgid "Are you sure you wish to remove the {name} attribute?"
+msgstr ""
+
+#: ../root/admin/attributes/DeleteAttribute.js:30
+msgid "Remove Attribute"
+msgstr ""
+
+#: ../root/admin/components/UserList.js:30
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
+msgid "Member since"
+msgstr ""
+
+#: ../root/admin/components/UserList.js:33
+msgid "Verified on"
+msgstr ""
+
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
+msgid "Last login"
+msgstr ""
+
+#: ../root/admin/components/UserList.js:52
+#: ../root/report/components/EditorList.js:57
+msgid "delete"
+msgstr ""
+
+#: ../root/admin/statistics-events/CreateStatisticsEvent.js:21
+#: ../root/admin/statistics-events/CreateStatisticsEvent.js:23
+msgid "Add a new statistics event"
+msgstr ""
+
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:21
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:22
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:45
+msgid "Remove statistics event"
+msgstr ""
+
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:37
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:47
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:29
+#: ../root/static/scripts/common/components/FingerprintTable.js:105
+msgid "Link"
+msgstr ""
+
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:42
+msgid "Are you sure you want to remove this statistics event?"
+msgstr ""
+
+#: ../root/admin/statistics-events/EditStatisticsEvent.js:21
+msgid "Edit statistics event"
+msgstr ""
+
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:27
+msgid "Statistics event details"
+msgstr ""
+
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:53
+#: ../root/edit/ModifyNote.js:81 ../root/oauth2/OAuth2FormPost.js:44
+#: ../root/static/scripts/edit/components/InlineSubmitButton.js:23
+#: ../root/user/components/UserTagFilters.js:61
+msgid "Submit"
+msgstr ""
+
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:21
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:22
+msgid "Statistics Events"
+msgstr ""
+
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:59
+msgctxt "statistics event"
+msgid "Add new event"
+msgstr ""
+
+#: ../root/admin/wikidoc/CreateWikiDoc.js:29
+#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
+msgid "Add Page"
+msgstr ""
+
+#: ../root/admin/wikidoc/CreateWikiDoc.js:36
+#: ../root/admin/wikidoc/EditWikiDoc.js:36
+msgid "Page:"
+msgstr ""
+
+#: ../root/admin/wikidoc/CreateWikiDoc.js:42
+msgid "Version:"
+msgstr ""
+
+#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
+#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
+msgid "Remove Page"
+msgstr ""
+
+#: ../root/admin/wikidoc/DeleteWikiDoc.js:28
+msgid ""
+"Are you sure you wish to remove the page “{page_uri|{page_name}}” from the "
+"transclusion table?"
+msgstr ""
+
+#: ../root/admin/wikidoc/DeleteWikiDoc.js:38
+#: ../root/components/ConfirmLayout.js:38 ../root/edit/DeleteNote.js:64
+msgid "Yes, I am sure"
+msgstr ""
+
+#: ../root/admin/wikidoc/EditWikiDoc.js:30
+#: ../root/admin/wikidoc/EditWikiDoc.js:32
+msgid "Update Page"
+msgstr ""
+
+#: ../root/admin/wikidoc/EditWikiDoc.js:40
+msgid "Current version:"
+msgstr ""
+
+#: ../root/admin/wikidoc/EditWikiDoc.js:45
+#: ../root/edit/details/ChangeWikiDoc.js:61
+msgid "New version:"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:41
+msgid "Page name"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:47
+msgid "Transcluded version"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:68
+msgid "Error!"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:81
+msgid "diff"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:90
+msgid "Wiki version"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:114
+msgid "View on wiki"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:149
+#: ../root/admin/wikidoc/WikiDocIndex.js:151
+msgid "Transclusion Table"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:154
+msgid ""
+"Read the {doc|WikiDocs} documentation for an overview of how transclusion "
+"works."
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:164
+msgid "Add a new entry"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:169
+msgid "View transclusion history"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:174
+msgid ""
+"Note: MediaWiki does not check to see if the version number "
+"matches the page name, it will take the version number and provide whatever "
+"page is associated with it. Make sure to double check your work when "
+"updating a page!"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:185
+msgid "There was a problem accessing the wiki API."
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:43
+#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
+msgid "Annotation comparison"
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:49
+msgid "Old annotation"
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:58
+msgid "New annotation"
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:71
+msgid ""
+"Comparing revision by {user_old} on {date_old} with revision by {user_new} "
+"on {date_new}."
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:87
+msgid "View annotation history."
+msgstr ""
+
+#: ../root/annotation/AnnotationHistory.js:40
+#: ../root/annotation/AnnotationHistory.js:42
+msgid "Annotation history"
+msgstr ""
+
+#: ../root/annotation/AnnotationHistory.js:54
+msgid "Compare versions"
+msgstr ""
+
+#: ../root/annotation/AnnotationHistory.js:62
+msgid "This entity has no annotation history."
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:47
+#: ../root/annotation/EditAnnotation.js:49
+#: ../root/layout/components/sidebar/AnnotationLinks.js:37
+#: ../root/static/scripts/common/components/Annotation.js:97
+msgid "Edit annotation"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:53
+msgid ""
+"Please note that any content submitted to MusicBrainz will be made available "
+"to the public under {open|open licenses}, do not submit any copyrighted text "
+"here!"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:62
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:80
+#: ../root/static/scripts/common/components/Annotation.js:71
+msgid "Changelog:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:93
+msgctxt "button"
+msgid "Preview"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:98
+msgid "Annotation Formatting"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:100
+msgid "Annotations support a limited set of wiki formatting options:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:105
+msgid "Emphasis:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:107
+msgid "''italics''; '''bold'''; '''''bold italics'''''; ---- horizontal rule"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:112
+msgid "Headings:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:114
+msgid "= Title 1 =; == Title 2 ==; === Title 3 ==="
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:118
+msgid "Lists:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:120
+msgid ""
+"tab or 4 spaces and: * bullets or 1., a., A., i., I. numbered items "
+"(rendered with 1.)"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:125
+msgid "Links:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:127
+msgid "URL; [URL]; [URL|label]; [entity-type:MBID|label]"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:135
+msgid ""
+"Because square brackets [] are used to create hyperlinks, you have to use "
+"the encoded html equivalents ([
for [) and (&"
+"#93;
for ]) if you want them not be converted into hyperlinks. "
+"Example: If you want to use [unknown] in the annotation, you'll have to "
+"write [unknown]
then it will appear the way you "
+"intended it to show."
+msgstr ""
+
+#: ../root/area/AreaArtists.js:32 ../root/area/AreaArtists.js:33
+#: ../root/components/EntityTabs.js:23
+#: ../root/components/TagEntitiesList.js:162
+#: ../root/components/list/EventList.js:85
+#: ../root/instrument/InstrumentArtists.js:37
+#: ../root/instrument/InstrumentArtists.js:39 ../root/iswc/Index.js:59
+#: ../root/report/IswcsWithManyWorks.js:52 ../root/report/ReportsIndex.js:55
+#: ../root/report/components/EventList.js:69
+#: ../root/search/components/EventResults.js:77
+#: ../root/search/components/WorkResults.js:56
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
+msgid "Artists"
+msgstr ""
+
+#: ../root/area/AreaArtists.js:52 ../root/instrument/InstrumentArtists.js:59
+#: ../root/report/DuplicateArtists.js:127
+msgid "Add selected artists for merging"
+msgstr ""
+
+#: ../root/area/AreaArtists.js:60
+msgid "This area is not currently associated with any artists."
+msgstr ""
+
+#: ../root/area/AreaEvents.js:32 ../root/area/AreaEvents.js:33
+#: ../root/artist/ArtistEvents.js:41 ../root/artist/ArtistEvents.js:42
+#: ../root/components/EntityTabs.js:24
+#: ../root/components/TagEntitiesList.js:166 ../root/place/PlaceEvents.js:32
+#: ../root/place/PlaceEvents.js:33 ../root/report/ReportsIndex.js:138
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:19
+#: ../root/tag/TagLayout.js:34
+msgid "Events"
+msgstr ""
+
+#: ../root/area/AreaEvents.js:54 ../root/artist/ArtistEvents.js:69
+#: ../root/place/PlaceEvents.js:53
+msgid "Add selected events for merging"
+msgstr ""
+
+#: ../root/area/AreaEvents.js:62
+msgid "This area is not currently associated with any events."
+msgstr ""
+
+#: ../root/area/AreaHeader.js:29
+msgid "{area_type} in {parent_areas}"
+msgstr ""
+
+#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
+#: ../root/components/EntityTabs.js:26
+#: ../root/components/TagEntitiesList.js:174
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
+#: ../root/report/ReportsIndex.js:174
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
+#: ../root/tag/TagLayout.js:29
+msgid "Labels"
+msgstr ""
+
+#: ../root/area/AreaLabels.js:51
+msgid "Add selected labels for merging"
+msgstr ""
+
+#: ../root/area/AreaLabels.js:59
+msgid "This area is not currently associated with any labels."
+msgstr ""
+
+#: ../root/area/AreaMerge.js:32
+msgid ""
+"You are about to merge all these areas into a single one. Please select the "
+"area all others should be merged into:"
+msgstr ""
+
+#: ../root/area/AreaPlaces.js:36 ../root/area/AreaPlaces.js:37
+#: ../root/components/EntityTabs.js:29
+#: ../root/components/TagEntitiesList.js:178 ../root/report/ReportsIndex.js:542
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:27
+#: ../root/tag/TagLayout.js:30
+msgid "Places"
+msgstr ""
+
+#: ../root/area/AreaPlaces.js:49 ../root/place/PlaceMap.js:40
+msgid ""
+"A map cannot be shown because no maps service access token has been set for "
+"this server."
+msgstr ""
+
+#: ../root/area/AreaPlaces.js:69
+msgid "Add selected places for merging"
+msgstr ""
+
+#: ../root/area/AreaPlaces.js:78
+msgid "This area is not currently associated with any places."
+msgstr ""
+
+#: ../root/area/AreaRecordings.js:29
+msgid "This area has no relationships to any recordings."
+msgstr ""
+
+#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
+#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
+#: ../root/relationship/RelationshipsHeader.js:37
+#: ../root/static/scripts/common/components/Relationships.js:92
+#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
+msgid "Relationships"
+msgstr ""
+
+#: ../root/area/AreaReleases.js:35 ../root/area/AreaReleases.js:38
+#: ../root/artist/ArtistReleases.js:46 ../root/artist/ArtistReleases.js:47
+#: ../root/artist_credit/ArtistCreditIndex.js:135
+#: ../root/artist_credit/ArtistCreditLayout.js:27
+#: ../root/components/EntityTabs.js:31
+#: ../root/components/TagEntitiesList.js:186
+#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
+#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
+#: ../root/instrument/InstrumentReleases.js:37
+#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
+#: ../root/report/ReportsIndex.js:250
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:31
+#: ../root/tag/TagLayout.js:26
+msgid "Releases"
+msgstr ""
+
+#: ../root/area/AreaReleases.js:52 ../root/artist/ArtistReleases.js:64
+#: ../root/instrument/InstrumentReleases.js:58 ../root/label/LabelIndex.js:96
+#: ../root/release_group/ReleaseGroupIndex.js:191
+msgid "Add selected releases for merging"
+msgstr ""
+
+#: ../root/area/AreaReleases.js:60
+msgid "This area is not currently associated with any releases."
+msgstr ""
+
+#: ../root/area/AreaReleases.js:68
+msgid "This area has no relationships to any releases."
+msgstr ""
+
+#: ../root/area/AreaUsers.js:26 ../root/area/AreaUsers.js:27
+#: ../root/components/EntityTabs.js:32
+msgid "Users"
+msgstr ""
+
+#: ../root/area/AreaUsers.js:31
+msgid "There is currently {num} user in this area."
+msgid_plural "There are currently {num} users in this area."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/area/AreaUsers.js:37
+msgid "There are currently no users in this area."
+msgstr ""
+
+#: ../root/area/AreaWorks.js:25 ../root/artist/ArtistWorks.js:41
+#: ../root/artist/ArtistWorks.js:42 ../root/components/EntityTabs.js:33
+#: ../root/components/TagEntitiesList.js:198 ../root/report/ReportsIndex.js:568
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:39
+#: ../root/tag/TagLayout.js:28
+msgid "Works"
+msgstr ""
+
+#: ../root/area/AreaWorks.js:29
+msgid "This area has no relationships to any works."
+msgstr ""
+
+#: ../root/area/DeleteArea.js:35 ../root/area/DeleteArea.js:37
+msgid "Remove Area"
+msgstr ""
+
+#: ../root/area/DeleteArea.js:41
+msgid ""
+"This area cannot be removed because it is one of the areas that can be used "
+"as a release country."
+msgstr ""
+
+#: ../root/area/DeleteArea.js:55
+msgid ""
+"This area cannot be removed because it is still in use (in artists, labels, "
+"places, relationships or open edits)."
+msgstr ""
+
+#: ../root/artist/ArtistEvents.js:78
+msgid "No events found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistEvents.js:79
+msgid "This artist is not currently associated with any events."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:92
+msgid "Show official release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:99
+msgid "Show all release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:106
+msgid "Show official various artist release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:113
+msgid "Show all various artist release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:142
+msgid "This artist only has unofficial release groups by various artists."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:148
+msgid "Showing all release groups for various artists"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:149
+msgid "This artist does not have any various artists release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:158
+msgid "This artist only has release groups by various artists."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:162
+msgid "Showing official release groups for various artists"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:170
+msgid "This artist only has unofficial release groups."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:174
+msgid "Showing all release groups by this artist"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:185
+msgid "Showing official release groups by this artist"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:239
+msgid "Performance name of"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:247
+msgid "Legal name"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:253 ../root/label/LabelIndex.js:64
+msgid "Previously known as"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:260 ../root/label/LabelIndex.js:71
+msgid "Renamed to"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:268
+msgid "Also performs as"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:282
+msgid "Discography"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:323 ../root/artist/ArtistRecordings.js:169
+#: ../root/instrument/InstrumentRecordings.js:59 ../root/isrc/Index.js:99
+msgid "Add selected recordings for merging"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:332
+msgid "This artist has no release groups, only standalone recordings."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:336
+msgid "No results found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistMerge.js:34
+msgid ""
+"You are about to merge all these artists into a single one. Please select "
+"the artist all others should be merged into:"
+msgstr ""
+
+#: ../root/artist/ArtistMerge.js:50
+msgid "You should only use the checkbox above to fix errors (such as typos)."
+msgstr ""
+
+#: ../root/artist/ArtistMerge.js:56
+msgid ""
+"If a name appears on the cover of a release, don’t check the box: the "
+"artists will still be combined if you don’t, but the {doc_acs|artist "
+"credits} will be kept as they are now."
+msgstr ""
+
+#: ../root/artist/ArtistMerge.js:65
+msgid ""
+"Update matching artist and relationship credits to use the target artist’s "
+"name"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:55
+msgid "Show all recordings"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:60
+msgid "Show only standalone recordings"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:65
+msgid "Show only videos"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:73
+msgid "Showing only standalone recordings"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:89
+msgid "Showing only videos"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:105
+msgid "Showing all recordings"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:176
+msgid "No recordings found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:177
+#: ../root/instrument/InstrumentRecordings.js:67
+msgid "No recordings found."
+msgstr ""
+
+#: ../root/artist/ArtistRelationships.js:37
+#: ../root/label/LabelRelationships.js:37
+msgid "Appearances"
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:73
+msgid "No releases found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:74
+#: ../root/instrument/InstrumentReleases.js:66
+#: ../root/release_group/ReleaseGroupIndex.js:197
+msgid "No releases found."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:80
+msgid ""
+"Showing Various Artist releases. {show_subset|Show releases by this artist "
+"instead}."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:91
+msgid "This search only found releases by various artists."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:93
+msgid "This artist only has releases by various artists."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:98
+msgid ""
+"Showing releases by this artist. {show_all|Show Various Artist releases "
+"instead}."
+msgstr ""
+
+#: ../root/artist/ArtistWorks.js:65 ../root/iswc/Index.js:79
+msgid "Add selected works for merging"
+msgstr ""
+
+#: ../root/artist/ArtistWorks.js:74
+msgid "No works found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistWorks.js:75
+msgid "This artist is not currently associated with any works."
+msgstr ""
+
+#: ../root/artist/CannotSplit.js:25
+msgid "This artist is already empty and is awaiting automatic deletion."
+msgstr ""
+
+#: ../root/artist/CannotSplit.js:28
+msgid ""
+"This artist has relationships other than collaboration relationships, and "
+"cannot be split until these are removed. {relationships|View all "
+"relationships}."
+msgstr ""
+
+#: ../root/artist/SpecialPurpose.js:23 ../root/label/SpecialPurpose.js:23
+msgid "Cannot edit"
+msgstr ""
+
+#: ../root/artist/SpecialPurpose.js:25
+msgid "You may not edit special purpose artists"
+msgstr ""
+
+#: ../root/artist/SpecialPurpose.js:27
+msgid ""
+"The artist you are trying to edit is a special purpose artist, and you may "
+"not make direct changes to this data."
+msgstr ""
+
+#: ../root/artist/utils.js:13
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:65
+msgid "Born in:"
+msgstr ""
+
+#: ../root/artist/utils.js:17
+msgctxt "group artist"
+msgid "Founded in"
+msgstr ""
+
+#: ../root/artist/utils.js:19
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:55
+msgid "Begin area:"
+msgstr ""
+
+#: ../root/artist/utils.js:26
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:61
+msgid "Born:"
+msgstr ""
+
+#: ../root/artist/utils.js:30
+msgctxt "group artist"
+msgid "Founded"
+msgstr ""
+
+#: ../root/artist/utils.js:32
+msgctxt "character artist"
+msgid "Created"
+msgstr ""
+
+#: ../root/artist/utils.js:41
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:65
+msgid "Died in:"
+msgstr ""
+
+#: ../root/artist/utils.js:45
+msgctxt "group artist"
+msgid "Dissolved in"
+msgstr ""
+
+#: ../root/artist/utils.js:47
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:55
+msgid "End area:"
+msgstr ""
+
+#: ../root/artist/utils.js:57
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:62
+msgid "Died:"
+msgstr ""
+
+#: ../root/artist/utils.js:62
+msgctxt "group artist"
+msgid "Dissolving"
+msgstr ""
+
+#: ../root/artist/utils.js:63
+msgctxt "group artist"
+msgid "Dissolved"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:93
+msgid "This artist credit is composed of the following artists:"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:103
+msgid "credited as “{credit}”"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:111
+msgid "Uses"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:124
+#: ../root/artist_credit/ArtistCreditLayout.js:26
+#: ../root/components/TagEntitiesList.js:182
+#: ../root/components/list/RecordingList.js:62
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:33
+#: ../root/tag/TagLayout.js:25
+msgid "Release Groups"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:126
+#: ../root/components/TagEntitiesList.js:183
+msgid "See all {num} release groups"
+msgid_plural "See all {num} release groups"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:136
+#: ../root/components/TagEntitiesList.js:187
+msgid "See all {num} releases"
+msgid_plural "See all {num} releases"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:147
+#: ../root/components/TagEntitiesList.js:191
+msgid "See all {num} recordings"
+msgid_plural "See all {num} recordings"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:158
+msgid "See all {num} tracks"
+msgid_plural "See all {num} tracks"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/ArtistCreditLayout.js:25
+#: ../root/collection/CollectionHeader.js:77
+#: ../root/components/EntityTabs.js:79 ../root/tag/TagLayout.js:23
+msgid "Overview"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditLayout.js:43
+#: ../root/artist_credit/ArtistCreditLayout.js:47
+#: ../root/artist_credit/ArtistCreditLayout.js:57
+msgid "Artist credit “{artist_credit}”"
+msgstr ""
+
+#: ../root/artist_credit/EntityList.js:22 ../root/tag/EntityList.js:76
+msgid "{num} recording found"
+msgid_plural "{num} recordings found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/EntityList.js:23 ../root/tag/EntityList.js:77
+msgid "{num} release found"
+msgid_plural "{num} releases found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/EntityList.js:25 ../root/tag/EntityList.js:79
+msgid "{num} release group found"
+msgid_plural "{num} release groups found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/EntityList.js:28
+msgid "{num} track found"
+msgid_plural "{num} tracks found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/EntityList.js:32
+msgid "No recordings with this artist credit were found."
+msgstr ""
+
+#: ../root/artist_credit/EntityList.js:33
+msgid "No releases with this artist credit were found."
+msgstr ""
+
+#: ../root/artist_credit/EntityList.js:34
+msgid "No release groups with this artist credit were found."
+msgstr ""
+
+#: ../root/artist_credit/EntityList.js:35
+msgid "No tracks with this artist credit were found."
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:30 ../root/cdstub/BrowseCDStubs.js:31
+#: ../root/layout/components/BottomMenu.js:231
+msgid "Top CD Stubs"
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
+msgid "Lookup count"
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
+msgid "Modify count"
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:49 ../root/cdstub/CDStubHeader.js:22
+#: ../root/cdstub/CDStubLayout.js:29
+#: ../root/layout/components/sidebar/CDStubSidebar.js:27
+msgid "Various Artists"
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:56
+msgid "Added {add}, last modified {lastmod}"
+msgstr ""
+
+#: ../root/cdstub/CDStubNotFound.js:19
+msgid "CD Stub Not Found"
+msgstr ""
+
+#: ../root/cdstub/CDStubNotFound.js:22
+msgid ""
+"Sorry, {discid}
does not match a CD stub. You can try "
+"{search_url|searching for it} instead."
+msgstr ""
+
+#: ../root/cdstub/DiscIdNotValid.js:19
+msgid "Invalid Disc ID"
+msgstr ""
+
+#: ../root/cdstub/DiscIdNotValid.js:22
+msgid "Sorry, {discid}
is not a valid disc ID."
+msgstr ""
+
+#: ../root/cdstub/ImportCDStub.js:38
+msgid "Please search for the artist you wish to add a new release for:"
+msgstr ""
+
+#: ../root/cdstub/ImportCDStub.js:100
+msgid "Import CD stub"
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:53
+msgid ""
+"Are you sure that you wish to attach the disc ID {discid}
to "
+"{format} {pos} of {release} by {artist}?"
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:80
+msgid "Track length comparison"
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:84
+#: ../root/cdtoc/SetTracklistDurations.js:67
+msgid "This edit would only make subsecond changes to track lengths."
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:88
+msgid "CD TOC track lengths"
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:90
+msgid "Medium track lengths"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:23
+msgid "CD TOC details"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:36
+msgid "FreeDB:"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:48
+msgid "Track details:"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
+#: ../root/search/components/RecordingResults.js:147
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
+msgid "Track"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:53
+msgid "Start"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
+#: ../root/search/components/ArtistResults.js:58
+#: ../root/search/components/LabelResults.js:71
+#: ../root/search/components/PlaceResults.js:68
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
+msgid "End"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
+#: ../root/cdtoc/CDTocInfo.js:63
+msgid "Sectors"
+msgstr ""
+
+#: ../root/cdtoc/RemoveDiscId.js:32 ../root/cdtoc/RemoveDiscId.js:33
+msgid "Remove Disc ID"
+msgstr ""
+
+#: ../root/cdtoc/RemoveDiscId.js:38
+msgid ""
+"Are you sure you want to remove the disc ID {discid}
from the "
+"release {release} by {artist}?"
+msgstr ""
+
+#: ../root/cdtoc/RemoveDiscId.js:49
+msgid ""
+"You need to be certain that this disc ID was added to this release "
+"erroneously, since a release can have multiple valid disc IDs, and each disc "
+"ID can belong to more than one release. For more in-depth information about "
+"this topic, please see our {doc|CD submission guide}."
+msgstr ""
+
+#: ../root/cdtoc/SelectArtistForCDToc.js:37
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:128
+msgid "Search for an artist"
+msgstr ""
+
+#: ../root/cdtoc/SelectArtistForCDToc.js:67
+msgid ""
+"Click the radio button to select the appropriate artist, or click the "
+"artist’s name to get more info."
+msgstr ""
+
+#: ../root/cdtoc/SelectArtistForCDToc.js:113
+msgid ""
+"If you don't see the artist you are looking for, you can still add a new "
+"release. This will allow you to add this artist and a release at the same "
+"time"
+msgstr ""
+
+#: ../root/cdtoc/SetTracklistDurations.js:46
+#: ../root/cdtoc/SetTracklistDurations.js:47
+msgid "Set Tracklist Durations"
+msgstr ""
+
+#: ../root/cdtoc/SetTracklistDurations.js:50
+msgid ""
+"You are about to enter an edit that will change the durations of tracks to "
+"match that of the below disc ID."
+msgstr ""
+
+#: ../root/cdtoc/SetTracklistDurations.js:63 ../root/edit/EditIndex.js:53
+msgid "Changes"
+msgstr ""
+
+#: ../root/cdtoc/SetTracklistDurations.js:78
+msgid "The medium you are altering is part of the following release: {release}"
+msgstr ""
+
+#: ../root/collection/CollectionHeader.js:37
+msgid "Public collection by {owner}"
+msgstr ""
+
+#: ../root/collection/CollectionHeader.js:40
+msgid "Private collection by {owner}"
+msgstr ""
+
+#: ../root/collection/CollectionHeader.js:55
+msgid "See all of your collections"
+msgstr ""
+
+#: ../root/collection/CollectionHeader.js:57
+msgid "See all of {editor}'s public collections"
+msgstr ""
+
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
+msgid ""
+"This content is hidden to prevent spam. To view it, please {url|log in}."
+msgstr ""
+
+#: ../root/collection/CollectionIndex.js:205
+#: ../root/collection/CollectionMerge.js:70
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
+#: ../root/user/UserCollections.js:117
+msgid "Collaborators"
+msgstr ""
+
+#: ../root/collection/CollectionIndex.js:219
+msgid "Remove selected items from collection"
+msgstr ""
+
+#: ../root/collection/CollectionIndex.js:224
+msgid "This collection is empty."
+msgstr ""
+
+#: ../root/collection/CollectionLayout.js:34
+msgid "Collection “{collection}”"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:50
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:52
+#: ../root/user/UserCollections.js:103
+msgid "Collection"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:58
+msgid "Entity Type"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:63
+msgid "Entities"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:77 ../root/user/UserCollections.js:76
+msgid "Public"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:78 ../root/user/UserCollections.js:76
+msgid "Private"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:79
+#: ../root/static/scripts/account/components/PreferencesForm.js:190
+#: ../root/user/UserCollections.js:128
+msgid "Privacy"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:116
+#: ../root/collection/CollectionMerge.js:118
+msgid "Merge collections"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:120
+msgid ""
+"You are about to merge all these collections into a single one. Please "
+"select the collection all others should be merged into:"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:129
+msgid ""
+"Warning: These collections are for different entity types. "
+"Please remove some collections from the merge queue until you only have "
+"collections for the same entity type."
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:136
+msgid ""
+"Warning: These collections are for different entity types. "
+"Only collections for the same entity type can be merged."
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:148
+msgid ""
+"Warning: Some of these collections are public and some are "
+"private. Keep in mind the privacy setting of the destination collection will "
+"apply. If you merge your private collections into a public one, the final "
+"result will be visible to other users."
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:163
+msgid "The merged collection will have the following collaborators:"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:174
+msgid ""
+"This process cannot be reverted. Are you sure you want to enter a merge?"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:184
+msgid "Confirm"
+msgstr ""
+
+#: ../root/collection/CreateCollection.js:28
+#: ../root/collection/CreateCollection.js:31
+#: ../root/user/UserCollections.js:226
+msgid "Add a new collection"
+msgstr ""
+
+#: ../root/collection/DeleteCollection.js:28
+#: ../root/collection/DeleteCollection.js:34
+msgid "Remove collection"
+msgstr ""
+
+#: ../root/collection/DeleteCollection.js:30
+msgid "Are you sure you want to remove the collection {collection}?"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTable.js:22
+#: ../root/edit/details/AddRemoveAlias.js:57
+#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
+msgid "Alias"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTable.js:24
+msgid "Begin Date"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTable.js:25
+msgid "End Date"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTable.js:27
+#: ../root/edit/details/AddRemoveAlias.js:71
+#: ../root/edit/details/EditAlias.js:93
+#: ../root/static/scripts/alias/AliasEditForm.js:312
+msgid "Locale"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTableRow.js:51
+msgid "primary"
+msgstr ""
+
+#: ../root/components/Aliases/ArtistCreditList.js:33
+#: ../root/report/ReportsIndex.js:116
+msgid "Artist credits"
+msgstr ""
+
+#: ../root/components/Aliases/ArtistCreditList.js:36
+msgid ""
+"This is a list of all the different ways {artist} is credited in the "
+"database. View the {doc|artist credit documentation} for more details."
+msgstr ""
+
+#: ../root/components/Aliases/ArtistCreditList.js:69
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:139
+msgid "see uses"
+msgstr ""
+
+#: ../root/components/Aliases/index.js:49 ../root/components/EntityTabs.js:127
+#: ../root/entity/Aliases.js:32
+msgid "Aliases"
+msgstr ""
+
+#: ../root/components/Aliases/index.js:52
+#: ../root/static/scripts/alias/AliasEditForm.js:277
+msgid ""
+"An alias is an alternate name for an entity. They typically contain common "
+"misspellings or variations of the name and are also used to improve search "
+"results. View the {doc|alias documentation} for more details."
+msgstr ""
+
+#: ../root/components/Aliases/index.js:67
+msgid "{entity} has no aliases."
+msgstr ""
+
+#: ../root/components/Aliases/index.js:75
+msgid "Add a new alias"
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:12
+msgid ""
+"This artist has no relationships, recordings, releases or release groups, "
+"and will be removed automatically in the next few days. If this is not "
+"intended, please add more data to this artist."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:18
+msgid ""
+"This event has no relationships and will be removed automatically in the "
+"next few days. If this is not intended, please add more data to this event."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:23
+msgid ""
+"This label has no relationships or releases and will be removed "
+"automatically in the next few days. If this is not intended, please add more "
+"data to this label."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:28
+msgid ""
+"This place has no relationships and will be removed automatically in the "
+"next few days. If this is not intended, please add more data to this place."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:33
+msgid ""
+"This release group has no relationships or releases associated, and will be "
+"removed automatically in the next few days. If this is not intended, please "
+"add more data to this release group."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:38
+msgid ""
+"This series has no relationships and will be removed automatically in the "
+"next few days. If this is not intended, please add more data to this series."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:43
+msgid ""
+"This work has no relationships and will be removed automatically in the next "
+"few days. If this is not intended, please add relationships to this work."
+msgstr ""
+
+#: ../root/components/CritiqueBrainzLinks.js:43
+msgid "An error occurred when loading reviews."
+msgstr ""
+
+#: ../root/components/CritiqueBrainzLinks.js:47
+msgid ""
+"No one has reviewed {entity} yet. Be the first to {write_link|write a "
+"review}."
+msgstr ""
+
+#: ../root/components/CritiqueBrainzLinks.js:56
+msgid ""
+"There’s {reviews_link|{review_count} review} on CritiqueBrainz. You can also "
+"{write_link|write your own}."
+msgid_plural ""
+"There are {reviews_link|{review_count} reviews} on CritiqueBrainz. You can "
+"also {write_link|write your own}."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/EntityDeletionHelp.js:24
+msgid "Are you sure you wish to remove {entity} from MusicBrainz?"
+msgstr ""
+
+#: ../root/components/EntityDeletionHelp.js:30
+msgid ""
+"If it’s a duplicate, {doc_merge|you should probably merge it instead}. If it "
+"just has some small errors, it’s usually better to just fix those."
+msgstr ""
+
+#: ../root/components/EntityTabs.js:25
+#: ../root/recording/RecordingFingerprints.js:25
+msgid "Fingerprints"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:27 ../root/place/PlaceMap.js:30
+msgid "Map"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:28 ../root/place/PlacePerformances.js:28
+#: ../root/place/PlacePerformances.js:35
+msgid "Performances"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:101
+msgid "Disc IDs ({num})"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:116
+msgid "Cover Art ({num})"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:131
+#: ../root/components/UserAccountTabs.js:64 ../root/entity/Tags.js:35
+#: ../root/layout/components/sidebar/SidebarTags.js:78
+#: ../root/static/scripts/common/components/TagEditor.js:665
+#: ../root/tag/TagCloud.js:102 ../root/tag/TagCloud.js:104
+#: ../root/user/UserTagList.js:61
+msgid "Tags"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:140 ../root/entity/Ratings.js:46
+#: ../root/entity/Ratings.js:90
+#: ../root/static/scripts/edit/externalLinks.js:732
+msgid "Reviews"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:141
+#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
+#: ../root/user/UserRatingList.js:82
+msgid "Ratings"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:159
+msgid "Edit Relationships"
+msgstr ""
+
+#: ../root/components/InstrumentRelTypes.js:32
+msgid "as “{credit}”"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:141
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:283
+msgid "See all {num} relationships"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:335
+msgid "Credited As"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:352
+msgid "“{link_phrase}” relationships"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:354
+msgid "Invalid relationship type"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:365
+msgid "No relationships of the selected type were found."
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:366
+msgid "The provided relationship type ID is not valid."
+msgstr ""
+
+#: ../root/components/ReleaseLanguageScript.js:24
+#: ../root/components/ReleaseLanguageScript.js:30
+#: ../root/components/list/ReleaseList.js:105
+#: ../root/edit/details/MergeReleases.js:58 ../root/release/CoverArt.js:92
+#: ../root/release_group/ReleaseGroupIndex.js:94
+#: ../root/search/components/ReleaseResults.js:62
+#: ../root/static/scripts/common/components/ReleaseEvents.js:54
+#: ../root/static/scripts/common/components/ReleaseEvents.js:71
+#: ../root/static/scripts/release-editor/duplicates.js:144
+msgctxt "missing data"
+msgid "-"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:125
+msgid "Entities where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:129
+msgid "Entities {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:133
+msgid "Entities tagged as “{tag}”"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:144
+msgid "{num} entity found"
+msgid_plural "{num} entities found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:158
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:13
+#: ../root/tag/TagLayout.js:31
+msgid "Areas"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:159
+msgid "See all {num} areas"
+msgid_plural "See all {num} areas"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:163
+msgid "See all {num} artists"
+msgid_plural "See all {num} artists"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:167
+msgid "See all {num} events"
+msgid_plural "See all {num} events"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:170 ../root/report/ReportsIndex.js:159
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:23
+#: ../root/tag/TagLayout.js:32
+msgid "Instruments"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:171
+msgid "See all {num} instruments"
+msgid_plural "See all {num} instruments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:175
+msgid "See all {num} labels"
+msgid_plural "See all {num} labels"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:179
+msgid "See all {num} places"
+msgid_plural "See all {num} places"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:194
+#: ../root/edit/details/AddSeries.js:25 ../root/edit/details/EditSeries.js:34
+#: ../root/report/ReportsIndex.js:559
+#: ../root/report/components/SeriesList.js:47
+msgid "Series"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:195
+msgid "See all {num} series"
+msgid_plural "See all {num} series"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:199
+msgid "See all {num} works"
+msgid_plural "See all {num} works"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/UserAccountLayout.js:62
+#: ../root/components/UserAccountLayout.js:63
+msgid "Editor “{user}”"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:28
+#: ../root/layout/components/TopMenu.js:48
+msgid "Profile"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:41
+#: ../root/layout/components/TopMenu.js:55
+#: ../root/layout/components/sidebar/CollectionSidebar.js:96
+#: ../root/layout/components/sidebar/SubscriptionLinks.js:32
+msgid "Subscriptions"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:51 ../root/entity/Subscribers.js:51
+#: ../root/entity/Subscribers.js:53
+#: ../root/layout/components/sidebar/CollectionSidebar.js:125
+#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
+msgid "Subscribers"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:57 ../root/entity/Collections.js:33
+#: ../root/entity/Collections.js:35
+#: ../root/layout/components/sidebar/CollectionLinks.js:48
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:17
+#: ../root/user/UserCollections.js:180
+msgid "Collections"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:102
+msgid "Edit User"
+msgstr ""
+
+#: ../root/components/VotingPeriod.js:40
+msgid ""
+"Closes in {num} day"
+msgid_plural ""
+"Closes in {num} days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/VotingPeriod.js:49
+msgid ""
+"Closes in {num} hour"
+msgid_plural ""
+"Closes in {num} hours"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/VotingPeriod.js:58
+msgid ""
+"Closes in {num} minute"
+msgid_plural ""
+"Closes in {num} minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/VotingPeriod.js:66
+msgid "About to close"
+msgstr ""
+
+#: ../root/components/list/ArtistList.js:73
+#: ../root/search/components/ArtistResults.js:52
+msgid "Sort Name"
+msgstr ""
+
+#: ../root/components/list/EventList.js:109
+#: ../root/static/scripts/common/components/FilterForm.js:149
+msgid "Role"
+msgstr ""
+
+#: ../root/components/list/LabelList.js:68
+#: ../root/search/components/AreaResults.js:65
+#: ../root/search/components/LabelResults.js:68
+msgid "Code"
+msgstr ""
+
+#: ../root/components/list/ReleaseGroupList.js:166
+msgid "Unspecified type"
+msgstr ""
+
+#: ../root/components/list/ReleaseList.js:95
+#: ../root/edit/details/MergeReleases.js:53
+#: ../root/release_group/ReleaseGroupIndex.js:89
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
+msgstr ""
+
+#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
+#: ../root/report/IswcsWithManyWorks.js:51
+#: ../root/report/components/WorkList.js:55
+#: ../root/search/components/WorkResults.js:55
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
+msgid "Writers"
+msgstr ""
+
+#: ../root/constants.js:22
+msgid "View and modify your private collections"
+msgstr ""
+
+#: ../root/constants.js:23
+msgid "View your email address"
+msgstr ""
+
+#: ../root/constants.js:24
+msgid "View your public account information"
+msgstr ""
+
+#: ../root/constants.js:25
+msgid "View and modify your private ratings"
+msgstr ""
+
+#: ../root/constants.js:26
+msgid "Submit new barcodes to the database"
+msgstr ""
+
+#: ../root/constants.js:27
+msgid "Submit new ISRCs to the database"
+msgstr ""
+
+#: ../root/constants.js:28
+msgid "View and modify your private tags"
+msgstr ""
+
+#: ../root/doc/DocError.js:32 ../root/doc/DocError.js:36
+#: ../root/main/error/Error404.js:32 ../root/main/error/MirrorError404.js:13
+msgid "Page Not Found"
+msgstr ""
+
+#: ../root/doc/DocError.js:40
+msgid "Sorry, “{id}” is not a valid documentation page."
+msgstr ""
+
+#: ../root/doc/DocError.js:46 ../root/main/error/Error400.js:37
+#: ../root/main/error/Error403.js:29 ../root/main/error/Error404.js:46
+msgid "Looking for help? Check out our {doc|documentation} or {faq|FAQ}."
+msgstr ""
+
+#: ../root/doc/DocError.js:55
+msgid ""
+"Found a broken link on our site? Please let us know by {report|reporting a "
+"bug}."
+msgstr ""
+
+#: ../root/doc/DocPage.js:80
+msgid ""
+"This page has not been reviewed by our documentation team ({more_info|more "
+"info})."
+msgstr ""
+
+#: ../root/doc/DocPage.js:90
+msgid "This page is {doc|transcluded} from revision {version} of {title}."
+msgstr ""
+
+#: ../root/doc/DocPage.js:98
+msgid "This page is {doc|transcluded} from {title}."
+msgstr ""
+
+#: ../root/doc/components/DocSearchBox.js:18
+msgid "Search the documentation..."
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:28 ../root/edit/CancelEdit.js:29
+msgid "Cancel Edit"
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:32
+msgid "Are you sure you wish to cancel edit #{n}? This cannot be undone!"
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:42 ../root/edit/EditIndex.js:56
+#: ../root/edit/components/ListEdit.js:51
+#: ../root/edit/details/historic/RemoveRelationship.js:35
+msgid "An error occurred while loading this edit."
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:48
+msgid ""
+"You may enter an edit note while cancelling this edit. This can be useful to "
+"point editors to another edit."
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:56 ../root/edit/components/EditHeader.js:185
+#: ../root/edit/components/EditSummary.js:76
+msgid "Cancel edit"
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:24
+msgid "The edit has been cancelled."
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:26 ../root/edit/CannotCancelEdit.js:32
+msgid "The edit has already been closed."
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:29
+msgid "Only {doc|auto-editors} can approve an edit."
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:34 ../root/edit/CannotApproveEdit.js:35
+#: ../root/edit/NoteIsRequired.js:21 ../root/edit/NoteIsRequired.js:22
+msgid "Error Approving Edit"
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:38
+msgid "There was a problem approving {edit}."
+msgstr ""
+
+#: ../root/edit/CannotCancelEdit.js:22 ../root/edit/CannotCancelEdit.js:23
+msgid "Error Cancelling Edit"
+msgstr ""
+
+#: ../root/edit/CannotCancelEdit.js:26
+msgid "There was a problem cancelling {edit}."
+msgstr ""
+
+#: ../root/edit/CannotCancelEdit.js:33
+msgid "Only the editor who entered an edit can cancel it."
+msgstr ""
+
+#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
+msgid "Error Voting on Edits"
+msgstr ""
+
+#: ../root/edit/CannotVote.js:16
+msgid "You’re not currently allowed to vote, please read the banner."
+msgstr ""
+
+#: ../root/edit/DeleteNote.js:32 ../root/edit/DeleteNote.js:33
+#: ../root/edit/components/EditNote.js:147
+msgid "Remove edit note"
+msgstr ""
+
+#: ../root/edit/DeleteNote.js:35
+msgid "Are you sure you want to remove the following edit note?"
+msgstr ""
+
+#: ../root/edit/DeleteNote.js:47
+msgid ""
+"Providing a reason for the removal is recommended if you feel it will make "
+"things clearer for other editors checking the editing history in the future. "
+"Otherwise it can be omitted."
+msgstr ""
+
+#: ../root/edit/DeleteNote.js:54 ../root/edit/ModifyNote.js:71
+#: ../root/user/ReportUser.js:139
+msgid "Reason"
+msgstr ""
+
+#: ../root/edit/EditData.js:34
+msgid "Edit data for edit #{id}"
+msgstr ""
+
+#: ../root/edit/EditData.js:57
+msgid "Data:"
+msgstr ""
+
+#: ../root/edit/EditData.js:62
+msgid "Related entities:"
+msgstr ""
+
+#: ../root/edit/EditData.js:90
+msgid ""
+"This is the raw data for edit #{id}. It is available for debugging purposes."
+msgstr ""
+
+#: ../root/edit/EditData.js:96
+msgid "View the human-readable rendering instead."
+msgstr ""
+
+#: ../root/edit/EditIndex.js:49
+msgid "Edit #{id}"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:58
+msgid "Raw edit data may be available."
+msgstr ""
+
+#: ../root/edit/EditIndex.js:83
+msgid "My vote:"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:122
+msgid "You are not currently able to vote on this edit. ({url|Details})"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:132
+msgid "Testing features"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:134
+msgid ""
+"To aid in testing, the following features have been made available on "
+"testing servers:"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:140 ../root/edit/components/EditSummary.js:87
+msgid "Accept edit"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:145 ../root/edit/components/EditSummary.js:93
+msgid "Reject edit"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:153
+msgid "You must be logged in to vote on edits."
+msgstr ""
+
+#: ../root/edit/EditIndex.js:159
+msgid "Edit notes"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:164 ../root/edit/components/Vote.js:112
+msgid "Submit vote and note"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:166
+msgid "Submit note"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:171
+msgid "You must be logged in to see edit notes."
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:36 ../root/edit/ModifyNote.js:37
+#: ../root/edit/components/EditNote.js:142
+msgid "Modify edit note"
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:39
+msgid "You are modifying the following edit note:"
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:52
+msgid "New edit note"
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:58
+msgid ""
+"Keep in mind modification of edit notes is mostly intended to correct small "
+"mistakes. Editors won’t be notified of your changes via email."
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:65
+msgid ""
+"Providing a reason is optional but can make things more clear for editors "
+"checking this edit in the future. Keep in mind the reason will be displayed "
+"to other editors."
+msgstr ""
+
+#: ../root/edit/NoteIsRequired.js:25
+msgid ""
+"{edit} has received one or more \"no\" votes, you must leave an edit note "
+"before you can approve it."
+msgstr ""
+
+#: ../root/edit/NotesReceived.js:35 ../root/edit/NotesReceived.js:37
+msgid "Recent Notes Left on Your Edits"
+msgstr ""
+
+#: ../root/edit/NotesReceived.js:67
+msgid "Nobody has left notes on any of your edits in the past three months."
+msgstr ""
+
+#: ../root/edit/OpenEdits.js:27 ../root/edit/OpenEdits.js:29
+msgid "Open Edits"
+msgstr ""
+
+#: ../root/edit/SubscribedEditorEdits.js:27
+#: ../root/edit/SubscribedEditorEdits.js:29
+msgid "Edits by Your Subscribed Editors"
+msgstr ""
+
+#: ../root/edit/SubscribedEdits.js:27 ../root/edit/SubscribedEdits.js:29
+msgid "Edits for Your Subscribed Entities"
+msgstr ""
+
+#: ../root/edit/SubscribedEdits.js:32
+msgid ""
+"This page lists edits linked to entities you are directly subscribed to, as "
+"well as edits linked to entities which are part of a collection you are "
+"subscribed to."
+msgstr ""
+
+#: ../root/edit/components/EditArtwork.js:27
+#: ../root/edit/details/ReorderCoverArt.js:25
+msgid ""
+"We are unable to display history for this cover art. For a current listing "
+"of cover art, please see the {coverart|release's cover art page}."
+msgstr ""
+
+#: ../root/edit/components/EditArtwork.js:32
+msgid "We are unable to display history for this cover art."
+msgstr ""
+
+#: ../root/edit/components/EditArtwork.js:36
+msgid "Cover art:"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:52
+#: ../root/edit/components/EditNoteListEntry.js:27
+msgid "Edit #{id} - {name}"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:78
+msgid "Edit by {editor}"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:86
+msgid "Editor hidden"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:92
+msgid "log in to see who"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:107
+msgid "Their vote: "
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:114
+msgid "My vote: "
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:118
+msgid "N/A"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:119
+#: ../root/edit/components/Vote.js:107
+#: ../root/static/scripts/common/components/OrderableDirection.js:22
+msgid "None"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:141
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
+msgid "Voting"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:149
+msgid "Approved"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:177
+#: ../root/edit/components/EditSummary.js:67
+msgid "Approve edit"
+msgstr ""
+
+#: ../root/edit/components/EditList.js:82
+msgid "Found at least {n} edit"
+msgid_plural "Found at least {n} edits"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/components/EditList.js:89
+msgid "Found {n} edit"
+msgid_plural "Found {n} edits"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
+msgid "Submit votes & edit notes"
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:159
+msgid "[time missing]"
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:168
+msgid "This edit note was removed by its author. Reason given: “{reason}”."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:173
+msgid "This edit note was removed by its author. No reason was provided."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:179
+msgid "This edit note was removed by an admin. Reason given: “{reason}”."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:184
+msgid "This edit note was removed by an admin. No reason was provided."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:194
+#: ../root/edit/components/EditNote.js:246
+msgctxt "edit note"
+msgid "see all changes"
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:211
+msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:220
+msgid "Last modified by the note author ({time})."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:227
+msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:236
+msgid "Last modified by an admin ({time})."
+msgstr ""
+
+#: ../root/edit/components/EditNoteHelp.js:20
+msgid ""
+"Edit notes support {doc_formatting|a limited set of wiki formatting "
+"options}. Please do always keep the {doc_coc|Code of Conduct} in mind when "
+"writing edit notes!"
+msgstr ""
+
+#: ../root/edit/components/EditNotes.js:55
+msgid "No edit notes have been added."
+msgstr ""
+
+#: ../root/edit/components/EditNotes.js:70
+msgid "Add an edit note"
+msgstr ""
+
+#: ../root/edit/components/EditNotes.js:78
+msgid "You are not currently able to add notes to this edit. ({url|Details})"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:48
+msgid "Opened:"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:68
+msgid "For quicker closing"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:71
+msgid "1 vote"
+msgid_plural "{n} unanimous votes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/components/EditSidebar.js:80
+msgid "If no votes cast"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:89
+msgid "Raw edit data for this edit"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:94
+msgid "For more information:"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:97
+msgid "Voting FAQ"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:98
+msgid "Editing FAQ"
+msgstr ""
+
+#: ../root/edit/components/EditSummary.js:59
+msgid "Add Note"
+msgstr ""
+
+#: ../root/edit/components/EditorTypeInfo.js:29 ../root/user/UserProfile.js:101
+msgid "This user is new to MusicBrainz."
+msgstr ""
+
+#: ../root/edit/components/EditorTypeInfo.js:31
+msgid "beginner"
+msgstr ""
+
+#: ../root/edit/components/EditorTypeInfo.js:39
+msgid "This user is automated."
+msgstr ""
+
+#: ../root/edit/components/EditorTypeInfo.js:40
+msgid "bot"
+msgstr ""
+
+#: ../root/edit/components/IntentionallyRawIcon.js:17
+msgid ""
+"This field is intentionally left as it was originally entered (untranslated, "
+"unformatted)."
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:49
+msgid "Open edits for {user}"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:57
+msgid "All edits for {user}"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:69
+msgid "Open edits for this collection"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:70
+msgid "Open edits for this entity"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:80
+msgid "All edits for this collection"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:81
+msgid "All edits for this entity"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:92
+msgid "All edits for your subscribed entities"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:100
+msgid "Open edits for your subscribed entities"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:111
+msgid "All edits for your subscribed editors"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:119
+msgid "Open edits for your subscribed editors"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:134
+msgid "Refine this search"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:143
+msgid "Subscribed entities"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:150
+msgid "Subscribed editors"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:158
+#: ../root/layout/components/sidebar/CollectionSidebar.js:77
+#: ../root/layout/components/sidebar/EditLinks.js:43
+msgid "Open edits"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:165 ../root/vote/VotingIndex.js:44
+#: ../root/vote/VotingIndex.js:46
+msgid "Voting suggestions"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:172
+msgid "Search for edits"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:199
+msgid "Quick links:"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:211
+msgid "Help:"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:215
+msgid "Introduction to Voting"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:219
+msgid "Introduction to Editing"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:222 ../root/main/index.js:180
+msgid "Style guidelines"
+msgstr ""
+
+#: ../root/edit/components/VoteTally.js:31
+msgid "automatically applied"
+msgstr ""
+
+#: ../root/edit/components/VoteTally.js:39
+msgid "{yes} yes : {no} no"
+msgstr ""
+
+#: ../root/edit/details/AddAnnotation.js:43
+#: ../root/edit/details/historic/AddReleaseAnnotation.js:25
+msgid "Text"
+msgstr ""
+
+#: ../root/edit/details/AddAnnotation.js:56
+#: ../root/edit/details/historic/AddReleaseAnnotation.js:35
+msgid "This annotation is empty."
+msgstr ""
+
+#: ../root/edit/details/AddAnnotation.js:72
+#: ../root/edit/details/historic/AddReleaseAnnotation.js:43
+msgid "Summary"
+msgstr ""
+
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddCoverArt.js:39
+#: ../root/edit/details/RemoveCoverArt.js:39
+msgctxt "type"
+msgid "(none)"
+msgstr ""
+
+#: ../root/edit/details/AddCoverArt.js:44
+#: ../root/edit/details/EditCoverArt.js:47
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr ""
+
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr ""
+
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr ""
+
+#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
+msgid "Client:"
+msgstr ""
+
+#: ../root/edit/details/AddIsrcs.js:28
+msgctxt "isrc client"
+msgid "(unknown)"
+msgstr ""
+
+#: ../root/edit/details/AddIsrcs.js:33 ../root/edit/details/AddIswcs.js:25
+msgid "Additions:"
+msgstr ""
+
+#: ../root/edit/details/AddIsrcs.js:39
+msgid "ISRC {isrc} to {recording}"
+msgstr ""
+
+#: ../root/edit/details/AddIswcs.js:31
+msgid "ISWC {iswc} to {work}"
+msgstr ""
+
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr ""
+
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddRelationship.js:33
+msgid "Link order:"
+msgstr ""
+
+#: ../root/edit/details/AddRelationship.js:41
+#: ../root/edit/details/EditRelationship.js:27
+msgid ""
+"This relationship edit also included changes to relationship attributes "
+"which no longer exist."
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipAttribute.js:60
+#: ../root/edit/details/EditRelationshipAttribute.js:101
+msgid "Creditable"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:82
+#: ../root/edit/details/RemoveRelationshipAttribute.js:47
+#: ../root/edit/details/RemoveRelationshipType.js:57
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:90
+msgctxt "description"
+msgid "(none)"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:88
+#: ../root/edit/details/AddRelationshipType.js:97
+#: ../root/edit/details/EditRelationshipType.js:163
+#: ../root/edit/details/EditRelationshipType.js:172
+#: ../root/edit/details/RemoveRelationshipType.js:63
+#: ../root/edit/details/RemoveRelationshipType.js:72
+msgid "Type of {entity_placeholder}"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:105
+#: ../root/edit/details/EditRelationshipType.js:213
+#: ../root/edit/details/RemoveRelationshipType.js:80
+msgid "Link phrase:"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:128
+#: ../root/edit/details/RemoveRelationshipType.js:87
+#: ../root/edit/details/RemoveRelationshipType.js:99
+#: ../root/edit/details/RemoveRelationshipType.js:111
+msgctxt "link_phrase"
+msgid "(none)"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:195
+msgctxt "documentation"
+msgid "(none)"
+msgstr ""
+
+#: ../root/edit/details/AddRelease.js:68
+msgid "(new release group)"
+msgstr ""
+
+#: ../root/edit/details/AddRelease.js:119
+#: ../root/edit/details/EditReleaseLabel.js:92
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
+#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
+msgid "Release events"
+msgstr ""
+
+#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
+#: ../root/edit/details/RemoveReleaseLabel.js:39
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr ""
+
+#: ../root/edit/details/AddRemoveAlias.js:46
+#: ../root/edit/details/EditAlias.js:51
+msgid "view all aliases"
+msgstr ""
+
+#: ../root/edit/details/AddRemoveAlias.js:75
+#: ../root/edit/details/EditAlias.js:99
+msgid "Primary for locale"
+msgstr ""
+
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
+#: ../root/layout/components/sidebar/WorkSidebar.js:69
+#: ../root/search/components/WorkResults.js:59
+#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
+msgid "Lyrics Languages"
+msgstr ""
+
+#: ../root/edit/details/ChangeReleaseQuality.js:30
+#: ../root/edit/details/historic/ChangeArtistQuality.js:30
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
+#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
+#: ../root/release/ChangeQuality.js:67
+msgid "Data Quality"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:39
+msgid "WikiDoc:"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:48
+msgid "Old version:"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:50
+msgid "New page"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:63
+msgid "Page removed"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:75
+msgid "Diff"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:78
+msgid "View diff"
+msgstr ""
+
+#: ../root/edit/details/EditAlias.js:71
+msgid "primary for {locale}"
+msgstr ""
+
+#: ../root/edit/details/EditArtistCredit.js:26
+#: ../root/report/components/ArtistCreditList.js:29
+msgid "Artist Credit"
+msgstr ""
+
+#: ../root/edit/details/EditArtistCredit.js:41
+msgid "See all uses of the artist credit being changed."
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:84
+msgid "This track's MBID will change when this edit is applied."
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:309
+msgid "Old Tracklist"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:310
+msgid "New Tracklist"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:505
+msgid "This edit changes which tracks are data tracks."
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:520
+msgid "Old recording"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:521
+msgid "New recording"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:578
+msgid "Old Artist"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:579
+msgid "New Artist"
+msgstr ""
+
+#: ../root/edit/details/EditRecording.js:63
+msgid "This edit makes subsecond changes to the recording length"
+msgstr ""
+
+#: ../root/edit/details/EditRelationshipType.js:146
+#: ../root/edit/details/historic/EditRelationship.js:44
+msgid ""
+"The data for this edit seems to have been damaged during the 2011 transition "
+"to the current MusicBrainz schema. The remaining data is displayed below, "
+"but might not be fully accurate."
+msgstr ""
+
+#: ../root/edit/details/EditRelationshipType.js:249
+#: ../root/edit/details/EditRelationshipType.js:257
+msgid "Deprecated:"
+msgstr ""
+
+#: ../root/edit/details/EditRelease.js:165
+msgid "This edit also changed the track artists."
+msgstr ""
+
+#: ../root/edit/details/EditUrl.js:70
+msgid "This change affects {num} relationship."
+msgid_plural "This change affects {num} relationships."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/details/EditUrl.js:79
+msgid ""
+"The new URL already exists in the database. This edit will therefore merge "
+"the two URL entities."
+msgstr ""
+
+#: ../root/edit/details/EditUrl.js:82
+msgid "This edit was a merge."
+msgstr ""
+
+#: ../root/edit/details/EditUrl.js:86
+msgid "Search for the target URL."
+msgstr ""
+
+#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
+msgid "Work type"
+msgstr ""
+
+#: ../root/edit/details/MergeAreas.js:19
+#: ../root/edit/details/MergeArtists.js:20
+#: ../root/edit/details/MergeEvents.js:19
+#: ../root/edit/details/MergeInstruments.js:19
+#: ../root/edit/details/MergeLabels.js:19
+#: ../root/edit/details/MergePlaces.js:19
+#: ../root/edit/details/MergeRecordings.js:19
+#: ../root/edit/details/MergeReleaseGroups.js:20
+#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
+
+#: ../root/edit/details/MergeAreas.js:25
+#: ../root/edit/details/MergeArtists.js:26
+#: ../root/edit/details/MergeEvents.js:30
+#: ../root/edit/details/MergeInstruments.js:25
+#: ../root/edit/details/MergeLabels.js:25
+#: ../root/edit/details/MergePlaces.js:25
+#: ../root/edit/details/MergeRecordings.js:29
+#: ../root/edit/details/MergeReleaseGroups.js:26
+#: ../root/edit/details/MergeReleases.js:271
+#: ../root/edit/details/MergeReleases.js:278
+#: ../root/edit/details/MergeReleases.js:288
+#: ../root/edit/details/MergeReleases.js:306
+#: ../root/edit/details/MergeSeries.js:25 ../root/edit/details/MergeWorks.js:25
+msgid "Into:"
+msgstr ""
+
+#: ../root/edit/details/MergeArtists.js:32
+msgid "Rename artist and relationship credits"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:109
+msgid "Medium {position}: {name} is now medium {new_position}: {new_name}"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:120
+msgid "Medium {position}: {name} is now medium {new_position}"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:129
+msgid "Medium {position} is now medium {new_position}: {new_name}"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:140
+msgid "Medium {position} is now medium {new_position}"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:254
+msgid "This release has no media to merge."
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:301
+msgid "Recording Merges"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:304
+msgid "Track #"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:316
+msgid ""
+"This edit does not store recording merge information and is closed, so no "
+"recording merge information can be shown."
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:333
+msgid "All recordings for these releases are already merged."
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:341
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:65
+msgid "Merge strategy:"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:349
+msgid ""
+"The data in this edit originally came from an older version of this edit, "
+"and may not display correctly"
+msgstr ""
+
+#: ../root/edit/details/MoveDiscId.js:32
+#: ../root/edit/details/historic/MoveDiscId.js:27
+msgid "From:"
+msgstr ""
+
+#: ../root/edit/details/MoveDiscId.js:36
+#: ../root/edit/details/historic/MoveDiscId.js:31
+msgid "To:"
+msgstr ""
+
+#: ../root/edit/details/RemoveMedium.js:58
+msgid ""
+"The number of tracks on the medium being removed has changed since the "
+"removal edit was entered. Please check the changes and ensure the removal is "
+"still correct."
+msgstr ""
+
+#: ../root/edit/details/RemoveMedium.js:62
+msgid ""
+"Some track lengths, titles or artists have changed since the removal edit "
+"was entered. Please check the changes and ensure the removal is still "
+"correct."
+msgstr ""
+
+#: ../root/edit/details/RemoveMedium.js:80
+msgid "Original tracklist"
+msgstr ""
+
+#: ../root/edit/details/RemoveMedium.js:99
+msgid "Current tracklist"
+msgstr ""
+
+#: ../root/edit/details/ReorderCoverArt.js:41
+msgid "Old positions:"
+msgstr ""
+
+#: ../root/edit/details/ReorderCoverArt.js:53
+msgid "New positions:"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:42
+msgid "Mediums"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:46
+msgid "Medium {new}: {title} (new medium)"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:50
+msgid ""
+"Medium {new}: {title} (moved from position {old})"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:58
+msgid "Medium {new} (new medium)"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:61
+msgid ""
+"Medium {new} (moved from position {old})"
+msgstr ""
+
+#: ../root/edit/details/ReorderRelationships.js:21
+msgid "Old Order"
+msgstr ""
+
+#: ../root/edit/details/ReorderRelationships.js:22
+msgid "New Order"
+msgstr ""
+
+#: ../root/edit/details/SetCoverArt.js:37
+msgid "Old cover art:"
+msgstr ""
+
+#: ../root/edit/details/SetCoverArt.js:58
+msgid ""
+"The old image was selected automatically from the earliest release in the "
+"release group."
+msgstr ""
+
+#: ../root/edit/details/SetCoverArt.js:60
+#: ../root/edit/details/SetCoverArt.js:85
+msgid "We are unable to display this cover art."
+msgstr ""
+
+#: ../root/edit/details/SetCoverArt.js:65
+msgid "New cover art:"
+msgstr ""
+
+#: ../root/edit/details/SetTrackLengths.js:63
+msgid "Track lengths:"
+msgstr ""
+
+#: ../root/edit/details/SetTrackLengths.js:76
+msgid "This edit makes subsecond changes to track lengths"
+msgstr ""
+
+#: ../root/edit/details/historic/AddDiscId.js:23
+msgid "CD TOC:"
+msgstr ""
+
+#: ../root/edit/details/historic/AddTrackKV.js:49
+#: ../root/edit/details/historic/AddTrackOld.js:34
+#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
+msgid "Track number"
+msgstr ""
+
+#: ../root/edit/details/historic/AddTrackOld.js:28
+msgid "Artist name:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditRelationship.js:53
+msgid "Old relationships:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditRelationship.js:125
+msgid "New relationships:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseAttributes.js:34
+msgctxt "release type and status"
+msgid "Old"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseAttributes.js:41
+msgid "Type: {type}, status: {status}"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseAttributes.js:60
+msgid "New Type:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseAttributes.js:67
+msgid "New Status:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
+msgid "Added"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
+msgid "Removed"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
+msgid "Edited"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:27
+msgid "Language: {language}, script: {script}"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:48
+msgid "New language:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:57
+msgid "New script:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:22
+msgid "Old releases:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:34
+msgid "New releases:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:46
+msgid "Merge attributes:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:50
+msgid "Merge language & script:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:57
+msgid ""
+"This edit was a \"Merge Releases (Various Artists)\" edit which additionally "
+"set the release artist to Various Artists."
+msgstr ""
+
+#: ../root/edit/details/historic/MoveRelease.js:26
+msgid "Change track artists:"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:32
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:36
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:40
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:48
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:59
+msgid "Total votes"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:63
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:67
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:71
+msgid "Abstentions"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:79
+msgid "Votes for/against:"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:81
+msgid ""
+"The tally of votes cast will only be shown when the election is complete."
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
+msgctxt "election status"
+msgid "Status"
+msgstr ""
+
+#: ../root/elections/ElectionTable/ElectionTableRows.js:60
+msgid "View details"
+msgstr ""
+
+#: ../root/elections/ElectionTable/index.js:24
+msgid "Start date"
+msgstr ""
+
+#: ../root/elections/ElectionVotes.js:27
+msgid "Vote"
+msgstr ""
+
+#: ../root/elections/ElectionVotes.js:38
+msgid "(private)"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:27
+msgid "To find out if you can vote for this candidate, please {url|log in}."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:36
+msgid "You cannot vote for this candidate, because you are not an auto-editor."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:41
+msgid ""
+"You cannot vote for this candidate, because you proposed / seconded them."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:46
+msgid ""
+"Voting is not yet open. If you would like to support this candidate, you can "
+"second their nomination. If you do not support this candidate, please note "
+"that you cannot cast a \"No\" vote (or abstain) until two seconders have "
+"been found."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:53
+msgid "Voting is closed."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:68
+msgid "Second this candidate"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:80
+msgid "Your current vote: {vote}"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:88
+msgid "Vote YES"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:91
+msgid "Vote NO"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:94
+msgid "Abstain"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:111
+msgid "Cancel the election"
+msgstr ""
+
+#: ../root/elections/Index.js:19 ../root/elections/Index.js:20
+msgid "Auto-editor elections"
+msgstr ""
+
+#: ../root/elections/Index.js:23
+msgid "No elections found."
+msgstr ""
+
+#: ../root/elections/Nominate.js:25
+msgid ""
+"Are you sure you want to nominate the editor {editor} for auto-editor status?"
+msgstr ""
+
+#: ../root/elections/Nominate.js:29
+msgid "Nominate a candidate for auto-editor"
+msgstr ""
+
+#: ../root/elections/Show.js:24
+msgid "Auto-editor election #{no}"
+msgstr ""
+
+#: ../root/elections/Show.js:29
+msgid "Back to elections"
+msgstr ""
+
+#: ../root/elections/Show.js:34
+msgid "Votes cast"
+msgstr ""
+
+#: ../root/elections/Show.js:37
+msgid "The list of voters will only be shown when the election is complete."
+msgstr ""
+
+#: ../root/entity/Collections.js:40
+msgid "{entity} has been added to {num} collection:"
+msgid_plural "{entity} has been added to {num} collections:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Collections.js:50
+msgid "{collection} by {owner}"
+msgstr ""
+
+#: ../root/entity/Collections.js:62
+msgid "plus {n} other private collection"
+msgid_plural "plus {n} other private collections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Collections.js:71
+msgid "A private collection"
+msgid_plural "{n} private collections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Collections.js:83
+msgid "{entity} has not been added to any collections."
+msgstr ""
+
+#: ../root/entity/Details.js:103
+msgid "{mbid|MBID}:"
+msgstr ""
+
+#: ../root/entity/Details.js:109 ../root/report/components/InstrumentList.js:69
+msgid "Last updated"
+msgstr ""
+
+#: ../root/entity/Details.js:113
+msgctxt "last updated"
+msgid "(unknown)"
+msgstr ""
+
+#: ../root/entity/Details.js:117
+msgid "Permanent link:"
+msgstr ""
+
+#: ../root/entity/Details.js:125
+msgid "{xml_ws_docs|XML}"
+msgstr ""
+
+#: ../root/entity/Details.js:141
+msgid "{json_ws_docs|JSON}"
+msgstr ""
+
+#: ../root/entity/Edits.js:53 ../root/entity/Edits.js:57
+msgid "Open Edits for {name}"
+msgstr ""
+
+#: ../root/entity/Edits.js:54 ../root/entity/Edits.js:58
+msgid "Edits for {name}"
+msgstr ""
+
+#: ../root/entity/Edits.js:70
+msgid "{entity_type} by {artist}"
+msgstr ""
+
+#: ../root/entity/NotFound.js:19
+msgid "Area Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:21
+msgid ""
+"Sorry, we could not find an area with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:28
+msgid "Artist Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:30
+msgid ""
+"Sorry, we could not find an artist with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:37
+msgid "Artist Credit Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:38
+msgid "Sorry, we could not find an artist credit with that ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:43
+msgid "CD TOC Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:44
+msgid "Sorry, we could not find the CD TOC you specified."
+msgstr ""
+
+#: ../root/entity/NotFound.js:49
+msgid "Collection Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:51
+msgid "Sorry, we could not find a collection with that MusicBrainz ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:57
+msgid "Edit Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:59
+msgid ""
+"Sorry, we could not find an edit with that edit ID. You may wish to try and "
+"perform an {search_url|edit search} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:66
+msgid "Election Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:67
+msgid "Sorry, we could not find this election."
+msgstr ""
+
+#: ../root/entity/NotFound.js:69
+msgid "Back to all elections."
+msgstr ""
+
+#: ../root/entity/NotFound.js:72
+msgid "Event Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:74
+msgid ""
+"Sorry, we could not find an event with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:81
+msgid "Genre Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:83
+msgid ""
+"Sorry, we could not find a genre with that MusicBrainz ID. You can see all "
+"available genres on our {genre_list|genre list}."
+msgstr ""
+
+#: ../root/entity/NotFound.js:90
+msgid "Instrument Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:92
+msgid ""
+"Sorry, we could not find an instrument with that MusicBrainz ID. You may "
+"wish to try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:99
+msgid "ISRC Not Currently Used"
+msgstr ""
+
+#: ../root/entity/NotFound.js:101
+msgid ""
+"This ISRC is not associated with any recordings. If you wish to associate it "
+"with a recording, please {search_url|search for the recording} and add it."
+msgstr ""
+
+#: ../root/entity/NotFound.js:109
+msgid "ISWC Not Currently Used"
+msgstr ""
+
+#: ../root/entity/NotFound.js:111
+msgid ""
+"This ISWC is not associated with any works. If you wish to associate it with "
+"a work, please {search_url|search for the work} and add it."
+msgstr ""
+
+#: ../root/entity/NotFound.js:118
+msgid "Label Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:120
+msgid ""
+"Sorry, we could not find a label with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:127
+msgid "Entity Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:129
+msgid ""
+"Sorry, we could not find a MusicBrainz entity with that ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:136
+msgid "Place Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:138
+msgid ""
+"Sorry, we could not find a place with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:145
+msgid "Recording Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:147
+msgid ""
+"Sorry, we could not find a recording with that MusicBrainz ID. You may wish "
+"to try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:154
+msgid "Relationship Attribute Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:156
+msgid ""
+"Sorry, we could not find a relationship attribute with that MusicBrainz ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:163
+msgid "Relationship Type Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:165
+msgid "Sorry, we could not find a relationship type with that MusicBrainz ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:172
+msgid "Release Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:174
+msgid ""
+"Sorry, we could not find a release with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:181
+msgid "Release Group Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:183
+msgid ""
+"Sorry, we could not find a release group with that MusicBrainz ID. You may "
+"wish to try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:190
+msgid "Series Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:192
+msgid ""
+"Sorry, we could not find a series with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:199
+msgid "Track Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:201
+msgid ""
+"Sorry, we could not find neither a recording nor a track with that "
+"MusicBrainz ID. You may wish to try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:209
+msgid "URL Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:210
+msgid "Sorry, we could not find a URL with that MusicBrainz ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:215
+msgid "Editor Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:217
+msgid ""
+"Sorry, we could not find an editor with that name. You may wish to try and "
+"{search_url|search for them} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:224
+msgid "Work Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:226
+msgid ""
+"Sorry, we could not find a work with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/Ratings.js:68
+msgid "{count} private rating not listed."
+msgid_plural "{count} private ratings not listed."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Ratings.js:75
+msgid "Average rating:"
+msgstr ""
+
+#: ../root/entity/Ratings.js:81
+msgid "{link} has no ratings."
+msgstr ""
+
+#: ../root/entity/Ratings.js:97
+msgid "Most Recent"
+msgstr ""
+
+#: ../root/entity/Ratings.js:104
+msgid "Most Popular"
+msgstr ""
+
+#: ../root/entity/Subscribers.js:57
+msgid "This is a special purpose entity and does not support subscriptions."
+msgstr ""
+
+#: ../root/entity/Subscribers.js:68
+msgid "There is currently {num} user subscribed to edits that you make:"
+msgid_plural ""
+"There are currently {num} users subscribed to edits that you make:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:79
+msgid "There is currently {num} user subscribed to edits that {user} makes:"
+msgid_plural ""
+"There are currently {num} users subscribed to edits that {user} makes:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:92
+msgid "There is currently {num} user subscribed to {entity}:"
+msgid_plural "There are currently {num} users subscribed to {entity}:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:111
+msgid "Plus {n} other anonymous user"
+msgid_plural "Plus {n} other anonymous users"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:121
+msgid "An anonymous user"
+msgid_plural "{n} anonymous users"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:135
+msgid "There are currently no users subscribed to edits that you make."
+msgstr ""
+
+#: ../root/entity/Subscribers.js:138
+msgid "There are currently no users subscribed to edits that {user} makes."
+msgstr ""
+
+#: ../root/entity/Subscribers.js:143
+msgid "There are currently no users subscribed to {entity}."
+msgstr ""
+
+#: ../root/entity/Subscribers.js:152
+msgid "You are currently subscribed. {unsub|Unsubscribe}?"
+msgstr ""
+
+#: ../root/entity/Subscribers.js:156
+msgid "Be the first! {sub|Subscribe}?"
+msgstr ""
+
+#: ../root/entity/Subscribers.js:159
+msgid "You are not currently subscribed. {sub|Subscribe}?"
+msgstr ""
+
+#: ../root/entity/alias/AddOrEditAlias.js:37
+msgid "Add alias"
+msgstr ""
+
+#: ../root/entity/alias/AddOrEditAlias.js:38
+msgid "Edit alias"
+msgstr ""
+
+#: ../root/entity/alias/DeleteAlias.js:31
+msgid "Remove alias"
+msgstr ""
+
+#: ../root/entity/alias/DeleteAlias.js:42
+msgid "You're removing the alias {alias}."
+msgstr ""
+
+#: ../root/entity/alias/DeleteAlias.js:48
+msgid "Please review the {doc|alias documentation} before entering this edit."
+msgstr ""
+
+#: ../root/event/EventMerge.js:32
+msgid ""
+"You are about to merge all these events into a single one. Please select the "
+"event all others should be merged into:"
+msgstr ""
+
+#: ../root/genre/CreateGenre.js:24 ../root/genre/CreateGenre.js:26
+msgid "Add a new genre"
+msgstr ""
+
+#: ../root/genre/DeleteGenre.js:35
+msgid "Are you sure you want to remove the genre {genre}?"
+msgstr ""
+
+#: ../root/genre/GenreIndex.js:34
+msgid "Genre information"
+msgstr ""
+
+#: ../root/genre/GenreIndex.js:36
+msgid "Associated tags"
+msgstr ""
+
+#: ../root/genre/GenreIndex.js:39
+msgid "Primary tag"
+msgstr ""
+
+#: ../root/genre/GenreListPage.js:20 ../root/genre/GenreListPage.js:22
+#: ../root/layout/components/BottomMenu.js:324
+msgid "Genre List"
+msgstr ""
+
+#: ../root/genre/GenreListPage.js:25
+msgid ""
+"These are all the {genre_url|genres} currently available for use in "
+"MusicBrainz."
+msgstr ""
+
+#: ../root/genre/GenreListPage.js:31
+msgid ""
+"To associate a genre with an entity, tag the entity with the genre name."
+msgstr ""
+
+#: ../root/genre/GenreListPage.js:42
+msgid ""
+"Is a genre missing from the list? Request it by {link|adding a style ticket}."
+msgstr ""
+
+#: ../root/instrument/DeleteInstrument.js:34
+#: ../root/instrument/DeleteInstrument.js:36
+msgid "Remove Instrument"
+msgstr ""
+
+#: ../root/instrument/DeleteInstrument.js:49
+msgid ""
+"This instrument cannot be removed because there are still relationships "
+"attributed to it."
+msgstr ""
+
+#: ../root/instrument/InstrumentArtists.js:67
+msgid "No artists found."
+msgstr ""
+
+#: ../root/instrument/InstrumentMerge.js:32
+msgid ""
+"You are about to merge all these instruments into a single one. Please "
+"select the instrument all others should be merged into:"
+msgstr ""
+
+#: ../root/instrument/List.js:45 ../root/instrument/List.js:47
+#: ../root/layout/components/BottomMenu.js:321
+msgid "Instrument List"
+msgstr ""
+
+#: ../root/instrument/List.js:61 ../root/report/components/InstrumentList.js:55
+msgid "Unclassified instrument"
+msgstr ""
+
+#: ../root/instrument/List.js:72
+msgid ""
+"Is this list missing an instrument? Request it by following {link|these "
+"instructions}."
+msgstr ""
+
+#: ../root/isrc/Index.js:38 ../root/isrc/Index.js:42
+msgid "ISRC “{isrc}”"
+msgstr ""
+
+#: ../root/isrc/Index.js:48
+msgid "Associated with {num} recording"
+msgid_plural "Associated with {num} recordings"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/iswc/Index.js:31 ../root/iswc/Index.js:34
+msgid "ISWC “{iswc}”"
+msgstr ""
+
+#: ../root/iswc/Index.js:39
+msgid "Associated with {num} work"
+msgid_plural "Associated with {num} works"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/label/LabelIndex.js:101
+msgid "This label does not have any releases."
+msgstr ""
+
+#: ../root/label/LabelMerge.js:32
+msgid ""
+"You are about to merge all these labels into a single one. Please select the "
+"label all others should be merged into:"
+msgstr ""
+
+#: ../root/label/SpecialPurpose.js:25
+msgid "You may not edit special purpose labels"
+msgstr ""
+
+#: ../root/label/SpecialPurpose.js:27
+msgid ""
+"The label you are trying to edit is a special purpose label, and you may not "
+"make direct changes to this data."
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:99
+msgid "(reset language)"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:104
+msgid "Help Translate"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:115
+msgid "About Us"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:120
+msgid "About MusicBrainz"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:123
+msgid "Sponsors"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:126
+msgid "Team"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:129
+msgid "Shop"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:132
+msgid "Contact Us"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:135
+msgid "Data Licenses"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:138
+msgid "Social Contract"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:141
+msgid "Code of Conduct"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:144
+msgid "Privacy Policy"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:147
+msgid "GDPR Compliance"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:150
+msgid "Data Removal Policy"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:153
+msgid "Auto-editor Elections"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:156
+msgid "Privileged User Accounts"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
+msgid "Statistics"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:162
+msgid "Timeline Graph"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:165
+msgid "MusicBrainz History"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:174
+msgid "Products"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:179 ../root/main/index.js:153
+msgid "MusicBrainz Picard"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:182 ../root/main/index.js:157
+msgid "AudioRanger"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:185 ../root/main/index.js:160
+msgid "Mp3tag"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:188 ../root/main/index.js:163
+msgid "Yate Music Tagger"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:192
+msgid "MusicBrainz for Android"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:196
+msgid "MusicBrainz Server"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:199 ../root/main/index.js:218
+msgid "MusicBrainz Database"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:202
+msgid "Developer Resources"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:205
+msgid "MusicBrainz API"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:208
+msgid "Live Data Feed"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:222
+msgid "Advanced Search"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:225
+msgid "Edit Search"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:228
+msgid "Tag Cloud"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:240
+#: ../root/layout/components/sidebar/CollectionSidebar.js:72
+#: ../root/layout/components/sidebar/EditLinks.js:31
+#: ../root/static/scripts/account/components/PreferencesForm.js:242
+msgid "Editing"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:245
+msgctxt "button/menu"
+msgid "Add Artist"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:252
+msgctxt "button/menu"
+msgid "Add Release Group"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:256
+msgctxt "button/menu"
+msgid "Add Release"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:260
+msgid "Add Various Artists Release"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:265
+msgctxt "button/menu"
+msgid "Add Standalone Recording"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:269
+msgctxt "button/menu"
+msgid "Add Work"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:272
+msgctxt "button/menu"
+msgid "Add Place"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:275
+msgctxt "button/menu"
+msgid "Add Series"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:278
+msgctxt "button/menu"
+msgid "Add Event"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:281
+msgid "Vote on Edits"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:284
+#: ../root/report/ReportsIndex.js:39 ../root/report/ReportsIndex.js:41
+msgid "Reports"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:298
+msgid "Beginners Guide"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:301
+msgid "Style Guidelines"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:304
+msgid "How Tos"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:307 ../root/main/index.js:183
+msgid "FAQs"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:311
+msgid "Documentation Index"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:318
+#: ../root/relationship/RelationshipsHeader.js:17
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
+#: ../root/relationship/linktype/RelationshipTypesList.js:60
+#: ../root/utility/tableColumns.js:373
+msgid "Relationship Types"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:327
+msgid "Development"
+msgstr ""
+
+#: ../root/layout/components/ExternalLinks.js:56
+msgid "{url} (as {credited_name})"
+msgstr ""
+
+#: ../root/layout/components/ExternalLinks.js:121
+msgid "Official homepage"
+msgstr ""
+
+#: ../root/layout/components/ExternalLinks.js:170
+msgid "External links"
+msgstr ""
+
+#: ../root/layout/components/ExternalLinks.js:177
+msgid "View all relationships"
+msgstr ""
+
+#: ../root/layout/components/Footer.js:30
+msgid "Chat (IRC)"
+msgstr ""
+
+#: ../root/layout/components/Footer.js:66
+msgid "Running: {git_details}"
+msgstr ""
+
+#: ../root/layout/components/Head.js:49
+msgid "Page {n}"
+msgstr ""
+
+#: ../root/layout/components/Head.js:105
+msgid "MusicBrainz: Artist"
+msgstr ""
+
+#: ../root/layout/components/Head.js:111
+msgid "MusicBrainz: Label"
+msgstr ""
+
+#: ../root/layout/components/Head.js:117
+msgid "MusicBrainz: Release"
+msgstr ""
+
+#: ../root/layout/components/Head.js:123
+msgid "MusicBrainz: Track"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:68
+msgid "Log Out"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:82
+msgid "My Data"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:88
+msgid "My Collections"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:92
+msgid "My Ratings"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:95
+msgid "My Tags"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:98
+msgid "My Open Edits"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:101
+msgid "All My Edits"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:104
+msgid "Edits for Subscribed Entities"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:108
+msgid "Edits by Subscribed Editors"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:112
+msgid "Notes Left on My Edits"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:122
+msgid "Admin"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:128
+msgctxt "button/menu"
+msgid "Add Area"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:136
+msgctxt "button/menu"
+msgid "Add Instrument"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:140
+msgctxt "button/menu"
+msgid "Add Genre"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:143
+msgid "Edit Relationship Types"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:150
+msgid "Transclude WikiDocs"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:163
+#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:233
+msgid "Edit Attributes"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:167
+msgid "Edit Statistics Events"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:171
+msgid "Email Search"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:174
+msgid "Privilege Search"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:178
+msgid "Locked Username Search"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:200 ../root/user/Login.js:51
+#: ../root/user/Login.js:52 ../root/user/Login.js:131
+msgid "Log In"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:204
+#: ../root/static/scripts/account/components/RegisterForm.js:131
+msgid "Create Account"
+msgstr ""
+
+#: ../root/layout/components/sidebar/AnnotationLinks.js:38
+msgid "Add annotation"
+msgstr ""
+
+#: ../root/layout/components/sidebar/AnnotationLinks.js:44
+#: ../root/static/scripts/common/components/Annotation.js:91
+msgid "View annotation history"
+msgstr ""
+
+#: ../root/layout/components/sidebar/AreaSidebar.js:49
+msgid "Area information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ArtistSidebar.js:71
+msgid "Artist information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
+msgid "Add recording"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
+msgid "Split into separate artists"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
+msgid "Import as MusicBrainz release"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
+msgid "Add disc ID to an existing release"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
+msgid "Search the database for this CD"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:23
+msgid "You have no area collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:24
+msgid "You have no artist collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:25
+msgid "You have no event collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:26
+msgid "You have no instrument collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:27
+msgid "You have no label collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:28
+msgid "You have no place collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:29
+msgid "You have no recording collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:30
+msgid "You have no release collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:31
+msgid "You have no release group collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:32
+msgid "You have no series collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:33
+msgid "You have no work collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:44
+msgid "Add to a new collection"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:46
+#: ../root/user/UserCollections.js:203
+msgid "Collaborative collections"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:50
+#: ../root/user/UserCollections.js:182
+msgid "My collections"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:57
+msgid "Found in {num} user collection"
+msgid_plural "Found in {num} user collections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:66
+msgid "Other collections"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionList.js:86
+msgid "Remove from {collection}"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionList.js:91
+msgid "Add to {collection}"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:50
+msgid "Collection information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:54
+msgid "Owner:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:66
+msgid "Number of entities"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:84
+#: ../root/layout/components/sidebar/EditLinks.js:50
+msgid "Editing history"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:107
+#: ../root/layout/components/sidebar/SubscriptionLinks.js:42
+#: ../root/user/UserSubscriptions.js:91
+msgid "Unsubscribe"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:119
+#: ../root/layout/components/sidebar/SubscriptionLinks.js:52
+msgid "Subscribe"
+msgstr ""
+
+#: ../root/layout/components/sidebar/EditLinks.js:36
+msgid "Log in to edit"
+msgstr ""
+
+#: ../root/layout/components/sidebar/EventSidebar.js:51
+msgid "Event information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/EventSidebar.js:65
+msgid "Start Date:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/EventSidebar.js:66
+msgid "End Date:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/InstrumentSidebar.js:51
+msgid "Instrument information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LabelSidebar.js:58
+msgid "Label information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LabelSidebar.js:67
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:73
+msgid "Founded:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LabelSidebar.js:73
+msgid "Defunct:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LastUpdated.js:23
+msgid "Last updated on {date}"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LastUpdated.js:28
+msgid "Last updated on an unknown date"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:55
+msgid "Place information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:66
+msgctxt "place"
+msgid "Opening"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:67
+msgctxt "place"
+msgid "Opened"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:76
+msgctxt "place"
+msgid "Closing"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:77
+msgctxt "place"
+msgid "Closed"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
+msgid "ListenBrainz"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:64
+msgid "Play on ListenBrainz"
+msgstr ""
+
+#: ../root/layout/components/sidebar/RecordingSidebar.js:45
+msgid "Recording information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
+msgid "First release year"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:56
+msgid "Release group information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:90
+msgid "Front cover image failed to load correctly.
{all|View all artwork}."
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:96
+#: ../root/release/CoverArt.js:69
+msgid ""
+"Cover art for this release has been hidden by the Internet Archive because "
+"of a takedown request."
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:102
+msgid "No front cover image available."
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:105
+msgid "View all artwork"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:108
+msgid "No cover art available."
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
+msgid "Additional details"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
+msgid "Release group rating"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
+msgid "Release group reviews"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
+msgid "Release group external links"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
+msgid "Edit relationships"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
+msgid "Change data quality"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SeriesSidebar.js:45
+msgid "Series information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarLicenses.js:141
+msgid "License"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarRating.js:27
+#: ../root/static/scripts/release/components/MediumTable.js:88
+#: ../root/utility/tableColumns.js:466
+msgid "Rating"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarRating.js:35
+msgid "see all ratings"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarTags.js:51
+#: ../root/static/scripts/common/components/TagEditor.js:673
+msgctxt "genre"
+msgid "(none)"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarTags.js:51
+#: ../root/static/scripts/common/components/TagEditor.js:682
+msgctxt "tag"
+msgid "(none)"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarTags.js:80
+#: ../root/static/scripts/common/components/TagEditor.js:542
+#: ../root/static/scripts/common/components/TagEditor.js:667
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:21
+#: ../root/tag/TagCloud.js:117 ../root/user/UserTagList.js:76
+msgid "Genres"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarTags.js:91
+#: ../root/static/scripts/common/components/TagEditor.js:552
+#: ../root/static/scripts/common/components/TagEditor.js:676
+#: ../root/tag/TagCloud.js:125 ../root/user/UserTagList.js:97
+msgid "Other tags"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarTags.js:103
+msgid "See all tags"
+msgstr ""
+
+#: ../root/layout/components/sidebar/WorkSidebar.js:60
+msgid "Work information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/WorkSidebar.js:96
+msgid "Work attributes"
+msgstr ""
+
+#: ../root/layout/index.js:38
+msgid "Birthday cakes"
+msgstr ""
+
+#: ../root/layout/index.js:87
+msgid ""
+"You’ve been a MusicBrainz editor for {num} year! Happy anniversary, and "
+"thanks for contributing to MusicBrainz!"
+msgid_plural ""
+"You’ve been a MusicBrainz editor for {num} years! Happy anniversary, and "
+"thanks for contributing to MusicBrainz!"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/layout/index.js:257
+msgid "Happy birthday, and thanks for contributing to MusicBrainz!"
+msgstr ""
+
+#: ../root/main/ConfirmSeed.js:31
+msgid "Confirm Form Submission"
+msgstr ""
+
+#: ../root/main/ConfirmSeed.js:48
+msgid ""
+"You are about to submit a request to {action} originating from {origin}. "
+"Continue?"
+msgstr ""
+
+#: ../root/main/ConfirmSeed.js:57
+msgid ""
+"This confirmation is important to ensure that no malicious actor can use "
+"your account to modify data without your knowledge. Below this line, you can "
+"review the data being sent and make any modifications if desired."
+msgstr ""
+
+#: ../root/main/error/Error400.js:26
+msgid "Bad Request"
+msgstr ""
+
+#: ../root/main/error/Error400.js:29
+msgid "Sorry, there was a problem with your request."
+msgstr ""
+
+#: ../root/main/error/Error400.js:44
+msgid ""
+"Found a problem on our site? Please {report|report a bug} and include any "
+"error message that is shown above."
+msgstr ""
+
+#: ../root/main/error/Error400.js:52 ../root/main/error/TimeoutError.js:37
+msgid "Technical Information"
+msgstr ""
+
+#: ../root/main/error/Error401.js:19
+msgid "Unauthorized Request"
+msgstr ""
+
+#: ../root/main/error/Error401.js:22 ../root/report/LimitedEditors.js:43
+msgid "Sorry, you are not authorized to view this page."
+msgstr ""
+
+#: ../root/main/error/Error401.js:29
+msgid ""
+"You must first {url|add and verify your email address} before being able to "
+"edit or add anything to the database."
+msgstr ""
+
+#: ../root/main/error/Error401.js:38 ../root/user/Login.js:89
+msgid ""
+"If you think this is a mistake, please contact support@musicbrainz."
+"org
with the name of your account."
+msgstr ""
+
+#: ../root/main/error/Error403.js:21 ../root/main/error/MirrorError403.js:13
+msgid "Forbidden Request"
+msgstr ""
+
+#: ../root/main/error/Error403.js:24
+msgid "The page you requested is private."
+msgstr ""
+
+#: ../root/main/error/Error403.js:35
+msgid ""
+"If you followed a link on our site to get here, please {report|report a bug} "
+"and the URL of the page that sent you here."
+msgstr ""
+
+#: ../root/main/error/Error404.js:35
+msgid "Sorry, the page you're looking for does not exist."
+msgstr ""
+
+#: ../root/main/error/Error404.js:40
+#: ../root/main/error/components/ErrorInfo.js:28
+msgid "Error message: "
+msgstr ""
+
+#: ../root/main/error/Error404.js:52
+msgid ""
+"Found a broken link on our site? Please {report|report a bug} and include "
+"any error message that is shown above."
+msgstr ""
+
+#: ../root/main/error/Error500.js:37
+msgid "Internal Server Error"
+msgstr ""
+
+#: ../root/main/error/Error500.js:40
+#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:553
+msgid "Oops, something went wrong!"
+msgstr ""
+
+#: ../root/main/error/Error500.js:50
+msgid "Edits loaded for the page:"
+msgstr ""
+
+#: ../root/main/error/Error500.js:60
+msgid "raw edit data"
+msgstr ""
+
+#: ../root/main/error/Error500.js:65
+msgid "fully loaded"
+msgstr ""
+
+#: ../root/main/error/Error500.js:78
+msgid ""
+"We’re terribly sorry for this problem. Please wait a few minutes and repeat "
+"your request — the problem may go away."
+msgstr ""
+
+#: ../root/main/error/Error500.js:85
+msgid ""
+"If the problem persists, please {report|report a bug} and include any error "
+"message that is shown above."
+msgstr ""
+
+#: ../root/main/error/Error503.js:13
+msgid "System Busy"
+msgstr ""
+
+#: ../root/main/error/Error503.js:16
+msgid "The system is overloaded or you are making requests too fast."
+msgstr ""
+
+#: ../root/main/error/Error503.js:21
+msgid "Please wait a few minutes and repeat your request."
+msgstr ""
+
+#: ../root/main/error/MirrorError403.js:16
+msgid "Sorry, you are unable to perform that action on a mirror server."
+msgstr ""
+
+#: ../root/main/error/MirrorError403.js:23
+msgid ""
+"In order to log in or make changes to the database you must visit the main "
+"server at {mb|https://musicbrainz.org/}."
+msgstr ""
+
+#: ../root/main/error/MirrorError404.js:16
+msgid "Sorry, the page you're looking for is not available on a mirror server."
+msgstr ""
+
+#: ../root/main/error/MirrorError404.js:23
+msgid ""
+"In order to view this page, please visit the main server at {mb|https://"
+"musicbrainz.org/}."
+msgstr ""
+
+#: ../root/main/error/TimeoutError.js:25
+msgid "Request Timed Out"
+msgstr ""
+
+#: ../root/main/error/TimeoutError.js:28
+msgid "Processing your request took too long and timed out."
+msgstr ""
+
+#: ../root/main/error/TimeoutError.js:33
+msgid "It may help to try again by reloading the page."
+msgstr ""
+
+#: ../root/main/error/components/ErrorEnvironment.js:34
+msgid "Host:"
+msgstr ""
+
+#: ../root/main/error/components/ErrorEnvironment.js:42
+msgid "Interface language:"
+msgstr ""
+
+#: ../root/main/error/components/ErrorEnvironment.js:55
+msgid "Request data:"
+msgstr ""
+
+#: ../root/main/error/components/ErrorInfo.js:32
+msgid "(No details about this error are available)"
+msgstr ""
+
+#: ../root/main/index.js:36
+msgid "MusicBrainz - The Open Music Encyclopedia"
+msgstr ""
+
+#: ../root/main/index.js:40
+msgid "Welcome to MusicBrainz!"
+msgstr ""
+
+#: ../root/main/index.js:44
+msgid ""
+"MusicBrainz is an open music encyclopedia that collects music metadata and "
+"makes it available to the public."
+msgstr ""
+
+#: ../root/main/index.js:50
+msgid "MusicBrainz aims to be:"
+msgstr ""
+
+#: ../root/main/index.js:56
+msgid ""
+"The ultimate source of music information by allowing anyone "
+"to contribute and releasing the {doc|data} under {doc2|open licenses}."
+msgstr ""
+
+#: ../root/main/index.js:67
+msgid ""
+"The universal lingua franca for music by providing a "
+"reliable and unambiguous form of {doc|music identification}, enabling both "
+"people and machines to have meaningful conversations about music."
+msgstr ""
+
+#: ../root/main/index.js:80
+msgid ""
+"Like Wikipedia, MusicBrainz is maintained by a global community of users and "
+"we want everyone — including you — to {doc|participate and "
+"contribute}."
+msgstr ""
+
+#: ../root/main/index.js:91
+msgid ""
+"{about|More Information} — {faq|FAQs} — {contact|Contact Us}"
+msgstr ""
+
+#: ../root/main/index.js:103
+msgid ""
+"MusicBrainz is operated by the {uri|MetaBrainz Foundation}, a California "
+"based 501(c)(3) tax-exempt non-profit corporation dedicated to keeping "
+"MusicBrainz {free|free and open source}."
+msgstr ""
+
+#: ../root/main/index.js:116
+msgid "MetaBrainz Blog"
+msgstr ""
+
+#: ../root/main/index.js:121
+msgid "Latest posts:"
+msgstr ""
+
+#: ../root/main/index.js:133
+msgid "Read more »"
+msgstr ""
+
+#: ../root/main/index.js:140
+msgid "The blog is currently unavailable."
+msgstr ""
+
+#: ../root/main/index.js:149
+msgid "Tag Your Music"
+msgstr ""
+
+#: ../root/main/index.js:169
+msgid "Quick Start"
+msgstr ""
+
+#: ../root/main/index.js:172
+msgid "Beginners guide"
+msgstr ""
+
+#: ../root/main/index.js:176
+msgid "Editing introduction"
+msgstr ""
+
+#: ../root/main/index.js:187
+msgid "How to add artists"
+msgstr ""
+
+#: ../root/main/index.js:192
+msgid "How to add releases"
+msgstr ""
+
+#: ../root/main/index.js:203
+msgid "Community"
+msgstr ""
+
+#: ../root/main/index.js:206
+msgid "How to Contribute"
+msgstr ""
+
+#: ../root/main/index.js:222
+msgid ""
+"The majority of the data in the MusicBrainz Database is "
+"released into the Public Domain and can be downloaded and "
+"used for free."
+msgstr ""
+
+#: ../root/main/index.js:232
+msgid "Developers"
+msgstr ""
+
+#: ../root/main/index.js:236
+msgid ""
+"Use our XML web service or development libraries"
+"strong> to create your own MusicBrainz-enabled applications."
+msgstr ""
+
+#: ../root/main/index.js:246
+msgid "Recent Additions"
+msgstr ""
+
+#: ../root/mbid/NotFound.js:21
+msgid "MBID Not Found"
+msgstr ""
+
+#: ../root/mbid/NotFound.js:21
+msgid "Invalid MBID"
+msgstr ""
+
+#: ../root/mbid/NotFound.js:25
+msgid ""
+"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
+"it is an ID for something else than an entity (for example, a "
+"{rel_type_table|relationship type})."
+msgstr ""
+
+#: ../root/mbid/NotFound.js:39
+msgid "{mbid} is not a valid {mbid_doc|MBID}."
+msgstr ""
+
+#: ../root/mbid/NotFound.js:47
+msgid "No {mbid_doc|MBID} selected."
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:28 ../root/oauth2/OAuth2Oob.js:21
+msgid "OAuth Authorization"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:29
+msgid "Authorization"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:33
+msgid "{app} is requesting permission to:"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:44
+msgid "Perform the above operations when I'm not using the application"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:59
+msgid "No thanks"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:62
+msgid "Allow access"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Error.js:21
+msgid "OAuth Authorization Error"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Error.js:22
+msgid "Error: {error}"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Error.js:24
+msgid "{doc|Learn more}"
+msgstr ""
+
+#: ../root/oauth2/OAuth2FormPost.js:21
+msgid "Redirecting to {application}"
+msgstr ""
+
+#: ../root/oauth2/OAuth2FormPost.js:33
+msgid "If this page doesn’t redirect automatically, press “Submit” below."
+msgstr ""
+
+#: ../root/oauth2/OAuth2Oob.js:22
+msgid "Success!"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Oob.js:25
+msgid ""
+"You have granted access to {app}. Next, return to {app} and copy this token "
+"to complete the authorization process:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:82
+msgid "Artist IPI:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:87
+msgid "Artist ISNI:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:92
+msgid "Label IPI:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:97
+msgid "Label ISNI:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:102
+msgid "FreeDB ID:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupIndex.js:22
+#: ../root/otherlookup/OtherLookupIndex.js:24
+msgid "Other Lookups"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupReleaseResults.js:22
+#: ../root/otherlookup/OtherLookupReleaseResults.js:23
+#: ../root/search/components/ResultsLayout.js:32
+#: ../root/search/components/ResultsLayout.js:34
+msgid "Search Results"
+msgstr ""
+
+#: ../root/place/PlaceEvents.js:61
+msgid "This place is not currently associated with any events."
+msgstr ""
+
+#: ../root/place/PlaceMap.js:47
+msgid "A map cannot be shown because this place has no coordinates."
+msgstr ""
+
+#: ../root/place/PlaceMerge.js:32
+msgid ""
+"You are about to merge all these places into a single one. Please select the "
+"place all others should be merged into:"
+msgstr ""
+
+#: ../root/place/PlacePerformances.js:33
+msgid "No recordings, releases or release groups are linked to this place."
+msgstr ""
+
+#: ../root/recording/DeleteRecording.js:34
+#: ../root/recording/DeleteRecording.js:36
+msgid "Remove Recording"
+msgstr ""
+
+#: ../root/recording/DeleteRecording.js:43
+msgid ""
+"Please make sure you’re not removing a legitimate {doc_standalone|standalone "
+"recording}."
+msgstr ""
+
+#: ../root/recording/DeleteRecording.js:57
+msgid "This recording cannot be removed because it is still used on releases."
+msgstr ""
+
+#: ../root/recording/RecordingFingerprints.js:27
+msgid "Associated AcoustIDs"
+msgstr ""
+
+#: ../root/recording/RecordingHeader.js:40
+msgid "Video by {artist}"
+msgstr ""
+
+#: ../root/recording/RecordingHeader.js:41
+msgid "Recording by {artist}"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:56
+msgid "Track Artist"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:57
+msgid "Release Title"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:58
+msgid "Release Artist"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:59
+msgid "Release Group Type"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:81
+#: ../root/release_group/ReleaseGroupIndex.js:60
+msgctxt "release status"
+msgid "(unknown)"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:94
+msgid "Medium {medium_num}, track {track_num}"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:176
+msgid "Appears on releases"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:184
+msgid "No releases found which feature this recording."
+msgstr ""
+
+#: ../root/recording/RecordingMerge.js:34
+msgid ""
+"You are about to merge all these recordings into a single one. Please select "
+"the recording all others should be merged into:"
+msgstr ""
+
+#: ../root/recording/RecordingMerge.js:41
+msgid ""
+"Warning: Some of the recordings you're merging have "
+"different ISRCs. Please make sure they are indeed the same recordings and "
+"you wish to continue with the merge."
+msgstr ""
+
+#: ../root/relationship/RelationshipsHeader.js:23
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:87
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:178
+msgid "Relationship Attributes"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/DeleteRelationshipAttributeType.js:24
+msgid ""
+"Are you sure you wish to remove the {link_attr_type} "
+"relationship attribute?"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/DeleteRelationshipAttributeType.js:28
+msgid "Remove Relationship Attribute"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:19
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:21
+msgid "Relationship attribute in use"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
+msgid ""
+"The relationship attribute type “{type}” can’t be removed because it’s still "
+"in use."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:77
+msgid "Relationship Attribute"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
+msgid "UUID:"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:134
+msgid "Parent attribute"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
+msgid "Possible values"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:161
+msgid ""
+"The possible values for this relationship can be seen from the "
+"{instrument_list|instrument list}."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:182
+msgid "Relationship usage"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:186
+msgid "This attribute is being used by the following relationship types:"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:200
+msgid "{type0} - {type1}"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:217
+msgid "This attribute isn’t directly being used by any relationship types."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:45
+msgid "none"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:62
+msgid "Add child"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
+msgid "No relationship attributes found."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
+msgid "Add a new relationship attribute"
+msgstr ""
+
+#: ../root/relationship/linktype/DeleteRelationshipType.js:24
+msgid ""
+"Are you sure you wish to remove the {link_type} "
+"relationship type?"
+msgstr ""
+
+#: ../root/relationship/linktype/DeleteRelationshipType.js:28
+msgid "Remove Relationship Type"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeInUse.js:19
+#: ../root/relationship/linktype/RelationshipTypeInUse.js:21
+msgid "Relationship Type In Use"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
+msgid ""
+"The relationship type “{type}” can’t be removed because it’s still in use."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
+msgid "This relationship type doesn't allow any attributes."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:52
+msgid "The following attributes can be used with this relationship type:"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:73
+msgid "start date"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:76
+msgid "end date"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:116
+msgid "{entity0}-{entity1}"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:126
+#: ../root/static/scripts/edit/externalLinks.js:774
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:72
+msgid "This relationship type is deprecated and should not be used."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:194
+msgid "Link phrases"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:223
+msgid "Guidelines"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:227
+msgid "See the general {url|guidelines for URLs}."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:260
+msgid ""
+"This relationship type is only used for grouping other relationship types."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:47
+msgid "more"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:69
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:76
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:83
+msgctxt "link phrase"
+msgid "(none)"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:134
+msgid "{relationship_documentation_url|Documentation}"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:172
+msgid "{type0}-{type1} Relationship Types"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:183
+msgid "< Back to all relationship types"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:190
+msgid "{type0}-{type1} relationship types"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
+msgid "Expand all descriptions"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:213
+msgid "Collapse all descriptions"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:232
+msgid "No {type0}-{type1} relationship types found."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypesList.js:40
+msgid "{type0}-{type1}"
+msgstr ""
+
+#: ../root/release/ChangeQuality.js:52
+msgid ""
+"{data_quality_doc|Data quality} indicates how good the data for a release "
+"is. It is not a mark of how good or bad the music itself is — for that, use "
+"{ratings_doc|ratings}."
+msgstr ""
+
+#: ../root/release/CoverArt.js:32
+msgid "250px"
+msgstr ""
+
+#: ../root/release/CoverArt.js:38
+msgid "500px"
+msgstr ""
+
+#: ../root/release/CoverArt.js:44
+msgid "1200px"
+msgstr ""
+
+#: ../root/release/CoverArt.js:48
+msgid "original"
+msgstr ""
+
+#: ../root/release/CoverArt.js:63
+msgid "Cannot show cover art"
+msgstr ""
+
+#: ../root/release/CoverArt.js:100
+msgid "All sizes:"
+msgstr ""
+
+#: ../root/release/CoverArt.js:125
+msgid ""
+"These images provided by the {caa|Cover Art Archive}. You can also see them "
+"at the {ia|Internet Archive}."
+msgstr ""
+
+#: ../root/release/CoverArt.js:137
+msgid "We do not currently have any cover art for {release}."
+msgstr ""
+
+#: ../root/release/CoverArt.js:147
+msgctxt "button/menu"
+msgid "Add Cover Art"
+msgstr ""
+
+#: ../root/release/CoverArt.js:153
+msgctxt "button/menu"
+msgid "Reorder Cover Art"
+msgstr ""
+
+#: ../root/release/CoverArt.js:161
+msgid "Log in to upload cover art"
+msgstr ""
+
+#: ../root/release/CoverArtDarkened.js:19
+msgid "Cannot Add Cover Art"
+msgstr ""
+
+#: ../root/release/CoverArtFields.js:78
+msgid "Choose one or more cover art types for this image"
+msgstr ""
+
+#: ../root/release/DeleteRelease.js:31 ../root/release/DeleteRelease.js:33
+msgid "Remove Release"
+msgstr ""
+
+#: ../root/release/EditRelationships.js:28
+msgid "Edit Relationships: {release}"
+msgstr ""
+
+#: ../root/release/EditRelationships.js:35
+msgid ""
+"To use the batch tools, select some recordings or works using the checkboxes."
+msgstr ""
+
+#: ../root/release/EditRelationships.js:42
+msgid ""
+"Please read {relationships_doc|our guidelines for relationships} if you "
+"haven’t already."
+msgstr ""
+
+#: ../root/release/ReleaseHeader.js:29
+msgid "see all versions of this release, {count} available"
+msgid_plural "see all versions of this release, {count} available"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/release/ReleaseHeader.js:36
+msgid "Release by {artist}"
+msgstr ""
+
+#: ../root/release/ReleaseMerge.js:41
+msgid ""
+"You are about to merge the following releases into a single release. Please "
+"select the release which you would like other releases to be merged into:"
+msgstr ""
+
+#: ../root/release/RemoveCoverArt.js:31
+msgid "Remove Cover Art"
+msgstr ""
+
+#: ../root/release/RemoveCoverArt.js:38
+msgid ""
+"Are you sure you wish to remove the below cover art from {release} by "
+"{artist}?"
+msgstr ""
+
+#: ../root/release_group/ReleaseGroupHeader.js:28
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
+msgid "Release group by {artist}"
+msgstr ""
+
+#: ../root/release_group/ReleaseGroupMerge.js:32
+msgid ""
+"You are about to merge all these release groups into a single one. Please "
+"select the release group all others should be merged into:"
+msgstr ""
+
+#: ../root/report/AnnotationsArtists.js:29
+msgid "This report lists artists with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsArtists.js:34
+msgid "Artist annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsEvents.js:29
+msgid "This report lists events with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsEvents.js:34
+msgid "Event annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsLabels.js:29
+msgid "This report lists labels with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsLabels.js:34
+msgid "Label annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsPlaces.js:29
+msgid "This report lists places with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsPlaces.js:34
+msgid "Place annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsRecordings.js:30
+msgid "This report lists recordings with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsRecordings.js:35
+msgid "Recording annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsReleaseGroups.js:30
+msgid "This report lists release groups with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsReleaseGroups.js:35
+msgid "Release group annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsReleases.js:29
+msgid "This report lists releases with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsReleases.js:34
+msgid "Release annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsSeries.js:29
+msgid "This report lists series with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsSeries.js:34
+msgid "Series annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsWorks.js:29
+msgid "This report lists works with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsWorks.js:34
+msgid "Work annotations"
+msgstr ""
+
+#: ../root/report/ArtistCreditsWithDubiousTrailingPhrases.js:24
+msgid ""
+"This report lists artist credits that have a trailing join phrase that looks "
+"like it might have been left behind in error, such as a trailing comma or "
+"“feat.”."
+msgstr ""
+
+#: ../root/report/ArtistCreditsWithDubiousTrailingPhrases.js:31
+#: ../root/report/ReportsIndex.js:120
+msgid "Artist credits with dubious trailing join phrases"
+msgstr ""
+
+#: ../root/report/ArtistsContainingDisambiguationComments.js:24
+msgid ""
+"This report lists artists that may have disambiguation comments in their "
+"name, rather than the actual disambiguation comment field."
+msgstr ""
+
+#: ../root/report/ArtistsContainingDisambiguationComments.js:30
+#: ../root/report/ReportsIndex.js:84
+msgid "Artists containing disambiguation comments in their name"
+msgstr ""
+
+#: ../root/report/ArtistsDisambiguationSameName.js:24
+msgid ""
+"This report lists artists that have their disambiguation set to be the same "
+"as their name. The disambiguation should be removed or, if it is needed, "
+"improved."
+msgstr ""
+
+#: ../root/report/ArtistsDisambiguationSameName.js:31
+#: ../root/report/ReportsIndex.js:111
+msgid "Artists with disambiguation the same as the name"
+msgstr ""
+
+#: ../root/report/ArtistsThatMayBeGroups.js:24
+msgid ""
+"This report lists artists that have their type set to other than Group (or a "
+"subtype of Group) but may be a group, because they have other artists listed "
+"as members. If you find that an artist here is indeed a group, change its "
+"type. If it is not, please make sure that the “member of” relationships are "
+"in the right direction and are correct."
+msgstr ""
+
+#: ../root/report/ArtistsThatMayBeGroups.js:34
+#: ../root/report/ReportsIndex.js:59
+msgid "Artists that may be groups"
+msgstr ""
+
+#: ../root/report/ArtistsThatMayBePersons.js:24
+msgid ""
+"This report lists artists that have their type set to other than Person, but "
+"may be a person, based on their relationships. For example, an artist will "
+"appear here if it is listed as a member of another. If you find that an "
+"artist here is indeed a person, change its type. If it is not, please make "
+"sure that all the relationships are correct and make sense."
+msgstr ""
+
+#: ../root/report/ArtistsThatMayBePersons.js:34
+#: ../root/report/ReportsIndex.js:63
+msgid "Artists that may be persons"
+msgstr ""
+
+#: ../root/report/ArtistsWithMultipleOccurrencesInArtistCredits.js:24
+msgid ""
+"This report lists artists that appear more than once in different positions "
+"within the same artist credit."
+msgstr ""
+
+#: ../root/report/ArtistsWithMultipleOccurrencesInArtistCredits.js:30
+#: ../root/report/ReportsIndex.js:98
+msgid "Artists occurring multiple times in the same artist credit"
+msgstr ""
+
+#: ../root/report/ArtistsWithNoSubscribers.js:24
+msgid ""
+"This report lists artists that have no editors subscribed to them, and whose "
+"changes may therefore be under-reviewed. Artists with more release groups "
+"and more open edits are listed first."
+msgstr ""
+
+#: ../root/report/ArtistsWithNoSubscribers.js:31
+#: ../root/report/ReportsIndex.js:67
+msgid "Artists with no subscribers"
+msgstr ""
+
+#: ../root/report/AsinsWithMultipleReleases.js:24
+msgid ""
+"This report shows Amazon URLs which are linked to multiple releases. In most "
+"cases Amazon ASINs should map to MusicBrainz releases 1:1, so only one of "
+"the links will be correct. Just check which MusicBrainz release fits the "
+"release in Amazon (look at the format, tracklist, etc). If the release has a "
+"barcode, you can also search Amazon for it and see which ASIN matches. You "
+"might also find some ASINs linked to several discs of a multi-disc release: "
+"just merge those (see {how_to_merge_releases|How to Merge Releases})."
+msgstr ""
+
+#: ../root/report/AsinsWithMultipleReleases.js:38
+#: ../root/report/ReportsIndex.js:280
+msgid "Amazon URLs linked to multiple releases"
+msgstr ""
+
+#: ../root/report/BadAmazonUrls.js:35
+#: ../root/report/LinksWithMultipleEntities.js:86
+#: ../root/report/WikidataLinksWithMultipleEntities.js:81
+#: ../root/report/components/RemovedUrlRow.js:16
+msgid "This URL no longer exists."
+msgstr ""
+
+#: ../root/report/BadAmazonUrls.js:47
+msgid ""
+"This report shows releases with Amazon URLs which don't follow the expected "
+"format. They might still be correct if they're archive.org cover links, but "
+"in any other case they should probably be fixed or removed."
+msgstr ""
+
+#: ../root/report/BadAmazonUrls.js:55
+msgid "Bad Amazon URLs"
+msgstr ""
+
+#: ../root/report/CDTocDubiousLength.js:24
+msgid ""
+"This report shows disc IDs indicating a total duration much longer than what "
+"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
+msgstr ""
+
+#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
+msgid "Disc IDs with dubious duration"
+msgstr ""
+
+#: ../root/report/CDTocNotApplied.js:24
+msgid ""
+"This report shows disc IDs attached to a release but obviously not applied "
+"because at least one track length is unknown on the release. The report is "
+"also restricted to mediums where only one disc ID is attached, so it is "
+"highly likely that the disc ID can be applied without any worries. Do make "
+"sure though that no existing lengths clash with the disc ID, or that any "
+"clashes are clear mistakes."
+msgstr ""
+
+#: ../root/report/CDTocNotApplied.js:34 ../root/report/ReportsIndex.js:632
+msgid "Disc IDs attached but not applied"
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeAsin.js:28
+msgid ""
+"This report shows releases which have catalog numbers that look like ASINs. "
+"This is almost always wrong: ASINs are just Amazon's entries for the "
+"releases and should be linked to the release with an Amazon URL relationship "
+"instead."
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeAsin.js:36 ../root/report/ReportsIndex.js:323
+msgid "Releases with catalog numbers that look like ASINs"
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeIsrc.js:28
+msgid ""
+"This report shows releases which have catalog numbers that look like "
+"{doc_link|ISRCs}. Assigning ISRCs to releases is almost always wrong, but "
+"still happens sometimes, especially for releases added to MusicBrainz by an "
+"artist/label. But ISRCs are codes assigned to recordings, and should be "
+"linked to the appropriate recording instead. That said, do make sure this is "
+"not a legitimate catalog number that just happens to look like an ISRC!"
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeIsrc.js:40 ../root/report/ReportsIndex.js:327
+msgid "Releases with catalog numbers that look like ISRCs"
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
+msgid ""
+"This report shows releases which have catalog numbers that look like "
+"{doc_link|Label Codes}. This is often wrong, since the two are often "
+"confused: label codes apply to the label, not to a specific release. If you "
+"confirm this is a label code (check the label page to see if they match, for "
+"example), remove it or, even better, try to find the actual catalog number."
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
+#: ../root/report/ReportsIndex.js:332
+msgid "Releases with catalog numbers that look like Label Codes"
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:32
+msgid ""
+"This report lists artists which have collaboration relationships but no URL "
+"relationships. If the collaboration has its own independent name, do "
+"nothing. If it is in a format like \"X with Y\" or \"X & Y\", you should "
+"probably split it. See {how_to_split_artists|How to Split Artists}."
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:42
+msgid "Artists with collaboration relationships"
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:49
+msgid "Collaboration"
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:50
+msgid "Collaborator"
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:68
+#: ../root/report/CollaborationRelationships.js:79
+#: ../root/report/DuplicateArtists.js:116
+#: ../root/report/components/ArtistUrlList.js:74
+msgid "This artist no longer exists."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipArtists.js:29
+msgid ""
+"This report lists artists which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipArtists.js:35
+#: ../root/report/ReportsIndex.js:103
+msgid "Artists with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipLabels.js:29
+msgid ""
+"This report lists labels which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipLabels.js:35
+#: ../root/report/ReportsIndex.js:186
+msgid "Labels with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipPlaces.js:29
+msgid ""
+"This report lists places which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipPlaces.js:35
+#: ../root/report/ReportsIndex.js:546
+msgid "Places with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipRecordings.js:29
+msgid ""
+"This report lists recordings which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipRecordings.js:35
+#: ../root/report/ReportsIndex.js:492
+msgid "Recordings with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipReleaseGroups.js:29
+msgid ""
+"This report lists release groups which have relationships using deprecated "
+"and grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipReleaseGroups.js:35
+#: ../root/report/ReportsIndex.js:223
+msgid "Release groups with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipReleases.js:29
+msgid ""
+"This report lists releases which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipReleases.js:35
+#: ../root/report/ReportsIndex.js:397
+msgid "Releases with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipUrls.js:29
+msgid ""
+"This report lists URLs which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipUrls.js:35
+#: ../root/report/ReportsIndex.js:593
+msgid "URLs with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipWorks.js:29
+msgid ""
+"This report lists works which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipWorks.js:35
+#: ../root/report/ReportsIndex.js:576
+msgid "Works with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleArtists.js:25
+msgid "This report shows Discogs URLs which are linked to multiple artists."
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleArtists.js:30
+#: ../root/report/ReportsIndex.js:89
+msgid "Discogs URLs linked to multiple artists"
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleLabels.js:25
+msgid "This report shows Discogs URLs which are linked to multiple labels."
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleLabels.js:30
+#: ../root/report/ReportsIndex.js:178
+msgid "Discogs URLs linked to multiple labels"
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleReleaseGroups.js:25
+msgid ""
+"This report shows Discogs URLs which are linked to multiple release groups."
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleReleaseGroups.js:31
+#: ../root/report/ReportsIndex.js:213
+msgid "Discogs URLs linked to multiple release groups"
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleReleases.js:25
+msgid ""
+"This report shows Discogs URLs which are linked to multiple releases. In "
+"most cases Discogs releases should map to MusicBrainz releases 1:1, so only "
+"one of the links will be correct. Just check which MusicBrainz release fits "
+"the release in Discogs (look at the format, tracklist, release country, "
+"etc.). You might also find some Discogs URLs linked to several discs of a "
+"multi-disc release: just merge those (see {how_to_merge_releases|How to "
+"Merge Releases})."
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleReleases.js:37
+#: ../root/report/ReportsIndex.js:284
+msgid "Discogs URLs linked to multiple releases"
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:38
+msgid "Total duplicate groups: {count}"
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:40
+msgid ""
+"This report aims to identify artists with very similar names. If two artists "
+"are actually the same, please merge them (remember to "
+"{how_to_write_edit_notes|write an edit note} and give your proof). If "
+"they're different, add {disambiguation_comment|disambiguation comments} to "
+"them (and once a group of similarly named artists have disambiguation "
+"comments, they will stop appearing here)."
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:55 ../root/report/ReportsIndex.js:71
+msgid "Possibly duplicate artists"
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:99
+msgid "alias:"
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:109
+#: ../root/report/DuplicateReleaseGroups.js:93
+#: ../root/report/components/ArtistList.js:59
+#: ../root/report/components/ReleaseGroupList.js:63
+#: ../root/report/components/WorkList.js:63
+#: ../root/static/scripts/common/components/Cardinality.js:26
+msgid "Unknown"
+msgstr ""
+
+#: ../root/report/DuplicateEvents.js:24
+msgid ""
+"This report lists events happening at the same place on the same date. If "
+"there are duplicates (for example, if there are separate events for "
+"headliner and supporting artist) please merge them."
+msgstr ""
+
+#: ../root/report/DuplicateEvents.js:32
+msgid "Possible duplicate events"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsArtists.js:24
+msgid ""
+"This report lists artists which have multiple relatonships to the same "
+"artist, label or URL using the same relationship type. For multiple "
+"relationships to release groups, recordings or works, see the reports for "
+"those entities."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsArtists.js:32
+#: ../root/report/ReportsIndex.js:93
+msgid "Artists with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsLabels.js:24
+msgid ""
+"This report lists labels which have multiple relationships to the same "
+"entity using the same relationship type."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsLabels.js:30
+#: ../root/report/ReportsIndex.js:182
+msgid "Labels with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsRecordings.js:24
+msgid ""
+"This report lists recordings which have multiple relationships to the same "
+"entity using the same relationship type."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsRecordings.js:30
+#: ../root/report/ReportsIndex.js:484
+msgid "Recordings with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsReleaseGroups.js:24
+msgid ""
+"This report lists release groups which have multiple relationships to the "
+"same entity using the same relationship type."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsReleaseGroups.js:30
+#: ../root/report/ReportsIndex.js:218
+msgid "Release groups with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsReleases.js:24
+msgid ""
+"This report lists releases which have multiple relationships to the same "
+"entity using the same relationship type."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsReleases.js:30
+#: ../root/report/ReportsIndex.js:381
+msgid "Releases with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsWorks.js:24
+msgid ""
+"This report lists works which have multiple relationships to the same entity "
+"using the same relationship type. This excludes recording-work "
+"relationships. See the recording version of this report for those."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsWorks.js:32
+#: ../root/report/ReportsIndex.js:572
+msgid "Works with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateReleaseGroups.js:39
+msgid ""
+"This report lists release groups with very similar names and artists. If the "
+"releases in the release groups should be grouped together (see the {url|"
+"guidelines}), they can be merged. If they shouldn't be grouped together but "
+"they can be distinguished by the release group types, such as when an artist "
+"has an album and single with the same name, then there is usually no need to "
+"change anything. In other cases, a disambiguation comment may be helpful."
+msgstr ""
+
+#: ../root/report/DuplicateReleaseGroups.js:52
+#: ../root/report/ReportsIndex.js:227
+msgid "Possible duplicate release groups"
+msgstr ""
+
+#: ../root/report/DuplicateReleaseGroups.js:100
+#: ../root/report/components/ReleaseGroupUrlList.js:83
+msgid "This release group no longer exists."
+msgstr ""
+
+#: ../root/report/EventSequenceNotInSeries.js:24
+msgid ""
+"This report lists events where the event name indicates that it may have to "
+"be part of a series or a larger event."
+msgstr ""
+
+#: ../root/report/EventSequenceNotInSeries.js:30
+#: ../root/report/ReportsIndex.js:151
+msgid "Events which should be part of series or larger event"
+msgstr ""
+
+#: ../root/report/FeaturingRecordings.js:24
+msgid ""
+"This report shows recordings with “(feat. Artist)” (or similar) in the "
+"title. For classical recordings, consult the {CSG|classical style "
+"guidelines}. For non-classical recordings, this is usually inherited from an "
+"older version of MusicBrainz and should be fixed (both on the recordings and "
+"on the tracks!). Consult the {featured_artists|page about featured artists} "
+"to know more."
+msgstr ""
+
+#: ../root/report/FeaturingRecordings.js:39 ../root/report/ReportsIndex.js:480
+msgid "Recordings with titles containing featuring artists"
+msgstr ""
+
+#: ../root/report/FeaturingReleaseGroups.js:24
+msgid ""
+"This report shows release groups with “(feat. Artist)” (or similar) in the "
+"title. For classical release groups, consult the {CSG|classical style "
+"guidelines}. For non-classical release groups, this is usually inherited "
+"from an older version of MusicBrainz and should be fixed. Consult the "
+"{featured_artists|page about featured artists} to know more."
+msgstr ""
+
+#: ../root/report/FeaturingReleaseGroups.js:38
+#: ../root/report/ReportsIndex.js:208
+msgid "Release groups with titles containing featuring artists"
+msgstr ""
+
+#: ../root/report/FeaturingReleases.js:24
+msgid ""
+"This report shows releases with “(feat. Artist)” (or similar) in the title. "
+"For classical releases, consult the {CSG|classical style guidelines}. For "
+"non-classical releases, this is usually inherited from an older version of "
+"MusicBrainz and should be fixed. Consult the {featured_artists|page about "
+"featured artists} to know more. Don’t forget that the same generally applies "
+"to tracks, so if the track titles also include featuring credits you can fix "
+"them too while you edit the release!"
+msgstr ""
+
+#: ../root/report/FeaturingReleases.js:41 ../root/report/ReportsIndex.js:308
+msgid "Releases with titles containing featuring artists"
+msgstr ""
+
+#: ../root/report/FilterLink.js:27
+msgid "Show all results."
+msgstr ""
+
+#: ../root/report/FilterLink.js:31
+msgid "Show only results that are in my subscribed entities."
+msgstr ""
+
+#: ../root/report/InstrumentsWithoutAnImage.js:24
+msgid ""
+"This report shows instruments without an image relationship to StaticBrainz "
+"(that is, without an IROMBOOK image)."
+msgstr ""
+
+#: ../root/report/InstrumentsWithoutAnImage.js:30
+#: ../root/report/ReportsIndex.js:163
+msgid "Instruments without an image"
+msgstr ""
+
+#: ../root/report/InstrumentsWithoutWikidata.js:24
+msgid "This report shows instruments without Wikidata relationships."
+msgstr ""
+
+#: ../root/report/InstrumentsWithoutWikidata.js:29
+msgid "Instruments without a Wikidata link"
+msgstr ""
+
+#: ../root/report/IsrcsWithManyRecordings.js:37
+msgid ""
+"This report lists {isrc|ISRCs} that are attached to more than one recording. "
+"If the recordings are the same, this usually means they should be merged "
+"(ISRCs can be wrongly assigned so care should still be taken to make sure "
+"they really are the same). If the recordings are parts of a larger "
+"recording, the ISRCs are probably correct and should be left alone. If the "
+"same ISRC appears on two unrelated recordings on the same release, this is "
+"usually means there was an error when reading the disc."
+msgstr ""
+
+#: ../root/report/IsrcsWithManyRecordings.js:51
+#: ../root/report/ReportsIndex.js:610
+msgid "ISRCs with multiple recordings"
+msgstr ""
+
+#: ../root/report/IsrcsWithManyRecordings.js:98
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:82
+msgid "This recording no longer exists."
+msgstr ""
+
+#: ../root/report/IswcsWithManyWorks.js:34
+msgid ""
+"This report lists {iswc|ISWCs} that are attached to more than one work. If "
+"the works are the same, this usually means they should be merged."
+msgstr ""
+
+#: ../root/report/IswcsWithManyWorks.js:42 ../root/report/ReportsIndex.js:619
+msgid "ISWCs with multiple works"
+msgstr ""
+
+#: ../root/report/IswcsWithManyWorks.js:83
+msgid "This work no longer exists."
+msgstr ""
+
+#: ../root/report/LabelsDisambiguationSameName.js:24
+msgid ""
+"This report lists labels that have their disambiguation set to be the same "
+"as their name. The disambiguation should be removed or, if it is needed, "
+"improved."
+msgstr ""
+
+#: ../root/report/LabelsDisambiguationSameName.js:31
+#: ../root/report/ReportsIndex.js:194
+msgid "Labels with disambiguation the same as the name"
+msgstr ""
+
+#: ../root/report/LimitedEditors.js:31
+msgid "This report lists {url|beginner/limited editors}."
+msgstr ""
+
+#: ../root/report/LimitedEditors.js:37 ../root/report/ReportsIndex.js:131
+msgid "Beginner/limited editors"
+msgstr ""
+
+#: ../root/report/LinksWithMultipleEntities.js:40
+msgid ""
+"This report shows URLs that are linked to multiple entities. It excludes "
+"license relationships (where reuse is expected) and Amazon (for releases), "
+"Discogs and Wikidata, which have their own reports. The links here should be "
+"reviewed to see whether they are really a good match: for example, a generic "
+"link to a store page could be replaced with specific per-release store "
+"links, and a link attached to all movements of a classical work might be a "
+"better fit for the main parent work only."
+msgstr ""
+
+#: ../root/report/LinksWithMultipleEntities.js:53
+#: ../root/report/ReportsIndex.js:597
+msgid "URLs linked to multiple entities"
+msgstr ""
+
+#: ../root/report/LinksWithMultipleEntities.js:61
+#: ../root/report/WikidataLinksWithMultipleEntities.js:56
+#: ../root/report/components/UrlList.js:52
+msgid "URL Entity"
+msgstr ""
+
+#: ../root/report/LinksWithMultipleEntities.js:62
+#: ../root/report/WikidataLinksWithMultipleEntities.js:57
+msgid "Usage count"
+msgstr ""
+
+#: ../root/report/LowQualityReleases.js:26
+msgid ""
+"This report shows releases that have been marked as low quality. If you have "
+"some time, you can review them and try to improve the data as much as "
+"possible before changing their quality back to Normal (or even to High, if "
+"you add all the possible data!). If a release has already been improved but "
+"the quality wasn’t changed accordingly, just enter a data quality change to "
+"remove it from this report."
+msgstr ""
+
+#: ../root/report/LowQualityReleases.js:36 ../root/report/ReportsIndex.js:467
+msgid "Releases marked as low quality"
+msgstr ""
+
+#: ../root/report/MediumsWithOrderInTitle.js:24
+msgid ""
+"This report lists releases where at least one medium has a title that seems "
+"to just be indicating its position (such a first medium with the title “Disc "
+"1”). These should usually be removed, as per {release_style|the release "
+"guidelines}."
+msgstr ""
+
+#: ../root/report/MediumsWithOrderInTitle.js:33
+#: ../root/report/ReportsIndex.js:365
+msgid "Releases with mediums named after their position"
+msgstr ""
+
+#: ../root/report/MediumsWithSequenceIssues.js:24
+msgid ""
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
+msgstr ""
+
+#: ../root/report/MediumsWithSequenceIssues.js:30
+msgid "Releases with medium number issues"
+msgstr ""
+
+#: ../root/report/MislinkedPseudoReleases.js:24
+msgid ""
+"This report shows releases with status Pseudo-Release that are marked as the "
+"original version of a translation/transliteration relationship. The pseudo-"
+"release should be the one marked as a translated/transliterated version "
+"instead. If both releases are pseudo-releases, consider linking both to an "
+"official release rather than to each other."
+msgstr ""
+
+#: ../root/report/MislinkedPseudoReleases.js:34
+msgid "Translated/transliterated pseudo-releases marked as original"
+msgstr ""
+
+#: ../root/report/MultipleAsins.js:24
+msgid ""
+"This report shows releases that have more than one Amazon ASIN. In most "
+"cases ASINs should map to MusicBrainz releases 1:1, so only one of them will "
+"be correct. Just check which ones do not fit the release (because of format, "
+"different number of tracks, etc). If the release has a barcode, you can "
+"search Amazon for it and see which ASIN matches."
+msgstr ""
+
+#: ../root/report/MultipleAsins.js:34
+msgid "Releases with multiple ASINs"
+msgstr ""
+
+#: ../root/report/MultipleDiscogsLinks.js:24
+msgid ""
+"This report shows releases that have more than one link to Discogs. In most "
+"cases a MusicBrainz release should have only one equivalent in Discogs, so "
+"only one of them will be correct. Just check which ones do not fit the "
+"release (because of format, different number of tracks, etc). Any \"master\" "
+"Discogs page belongs at the {release_group|release group level}, not at the "
+"release level, and should be removed from releases too."
+msgstr ""
+
+#: ../root/report/MultipleDiscogsLinks.js:36
+msgid "Releases with multiple Discogs links"
+msgstr ""
+
+#: ../root/report/NoLanguage.js:28
+msgid ""
+"This report shows releases that have no language set. If you recognize the "
+"language, please set it! Do it only if you are pretty sure, don't just "
+"guess: not everything written in Cyrillic is Russian, for example."
+msgstr ""
+
+#: ../root/report/NoLanguage.js:36 ../root/report/ReportsIndex.js:260
+msgid "Releases without language"
+msgstr ""
+
+#: ../root/report/NoScript.js:28
+msgid ""
+"This report shows releases that have no script set. If you recognize the "
+"script, just add it! Remember that the script used for English (and most "
+"other European languages) is Latin."
+msgstr ""
+
+#: ../root/report/NoScript.js:35 ../root/report/ReportsIndex.js:264
+msgid "Releases without script"
+msgstr ""
+
+#: ../root/report/NonBootlegsOnBootlegLabels.js:24
+msgid ""
+"This report shows releases that have at least one “Bootleg Production” label "
+"in their labels list, but are not set to status “Bootleg”. These labels "
+"pretty much never release non-bootleg releases, so chances are that either "
+"the label or the status are wrong."
+msgstr ""
+
+#: ../root/report/NonBootlegsOnBootlegLabels.js:32
+#: ../root/report/ReportsIndex.js:456
+msgid "Releases on bootleg labels not set to bootleg"
+msgstr ""
+
+#: ../root/report/PartOfSetRelationships.js:24
+msgid ""
+"This report shows releases that still have the deprecated \"part of set\" "
+"relationship and should probably be merged. For instructions on how to fix "
+"them, please see the documentation about {how_to_merge_releases|how to merge "
+"releases}. If the releases are not really part of a set (for example, if "
+"they are independently-released volumes in a series) just remove the "
+"relationship."
+msgstr ""
+
+#: ../root/report/PartOfSetRelationships.js:36
+msgid "Releases with “part of set” relationships"
+msgstr ""
+
+#: ../root/report/PlacesWithoutCoordinates.js:29
+msgid "This report lists places without coordinates."
+msgstr ""
+
+#: ../root/report/PlacesWithoutCoordinates.js:33
+#: ../root/report/ReportsIndex.js:554
+msgid "Places without coordinates"
+msgstr ""
+
+#: ../root/report/PlacesWithoutCoordinates.js:43
+msgid "Search for coordinates"
+msgstr ""
+
+#: ../root/report/PlacesWithoutCoordinates.js:123
+msgid "This place no longer exists."
+msgstr ""
+
+#: ../root/report/PossibleCollaborations.js:24
+msgid ""
+"This report lists artists which have “&” in their names but no membership-"
+"related relationships (none of member, collaborator, conductor, founder nor "
+"subgroup). If the artist is usually seen as an actual group, member "
+"relationships should be added. If it’s a short term collaboration, it should "
+"be split if possible (see {how_to_split_artists|How to Split Artists}). If "
+"it is a collaboration with its own name and can’t be split, collaboration "
+"relationships should be added to it. For some special cases, such as “Person "
+"& His Orchestra”, conductor and/or founder might be the best choice."
+msgstr ""
+
+#: ../root/report/PossibleCollaborations.js:39
+msgid "Artists that may be collaborations"
+msgstr ""
+
+#: ../root/report/RecordingTrackDifferentName.js:37
+msgid ""
+"This report shows recordings that are linked to only one track, yet have a "
+"different name than the track. This might mean one of the two needs to be "
+"renamed to match the other."
+msgstr ""
+
+#: ../root/report/RecordingTrackDifferentName.js:44
+#: ../root/report/ReportsIndex.js:528
+msgid "Recordings with a different name than their only track"
+msgstr ""
+
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:30
+msgid ""
+"This report shows all recordings with the same name that have different "
+"artists (having different MBIDs) with the same name. These are most likely "
+"cases where the {ac|artist credit} is incorrect for at least one of the "
+"recordings."
+msgstr ""
+
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:38
+msgid "Currently, this report only works with recordings that have one artist."
+msgstr ""
+
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:44
+msgid "Recordings with the same name by different artists with the same name"
+msgstr ""
+
+#: ../root/report/RecordingsWithEarliestReleaseRelationships.js:24
+msgid ""
+"This report shows recordings that have the deprecated \"earliest release\" "
+"relationship. They should be merged if they are truly the same recording; if "
+"they're not, the relationship should be removed. Please, do not merge "
+"recordings blindly just because the lengths fit, and do not merge recordings "
+"with very different times!"
+msgstr ""
+
+#: ../root/report/RecordingsWithEarliestReleaseRelationships.js:34
+#: ../root/report/ReportsIndex.js:476
+msgid "Recordings with earliest release relationships"
+msgstr ""
+
+#: ../root/report/RecordingsWithFutureDates.js:55
+msgid ""
+"This report shows recordings with relationships using dates in the future. "
+"Those are probably typos (such as 2109 instead of 2019)."
+msgstr ""
+
+#: ../root/report/RecordingsWithFutureDates.js:61
+msgid "Recordings with relationships having dates in the future"
+msgstr ""
+
+#: ../root/report/RecordingsWithVaryingTrackLengths.js:24
+msgid ""
+"This report shows recordings where the linked tracks have times that vary by "
+"more than 30 seconds."
+msgstr ""
+
+#: ../root/report/RecordingsWithVaryingTrackLengths.js:30
+#: ../root/report/ReportsIndex.js:488
+msgid "Recordings with varying track times"
+msgstr ""
+
+#: ../root/report/RecordingsWithoutVaCredit.js:24
+msgid ""
+"This report shows recordings linked to the Various Artists entity without "
+"\"Various Artists\" as the credited name."
+msgstr ""
+
+#: ../root/report/RecordingsWithoutVaCredit.js:30
+#: ../root/report/ReportsIndex.js:501
+msgid "Recordings not credited to \"Various Artists\" but linked to VA"
+msgstr ""
+
+#: ../root/report/RecordingsWithoutVaLink.js:24
+msgid ""
+"This report shows recordings with \"Various Artists\" as the credited name "
+"but not linked to the Various Artists entity."
+msgstr ""
+
+#: ../root/report/RecordingsWithoutVaLink.js:30
+#: ../root/report/ReportsIndex.js:508
+msgid "Recordings credited to \"Various Artists\" but not linked to VA"
+msgstr ""
+
+#: ../root/report/ReleaseGroupsWithoutVaCredit.js:24
+msgid ""
+"This report shows release groups linked to the Various Artists entity "
+"without \"Various Artists\" as the credited name."
+msgstr ""
+
+#: ../root/report/ReleaseGroupsWithoutVaCredit.js:31
+#: ../root/report/ReportsIndex.js:236
+msgid "Release groups not credited to \"Various Artists\" but linked to VA"
+msgstr ""
+
+#: ../root/report/ReleaseGroupsWithoutVaLink.js:24
+msgid ""
+"This report shows release groups with \"Various Artists\" as the credited "
+"name but not linked to the Various Artists entity."
+msgstr ""
+
+#: ../root/report/ReleaseGroupsWithoutVaLink.js:31
+#: ../root/report/ReportsIndex.js:243
+msgid "Release groups credited to \"Various Artists\" but not linked to VA"
+msgstr ""
+
+#: ../root/report/ReleaseLabelSameArtist.js:39
+msgid ""
+"This report lists releases where the label name is the same as the artist "
+"name. Often this means the release is self-released, and the label "
+"{SpecialPurposeLabel|should be \"[no label]\" instead}."
+msgstr ""
+
+#: ../root/report/ReleaseLabelSameArtist.js:50
+#: ../root/report/ReportsIndex.js:438
+msgid "Releases where artist name and label name are the same"
+msgstr ""
+
+#: ../root/report/ReleaseRgDifferentName.js:37
+msgid ""
+"This report shows releases which are the only ones in their release group, "
+"yet have a different name than the group. This might mean one of the two "
+"needs to be renamed to match the other."
+msgstr ""
+
+#: ../root/report/ReleaseRgDifferentName.js:44
+#: ../root/report/ReportsIndex.js:444
+msgid "Releases with a different name than their release group"
+msgstr ""
+
+#: ../root/report/ReleasedTooEarly.js:24
+msgid ""
+"This report shows releases which have disc IDs even though they were "
+"released too early to have disc IDs, where one of the medium formats didn't "
+"exist at the time the release was released or where a disc ID is attached to "
+"a medium whose format does not have disc IDs."
+msgstr ""
+
+#: ../root/report/ReleasedTooEarly.js:33 ../root/report/ReportsIndex.js:312
+msgid "Releases released too early"
+msgstr ""
+
+#: ../root/report/ReleasesConflictingDiscIds.js:24
+msgid ""
+"This report shows releases that have conflicting disc IDs on the same medium "
+"with significant differences in duration. This usually means a disc ID was "
+"applied to the wrong medium or the wrong release."
+msgstr ""
+
+#: ../root/report/ReleasesConflictingDiscIds.js:31
+#: ../root/report/ReportsIndex.js:429
+msgid "Releases with conflicting disc IDs"
+msgstr ""
+
+#: ../root/report/ReleasesMissingDiscIds.js:24
+msgid ""
+"This report shows releases (official and promotional only) that have at "
+"least one medium with a format that supports disc IDs, but is missing one."
+msgstr ""
+
+#: ../root/report/ReleasesMissingDiscIds.js:30
+msgid ""
+"For instructions on how to add one, see the {add_discids|documentation page}."
+msgstr ""
+
+#: ../root/report/ReleasesMissingDiscIds.js:36
+#: ../root/report/ReportsIndex.js:425
+msgid "Releases missing disc IDs"
+msgstr ""
+
+#: ../root/report/ReleasesSameBarcode.js:53
+msgid ""
+"This report shows non-bootleg releases which have the same barcode, yet are "
+"placed in different release groups. Chances are that the releases are "
+"duplicates or parts of a set, or at least that the release groups should be "
+"merged."
+msgstr ""
+
+#: ../root/report/ReleasesSameBarcode.js:61 ../root/report/ReportsIndex.js:450
+msgid "Releases with the same barcode in different release groups"
+msgstr ""
+
+#: ../root/report/ReleasesToConvert.js:24
+msgid ""
+"This report aims to identify releases which need converting to multiple "
+"artists (because the track artists are on the title field, for example). "
+"Currently it does this by looking for releases where every track contains \"/"
+"\" or \"-\"."
+msgstr ""
+
+#: ../root/report/ReleasesToConvert.js:32 ../root/report/ReportsIndex.js:255
+msgid "Releases which might need converting to \"multiple artists\""
+msgstr ""
+
+#: ../root/report/ReleasesWithAmazonCoverArt.js:24
+msgid ""
+"This report shows releases which have cover art on Amazon, but have no front "
+"cover in the Cover Art Archive. The use of Amazon art has been discontinued "
+"since the 16th of May 2022, so these releases have no front cover anymore "
+"until one is added to the Cover Art Archive."
+msgstr ""
+
+#: ../root/report/ReleasesWithAmazonCoverArt.js:33
+#: ../root/report/ReportsIndex.js:352
+msgid ""
+"Releases that have Amazon cover art but no Cover Art Archive front cover"
+msgstr ""
+
+#: ../root/report/ReleasesWithCaaNoTypes.js:24
+msgid ""
+"This report shows releases which have cover art in the Cover Art Archive, "
+"but where none of it has any types set. This often means a front cover was "
+"added, but not marked as such."
+msgstr ""
+
+#: ../root/report/ReleasesWithCaaNoTypes.js:32
+#: ../root/report/ReportsIndex.js:359
+msgid "Releases in the Cover Art Archive where no cover art piece has types"
+msgstr ""
+
+#: ../root/report/ReleasesWithDownloadRelationships.js:24
+msgid ""
+"This report shows releases that have relationships that only apply to "
+"digital media releases (download/streaming), but have media whose format is "
+"not “Digital Media”. Generally, these should be moved to the appropriate "
+"digital media release. If one doesn’t exist yet, feel free to add it."
+msgstr ""
+
+#: ../root/report/ReleasesWithDownloadRelationships.js:34
+#: ../root/report/ReportsIndex.js:389
+msgid "Non-digital releases with digital relationships"
+msgstr ""
+
+#: ../root/report/ReleasesWithEmptyMediums.js:24
+msgid ""
+"This report shows releases with at least one medium that is missing a "
+"tracklist. If you can find the tracklist, please help complete the data!"
+msgstr ""
+
+#: ../root/report/ReleasesWithEmptyMediums.js:31
+#: ../root/report/ReportsIndex.js:409
+msgid "Releases with empty mediums"
+msgstr ""
+
+#: ../root/report/ReleasesWithMailOrderRelationships.js:24
+msgid ""
+"This report shows releases that have mail order relationships (which by "
+"definition only apply to physical media releases), but only have media whose "
+"format is “Digital Media”. Generally, these should be moved to the "
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
+msgstr ""
+
+#: ../root/report/ReleasesWithMailOrderRelationships.js:33
+#: ../root/report/ReportsIndex.js:393
+msgid "Digital releases with mail order relationships"
+msgstr ""
+
+#: ../root/report/ReleasesWithNoMediums.js:24
+msgid "This report shows releases without any mediums (no tracklist)."
+msgstr ""
+
+#: ../root/report/ReleasesWithNoMediums.js:29
+#: ../root/report/ReportsIndex.js:405
+msgid "Releases with no mediums"
+msgstr ""
+
+#: ../root/report/ReleasesWithUnlikelyLanguageScript.js:28
+msgid ""
+"This report shows releases that have an unlikely combination of language and "
+"script properties, such as German and Ethiopic."
+msgstr ""
+
+#: ../root/report/ReleasesWithUnlikelyLanguageScript.js:34
+#: ../root/report/ReportsIndex.js:373
+msgid "Releases with unlikely language/script pairs"
+msgstr ""
+
+#: ../root/report/ReleasesWithoutVaCredit.js:24
+msgid ""
+"This report shows releases linked to the Various Artists entity without "
+"\"Various Artists\" as the credited name."
+msgstr ""
+
+#: ../root/report/ReleasesWithoutVaCredit.js:30
+#: ../root/report/ReportsIndex.js:414
+msgid "Releases not credited to \"Various Artists\" but linked to VA"
+msgstr ""
+
+#: ../root/report/ReleasesWithoutVaLink.js:24
+msgid ""
+"This report shows releases with \"Various Artists\" as the credited name but "
+"not linked to the Various Artists entity."
+msgstr ""
+
+#: ../root/report/ReleasesWithoutVaLink.js:30
+#: ../root/report/ReportsIndex.js:420
+msgid "Releases credited to \"Various Artists\" but not linked to VA"
+msgstr ""
+
+#: ../root/report/ReportNotAvailable.js:18
+msgid "We are sorry, but data for this report is not available right now."
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:45
+msgid ""
+"If you'd like to participate in the editing process, but do not know where "
+"to start, the following reports should be useful. These reports scour the "
+"database looking for data that might require fixing, either to comply with "
+"the {style|style guidelines}, or in other cases where administrative \"clean "
+"up\" tasks are required."
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:75
+msgid "Artists which have collaboration relationships"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:79
+msgid "Artists which look like collaborations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:107
+msgid "Artists with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:127
+msgid "Editors"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:142
+msgid "Events with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:146
+msgid "Possibly duplicate events"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:167
+msgid "Instruments without a link to Wikidata"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:190
+msgid "Labels with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:199
+msgid "Release groups"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:203
+msgid "Release groups that might need to be merged"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:231
+msgid "Release groups with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:268
+msgid "Releases which have unexpected Amazon URLs"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:272
+msgid "Releases which have multiple ASINs"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:276
+msgid "Releases which have multiple Discogs links"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:288
+msgid "Releases which have part of set relationships"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:292
+msgid "Discs entered as separate releases"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:296
+msgid "Tracks whose names include their sequence numbers"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:300
+msgid "Releases with non-sequential track numbers"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:304
+#: ../root/report/SuperfluousDataTracks.js:39
+msgid "Releases with superfluous data tracks"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:317
+msgid "Releases where some (but not all) mediums have no format set"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:338
+msgid ""
+"Translated/Transliterated Pseudo-Releases marked as the original version"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:345
+msgid ""
+"Translated/Transliterated Pseudo-Releases not linked to an original version"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:369
+msgid "Releases with non-sequential mediums"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:377 ../root/report/TracksWithoutTimes.js:30
+msgid "Releases with unknown track times"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:385
+#: ../root/report/SingleMediumReleasesWithMediumTitles.js:31
+msgid "Releases with a single medium that has a name"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:401
+msgid "Releases with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:433 ../root/report/ShouldNotHaveDiscIds.js:32
+msgid "Releases that have disc IDs, but shouldn’t"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:462
+#: ../root/report/ShowNotesButNotBroadcast.js:37
+msgid "Non-broadcast releases with linked show notes"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:496
+msgid "Recordings with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:533
+msgid "Recordings with dates in the future"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:537
+#: ../root/report/VideosInNonVideoMediums.js:40
+msgid "Video recordings in non-video mediums"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:550
+msgid "Places with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:563
+msgid "Series with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:580
+msgid "Works with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:584 ../root/report/WorkSameTypeAsParent.js:35
+msgid "Works with the same type as their parent"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:589
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:37
+msgid "URLs"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:601
+#: ../root/report/WikidataLinksWithMultipleEntities.js:48
+msgid "Wikidata URLs linked to multiple entities"
+msgstr ""
+
+#: ../root/report/SeparateDiscs.js:24
+msgid ""
+"This report shows releases which have (disc n) or (bonus disc) in the title."
+msgstr ""
+
+#: ../root/report/SeparateDiscs.js:29
+msgid ""
+"For instructions on how to fix them, please see the documentation about "
+"{howto|how to merge releases}."
+msgstr ""
+
+#: ../root/report/SeparateDiscs.js:35
+msgid "Discs as separate releases"
+msgstr ""
+
+#: ../root/report/SetInDifferentRg.js:24
+msgid ""
+"This report shows release groups with releases that are linked to releases "
+"in different release groups by part-of-set or transliteration relationships. "
+"If a pair of release groups are listed here, you should probably merge them. "
+"If the releases are discs linked with \"part of set\" relationships, you "
+"might want to merge them too into one multi-disc release (see "
+"{how_to_merge_releases|How to Merge Releases})."
+msgstr ""
+
+#: ../root/report/SetInDifferentRg.js:36
+msgid "Mismatched release groups"
+msgstr ""
+
+#: ../root/report/ShouldNotHaveDiscIds.js:24
+msgid ""
+"This report shows releases that have at least one medium with a format that "
+"does not support disc IDs, yet have disc IDs attached. Usually this means "
+"the disc IDs ended up here because of a bug and should be moved or removed."
+msgstr ""
+
+#: ../root/report/ShowNotesButNotBroadcast.js:24
+msgid ""
+"This report shows releases that have a {doc|show notes relationship}, but "
+"are not in a release group of type Broadcast. Show notes are meant for "
+"podcasts and similar shows, and should not be used to link to some random "
+"notes about any sort of release, yet the relationship often gets used in "
+"that way. If that is the case, the relationship should be either switched to "
+"a better type or removed if nothing is a good fit. If the release is indeed "
+"a podcast, the release group type should be set to Broadcast."
+msgstr ""
+
+#: ../root/report/SingleMediumReleasesWithMediumTitles.js:24
+msgid ""
+"This report shows releases that have a single medium, where this medium also "
+"has a specific name. Usually, this is not necessary and is duplicate "
+"information which can be removed."
+msgstr ""
+
+#: ../root/report/SomeFormatsUnset.js:24
+msgid ""
+"This report shows releases where some of the medium formats are set, but "
+"others are unset. In most cases, it should be easy to find out which the "
+"correct formats are (don't just assume that they're all CDs because one is "
+"though!)."
+msgstr ""
+
+#: ../root/report/SomeFormatsUnset.js:32
+msgid "Releases with some formats unset"
+msgstr ""
+
+#: ../root/report/SuperfluousDataTracks.js:24
+msgid ""
+"This report lists releases without any disc IDs that probably contain data "
+"tracks (like videos) at the end of a medium, but have no tracks marked as "
+"data tracks. A data track should be marked as such if it is the last track "
+"of the CD and contains audio or video. Otherwise, it should just be removed. "
+"See the {data_track_guidelines|data track guidelines}."
+msgstr ""
+
+#: ../root/report/TracksNamedWithSequence.js:24
+msgid ""
+"This report aims to identify releases where track names include their own "
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
+msgstr ""
+
+#: ../root/report/TracksNamedWithSequence.js:33
+msgid "Releases where track names start with their track number"
+msgstr ""
+
+#: ../root/report/TracksWithSequenceIssues.js:24
+msgid ""
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
+msgstr ""
+
+#: ../root/report/TracksWithSequenceIssues.js:31
+msgid "Releases with track number issues"
+msgstr ""
+
+#: ../root/report/TracksWithoutTimes.js:24
+msgid ""
+"This report lists all releases where some or all tracks have unknown track "
+"lengths."
+msgstr ""
+
+#: ../root/report/UnlinkedPseudoReleases.js:24
+msgid ""
+"This report shows releases with status Pseudo-Release that aren’t linked via "
+"the translation/transliteration relationship to an original version. This "
+"could be because the original version is missing, or just because the "
+"release status is wrongly set."
+msgstr ""
+
+#: ../root/report/UnlinkedPseudoReleases.js:32
+msgid "Unlinked pseudo-releases"
+msgstr ""
+
+#: ../root/report/VideosInNonVideoMediums.js:24
+msgid ""
+"This report shows recordings marked as video, but that appear in at least "
+"one medium that does not support videos."
+msgstr ""
+
+#: ../root/report/VideosInNonVideoMediums.js:29
+msgid ""
+"There are two main possibilities here: either the recording being marked as "
+"a video is correct, but the format is not (a CD should be a VCD, for "
+"example), or the recording is being used for both a video and and audio-only "
+"recording, in which case the two should be split since video recordings "
+"should always be separate. If you split the recordings, consider whether it "
+"makes sense to link them with a {doc_link|music video relationship}."
+msgstr ""
+
+#: ../root/report/WikidataLinksWithMultipleEntities.js:40
+msgid ""
+"This report shows Wikidata URLs that are linked to multiple entities. In "
+"general, Wikidata entities should match 1 to 1 with MusicBrainz entities, so "
+"most of these should indicate either an error in MusicBrainz or a too-wide "
+"Wikidata page."
+msgstr ""
+
+#: ../root/report/WorkSameTypeAsParent.js:24
+msgid ""
+"This report shows works with at least one parent work that has the same work "
+"type as them (such as a work marked as a sonata which is part of another "
+"sonata). In most cases, that means these works should have a different type "
+"or (most likely) no type at all, as per {work_style_doc|the work "
+"guidelines}. Sometimes the parent work type might be the one that needs to "
+"be changed."
+msgstr ""
+
+#: ../root/report/components/ArtistCreditList.js:46
+msgid "This artist credit no longer exists."
+msgstr ""
+
+#: ../root/report/components/LabelUrlList.js:75
+msgid "This label no longer exists."
+msgstr ""
+
+#: ../root/report/components/ReleaseUrlList.js:83
+msgid "This release no longer exists."
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:19
+msgid "Total artists found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:20
+msgid "Total artist credits found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:21
+msgid "Total discIDs found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:22
+msgid "Total editors found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:23
+msgid "Total events found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:24
+msgid "Total instruments found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:25
+msgid "Total ISRCs found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:26
+msgid "Total ISWCs found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:27
+msgid "Total labels found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:28
+msgid "Total places found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:29
+msgid "Total recordings found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:30
+msgid "Total relationships found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:31
+msgid "Total releases found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:32
+msgid "Total release groups found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:33
+msgid "Total series found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:34
+msgid "Total URLs found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:35
+msgid "Total works found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:85
+msgid "Generated on {date}"
+msgstr ""
+
+#: ../root/report/constants.js:11
+msgid ""
+"If you see something in these annotations that can be represented with a "
+"relationship instead, please add a relationship and remove that part of the "
+"annotation. If something is marked as “sub-optimal”, consider checking if a "
+"better way to store that data has been added in the meantime."
+msgstr ""
+
+#: ../root/report/hooks/useAnnotationColumns.js:34
+msgid "Last edited"
+msgstr ""
+
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
+#: ../root/search/SearchIndex.js:32
+msgid "Tag lookup"
+msgstr ""
+
+#: ../root/search/SearchIndex.js:34
+msgid "Other lookups"
+msgstr ""
+
+#: ../root/search/components/AreaResults.js:66
+#: ../root/search/components/ArtistResults.js:56
+#: ../root/search/components/LabelResults.js:70
+#: ../root/search/components/PlaceResults.js:67
+#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
+msgid "Begin"
+msgstr ""
+
+#: ../root/search/components/AreaResults.js:76
+msgid "Alternatively, you may {uri|add a new area}."
+msgstr ""
+
+#: ../root/search/components/ArtistResults.js:85
+msgid "Alternatively, you may {uri|add a new artist}."
+msgstr ""
+
+#: ../root/search/components/DocResults.js:16
+#: ../root/search/components/DocResults.js:18
+msgid "Documentation Search"
+msgstr ""
+
+#: ../root/search/components/EventResults.js:78
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
+msgid "Location"
+msgstr ""
+
+#: ../root/search/components/EventResults.js:87
+msgid "Alternatively, you may {uri|add a new event}."
+msgstr ""
+
+#: ../root/search/components/InstrumentResults.js:64
+msgid "Alternatively, you may {uri|add a new instrument}."
+msgstr ""
+
+#: ../root/search/components/LabelResults.js:80
+msgid "Alternatively, you may {uri|add a new label}."
+msgstr ""
+
+#: ../root/search/components/PaginatedSearchResults.js:54
+msgid "The last page of results is page {last_page}."
+msgstr ""
+
+#: ../root/search/components/PlaceResults.js:77
+msgid "Alternatively, you may {uri|add a new place}."
+msgstr ""
+
+#: ../root/search/components/RecordingResults.js:120
+msgid "(standalone recording)"
+msgstr ""
+
+#: ../root/search/components/RecordingResults.js:178
+msgid "Alternatively, you may {uri|add a new recording}."
+msgstr ""
+
+#: ../root/search/components/ReleaseGroupResults.js:74
+msgid "Alternatively, you may {uri|add a new release group}."
+msgstr ""
+
+#: ../root/search/components/ReleaseResults.js:151
+msgid "Alternatively, you may {uri|add a new release}."
+msgstr ""
+
+#: ../root/search/components/ResultsLayout.js:38
+msgid "Last updated: {date}"
+msgstr ""
+
+#: ../root/search/components/SearchError.js:24
+msgid "Search Error"
+msgstr ""
+
+#: ../root/search/components/SearchError.js:28
+msgid ""
+"For assistance in writing effective advanced search queries, read the {doc|"
+"syntax documentation}."
+msgstr ""
+
+#: ../root/search/components/SearchForm.js:28
+#: ../root/search/components/SearchForm.js:29
+#: ../root/search/components/SearchForm.js:30
+msgid "Up to {n}"
+msgstr ""
+
+#: ../root/search/components/SearchForm.js:62
+msgid "Indexed search with {doc|advanced query syntax}"
+msgstr ""
+
+#: ../root/search/components/SearchForm.js:90
+msgid "Results per page:"
+msgstr ""
+
+#: ../root/search/components/SearchForm.js:96
+msgid "Search method:"
+msgstr ""
+
+#: ../root/search/components/SeriesResults.js:67
+msgid "Alternatively, you may {uri|add a new series}."
+msgstr ""
+
+#: ../root/search/components/WorkResults.js:68
+msgid "Alternatively, you may {uri|add a new work}."
+msgstr ""
+
+#: ../root/search/error/General.js:24
+msgid ""
+"Sorry, but your query “({query}
)” could not be performed, due "
+"to an error which we are not quite able to identify."
+msgstr ""
+
+#: ../root/search/error/InternalError.js:23
+msgid ""
+"The search server could not fulfill your request due to an internal error. "
+"This is usually only temporary, so please retry your search again later."
+msgstr ""
+
+#: ../root/search/error/Invalid.js:21
+msgid "Your search query was deemed invalid by our ruthless search server."
+msgstr ""
+
+#: ../root/search/error/NoInfo.js:24
+msgid ""
+"Sorry, your query “({query}
)” does not contain enough "
+"information to carry out a search."
+msgstr ""
+
+#: ../root/search/error/NoResults.js:26
+msgid ""
+"Sorry, but your query “({query}
)” did not find any results of "
+"the type “{type}”. Please check you used the correct spelling. Sometimes "
+"searching for fewer or different words may also help."
+msgstr ""
+
+#: ../root/search/error/RateLimited.js:24
+msgid ""
+"Sorry, but your query “({query}
)” could not be performed, "
+"because it appears you've been rate-limited. Either the server is overloaded "
+"or you're making a lot of requests all at once!."
+msgstr ""
+
+#: ../root/search/error/UriTooLarge.js:20
+msgid "Sorry, your query was too large."
+msgstr ""
+
+#: ../root/series/SeriesIndex.js:142
+msgid "This series is currently empty."
+msgstr ""
+
+#: ../root/series/SeriesMerge.js:32
+msgid ""
+"You are about to merge all these series into a single one. Please select the "
+"series all others should be merged into:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/ApplicationForm.js:95
+msgid "Callback URL"
+msgstr ""
+
+#: ../root/static/scripts/account/components/ApplicationForm.js:103
+msgid ""
+"Callback URI is optional for installed applications. If set, its scheme must "
+"be a custom reverse-DNS string, as in org.example.app://auth
, "
+"for installed applications."
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
+msgid ""
+"This is a development server. Your email address is not private or secure. "
+"Proceed with caution!"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
+msgid "If you change your email address, you will be required to verify it."
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
+msgid ""
+"You can pick the level you prefer here: your country, region or city. Be as "
+"specific as you want to!"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
+msgid "Birth date:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
+msgid ""
+"We will use your birth date to display your age in years on your profile "
+"page."
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
+msgid "Languages Known:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
+msgid "Add a language"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:157
+msgid "Regional settings"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:166
+msgid "Guess timezone"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:171
+msgid "Timezone:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:179
+msgid "Date/time format:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:193
+msgid "Allow other users to see my subscriptions"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:198
+msgid "Allow other users to see my tags"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:203
+msgid "Allow other users to see my ratings"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:212
+msgid ""
+"Mail me when one of my edits gets a \"no\" vote. (Note: the email is only "
+"sent for the first \"no\" vote, not each one)"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:221
+msgid "When I add a note to an edit, mail me all future notes for that edit."
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:229
+msgid "When I vote on an edit, mail me all future notes for that edit."
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:236
+msgid "Send me mails with edits to my subscriptions:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:245
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:250
+msgid "Automatically subscribe me to labels I add."
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:255
+msgid "Automatically subscribe me to series I add."
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:70
+msgid "Your username will be publicly visible."
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:81
+msgid ""
+"The username you have entered looks like an email address. This is allowed, "
+"but please keep in mind that everyone will be able to see it. Only use an "
+"email address as your username if you are completely sure you are happy with "
+"that."
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:92
+#: ../root/user/Login.js:107
+msgid "Password:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:113
+msgid ""
+"You must provide a working email address if you wish to contribute to the "
+"database."
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:119
+msgid "Captcha"
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:126
+msgid ""
+"Please review the {coc|MusicBrainz Code of Conduct} before creating an "
+"account."
+msgstr ""
+
+#: ../root/static/scripts/alias/AliasEditForm.js:293
+msgid "Alias Details"
+msgstr ""
+
+#: ../root/static/scripts/alias/AliasEditForm.js:300
+msgid "Alias name:"
+msgstr ""
+
+#: ../root/static/scripts/alias/AliasEditForm.js:324
+msgid "This is the primary alias for this locale"
+msgstr ""
+
+#: ../root/static/scripts/alias/AliasEditForm.js:339
+msgid "This alias is no longer current."
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
+msgid "Old"
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
+msgid "New"
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
+msgid "Version History"
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:149
+msgid "View this version"
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:154
+msgid "no changelog specified"
+msgstr ""
+
+#: ../root/static/scripts/area/places-map.js:95
+msgid "… and {place_count} other"
+msgid_plural "… and {place_count} others"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/area/places-map.js:107
+msgid "No type"
+msgstr ""
+
+#: ../root/static/scripts/area/places-map.js:109
+msgid "{place_name} (closed)"
+msgstr ""
+
+#: ../root/static/scripts/area/places-map.js:125
+msgid "{place_type}: {place_link} (closed)"
+msgstr ""
+
+#: ../root/static/scripts/area/places-map.js:130
+msgid "{place_type}: {place_link}"
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:220
+msgid ""
+"Please select the {doc|artist credits} that you want to rename to follow the "
+"new artist name."
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:226
+msgid ""
+"This will enter additional edits to change each specific credit to use the "
+"new name. Only use this if you are sure the existing credits are incorrect "
+"(such as for typos)."
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
+msgid ""
+"Keep in mind artist credits should generally follow what is printed on "
+"releases. If an artist has changed their name, but old releases were "
+"credited to the existing name, do not change the artist credit."
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:255
+msgid "Show less artist credits"
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:257
+#: ../root/static/scripts/common/components/Collapsible.js:76
+msgid "Show less..."
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:269
+msgid "Show more artist credits"
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
+#: ../root/static/scripts/common/components/Collapsible.js:76
+msgid "Show more..."
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
+msgid "Collection details"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
+msgid "Allow other users to see this collection"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
+msgid "Update collection"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
+msgid "Add collaborator"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
+msgid "Remove collaborator"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:88
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:94
+msgid "An error occurred while searching. Click here to try again."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:93
+msgid "Try with direct search instead."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:94
+msgid "Try with indexed search instead."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
+msgid "Type to search, or paste an MBID"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:217
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:49
+msgid "Clear recent items"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
+msgid "Not found? Try again with direct search."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
+msgid "Slow? Switch back to indexed search."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
+msgid "standalone recording"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
+msgid "{release_group_type} by {artist}"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
+msgid "Performers"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditList.js:45
+msgid "Vote on all edits:"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
+
+#: ../root/static/scripts/common/artworkViewer.js:76
+msgid "Image {current} of {total}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/AcoustIdCell.js:116
+#: ../root/static/scripts/common/components/FingerprintTable.js:114
+#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:108
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:101
+#: ../root/static/scripts/edit/components/withLoadedTypeInfo.js:144
+msgid "Loading..."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:55
+msgid "This annotation is blank."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:73
+msgid "(no changelog)"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:83
+msgid "Annotation last modified by {user} on {date}."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:102
+msgid ""
+"This is an {history|old revision} of this annotation, as edited by {user} on "
+"{date}. {current|View current revision}."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:114
+msgid "Annotation last modified on {date}."
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
+msgid "This artist credit has {edit_search|open edits}."
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
+msgid "This artist credit has open edits."
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistRoles.js:29
+msgid "{artist} ({roles})"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistRoles.js:46
+msgid "Artist Roles"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistRoles.js:50
+#: ../root/static/scripts/common/components/WorkArtists.js:31
+msgid "Show all artists"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistRoles.js:51
+#: ../root/static/scripts/common/components/WorkArtists.js:32
+msgid "Show less artists"
+msgstr ""
+
+#: ../root/static/scripts/common/components/AttributeList.js:69
+msgid "Show all attributes"
+msgstr ""
+
+#: ../root/static/scripts/common/components/AttributeList.js:70
+msgid "Show less attributes"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:55
+msgid "Recent items"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:64
+msgid "Try again with direct search."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:70
+msgid "Try again with indexed search."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:76
+msgid "An error occurred while looking up the MBID you entered."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:82
+msgid "The type of entity you pasted isn’t supported here."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:127
+msgid "Search for an area"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:129
+msgid "Search for an editor"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:130
+msgid "Search for an event"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:131
+msgid "Search for a genre"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:132
+msgid "Search for an instrument"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:133
+msgid "Search for a label"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:135
+msgid "Search for a relationship type"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:136
+msgid "Search for a place"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:137
+msgid "Search for a recording"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:138
+msgid "Search for a release"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:139
+msgid "Search for a release group"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:140
+msgid "Search for a series"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:141
+msgid "Search for a work"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
+msgid "{forward_link_phrase} / {backward_link_phrase}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
+msgid "by {artist}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
+msgid "{first_list_item} … {last_list_item}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/reducer.js:159
+msgid "Hide descriptions"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/reducer.js:160
+msgid "Show descriptions"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/reducer.js:255
+msgid ""
+"1 result found. Press enter to select, or use the up and down arrow keys to "
+"navigate."
+msgid_plural ""
+"{n} results found. Press enter to select, or use the up and down arrow keys "
+"to navigate."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/common/components/Cardinality.js:20
+msgid "Few relationships"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Cardinality.js:23
+msgid "Many relationships"
+msgstr ""
+
+#: ../root/static/scripts/common/components/CollapsibleList.js:87
+msgid "show {n} more"
+msgstr ""
+
+#: ../root/static/scripts/common/components/CollapsibleList.js:109
+msgid "show less"
+msgstr ""
+
+#: ../root/static/scripts/common/components/CommonsImage.js:47
+msgid "Image from Wikimedia Commons"
+msgstr ""
+
+#: ../root/static/scripts/common/components/CritiqueBrainzReview.js:37
+msgid "{review_link|Review} by {author} on {date}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EditorLink.js:19
+msgid ""
+"This editor is missing from this server, and cannot be displayed correctly."
+msgstr ""
+
+#: ../root/static/scripts/common/components/EditorLink.js:23
+msgid "[missing editor]"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:125
+#: ../root/url/UrlIndex.js:31
+msgid ""
+"This link has been temporarily disabled because it has been reported as "
+"potentially harmful."
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:337
+msgid "This release has artwork in the Cover Art Archive"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:351
+msgid "This release group has artwork in the Cover Art Archive"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:367
+msgid ""
+"High quality: All available data has been added, if possible including cover "
+"art with liner info that proves it"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:380
+msgid ""
+"Low quality: The release needs serious fixes, or its existence is hard to "
+"prove (but it’s not clearly fake)"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Filter.js:64
+msgid "Filter"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:44
+msgid "Filter events"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:46
+msgid "Filter recordings"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:48
+msgid "Filter releases"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:50
+msgid "Filter release groups"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:52
+msgid "Filter works"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:99
+msgid "Secondary type"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:118
+msgid "Artist credit"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:242
+msgid "Setlist contains"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FingerprintTable.js:69
+msgid "Error loading AcoustIDs: {error}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FingerprintTable.js:105
+msgid "Unlink"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FingerprintTable.js:113
+msgid "This recording does not have any associated AcoustIDs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IrombookImage.js:42
+msgid "IROMBOOK image/IROMBOOKのイラスト"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IsrcList.js:48
+msgid "Show all ISRCs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IsrcList.js:49
+msgid "Show less ISRCs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IswcList.js:48
+msgid "Show all ISWCs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IswcList.js:49
+msgid "Show less ISWCs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/MediumDescription.js:19
+msgid "{medium_format} {position}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/MediumLink.js:21
+msgid "{medium} on {release}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/OrderableDirection.js:25
+msgid "Forward"
+msgstr ""
+
+#: ../root/static/scripts/common/components/OrderableDirection.js:28
+msgid "Backward"
+msgstr ""
+
+#: ../root/static/scripts/common/components/PostParameters.js:47
+msgid "Data submitted with this request"
+msgstr ""
+
+#: ../root/static/scripts/common/components/RelatedSeries.js:35
+msgid "Related series"
+msgstr ""
+
+#: ../root/static/scripts/common/components/RelatedWorks.js:35
+msgid "Related works"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Relationships.js:109
+msgid ""
+"{link} only has event relationships, which are displayed in the Events tab."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Relationships.js:120
+msgid "{link} has no relationships."
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseEvents.js:52
+msgid "Missing country"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseEvents.js:69
+msgid "Missing date"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseEvents.js:94
+msgid "Show all release events"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseEvents.js:95
+msgid "Show less release events"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseGroupAppearances.js:36
+msgid "and another {num} release group"
+msgid_plural "and another {num} release groups"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:27
+msgid "{start_track}–{end_track}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:93
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:276
+msgid "{num}. {relationship}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:98
+msgid "{relationship} (order: {num})"
+msgstr ""
+
+#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:110
+msgid "track {tracks}"
+msgid_plural "tracks {tracks}"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:105
+msgid "Withdraw vote"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:127
+msgid "You’ve upvoted this tag"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:131
+msgid "Upvote"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:141
+msgid "You’ve downvoted this tag"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:145
+msgid "Downvote"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:549
+#: ../root/user/UserTagList.js:94
+msgid "There are no genres to show."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:559
+#: ../root/user/UserTagList.js:115
+msgid "There are no other tags to show."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:563
+msgid "Nobody has tagged this yet."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:574
+msgid ""
+"Tags with a score of zero or below, and tags that you’ve downvoted are "
+"hidden."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:580
+msgid "Tags with a score of zero or below are hidden."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:588
+msgid "Show all tags."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:597
+msgid "All tags are being shown."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:606
+msgid ""
+"Hide tags with a score of zero or below, and tags that you’ve downvoted."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:617
+msgid "Hide tags with a score of zero or below."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:626
+msgid "Add Tags"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:629
+msgid ""
+"You can add your own {tagdocs|tags} below. Use commas to separate multiple "
+"tags."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:643
+msgid "Submit tags"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:689
+msgid "see all tags"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:705
+msgctxt "verb"
+msgid "Tag"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TaggerIcon.js:79
+msgid "Open in tagger"
+msgstr ""
+
+#: ../root/static/scripts/common/components/WikipediaExtract.js:64
+msgid "Wikipedia"
+msgstr ""
+
+#: ../root/static/scripts/common/components/WikipediaExtract.js:70
+msgid "Continue reading at Wikipedia..."
+msgstr ""
+
+#: ../root/static/scripts/common/components/WikipediaExtract.js:75
+msgid ""
+"Wikipedia content provided under the terms of the {license_link|Creative "
+"Commons BY-SA license}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/WorkArtists.js:27
+msgid "Work Artists"
+msgstr ""
+
+#: ../root/static/scripts/common/entity.js:256
+msgid "You selected {label}."
+msgstr ""
+
+#: ../root/static/scripts/common/entity.js:262
+msgid "Label code: {code}"
+msgstr ""
+
+#: ../root/static/scripts/common/entity.js:289
+msgid "You selected {area}."
+msgstr ""
+
+#: ../root/static/scripts/common/entity.js:382
+msgid "You selected {releasegroup}."
+msgstr ""
+
+#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:138
+msgid "Failed to load the medium."
+msgstr ""
+
+#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:209
+msgid ""
+"This medium has too many tracks to load at once; currently showing "
+"{loaded_track_count} out of {total_track_count} total."
+msgstr ""
+
+#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:226
+msgid "Load all tracks..."
+msgstr ""
+
+#: ../root/static/scripts/common/i18n/hyphenateTitle.js:14
+msgid "{title} - {subtitle}"
+msgstr ""
+
+#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:25
+msgid "{semicolon_only_list_item}; {rest}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/bracketed.js:19
+msgid "[{text}]"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/bracketed.js:22
+msgid "({text})"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:22
+msgid " – ????"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:31
+msgid "{begin_date} – {end_date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:37
+msgid "– {end_date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:42
+msgid "{begin_date} – ????"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:43
+msgid "{begin_date} –"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:35
+#: ../root/tag/TagLayout.js:33
+msgctxt "plural"
+msgid "Series"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
+msgid "on {date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
+msgid "in {date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
+msgid "from {begin_date} until {end_date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
+msgid "from {date} to ????"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
+msgid "from {date} to present"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
+msgid "until {date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
+msgid "ended"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/tableColumns.js:24
+msgid "AcoustIDs"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/yesNo.js:11
+msgid "Yes"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/yesNo.js:11
+msgid "No"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:51
+msgid "Began:"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
+msgid "This person is deceased."
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:74
+msgid "Dissolved:"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:75
+msgid "This group has dissolved."
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:77
+msgid "Founded in:"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:77
+msgid "Dissolved in:"
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:383
+msgid ""
+"Please link to a channel, not a specific video. Videos should be linked to "
+"the appropriate recordings or releases instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:389
+msgid ""
+"This is a link to a search result. Please link to any page in the results "
+"that is relevant to this entity instead, if available."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:394
+msgid ""
+"Please link to a specific video. Add channel pages to the relevant artist, "
+"label, etc. instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:399
+msgid ""
+"This is a lyrics site. As such, links to the site should be added at the "
+"release group level with the “lyrics” relationship, rather than directly to "
+"any specific release."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:571
+msgid ""
+"Allmusic “{album_url_pattern}” links should be added to release groups. To "
+"find the appropriate release link for this release, please check the "
+"Releases tab from {album_url|your link}."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:658
+#: ../root/static/scripts/edit/URLCleanup.js:921
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
+msgid ""
+"This is a redirect link. Please follow {redirect_url|your link} and add the "
+"link it redirects to instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:676
+msgid ""
+"This is a link to a user video and should not be added. Please add the "
+"product link instead, if relevant."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:881
+msgid ""
+"Only Apple Books audiobooks can be added to MusicBrainz. Consider adding "
+"books to {bookbrainz_url|BookBrainz} instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1130
+msgid ""
+"Please link to the main page for the artist, not to a specific album or "
+"track."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1147
+msgid ""
+"Please link to the main page for the label, not to a specific album or track."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1169
+msgid ""
+"This is a Bandcamp profile, not a page for a specific recording. Even if it "
+"shows a single recording right now, that can change when the artist releases "
+"another. Please find and add the appropriate recording page "
+"(“{single_url_pattern}”) instead, and feel free to add this profile link to "
+"the appropriate artist or label."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1197
+msgid ""
+"This is a Bandcamp profile, not a page for a specific release. Even if it "
+"shows this release right now, that can change when the artist releases "
+"another. Please find and add the appropriate release page "
+"(“{album_url_pattern}” or “{single_url_pattern}”) instead, and feel free to "
+"add this profile link to the appropriate artist or label."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1505
+msgid "Please link to the main page for the artist, not a specific product."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1507
+msgid "Please link to the main page for the label, not a specific product."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:2251
+msgid ""
+"Discogs “{master_url_pattern}” links group several releases, so this should "
+"be added to the release group instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:2929
+msgid ""
+"Only IMSLP “{category_url_pattern}” links are allowed for artists. Please "
+"link work pages to the specific work in question."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:2947
+msgid ""
+"IMSLP “{category_url_pattern}” links are only allowed for artists. Please "
+"link the specific work page to this work instead, if available."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:2992
+msgid ""
+"Instagram “{explore_url_pattern}” links are not allowed. Please link to a "
+"profile instead, if there is one."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:3020
+msgid ""
+"Please do not link directly to images, link to the appropriate Instagram "
+"profile page instead. If you want to link to a video, {url|add a standalone "
+"recording} for it instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:3045
+msgid "This is an internal Instagram page and should not be added."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:4087
+msgid ""
+"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
+"release groups, and linking to them is currently disallowed. Please consider "
+"adding Musixmatch links to the relevant artists and works instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:4711
+msgid "Only RYM music videos can be linked to recordings."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:4773
+msgid ""
+"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
+"your link}, make sure the link it redirects to is still the correct one and, "
+"if so, add that link instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5350
+msgid "Please link to Threads profiles, not threads."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5737
+msgid "This is not a profile, but a Twitter documentation page."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5751
+msgid "Please link to Twitter profiles, not tweets."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5769
+msgid "This site does not allow direct links to their images."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5975
+msgid ""
+"Please link to the “{allowed_url_pattern}” page rather than this "
+"“{current_url_pattern}” link."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6058
+msgid ""
+"There is an unencoded “?” or “#” character in this URL. Please check whether "
+"it is useless and should be removed, or whether it is an error and the URL "
+"is misencoded."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6078
+msgid ""
+"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
+"Link to the appropriate WhoSampled artist, track or album page instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6099
+msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6117
+msgid "Please link WhoSampled artist pages to artists."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6129
+msgid "Please link WhoSampled track pages to recordings."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6196
+msgid ""
+"Links to specific sections of Wikipedia articles are not allowed. Please "
+"remove “{fragment}” if still appropriate. See the {url|guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6221
+msgid ""
+"Links to Wikipedia user pages are not allowed. Please link only to actual "
+"Wikipedia articles."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6341
+msgid ""
+"This is a playlist link, which isn’t a video channel and is not guaranteed "
+"to be officially approved. Please link to the official channel for this "
+"entity, if it exists, instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6381
+msgid "Only video and playlist links are allowed on releases."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6413
+msgid ""
+"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
+"links to a release is currently blocked. Please add this Wikipedia link to "
+"the release group instead, if appropriate."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6425
+msgid ""
+"Wikidata normally has no entries for specific releases, so adding Wikidata "
+"links to a release is currently blocked. Please add this Wikidata link to "
+"the release group instead, if appropriate."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6636
+msgid "Some relationship types are missing for this URL."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6653
+#: ../root/static/scripts/edit/externalLinks.js:1022
+msgid "This relationship type combination is invalid."
+msgstr ""
+
+#: ../root/static/scripts/edit/check-duplicates.js:156
+#: ../root/static/scripts/edit/externalLinks.js:703
+#: ../root/static/scripts/release/components/EditWorkDialog.js:175
+msgid "Required field."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:15
+msgid "Add a new area"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:16
+msgid "Add a new artist"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:17
+msgid "Add a new event"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:18
+msgid "Add a new instrument"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:19
+msgid "Add a new label"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:20
+msgid "Add a new place"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:22
+msgid "Add a new release group"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:23
+msgid "Add a new series"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:24
+msgid "Add a new work"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
+msgid ""
+"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
+"documentation for more information."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
+msgid "[missing track name]"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
+msgid "You haven’t entered a track name yet."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
+msgid "Artist in MusicBrainz:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+msgid "Artist as credited:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+msgid "Join phrase:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
+msgid "Add Artist Credit"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
+msgid "Change all artists on this release that match “{name}”"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
+msgid "Change all artists on this release that are currently empty"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
+msgid "Copy Credits"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
+msgid "Paste Credits"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditNameEditor.js:130
+msgid "Remove Artist Credit"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:201
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:179
+msgid "Copy to end date"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/EnterEditNote.js:53
+msgid ""
+"Entering an {note|edit note} that describes where you got your information "
+"is highly recommended. Not only does it make your sources clear (both now "
+"and to users who see the edit years later), but it can also encourage other "
+"users to vote on the edit — thus making it get applied faster."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
+msgid "This entity has {edits_link|open edits}."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
+msgid "This entity has open edits."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:202
+msgid "This relationship has ended."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/NewNotesAlertCheckbox.js:35
+msgid "Show me an alert whenever I receive a new edit note."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PartialDateInput.js:56
+msgid "The date you've entered is not valid"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PossibleDuplicates.js:24
+msgid "Possible Duplicates"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PossibleDuplicates.js:25
+msgid "We found the following entities with very similar names:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PossibleDuplicates.js:38
+msgid "Yes, I still want to enter “{entity_name}”."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PossibleDuplicates.js:45
+msgid ""
+"Please enter a {doc_disambiguation|disambiguation} to help distinguish this "
+"entity from the others."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
+msgid "This relationship has {edit_search|open edits}."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
+msgid "This relationship has open edits."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
+msgid ""
+"Using this merge strategy, all mediums from all releases will be used. You "
+"may specify the new order of mediums. The order does not have to be "
+"continuous, but all medium positions must be positive, and multiple mediums "
+"cannot be in the same position"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:90
+msgid "New position:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:107
+msgid "New disc title:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:127
+msgid "(was medium {position}: {name} on release {release})"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:141
+msgid "(was medium {position} on release {release})"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:197
+msgid ""
+"This merge strategy will merge all mediums together into a single set of "
+"mediums. Recordings between mediums will also be merged, into the recordings "
+"used on the target mediums."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:203
+msgid ""
+"This requires that corresponding mediums have the same number of tracks."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:207
+msgid ""
+"Make sure all mediums in the releases being merged are in the correct "
+"position. For example, to merge a medium into medium 2 of a release, it will "
+"need to be set as medium 2 of the release being merged."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:217
+msgid ""
+"The recording artists do not match! Perhaps you meant to use the \"append "
+"mediums\" merge strategy?"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:222
+msgid ""
+"The recordings that will be merged if you continue with the current merge "
+"strategy include the following, whose artists differ:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/URLInputPopover.js:97
+msgid "Cleaned up to"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/forms.js:104
+#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
+#: ../root/static/scripts/release-editor/init.js:271
+msgid "All of your changes will be lost if you leave this page."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:708
+msgid "Please enter a valid URL, such as “{example_url}”."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:715
+msgid ""
+"“{example_url}” is just an example. Please enter the actual link you want to "
+"add."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:723
+msgid ""
+"Links to MusicBrainz URLs are not allowed. Did you mean to paste something "
+"else?"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:730
+msgid ""
+"Please don’t enter CritiqueBrainz links — reviews are automatically linked "
+"from the “{reviews_tab_name}” tab."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:738
+msgid ""
+"Links to this website are not allowed because it is known to host malware."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:744
+msgid ""
+"Please don’t enter bundled/shortened URLs, enter the destination URL(s) "
+"instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:750
+msgid ""
+"Please don’t enter Google AMP links, since they are effectively an extra "
+"redirect. Enter the destination URL instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:757
+msgid ""
+"Please don’t enter links to search results. If you’ve found any links "
+"through your search that seem useful, do enter those instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:764
+msgid "Please select a link type for the URL you’ve entered."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:784
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:987
+#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:526
+msgid "This relationship already exists."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:796
+#: ../root/static/scripts/relationship-editor/components/DialogSourceEntity.js:61
+msgid ""
+"This URL is not allowed for the selected link type, or is incorrectly "
+"formatted."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:801
+msgid "This URL is not allowed for the selected link type."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:807
+msgid "This URL is not allowed for areas."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:810
+msgid "This URL is not allowed for artists."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:813
+msgid "This URL is not allowed for events."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:816
+msgid "This URL is not allowed for instruments."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:819
+msgid "This URL is not allowed for labels."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:822
+msgid "This URL is not allowed for places."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:825
+msgid "This URL is not allowed for recordings."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:828
+msgid "This URL is not allowed for releases."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:831
+msgid "This URL is not allowed for release groups."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:835
+msgid "This URL is not allowed for series."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:838
+msgid "This URL is not allowed for works."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1146
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:322
+msgid "{description} ({url|more documentation})"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1195
+msgid "Remove Relationship"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1282
+msgid "video"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1413
+msgid "Remove Link"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1443
+msgid "Add link"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1446
+msgid "Add another link"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1555
+msgid "Add another relationship"
+msgstr ""
+
+#: ../root/static/scripts/genre/components/GenreEditForm.js:140
+msgid "Genre details"
+msgstr ""
+
+#: ../root/static/scripts/guess-case/MB/Control/GuessCase.js:25
+msgid "Guess Case Options"
+msgstr ""
+
+#: ../root/static/scripts/guess-case/modes.js:313
+msgid ""
+"This mode capitalises almost all words, with some words (mainly articles and "
+"short prepositions) lowercased. Some words may need to be manually "
+"capitalised to follow the {url|English capitalisation guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/guess-case/modes.js:350
+msgid ""
+"This mode capitalises titles as sentence mode, but also inserts spaces "
+"before semicolons, colons, exclamation marks and question marks, and inside "
+"guillemets. Some words may need to be manually capitalised to follow the "
+"{url|French capitalisation guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/guess-case/modes.js:374
+msgid ""
+"This mode capitalises the first word of a sentence, most other words are "
+"lowercased. Some words, often proper nouns, may need to be manually fixed "
+"according to the {url|relevant language guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/guess-case/modes.js:389
+msgid ""
+"This mode handles the Turkish capitalisation of 'i' ('İ') and 'ı' ('I'). "
+"Some words may need to be manually corrected according to the {url|Turkish "
+"language guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/main/components/ConfirmSeedButtons.js:31
+msgid "Continue"
+msgstr ""
+
+#: ../root/static/scripts/main/components/ConfirmSeedButtons.js:47
+msgid "Leave"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:40
+msgid "Add vocal"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:164
+msgid "This attribute is required."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:200
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:208
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:212
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:216
+msgid "Credited as"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:236
+msgctxt "relationship attribute"
+msgid "Add another"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:217
+msgid ""
+"If you want to set the relationship as happening on one specific date, just "
+"set the same end date and start date. You can use the arrow button to copy "
+"the begin date to the end date."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:223
+msgid ""
+"If you do not know the end date, but you know the relationship has ended and "
+"this seems like useful information to store (for example, if someone is no "
+"longer a member of a band), you can indicate it with the checkbox above."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:124
+msgid "Change credits for other {entity} relationships on the page."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:133
+msgid ""
+"Some tracks/mediums haven’t been loaded yet. If you want to use this option, "
+"please close this dialog and load all tracks/mediums beforehand."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:149
+msgid "All of these relationships."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:161
+msgid "Only relationships to {entity_type} entities."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:179
+msgid "Only “{relationship_type}” relationships to {entity_type} entities."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:204
+msgid ""
+"A credited name is optional. You can leave this field blank to keep the "
+"current name."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkOrder.js:44
+msgid "Order"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkOrder.js:56
+msgid ""
+"If this relationship has a specific order among others of the same type, you "
+"may set its position in the list here (as an alternative to the up- and down-"
+"arrow buttons)."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:66
+msgid ""
+"Please select a subtype of the currently selected relationship type. The "
+"selected relationship type is only used for grouping subtypes."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:88
+msgid "This relationship type is not allowed with the current series type."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:126
+msgid "Type or click to search"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:294
+msgid "Relationship type"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:309
+msgid "Please select a relationship type. ({url|more documentation})"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:157
+msgid "Old order"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:161
+msgid "New order"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:224
+msgid "Please fill out all required fields."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:236
+msgid "Change direction"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:61
+msgid "The series you’ve selected is for artists."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:62
+msgid "The series you’ve selected is for events."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:63
+msgid "The series you’ve selected is for recordings."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:64
+msgid "The series you’ve selected is for releases."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:65
+msgid "The series you’ve selected is for release groups."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:66
+msgid "The series you’ve selected is for works."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:100
+msgid "Entities in a relationship cannot be the same."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetType.js:52
+msgid "Related type"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
+msgid ""
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
+msgid "This will add a relationship to all checked recordings."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1010
+msgid "This will add a relationship to all checked works."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:111
+msgid "no entity"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:117
+msgid "{target} (as {credited_name})"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:188
+msgid "Edit Relationship"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:254
+msgid "Move entity down"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:261
+msgid "Move entity up"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:33
+msgid "Add another area"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:34
+msgid "Add another artist"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:35
+msgid "Add another event"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:36
+msgid "Add another genre"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:37
+msgid "Add another instrument"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:38
+msgid "Add another label"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:39
+msgid "Add another place"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:40
+msgid "Add another recording"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:41
+msgid "Add another release"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:42
+msgid "Add another release group"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:43
+msgid "Add another series"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:45
+msgid "Add another work"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:170
+#: ../root/static/scripts/relationship-editor/components/RelationshipTargetTypeGroups.js:54
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:70
+#: ../root/static/scripts/release/components/TrackRelationshipEditor.js:408
+msgid "Add Relationship"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:272
+msgid "no type"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:311
+msgid "These relationships have a specific ordering"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/utility/getBatchSelectionMessage.js:19
+msgid "{n} recording selected"
+msgid_plural "{n} recordings selected"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/relationship-editor/utility/getBatchSelectionMessage.js:27
+msgid "{n} work selected"
+msgid_plural "{n} works selected"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/release-editor/actions.js:279
+msgid ""
+"This tracklist has artist credits with information that will be lost if you "
+"swap artist credits with track titles. This cannot be undone. Do you wish to "
+"continue?"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/bindingHandlers.js:31
+msgid ""
+"This medium has one or more discids which prevent this information from "
+"being changed."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/dialogs.js:265
+msgid "Page {page} of {total}"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:760
+msgid "Medium {position}: {title}"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:766
+msgid "Medium {position}"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:775
+msgid "I confirm this medium is actually titled “{medium_title}”."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:790
+msgid ""
+"“{matched_text}” seems to indicate medium ordering rather than a medium "
+"title. If this is the case, please use the up/down arrows on the right side "
+"to set the medium position instead of adding a title (see {release_style|the "
+"guidelines}). Otherwise, please confirm that this is the actual title using "
+"the checkbox below."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:892
+msgid "You haven’t selected a label for “{name}”."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/init.js:36
+msgid "Error loading release: {error}"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/init.js:220
+#: ../root/static/scripts/release-editor/init.js:221
+msgid "Add Release"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/init.js:224
+#: ../root/static/scripts/release-editor/init.js:225
+msgid "Edit Release"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:136
+msgid ""
+"The following releases with that barcode are already in the MusicBrainz "
+"database. Please make sure you are not adding an exact duplicate of any of "
+"these:"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:178
+msgid "The check digit is {checkdigit}."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:179
+msgid "Please double-check the barcode on the release."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:184
+msgid ""
+"The barcode you entered looks like a UPC code with the check digit missing."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:194
+msgid "The barcode you entered is a valid UPC code."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:199
+msgid ""
+"The barcode you entered is either an invalid UPC code, or an EAN code with "
+"the check digit missing."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:213
+msgid "The barcode you entered is a valid EAN code."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:217
+msgid "The barcode you entered is not a valid EAN code."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:224
+msgid "The barcode you entered is not a valid UPC or EAN code."
+msgstr ""
+
+#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
+msgid ""
+"This will add a new work for each checked recording that has no work "
+"already. The work names will be the same as their respective recording."
+msgstr ""
+
+#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
+msgid ""
+"Only use this option after you’ve tried searching for the work(s) you want "
+"to add, and are certain they do not already exist on MusicBrainz."
+msgstr ""
+
+#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:94
+msgid "To use this tool, select some recordings using the checkboxes below."
+msgstr ""
+
+#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
+msgid "Batch-add new works"
+msgstr ""
+
+#: ../root/static/scripts/release/components/EditWorkDialog.js:162
+msgid "Edit Work"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumTable.js:101
+msgid ""
+"This medium has too many tracks to load at once, so it’s been paginated."
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumToolbox.js:42
+msgid "Expand all mediums"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumToolbox.js:57
+msgid "Collapse all mediums"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumToolbox.js:92
+msgid "Display Credits Inline"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumToolbox.js:93
+msgid "Display Credits at Bottom"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumTrackRow.js:64
+msgid "Recording artist:"
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:101
+msgid "To use this tool, select some works using the checkboxes below."
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:145
+msgid "Batch-add a relationship to recordings"
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:147
+msgid "[selected recording]"
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:173
+msgid "Batch-add a relationship to works"
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:175
+msgid "[selected work]"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
+msgid "An error occurred:"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
+msgid "Track Relationships"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
+msgid ""
+"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
+"operations on these, please fully load them first."
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
+msgid "Related Works"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
+msgid "We have no information about this release’s media and tracklist."
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
+msgid "Release Relationships"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
+msgid "Release Group Relationships"
+msgstr ""
+
+#: ../root/static/scripts/release/components/TrackRelationshipEditor.js:343
+msgid "Error loading work relationships: {error}"
+msgstr ""
+
+#: ../root/static/scripts/release/components/TrackRelationshipEditor.js:428
+msgid "Add related work"
+msgstr ""
+
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:381
+msgid "Credits"
+msgstr ""
+
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:387
+msgid ""
+"The credits listed below may be incomplete, as some tracks/mediums haven’t "
+"been loaded yet."
+msgstr ""
+
+#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:81
+#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:147
+msgid "Add lyrics language"
+msgstr ""
+
+#: ../root/static/scripts/work/edit.js:340
+msgid "Add Language"
+msgstr ""
+
+#: ../root/static/scripts/work/edit.js:352
+msgid "Remove Language"
+msgstr ""
+
+#: ../root/tag/EntityList.js:26
+msgid "Areas tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:27
+msgid "Artists tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:28
+msgid "Events tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:29
+msgid "Instruments tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:30
+msgid "Labels tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:31
+msgid "Places tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:32
+msgid "Recordings tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:33
+msgid "Releases tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:34
+msgid "Release groups tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:35
+msgctxt "plural series"
+msgid "Series tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:36
+msgid "Works tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:40
+msgid "Areas {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:41
+msgid "Artists {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:42
+msgid "Events {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:43
+msgid "Instruments {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:44
+msgid "Labels {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:45
+msgid "Places {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:46
+msgid "Recordings {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:47
+msgid "Releases {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:48
+msgid "Release groups {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:49
+msgctxt "plural series"
+msgid "Series {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:50
+msgid "Works {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:54
+msgid "Areas where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:55
+msgid "Artists where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:56
+msgid "Events where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:57
+msgid "Instruments where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:58
+msgid "Labels where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:59
+msgid "Places where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:60
+msgid "Recordings where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:61
+msgid "Releases where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:62
+msgid "Release groups where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:63
+msgid "Series where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:64
+msgid "Works where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:70
+msgid "{num} area found"
+msgid_plural "{num} areas found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:71
+msgid "{num} artist found"
+msgid_plural "{num} artists found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:72
+msgid "{num} event found"
+msgid_plural "{num} events found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:73
+msgid "{num} instrument found"
+msgid_plural "{num} instruments found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:74
+msgid "{num} label found"
+msgid_plural "{num} labels found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:75
+msgid "{num} place found"
+msgid_plural "{num} places found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:82
+msgid "{num} series found"
+msgid_plural "{num} series found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:83
+msgid "{num} work found"
+msgid_plural "{num} works found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/NotFound.js:17
+msgid "Tag Not Used"
+msgstr ""
+
+#: ../root/tag/NotFound.js:20
+msgid "No MusicBrainz entities have yet been tagged with \"{tag}\"."
+msgstr ""
+
+#: ../root/tag/NotFound.js:26
+msgid ""
+"If you wish to use this tag, please {url|search} for the entity first and "
+"apply the tag using the sidebar."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:62
+msgid "'{tag}' has been used {num} times"
+msgstr ""
+
+#: ../root/tag/TagCloud.js:107
+msgid "These are the most used genres and other tags in the database."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:111
+msgid "Show as a cloud instead."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:113
+msgid "Show as a list instead."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:123
+msgid "No genre tags have been used yet."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:130
+msgid "No non-genre tags have been used yet."
+msgstr ""
+
+#: ../root/tag/TagIndex.js:38
+msgid "This tag is associated with the genre {genre}."
+msgstr ""
+
+#: ../root/tag/TagLayout.js:47 ../root/tag/TagLayout.js:48
+#: ../root/tag/TagLayout.js:54
+msgid "Tag “{tag}”"
+msgstr ""
+
+#: ../root/tag/TagLayout.js:56
+msgid "Tag"
+msgstr ""
+
+#: ../root/taglookup/Form.js:45
+msgid "Duration"
+msgstr ""
+
+#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
+msgid "Tag Lookup"
+msgstr ""
+
+#: ../root/taglookup/Nag.js:13
+msgid "The users make MusicBrainz happen and we appreciate your help!"
+msgstr ""
+
+#: ../root/taglookup/Nag.js:17
+msgid ""
+"However, we still have to pay the bills and hosting this site costs "
+"{finances|more than $1000 per month}. We need our users to help us make ends "
+"meet and hopefully have money left over to sponsor more development. The "
+"{metabrainz_foundation|MetaBrainz Foundation}, a California based 501(c)3 "
+"tax-exempt non-profit, operates the MusicBrainz project which makes all "
+"donations tax deductible for US taxpayers. And it's simply "
+"good karma everywhere else!"
+msgstr ""
+
+#: ../root/taglookup/Nag.js:33
+msgid ""
+"If you donate $4 you will not get this nag text for a "
+"month. We encourage people to donate $12 to make the nag "
+"screen disappear for 3 months. Or even better, sign up for a recurring "
+"donation every three months to not have to think about or see this nag again."
+msgstr ""
+
+#: ../root/taglookup/Nag.js:42
+msgid "Make a donation now!"
+msgstr ""
+
+#: ../root/taglookup/Nag.js:46
+msgid "I just donated! Why am I seeing this?"
+msgstr ""
+
+#: ../root/taglookup/NotFound.js:13
+msgid "Tag Lookup Error"
+msgstr ""
+
+#: ../root/taglookup/NotFound.js:16
+msgid ""
+"That search can't be performed, because you must provide at least one of "
+"'recording', 'track number', 'duration', 'release', or 'artist'."
+msgstr ""
+
+#: ../root/taglookup/NotFound.js:22
+msgid "Please {search|try again}, providing at least one of these parameters"
+msgstr ""
+
+#: ../root/taglookup/Results.js:19 ../root/taglookup/Results.js:21
+msgid "Tag Lookup Results"
+msgstr ""
+
+#: ../root/url/UrlIndex.js:21
+msgid "URL Information"
+msgstr ""
+
+#: ../root/url/UrlIndex.js:22
+msgid "URL Details"
+msgstr ""
+
+#: ../root/user/ContactUser.js:53
+msgid "Subject:"
+msgstr ""
+
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
+msgid "Message"
+msgstr ""
+
+#: ../root/user/ContactUser.js:68
+msgid "Reveal my email address"
+msgstr ""
+
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
+msgid "Send a copy to my own email address"
+msgstr ""
+
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
+msgid "Send"
+msgstr ""
+
+#: ../root/user/Login.js:56
+msgid "You need to be logged in to view this page."
+msgstr ""
+
+#: ../root/user/Login.js:62
+msgid "Don't have an account? {uri|Create one now}!"
+msgstr ""
+
+#: ../root/user/Login.js:73
+msgid "Incorrect username or password"
+msgstr ""
+
+#: ../root/user/Login.js:83
+msgid ""
+"You cannot log in because this account has been marked as a spam account."
+msgstr ""
+
+#: ../root/user/Login.js:116
+msgid "This is a development server; all passwords have been reset to \"mb\"."
+msgstr ""
+
+#: ../root/user/Login.js:124
+msgid "Keep me logged in"
+msgstr ""
+
+#: ../root/user/Login.js:136
+msgid "Forgot your {link1|username} or {link2|password}?"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:33 ../root/user/PrivilegedUsers.js:35
+msgid "Privileged user accounts"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:37
+msgid "Auto-editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:40
+msgid ""
+"Auto-editors are trusted users who have been given {url|auto-editor} "
+"privileges. These privileges allow them to make select edits that are "
+"automatically approved without going through the normal voting process, as "
+"well as the ability to instantly approve other users' edits."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:50
+msgid "The following {count} users have auto-editor privileges:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:56
+msgid "Relationship editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:59
+msgid ""
+"Relationship editors are users who can add or modify relationship types in "
+"the database. If you would like to propose a new relationship, you must "
+"follow our {url|proposal system}. Relationship editors will only make "
+"changes that have been accepted through the proposal system."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:69
+msgid "The following {count} users are relationship editors:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:75
+msgid "Transclusion editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:78
+msgid ""
+"Transclusion editors are users who add and maintain entries in the {uri|"
+"WikiDocs} transclusion table."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:85
+msgid "The following {count} users are transclusion editors:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:91
+msgid "Location editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:94
+msgid "Location editors are users who can add or modify {uri|areas}."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:100
+msgid "The following {count} users are location editors:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:106
+msgid "Banner message editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:108
+msgid ""
+"Banner message editors are users who can set a message that is shown in a "
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:114
+msgid "The following {count} users are banner message editors:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:120
+msgid "Account administrators"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:121
+msgid "Account administrators can edit and delete user accounts."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:124
+msgid "The following {count} users are account administrators:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:130
+msgid "Bots"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:133
+msgid "The following {count} user accounts are bots:"
+msgstr ""
+
+#: ../root/user/ReportUser.js:83 ../root/user/ReportUser.js:85
+msgid "Report User"
+msgstr ""
+
+#: ../root/user/ReportUser.js:90
+msgid ""
+"This user account has already been deleted, so there’s probably no need to "
+"report it. If you feel there’s a problem that still needs action, please "
+"{link|contact us}."
+msgstr ""
+
+#: ../root/user/ReportUser.js:101
+msgid "Please review our {uri|Code of Conduct} before sending a report."
+msgstr ""
+
+#: ../root/user/ReportUser.js:109
+msgid ""
+"Your report will be sent to our {uri|account administrators}, who will "
+"decide what action to take."
+msgstr ""
+
+#: ../root/user/ReportUser.js:119
+msgid ""
+"Be sure to provide direct links to examples of the behaviour you’re "
+"reporting (for example, use “https://musicbrainz.org/edit/23
” "
+"instead of “edit #23”, and use “https://musicbrainz.org/edit/42
"
+"and https://musicbrainz.org/edit/43
” instead of “https://"
+"musicbrainz.org/user/SomeUser/edits
”). Providing links makes it much "
+"easier for the recipients of the report to look into the issues; a report "
+"without links is unlikely to be acted on fast, since it will require a lot "
+"of additional research."
+msgstr ""
+
+#: ../root/user/ReportUser.js:157
+msgid ""
+"If you don’t want our admins to contact you further regarding this report, "
+"you can uncheck the checkbox above.
We recommend leaving it checked, "
+"so that you can be contacted if the report is resolved or the admins need "
+"more information."
+msgstr ""
+
+#: ../root/user/ReportUser.js:167
+msgid "Receive email updates about this report"
+msgstr ""
+
+#: ../root/user/UserCollections.js:42
+msgid "Area Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:43
+msgid "Artist Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:44
+msgid "Event Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:45
+msgid "Instrument Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:46
+msgid "Label Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:47
+msgid "Place Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:48
+msgid "Recording Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:49
+msgid "Release Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:50
+msgid "Release Group Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:51
+msgctxt "plural"
+msgid "Series Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:52
+msgid "Work Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:64
+msgid "{collaborator_number} (including you)"
+msgstr ""
+
+#: ../root/user/UserCollections.js:79
+msgid "(your collection)"
+msgstr ""
+
+#: ../root/user/UserCollections.js:197
+msgid "You have no collections."
+msgstr ""
+
+#: ../root/user/UserCollections.js:199
+msgid "{user} has no public collections."
+msgstr ""
+
+#: ../root/user/UserCollections.js:218
+msgid "You aren’t collaborating in any collections."
+msgstr ""
+
+#: ../root/user/UserCollections.js:220
+msgid "{user} isn’t collaborating in any public collections."
+msgstr ""
+
+#: ../root/user/UserEdits.js:42 ../root/user/UserEdits.js:43
+msgid "Votes by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:46 ../root/user/UserEdits.js:47
+msgid "Open edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:50 ../root/user/UserEdits.js:51
+msgid "Cancelled edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:54 ../root/user/UserEdits.js:55
+msgid "Accepted edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:58 ../root/user/UserEdits.js:59
+msgid "Failed edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:62 ../root/user/UserEdits.js:63
+msgid "Rejected edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:66 ../root/user/UserEdits.js:67
+msgid "Auto-edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:70 ../root/user/UserEdits.js:71
+msgid "Applied edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:74 ../root/user/UserEdits.js:75
+msgid "Edits by {name}"
+msgstr ""
+
+#: ../root/user/UserProfile.js:68
+msgid "Deleted User"
+msgstr ""
+
+#: ../root/user/UserProfile.js:72
+msgid "{doc|Auto-Editor}"
+msgstr ""
+
+#: ../root/user/UserProfile.js:77
+msgid "Internal/Bot"
+msgstr ""
+
+#: ../root/user/UserProfile.js:81
+msgid "{doc|Relationship Editor}"
+msgstr ""
+
+#: ../root/user/UserProfile.js:87
+msgid "{doc|Transclusion Editor}"
+msgstr ""
+
+#: ../root/user/UserProfile.js:93
+msgid "{doc|Location Editor}"
+msgstr ""
+
+#: ../root/user/UserProfile.js:103
+msgid "Beginner"
+msgstr ""
+
+#: ../root/user/UserProfile.js:109
+msgid "Normal User"
+msgstr ""
+
+#: ../root/user/UserProfile.js:157
+msgid "The Dawn of the Project"
+msgstr ""
+
+#: ../root/user/UserProfile.js:159
+msgid "The early days of the project"
+msgstr ""
+
+#: ../root/user/UserProfile.js:167
+msgid ""
+"Your homepage and biography will not show until you have completed the email "
+"verification process."
+msgstr ""
+
+#: ../root/user/UserProfile.js:186
+msgid "General Information"
+msgstr ""
+
+#: ../root/user/UserProfile.js:192
+msgid "(hidden)"
+msgstr ""
+
+#: ../root/user/UserProfile.js:195
+msgid "(verified at {date})"
+msgstr ""
+
+#: ../root/user/UserProfile.js:200
+msgid "(unverified!)"
+msgstr ""
+
+#: ../root/user/UserProfile.js:209
+msgid "resend verification email"
+msgstr ""
+
+#: ../root/user/UserProfile.js:217
+msgid "send email"
+msgstr ""
+
+#: ../root/user/UserProfile.js:232
+msgid "find all users of this email"
+msgstr ""
+
+#: ../root/user/UserProfile.js:242
+msgctxt "email"
+msgid "(none)"
+msgstr ""
+
+#: ../root/user/UserProfile.js:249
+msgid "User type:"
+msgstr ""
+
+#: ../root/user/UserProfile.js:255
+msgid "nominate for auto-editor"
+msgstr ""
+
+#: ../root/user/UserProfile.js:262
+msgid "Age:"
+msgstr ""
+
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
+msgstr ""
+
+#: ../root/user/UserProfile.js:297
+msgid "Hasn't logged in yet"
+msgstr ""
+
+#: ../root/user/UserProfile.js:302
+msgid "Authorized applications"
+msgstr ""
+
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
+msgid "see list"
+msgstr ""
+
+#: ../root/user/UserProfile.js:318
+msgid "Developer applications"
+msgstr ""
+
+#: ../root/user/UserProfile.js:335
+msgid "Homepage:"
+msgstr ""
+
+#: ../root/user/UserProfile.js:356
+msgid "{count} ({url|view list})"
+msgstr ""
+
+#: ../root/user/UserProfile.js:363
+msgid "0"
+msgstr ""
+
+#: ../root/user/UserProfile.js:376
+msgid "unsubscribe"
+msgstr ""
+
+#: ../root/user/UserProfile.js:385
+msgid "subscribe"
+msgstr ""
+
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
+
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
+msgid "{count} ({view_url|view})"
+msgstr ""
+
+#: ../root/user/UserProfile.js:581
+msgid "Edits"
+msgstr ""
+
+#: ../root/user/UserProfile.js:587
+msgctxt "edit descriptor"
+msgid "Total"
+msgstr ""
+
+#: ../root/user/UserProfile.js:597
+msgctxt "edit descriptor"
+msgid "Accepted"
+msgstr ""
+
+#: ../root/user/UserProfile.js:607
+msgid "Auto-edits"
+msgstr ""
+
+#: ../root/user/UserProfile.js:617
+msgid "Total applied"
+msgstr ""
+
+#: ../root/user/UserProfile.js:627
+msgid "Voted down"
+msgstr ""
+
+#: ../root/user/UserProfile.js:637
+msgid "Failed"
+msgstr ""
+
+#: ../root/user/UserProfile.js:667
+msgid "Last 24 hours"
+msgstr ""
+
+#: ../root/user/UserProfile.js:691
+msgid "This table shows a summary of votes cast by this editor."
+msgstr ""
+
+#: ../root/user/UserProfile.js:696
+msgid "Votes ({view_url|view})"
+msgstr ""
+
+#: ../root/user/UserProfile.js:704
+msgid "Last 28 days"
+msgstr ""
+
+#: ../root/user/UserProfile.js:707
+msgid "Overall"
+msgstr ""
+
+#: ../root/user/UserProfile.js:755
+msgid "This table shows a summary of entities added by this editor."
+msgstr ""
+
+#: ../root/user/UserProfile.js:761
+msgid "Newly applied edits may need 24 hours to appear"
+msgstr ""
+
+#: ../root/user/UserProfile.js:764
+msgid "Added entities"
+msgstr ""
+
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
+msgstr ""
+
+#: ../root/user/UserProfile.js:797
+msgid "This table shows a summary of secondary data added by this editor."
+msgstr ""
+
+#: ../root/user/UserProfile.js:803
+msgid "Tags and ratings"
+msgstr ""
+
+#: ../root/user/UserProfile.js:810
+msgid "Tags upvoted"
+msgstr ""
+
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
+msgid "Tags are removed when an editor is deleted."
+msgstr ""
+
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
+msgctxt "tags"
+msgid "Removed"
+msgstr ""
+
+#: ../root/user/UserProfile.js:826
+msgid "Tags downvoted"
+msgstr ""
+
+#: ../root/user/UserProfile.js:848
+msgid "Ratings are removed when an editor is deleted."
+msgstr ""
+
+#: ../root/user/UserProfile.js:851
+msgctxt "ratings"
+msgid "Removed"
+msgstr ""
+
+#: ../root/user/UserProfile.js:918
+msgid "Blocked Spam Account"
+msgstr ""
+
+#: ../root/user/UserProfile.js:920
+msgid ""
+"This user was blocked and their profile is hidden because they were deemed "
+"to be spamming. If you see spam in MusicBrainz, please do let us know by "
+"reporting the spammer from their user page."
+msgstr ""
+
+#: ../root/user/UserProfile.js:931
+msgid ""
+"This user is marked as a spammer and is blocked for all non-admin users."
+msgstr ""
+
+#: ../root/user/UserProfile.js:942
+msgid ""
+"This user’s editing rights have been restricted. Active restrictions: "
+"{restrictions}."
+msgstr ""
+
+#: ../root/user/UserProfile.js:974
+msgid "Report this user for bad behavior"
+msgstr ""
+
+#: ../root/user/UserRatingEntity.js:58
+msgid "No ratings."
+msgstr ""
+
+#: ../root/user/UserRatingList.js:28
+msgid "Artist ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:29
+msgid "Event ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:30
+msgid "Label ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:31
+msgid "Place ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:32
+msgid "Recording ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:33
+msgid "Release group ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:34
+msgid "Work ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:72
+msgid "View all ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:83
+msgid "{user} has not rated anything."
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:24
+msgid "Artist Subscriptions"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:25
+msgid "Collection Subscriptions"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:26
+msgid "Editor Subscriptions"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:27
+msgid "Label Subscriptions"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:28
+msgid "Series Subscriptions"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:183
+msgid "{editor} is subscribed to:"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:191
+msgid "{num} artist"
+msgid_plural "{num} artists"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserSubscriptions.js:202
+msgid "{num} collection"
+msgid_plural "{num} collections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserSubscriptions.js:213
+msgid "{num} editor"
+msgid_plural "{num} editors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserSubscriptions.js:224
+msgid "{num} label"
+msgid_plural "{num} labels"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserSubscriptions.js:235
+msgid "{num} series"
+msgid_plural "{num} series"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserSubscriptions.js:256
+msgid "No public subscriptions."
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:257
+msgid "No subscriptions."
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:261
+msgid "Private collections"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:275
+msgid "{editor} is also subscribed to {n} other private collection."
+msgid_plural "{editor} is also subscribed to {n} other private collections."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserSubscriptions.js:285
+msgid "{editor} is subscribed to {n} private collection."
+msgid_plural "{editor} is subscribed to {n} private collections."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserTagList.js:21
+msgid "Tags {user} downvoted"
+msgstr ""
+
+#: ../root/user/UserTagList.js:22
+msgid "Tags {user} upvoted"
+msgstr ""
+
+#: ../root/user/UserTagList.js:122
+msgid "{user} has not downvoted any tags."
+msgstr ""
+
+#: ../root/user/UserTagList.js:129
+msgid "{user} has not upvoted any tags."
+msgstr ""
+
+#: ../root/user/components/UserInlineList.js:24
+msgid "No users found"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:32
+msgctxt "tag upvotes or downvotes"
+msgid "Show votes"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:38
+msgctxt "tag"
+msgid "upvotes"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:39
+msgctxt "tag"
+msgid "downvotes"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:48
+msgid "Sort by"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:51
+msgid "name"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:52
+msgid "count (more first)"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:53
+msgid "count (less first)"
+msgstr ""
+
+#: ../root/utility/age.js:148
+msgid "aged {num}"
+msgstr ""
+
+#: ../root/utility/age.js:150
+msgid "{num} year"
+msgid_plural "{num} years"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/utility/age.js:152
+msgid "{num} month"
+msgid_plural "{num} months"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/utility/age.js:154
+msgid "{num} day"
+msgid_plural "{num} days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/utility/age.js:161
+msgid "{num} year ago"
+msgid_plural "{num} years ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/utility/age.js:164
+msgid "{num} month ago"
+msgid_plural "{num} months ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/utility/age.js:170
+msgid "{num} day ago"
+msgid_plural "{num} days ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/utility/edit.js:35
+msgid "Accept upon closing"
+msgstr ""
+
+#: ../root/utility/edit.js:36
+msgid "Reject upon closing"
+msgstr ""
+
+#: ../root/utility/edit.js:61
+msgid "This edit is open for voting."
+msgstr ""
+
+#: ../root/utility/edit.js:63
+msgid "This edit has been successfully applied."
+msgstr ""
+
+#: ../root/utility/edit.js:66
+msgid "This edit failed because there were insufficient \"yes\" votes."
+msgstr ""
+
+#: ../root/utility/edit.js:70
+msgid ""
+"This edit failed either because an entity it was modifying no longer exists, "
+"or the entity can not be modified in this manner anymore."
+msgstr ""
+
+#: ../root/utility/edit.js:75
+msgid ""
+"This edit failed due to an internal error and may need to be entered again."
+msgstr ""
+
+#: ../root/utility/edit.js:80
+msgid ""
+"This edit failed because the data it was changing was modified after this "
+"edit was entered. This may happen when the same edit is entered in twice; "
+"one will pass but the other will fail."
+msgstr ""
+
+#: ../root/utility/edit.js:86
+msgid ""
+"This edit failed because it affected high quality data and did not receive "
+"any votes."
+msgstr ""
+
+#: ../root/utility/edit.js:90
+msgid "This edit was cancelled."
+msgstr ""
+
+#: ../root/utility/tableColumns.js:773
+msgid "Subscribed"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:34
+msgid "…related to artists in my subscriptions"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:50
+msgid ""
+"If you’d like to help ensuring the changes made to MusicBrainz data are "
+"correct, but do not know where to start, the following suggestions should be "
+"useful. These are pre-defined {edit_search|edit searches}; once you’re "
+"comfortable with the edit search you can refine them further or just create "
+"your own personal searches and bookmark them for your own use!"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:61
+msgid ""
+"While reviewing the work of your fellow editors, always keep the {coc|Code "
+"of Conduct} in mind. Almost all editors want to help, so your goal as a "
+"voter is to help them help better. This applies even more for beginners: "
+"always try to be helpful and patient with them, even if they are making "
+"mistakes, so that they’ll hopefully grow into better editors! That said, if "
+"you find an editor that seems to be vandalizing the data, you can always "
+"report them from their profile."
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:74
+msgid ""
+"By default, these searches skip your own edits and edits you have already "
+"voted on (when relevant). To change that, load the search and then remove "
+"the conditions “Editor is not me” and “Voter is me and voted No vote”, "
+"respectively."
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:81
+msgid "Destructive edits"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:84
+msgid ""
+"Destructive edits (removals and merges) are often very hard or even "
+"impossible to revert. As such, an incorrect destructive edit that applies "
+"unnoticed can cause quite a big mess! Most are guaranteed to remain open for "
+"at least two full days even if they get three “Yes” votes, to avoid them "
+"closing too quickly, but it’s always good to get more eyes on them. Below "
+"you can find four different searches: one for all destructive edits (which "
+"might be overwhelming sometimes), one for entity merges and removals only "
+"(the edits more likely to cause a mess if they incorrectly go through), one "
+"for relationship removals only, and one for destructive changes to releases "
+"(track, medium and release label removals)."
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:101
+msgid "All open destructive edits"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:110
+msgid "All open entity merges and removals"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:119
+msgid "All open relationship removals"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:128
+msgid "All open destructive changes to releases"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:139
+msgid "Unreviewed and potentially problematic edits"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:142
+msgid ""
+"Edits that nobody have seen can always benefit from a quick check: even if "
+"you’re not familiar with the music in question, you might be able to notice "
+"that something seems wrong. Don’t forget you don’t need to vote on every "
+"edit: it’s perfectly fine to just abstain if you feel something doesn’t seem "
+"wrong but it’s also not 100% obvious that it is right without further checks."
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:153
+msgid "Unreviewed edits (0 votes) that will close in less than a day"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:164
+msgid "All open unreviewed edits (0 votes)"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:174
+msgid ""
+"All open unconfirmed edits (“Abstain” votes only) that will close in less "
+"than a day"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:184
+msgid "All open unconfirmed edits (“Abstain” votes only)"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:196
+msgid ""
+"Edits that have already received “No” votes are also ones likely to benefit "
+"from more eyes on them, to either confirm the edit is indeed incorrect or to "
+"add a dissenting opinion to the current “No” vote. Similarly, edits with "
+"both “Yes” and “No” votes are likely to benefit from more opinions to push "
+"them to one side or the other. As always, remember to be polite, even if you "
+"disagree with a voter!"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:208
+msgid "Open edits with at least 1 “No” vote"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:217
+msgid "Open edits with both “Yes” and “No” votes (controversial edits)"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:229
+msgid "Edits by beginners"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:232
+msgid ""
+"Beginner editors are the ones most likely to need a friendly eye on their "
+"edits. When reviewing these, look for cases where the editor is making edits "
+"that go against the MusicBrainz guidelines, or seem otherwise wrong, and "
+"leave notes guiding the editor so that they can do better in the future. "
+"Make sure to link to the appropriate guidelines, or to relevant examples of "
+"well-entered data, and above all remember to be nice. Chances are if these "
+"users are making a terrible mess, they’re not doing it on purpose but out of "
+"confusion: MusicBrainz can be daunting for newcomers! If at all possible, "
+"fix the errors (and let the editor know that you’ve done that and that they "
+"can check the edits you made to see how it should look like) rather than "
+"voting “No” on edits, since “No” votes can be quite discouraging, especially "
+"as a new editor. If something is just so bad that there’s no fixing it and "
+"it is making the existing data worse, do vote against the edit, but make "
+"sure to explain nicely why that is needed, rather than just silently “No”-"
+"voting. For a longer overview of the attitude we’re hoping for, see "
+"{voting_blog|this blog post about voting}. Also, if a beginner is making "
+"especially good edits, you might want to let them know so they’ll feel good "
+"about it!"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:259
+msgid ""
+"The filters for edits you haven’t voted on yet below will only show open "
+"edits (since you can’t vote on closed edits anyway). That said, a fair "
+"amount of edits that auto-apply might still be worth reviewing when entered "
+"by beginners, so consider checking those too!"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:268
+msgid ""
+"Specific searches are provided for edits adding releases/mediums, which are "
+"probably the most complex and as such reasonably likely to have issues, plus "
+"for edits adding artists, which might include artists trying to add their "
+"own data and not doing a great job of it."
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:279
+msgid "All edits from beginner editors"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:287
+msgid "All edits from beginner editors made less than 2 weeks ago"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:296
+msgid "All \"Add release/medium\" edits by beginner editors"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:303
+msgid ""
+"All \"Add release/medium\" edits by beginner editors made less than 2 weeks "
+"ago"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:311
+msgid "All \"Add artist\" edits by beginner editors"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:317
+msgid "All \"Add artist\" edits by beginner editors made less than 2 weeks ago"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:324
+msgid "All open destructive edits by beginner editors"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:333
+msgid "All open unreviewed edits (0 votes) by beginner editors"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:345 ../root/vote/VotingIndex.js:367
+msgid "All edits"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:348
+msgid ""
+"Sometimes you might want to just check all edits for some reason. If you "
+"feel like being overwhelmed by a very long list of edits is just what the "
+"doctor ordered, just check the searches below! Don’t forget you can always "
+"experiment with different edit search filters to limit the amount of edits "
+"shown a bit and make it more manageable"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:360
+msgid "All open edits"
+msgstr ""
+
+#: ../root/work/WorkMerge.js:34
+msgid ""
+"You are about to merge all these works into a single one. Please select the "
+"work all others should be merged into:"
+msgstr ""
+
+#: ../root/work/WorkMerge.js:41
+msgid ""
+"Warning: Some of the works you’re merging have different "
+"ISWCs. Please make sure they are indeed the same works and you wish to "
+"continue with the merge."
+msgstr ""
diff --git a/po/mb_server.tr.po b/po/mb_server.tr.po
index bc65c001758..03260a847a6 100644
--- a/po/mb_server.tr.po
+++ b/po/mb_server.tr.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-24 14:27+0000\n"
"Last-Translator: Philipp Wolfer \n"
"Language-Team: Turkish Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2082,15 +2109,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2139,7 +2163,7 @@ msgstr[1] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr "Ses kaydı"
@@ -2180,27 +2204,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2223,7 +2252,7 @@ msgstr ""
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2243,10 +2272,6 @@ msgstr "Sürüm Grubu"
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2264,7 +2289,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2284,20 +2309,12 @@ msgstr ""
msgid "Release title or MBID"
msgstr ""
-#: ../root/release/layout.tt:1 ../root/release/ReleaseLayout.js:32
-msgid "Release “{name}” by {artist}"
-msgstr ""
-
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
+#: ../root/release/layout.tt:1 ../root/release/ReleaseLayout.js:32
+msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2313,7 +2330,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2323,11 +2340,11 @@ msgstr "Kaldır"
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2338,7 +2355,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2399,7 +2416,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2417,29 +2434,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "Kaydet"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
-msgstr ""
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr "Abece"
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2458,10 +2479,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr "Arıyor..."
@@ -2529,11 +2546,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2565,9 +2585,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2578,13 +2605,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr ""
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2592,11 +2627,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2609,9 +2644,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr ""
@@ -2621,11 +2656,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2639,11 +2674,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2655,7 +2690,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2663,6 +2706,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2681,7 +2730,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2719,7 +2768,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2771,14 +2820,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2837,7 +2886,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2876,8 +2925,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2894,7 +2943,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2902,7 +2951,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2927,14 +2976,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2949,20 +3004,16 @@ msgstr ""
msgid "Title"
msgstr ""
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2992,6 +3043,7 @@ msgid "Tracklist"
msgstr ""
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -2999,7 +3051,7 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "Parçalar"
@@ -3011,10 +3063,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3052,25 +3100,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr ""
@@ -3081,7 +3129,7 @@ msgstr ""
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3095,17 +3143,30 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
-msgstr ""
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr "URL"
#: ../root/release/edit/tracklist.tt:21
msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3182,7 +3243,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3194,23 +3255,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3266,7 +3324,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3304,11 +3362,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3324,7 +3382,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3351,8 +3409,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3361,8 +3419,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3446,8 +3504,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3935,12 +3995,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4025,25 +4085,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4156,15 +4216,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr "Eposta gönder"
@@ -4242,7 +4302,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4325,7 +4385,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4358,7 +4418,7 @@ msgstr ""
msgid "Remove artist alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr "Artisti düzenle"
@@ -4400,8 +4460,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4413,7 +4473,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4447,7 +4507,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4469,8 +4529,8 @@ msgstr "İlişki ekle"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr "Sürüm ekle"
@@ -4499,14 +4559,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4527,7 +4587,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr "Ses kaydını düzenle"
@@ -4579,11 +4639,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4635,7 +4690,7 @@ msgstr "Şirket ekle"
msgid "Remove label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr "Şirketi düzenle"
@@ -4682,7 +4737,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4733,8 +4788,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr ""
@@ -4813,13 +4872,13 @@ msgstr ""
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(bilinmeyen)"
@@ -4847,6 +4906,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr ""
@@ -4860,7 +4921,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr "Sürüm grubu ekle"
@@ -4872,7 +4933,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -4951,7 +5012,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4964,24 +5025,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr "URL"
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -4999,6 +5043,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -5012,9 +5057,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5039,7 +5084,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5482,11 +5527,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
-msgstr "Geçerli bir url girin örn: \"http://google.com\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
+msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr ""
@@ -5577,22 +5622,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5604,17 +5649,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr "Açıklama"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5629,17 +5663,6 @@ msgctxt "noun"
msgid "Tag"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5879,19 +5902,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5899,7 +5922,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -6018,9 +6041,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6383,12 +6407,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6422,14 +6446,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6445,7 +6470,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6482,20 +6507,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6524,26 +6535,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr "Dil"
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr "Abece"
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6551,15 +6544,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6614,6 +6602,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr ""
@@ -6626,10 +6615,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6717,6 +6702,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6766,8 +6752,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6776,8 +6765,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6843,10 +6831,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr "Sanatçılar"
@@ -6885,7 +6873,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6934,7 +6922,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6948,7 +6939,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7114,7 +7108,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7401,10 +7395,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7437,7 +7433,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7451,7 +7447,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7471,15 +7467,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7489,8 +7476,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7499,21 +7487,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7551,7 +7531,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7590,15 +7570,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7691,8 +7671,8 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
-msgstr "Yeni koleksiyon yarat"
+msgid "Add a new collection"
+msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
@@ -7706,20 +7686,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7890,7 +7860,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7936,7 +7906,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8047,6 +8017,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8091,26 +8062,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8122,13 +8077,6 @@ msgstr ""
msgid "Code"
msgstr ""
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr ""
-
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
msgstr ""
@@ -8137,22 +8085,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr ""
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8277,7 +8219,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8495,7 +8437,7 @@ msgid "None"
msgstr "Hiçbiri"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8520,7 +8462,8 @@ msgid_plural "Found {n} edits"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8545,7 +8488,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8554,15 +8497,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8585,51 +8528,41 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
msgstr[1] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr "Not Ekle"
@@ -8644,15 +8577,9 @@ msgstr ""
#: ../root/edit/components/EditorTypeInfo.js:39
msgid "This user is automated."
msgstr ""
-
-#: ../root/edit/components/EditorTypeInfo.js:40
-msgid "bot"
-msgstr ""
-
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
+
+#: ../root/edit/components/EditorTypeInfo.js:40
+msgid "bot"
msgstr ""
#: ../root/edit/components/IntentionallyRawIcon.js:17
@@ -8771,37 +8698,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8813,17 +8716,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "Dosya adı:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8847,19 +8753,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8918,30 +8824,24 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr "Katalog numarası:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "Katalog numarası"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
@@ -8953,17 +8853,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8971,7 +8871,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -9012,14 +8912,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -9044,11 +8936,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9074,25 +8961,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr "Katalog numarası"
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9114,6 +8986,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9126,7 +8999,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9239,7 +9113,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9258,8 +9132,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9301,20 +9175,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "Katalog Numarası"
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9325,11 +9185,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9339,8 +9194,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9356,17 +9211,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9405,28 +9268,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr "Aday:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "Aday"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9434,11 +9293,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9455,47 +9316,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr "Aday"
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10179,7 +10012,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10331,7 +10164,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10498,39 +10331,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10646,11 +10473,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10703,10 +10530,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10719,7 +10542,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10750,27 +10573,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10778,21 +10601,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr "Lisans"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "Derecelendirme"
@@ -10931,7 +10746,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -11030,13 +10845,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11170,7 +10979,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11384,7 +11193,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11392,11 +11201,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11408,6 +11212,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11441,16 +11246,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11470,7 +11271,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11544,7 +11345,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11563,7 +11364,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11672,8 +11473,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11879,8 +11680,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11890,10 +11691,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11927,7 +11728,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11936,7 +11737,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12216,7 +12017,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12296,7 +12097,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12423,8 +12224,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12595,13 +12396,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12779,7 +12580,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12803,8 +12604,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -13023,20 +12823,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13115,9 +12901,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13126,9 +12912,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13283,6 +13069,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "Katalog Numarası"
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13292,7 +13082,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13303,7 +13093,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13313,11 +13103,12 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "Konum"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
@@ -13351,7 +13142,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13435,7 +13226,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13456,42 +13247,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13542,15 +13334,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13603,10 +13395,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13654,7 +13448,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13678,33 +13472,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
-msgstr "Koleksiyon yarat"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13722,7 +13516,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13731,32 +13525,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13766,7 +13555,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13804,11 +13599,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13909,15 +13704,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -14028,7 +13823,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14323,31 +14118,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14368,7 +14163,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14425,8 +14221,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14516,113 +14312,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14669,53 +14465,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14737,11 +14533,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14776,11 +14572,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14842,10 +14638,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15180,8 +14973,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15387,14 +15180,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15403,7 +15196,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15455,34 +15248,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15509,15 +15302,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15758,10 +15547,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15823,23 +15608,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr "Gönder"
@@ -15941,7 +15726,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16168,10 +15954,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16213,191 +15995,185 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Actions"
+msgid "Restrictions"
+msgstr "Eylemler"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16644,7 +16420,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16658,7 +16434,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
@@ -16883,6 +16659,39 @@ msgid ""
"continue with the merge."
msgstr ""
+#~ msgid "Begin date:"
+#~ msgstr "Başlangıç tarihi:"
+
+#~ msgid "Country:"
+#~ msgstr "Ülke:"
+
+#~ msgid "Date:"
+#~ msgstr "Tarih:"
+
+#~ msgid "Language:"
+#~ msgstr "Dil:"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "Geçerli bir url girin örn: \"http://google.com\""
+
+#~ msgid "Create a new collection"
+#~ msgstr "Yeni koleksiyon yarat"
+
+#~ msgid "Filename:"
+#~ msgstr "Dosya adı:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "Katalog numarası:"
+
+#~ msgid "Candidate:"
+#~ msgstr "Aday:"
+
+#~ msgid "Location"
+#~ msgstr "Konum"
+
+#~ msgid "Create collection"
+#~ msgstr "Koleksiyon yarat"
+
#~ msgid "CD Not Found"
#~ msgstr "CD Bulunamadı"
diff --git a/po/mb_server.vi.po b/po/mb_server.vi.po
index cd56779cb06..c990952e614 100644
--- a/po/mb_server.vi.po
+++ b/po/mb_server.vi.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
"PO-Revision-Date: 2023-08-18 12:59+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Vietnamese Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
#: ../root/layout/merge-helper.tt:24
@@ -2073,15 +2100,12 @@ msgstr ""
msgid "Please select the medium you wish to attach this CD TOC to."
msgstr ""
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
msgstr ""
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
-
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
msgstr ""
@@ -2129,7 +2153,7 @@ msgstr[0] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr "Đang ghi"
@@ -2170,27 +2194,32 @@ msgstr ""
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
msgstr ""
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2213,7 +2242,7 @@ msgstr ""
msgid "Release Duplicates"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2233,10 +2262,6 @@ msgstr ""
msgid "Release Group Details"
msgstr ""
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
-
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
@@ -2254,7 +2279,7 @@ msgstr ""
msgid "Release Quality"
msgstr ""
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
msgstr ""
@@ -2278,16 +2303,8 @@ msgstr ""
msgid "Release “{name}” by {artist}"
msgstr ""
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2303,7 +2320,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2313,11 +2330,11 @@ msgstr ""
msgid "Remove Example"
msgstr ""
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
msgstr ""
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
msgstr ""
@@ -2328,7 +2345,7 @@ msgstr ""
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
msgstr ""
@@ -2389,7 +2406,7 @@ msgstr ""
msgid "Reverse link phrase:"
msgstr ""
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
msgstr ""
@@ -2407,29 +2424,33 @@ msgstr ""
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr ""
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2448,10 +2469,6 @@ msgstr ""
msgid "Search for Edits"
msgstr ""
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
-
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
msgstr ""
@@ -2519,11 +2536,14 @@ msgid "Set cover art"
msgstr ""
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
msgstr ""
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
msgstr ""
#: ../root/edit/search_macros.tt:43
@@ -2555,9 +2575,16 @@ msgid ""
"highlighted tabs and correct any visible errors."
msgstr ""
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
msgstr ""
#: ../root/artist/split.tt:1
@@ -2568,13 +2595,21 @@ msgstr ""
msgid "Split Into Separate Artists"
msgstr ""
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr ""
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
@@ -2582,11 +2617,11 @@ msgid "Stop using beta site"
msgstr ""
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
msgstr ""
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
msgstr ""
@@ -2599,9 +2634,9 @@ msgstr ""
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
msgstr ""
@@ -2611,11 +2646,11 @@ msgid ""
"for this release is unlikely to work at the moment."
msgstr ""
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
msgstr ""
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
msgstr ""
@@ -2629,11 +2664,11 @@ msgstr ""
msgid "The data you’ve seeded contained the following errors:"
msgstr ""
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
msgstr ""
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
@@ -2645,7 +2680,15 @@ msgid ""
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
@@ -2653,6 +2696,12 @@ msgid ""
"information in itself has to be free-text)."
msgstr ""
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
msgstr ""
@@ -2671,7 +2720,7 @@ msgstr ""
msgid "The tracklist for this medium is unknown."
msgstr ""
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
@@ -2709,7 +2758,7 @@ msgstr ""
msgid "This CDTOC is already attached to this medium."
msgstr ""
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2761,14 +2810,14 @@ msgstr ""
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
msgstr ""
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
@@ -2827,7 +2876,7 @@ msgstr ""
msgid "This label has ended."
msgstr ""
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
msgstr ""
@@ -2866,8 +2915,8 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
msgstr ""
@@ -2884,7 +2933,7 @@ msgstr ""
msgid "This relationship type does not have any examples."
msgstr ""
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
msgstr ""
@@ -2892,7 +2941,7 @@ msgstr ""
msgid "This release has no mediums that can have disc IDs."
msgstr ""
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2917,14 +2966,20 @@ msgstr ""
msgid "This track is hidden in the pregap."
msgstr ""
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
msgstr ""
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2939,20 +2994,16 @@ msgstr ""
msgid "Title"
msgstr ""
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
msgstr ""
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
@@ -2982,6 +3033,7 @@ msgid "Tracklist"
msgstr ""
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -2989,7 +3041,7 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr ""
@@ -3001,10 +3053,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3042,25 +3090,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr ""
@@ -3071,7 +3119,7 @@ msgstr ""
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
@@ -3085,9 +3133,22 @@ msgstr ""
msgid "Types:"
msgstr ""
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
msgstr ""
#: ../root/release/edit/tracklist.tt:21
@@ -3095,7 +3156,7 @@ msgid "Unable to parse the tracklist you entered."
msgstr ""
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
msgstr ""
@@ -3172,7 +3233,7 @@ msgid "Voter"
msgstr ""
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
msgstr ""
@@ -3184,23 +3245,20 @@ msgstr ""
msgid "Voting period (days)"
msgstr ""
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
msgstr ""
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
msgstr ""
@@ -3256,7 +3314,7 @@ msgstr ""
msgid "Work Details"
msgstr ""
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3294,11 +3352,11 @@ msgstr ""
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
msgstr ""
@@ -3314,7 +3372,7 @@ msgstr ""
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
msgstr ""
@@ -3341,8 +3399,8 @@ msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3351,8 +3409,8 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3436,8 +3494,10 @@ msgstr ""
msgid "any"
msgstr ""
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
msgstr ""
#: ../root/edit/search_macros.tt:20
@@ -3920,12 +3980,12 @@ msgstr ""
msgid "Invalid regular expression."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
@@ -4010,25 +4070,25 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
msgstr ""
@@ -4141,15 +4201,15 @@ msgid ""
"or expected."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
msgstr ""
@@ -4227,7 +4287,7 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
@@ -4310,7 +4370,7 @@ msgstr ""
msgid "Remove area alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
msgstr ""
@@ -4343,7 +4403,7 @@ msgstr ""
msgid "Remove artist alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
msgstr ""
@@ -4385,8 +4445,8 @@ msgid "Add event annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
msgstr ""
@@ -4398,7 +4458,7 @@ msgstr ""
msgid "Remove event alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
msgstr ""
@@ -4432,7 +4492,7 @@ msgstr ""
msgid "Remove genre alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
msgstr ""
@@ -4454,8 +4514,8 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
msgstr ""
@@ -4484,14 +4544,14 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
msgstr ""
@@ -4512,7 +4572,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
msgstr ""
@@ -4564,11 +4624,6 @@ msgstr ""
msgid "Convert release to multiple artists (historic)"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
msgstr ""
@@ -4620,7 +4675,7 @@ msgstr ""
msgid "Remove label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
msgstr ""
@@ -4667,7 +4722,7 @@ msgstr ""
msgid "Remove place alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
msgstr ""
@@ -4718,8 +4773,12 @@ msgstr ""
msgid "Remove ISRC"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
msgstr ""
@@ -4798,13 +4857,13 @@ msgstr ""
msgid "Edit cover art"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(chưa rõ)"
@@ -4832,6 +4891,8 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
msgstr ""
@@ -4845,7 +4906,7 @@ msgid "Add release group annotation"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
msgstr ""
@@ -4857,7 +4918,7 @@ msgstr ""
msgid "Remove release group alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
msgstr ""
@@ -4932,7 +4993,7 @@ msgstr ""
msgid "Remove series alias"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
msgstr ""
@@ -4945,24 +5006,7 @@ msgstr ""
msgid "Merge series"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
msgstr ""
@@ -4980,6 +5024,7 @@ msgid "Failed dependency"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -4993,9 +5038,9 @@ msgstr ""
msgid "No votes"
msgstr ""
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
@@ -5020,7 +5065,7 @@ msgid "Add ISWCs"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
msgstr ""
@@ -5463,11 +5508,11 @@ msgstr ""
msgid "This is not a valid time."
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
msgstr ""
@@ -5558,22 +5603,22 @@ msgid "A fluency level is required."
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr ""
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
msgstr ""
@@ -5585,17 +5630,6 @@ msgstr ""
msgid "Birth year must be after 1900"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr "Chú thích"
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
@@ -5610,17 +5644,6 @@ msgctxt "noun"
msgid "Tag"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
@@ -5860,19 +5883,19 @@ msgid ""
"purposes."
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
@@ -5880,7 +5903,7 @@ msgstr ""
msgid "{last_list_item}"
msgstr ""
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
@@ -5999,9 +6022,10 @@ msgstr ""
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
msgstr ""
@@ -6359,12 +6383,12 @@ msgid "Spammer"
msgstr ""
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
msgstr ""
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
msgstr ""
@@ -6398,14 +6422,15 @@ msgstr ""
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
msgstr ""
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
msgstr ""
#: ../root/admin/EditUser.js:182
@@ -6421,7 +6446,7 @@ msgid "Enter a {link|POSIX regular expression}."
msgstr ""
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
msgstr ""
@@ -6458,20 +6483,6 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
@@ -6500,26 +6511,8 @@ msgstr ""
msgid "Remove Attribute"
msgstr ""
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr ""
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr ""
-
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
msgstr ""
@@ -6527,15 +6520,10 @@ msgstr ""
msgid "Verified on"
msgstr ""
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
msgstr ""
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
-
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
@@ -6590,6 +6578,7 @@ msgstr ""
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr ""
@@ -6602,10 +6591,6 @@ msgstr ""
msgid "Version:"
msgstr ""
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
-
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
@@ -6693,6 +6678,7 @@ msgstr ""
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
msgstr ""
@@ -6742,8 +6728,11 @@ msgid ""
msgstr ""
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
@@ -6752,8 +6741,7 @@ msgid "Changelog:"
msgstr ""
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
@@ -6819,10 +6807,10 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr ""
@@ -6861,7 +6849,7 @@ msgstr ""
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
@@ -6910,7 +6898,10 @@ msgstr ""
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
@@ -6924,7 +6915,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -7089,7 +7083,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7368,10 +7362,12 @@ msgid "Top CD Stubs"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
msgstr ""
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
msgstr ""
@@ -7404,7 +7400,7 @@ msgid "Sorry, {discid}
is not a valid disc ID."
msgstr ""
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
@@ -7418,7 +7414,7 @@ msgid ""
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
@@ -7438,15 +7434,6 @@ msgstr ""
msgid "CD TOC details"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
msgstr ""
@@ -7456,8 +7443,9 @@ msgid "Track details:"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr ""
@@ -7466,21 +7454,13 @@ msgid "Start"
msgstr ""
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr ""
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
@@ -7518,7 +7498,7 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
@@ -7557,15 +7537,15 @@ msgstr ""
msgid "See all of {editor}'s public collections"
msgstr ""
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
msgstr ""
@@ -7658,7 +7638,7 @@ msgstr ""
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
@@ -7673,20 +7653,10 @@ msgstr ""
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr ""
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
msgstr ""
@@ -7856,7 +7826,7 @@ msgstr ""
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr ""
@@ -7902,7 +7872,7 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
msgstr ""
@@ -8004,6 +7974,7 @@ msgstr ""
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
msgstr ""
@@ -8045,26 +8016,10 @@ msgid "About to close"
msgstr ""
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
msgstr ""
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr ""
-
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
@@ -8072,15 +8027,8 @@ msgstr ""
#: ../root/components/list/LabelList.js:68
#: ../root/search/components/AreaResults.js:65
-#: ../root/search/components/LabelResults.js:68
-msgid "Code"
-msgstr ""
-
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
+#: ../root/search/components/LabelResults.js:68
+msgid "Code"
msgstr ""
#: ../root/components/list/ReleaseGroupList.js:166
@@ -8091,22 +8039,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
msgstr ""
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr ""
-
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
msgstr ""
@@ -8231,7 +8173,7 @@ msgid "There was a problem cancelling {edit}."
msgstr ""
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
@@ -8449,7 +8391,7 @@ msgid "None"
msgstr ""
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
msgstr ""
@@ -8472,7 +8414,8 @@ msgid "Found {n} edit"
msgid_plural "Found {n} edits"
msgstr[0] ""
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
msgstr ""
@@ -8497,7 +8440,7 @@ msgid "This edit note was removed by an admin. No reason was provided."
msgstr ""
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
msgstr ""
@@ -8506,15 +8449,15 @@ msgstr ""
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8537,50 +8480,40 @@ msgstr ""
msgid "You are not currently able to add notes to this edit. ({url|Details})"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
msgstr ""
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
msgstr ""
@@ -8600,12 +8533,6 @@ msgstr ""
msgid "bot"
msgstr ""
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
-
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
"This field is intentionally left as it was originally entered (untranslated, "
@@ -8722,37 +8649,13 @@ msgstr ""
msgid "Summary"
msgstr ""
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8764,17 +8667,20 @@ msgstr ""
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
msgstr ""
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
msgstr ""
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
@@ -8798,19 +8704,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
msgstr ""
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8869,29 +8775,23 @@ msgstr ""
msgid "(new release group)"
msgstr ""
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr ""
-
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
msgstr ""
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
msgstr ""
#: ../root/edit/details/AddRemoveAlias.js:46
@@ -8904,17 +8804,17 @@ msgstr ""
msgid "Primary for locale"
msgstr ""
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
msgstr ""
@@ -8922,7 +8822,7 @@ msgstr ""
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
msgstr ""
@@ -8963,14 +8863,6 @@ msgstr ""
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
msgstr ""
@@ -8995,11 +8887,6 @@ msgstr ""
msgid "New recording"
msgstr ""
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
msgstr ""
@@ -9025,25 +8912,10 @@ msgstr ""
msgid "Deprecated:"
msgstr ""
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
-
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
msgstr ""
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
-
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
@@ -9064,6 +8936,7 @@ msgid "Search for the target URL."
msgstr ""
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
msgstr ""
@@ -9076,7 +8949,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9189,7 +9063,7 @@ msgid "New positions:"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
@@ -9208,8 +9082,8 @@ msgstr ""
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
#: ../root/edit/details/ReorderRelationships.js:21
@@ -9251,20 +9125,6 @@ msgstr ""
msgid "CD TOC:"
msgstr ""
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr ""
-
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
@@ -9275,11 +9135,6 @@ msgstr ""
msgid "Artist name:"
msgstr ""
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
-
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
msgstr ""
@@ -9289,8 +9144,8 @@ msgid "New relationships:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
@@ -9306,17 +9161,25 @@ msgid "New Status:"
msgstr ""
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
msgstr ""
@@ -9355,28 +9218,24 @@ msgstr ""
msgid "Change track artists:"
msgstr ""
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
-
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
msgstr ""
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
msgstr ""
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9384,11 +9243,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9405,47 +9266,19 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
-msgid "Status:"
+msgid "Status"
msgstr ""
#: ../root/elections/ElectionTable/ElectionTableRows.js:60
msgid "View details"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:23
-msgctxt "election status"
-msgid "Status"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
msgstr ""
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
-
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
msgstr ""
@@ -10118,7 +9951,7 @@ msgstr ""
msgid "Privileged User Accounts"
msgstr ""
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
msgstr ""
@@ -10270,7 +10103,7 @@ msgstr ""
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
msgstr ""
@@ -10437,39 +10270,33 @@ msgstr ""
msgid "Artist information"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
msgstr ""
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
msgstr ""
@@ -10584,11 +10411,11 @@ msgstr ""
msgid "Event information"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
msgstr ""
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
msgstr ""
@@ -10641,10 +10468,6 @@ msgctxt "place"
msgid "Closed"
msgstr ""
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
-
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
msgstr ""
@@ -10657,7 +10480,7 @@ msgstr ""
msgid "Recording information"
msgstr ""
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
msgstr ""
@@ -10688,27 +10511,27 @@ msgstr ""
msgid "No cover art available."
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
msgstr ""
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
msgstr ""
@@ -10716,21 +10539,13 @@ msgstr ""
msgid "Series information"
msgstr ""
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
-
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
msgstr ""
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr ""
@@ -10868,7 +10683,7 @@ msgid "Sorry, the page you're looking for does not exist."
msgstr ""
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
msgstr ""
@@ -10967,12 +10782,7 @@ msgstr ""
msgid "Request data:"
msgstr ""
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
-
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
msgstr ""
@@ -11106,7 +10916,7 @@ msgstr ""
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
@@ -11320,7 +11130,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
@@ -11328,11 +11138,6 @@ msgstr ""
msgid "Relationship Attribute"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
@@ -11344,6 +11149,7 @@ msgid "Parent attribute"
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
msgstr ""
@@ -11377,16 +11183,12 @@ msgstr ""
msgid "Add child"
msgstr ""
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
@@ -11406,7 +11208,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11480,7 +11282,7 @@ msgid "{type0}-{type1} relationship types"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
@@ -11499,7 +11301,7 @@ msgstr ""
msgid "{type0}-{type1}"
msgstr ""
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11607,8 +11409,8 @@ msgid ""
msgstr ""
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
msgstr ""
@@ -11814,8 +11616,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11825,10 +11627,10 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
@@ -11862,7 +11664,7 @@ msgstr ""
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11871,7 +11673,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -12151,7 +11953,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12231,7 +12033,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
@@ -12358,8 +12160,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12530,13 +12332,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12714,7 +12516,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12738,8 +12540,7 @@ msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -12958,20 +12759,6 @@ msgstr ""
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -13050,9 +12837,9 @@ msgstr ""
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
@@ -13061,9 +12848,9 @@ msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
@@ -13218,6 +13005,10 @@ msgstr ""
msgid "Last edited"
msgstr ""
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
msgstr ""
@@ -13227,7 +13018,7 @@ msgid "Other lookups"
msgstr ""
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13238,7 +13029,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new area}."
msgstr ""
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
msgstr ""
@@ -13248,9 +13039,10 @@ msgid "Documentation Search"
msgstr ""
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
msgstr ""
@@ -13286,7 +13078,7 @@ msgstr ""
msgid "Alternatively, you may {uri|add a new release group}."
msgstr ""
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
msgstr ""
@@ -13370,7 +13162,7 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
msgstr ""
@@ -13391,42 +13183,43 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
msgstr ""
@@ -13477,15 +13270,15 @@ msgid "Send me mails with edits to my subscriptions:"
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
@@ -13538,10 +13331,12 @@ msgid "This alias is no longer current."
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
msgstr ""
@@ -13588,7 +13383,7 @@ msgstr ""
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13612,33 +13407,33 @@ msgid "Show more artist credits"
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
msgstr ""
@@ -13656,7 +13451,7 @@ msgid "Try with indexed search instead."
msgstr ""
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
msgstr ""
@@ -13665,32 +13460,27 @@ msgstr ""
msgid "Clear recent items"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
msgstr ""
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
msgstr ""
@@ -13700,7 +13490,13 @@ msgid "Vote on all edits:"
msgstr ""
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
@@ -13738,11 +13534,11 @@ msgid "Annotation last modified on {date}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
@@ -13843,15 +13639,15 @@ msgstr ""
msgid "Search for a work"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
msgstr ""
@@ -13961,7 +13757,7 @@ msgid "Secondary type"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -14254,31 +14050,31 @@ msgctxt "plural"
msgid "Series"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
msgstr ""
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
msgstr ""
@@ -14299,7 +14095,8 @@ msgid "Began:"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
@@ -14356,8 +14153,8 @@ msgstr ""
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
@@ -14447,113 +14244,113 @@ msgstr ""
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14600,53 +14397,53 @@ msgstr ""
msgid "Add a new work"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
msgstr ""
@@ -14668,11 +14465,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
@@ -14707,11 +14504,11 @@ msgid ""
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14773,10 +14570,7 @@ msgstr ""
msgid "Cleaned up to"
msgstr ""
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
-
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
@@ -15111,8 +14905,8 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
@@ -15316,14 +15110,14 @@ msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
@@ -15332,7 +15126,7 @@ msgid "To use this tool, select some recordings using the checkboxes below."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
@@ -15384,34 +15178,34 @@ msgstr ""
msgid "[selected work]"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
msgstr ""
@@ -15438,15 +15232,11 @@ msgstr ""
msgid "Add lyrics language"
msgstr ""
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
-
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
msgstr ""
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
msgstr ""
@@ -15679,10 +15469,6 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr ""
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr ""
@@ -15744,23 +15530,23 @@ msgstr ""
msgid "URL Details"
msgstr ""
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
msgstr ""
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
msgstr ""
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
msgstr ""
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
msgstr ""
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
msgstr ""
@@ -15862,7 +15648,8 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
@@ -16089,10 +15876,6 @@ msgstr ""
msgid "General Information"
msgstr ""
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
-
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
msgstr ""
@@ -16134,191 +15917,183 @@ msgstr ""
msgid "Age:"
msgstr ""
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
msgstr ""
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
msgstr ""
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
msgstr ""
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
msgstr ""
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
msgstr ""
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
msgstr ""
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr ""
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
msgstr ""
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
msgstr ""
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
msgstr ""
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr ""
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr ""
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
msgstr ""
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
msgstr ""
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
msgstr ""
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
msgstr ""
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
msgstr ""
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
msgstr ""
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
msgstr ""
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
msgstr ""
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
msgstr ""
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
msgstr ""
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
msgstr ""
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
msgstr ""
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
msgstr ""
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
msgstr ""
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
msgstr ""
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
msgstr ""
@@ -16552,7 +16327,7 @@ msgstr ""
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
@@ -16566,7 +16341,7 @@ msgstr ""
msgid "This edit was cancelled."
msgstr ""
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
msgstr ""
diff --git a/po/mb_server.zh.po b/po/mb_server.zh.po
index e2bd47cb45f..09972094629 100644
--- a/po/mb_server.zh.po
+++ b/po/mb_server.zh.po
@@ -6,13 +6,15 @@
# Translators:
# Dian Li , 2009-2019
# Gary Liu, 2022
+# suming <331874545@qq.com>, 2023.
+# claybiockiller , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-27 17:01+0000\n"
-"PO-Revision-Date: 2023-08-18 12:59+0000\n"
-"Last-Translator: Anonymous \n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
+"PO-Revision-Date: 2023-11-04 22:28+0000\n"
+"Last-Translator: claybiockiller \n"
"Language-Team: Chinese (Simplified) \n"
"Language: zh\n"
@@ -20,7 +22,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.18.2\n"
+"X-Generator: Weblate 5.1\n"
#: ../root/components/common-macros.tt:12
msgid " ({text})"
@@ -28,32 +30,33 @@ msgstr " ({text})"
#: ../root/components/forms.tt:313
msgid "\"C\" is a single check digit."
-msgstr ""
+msgstr "\"C\" 是一位数校验码。"
#: ../root/components/forms.tt:323
msgid ""
"\"CC\" is the appropriate for the registrant two-character country code."
-msgstr ""
+msgstr "“CC” 适用于登记人的两个字符的国家/地区代码。"
#: ../root/components/forms.tt:312
msgid "\"DDD\" is a nine digit work identifier."
-msgstr ""
+msgstr "“DDD” 是一个九位数的作品标识符。"
#: ../root/components/forms.tt:326
msgid ""
"\"NNNNN\" is a unique 5-digit number identifying the particular sound "
"recording."
-msgstr ""
+msgstr "“NNNNN” 是唯一的5位数字,用于标识特定的录音。"
#: ../root/components/forms.tt:324
msgid ""
"\"XXX\" is a three character alphanumeric registrant code, uniquely "
"identifying the organisation which registered the code."
msgstr ""
+"“XXX”是一个三个字符的字母数字登记人代码,是登记该代码的组织的唯一标识。"
#: ../root/components/forms.tt:325
msgid "\"YY\" is the last two digits of the year of registration."
-msgstr ""
+msgstr "''YY''是注册年份的后两位。"
#: ../root/cdstub/cdstub.tt:4 ../root/release/edit/tracklist.tt:161
#: ../root/release/edit/tracklist.tt:451 ../root/cdstub/CDStubInfo.js:26
@@ -65,8 +68,8 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:88
#: ../root/recording/RecordingIndex.js:53
#: ../root/static/scripts/release/components/MediumTable.js:83
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1563
-#: ../root/utility/tableColumns.js:567
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1564
+#: ../root/utility/tableColumns.js:572
msgid "#"
msgstr "#"
@@ -80,23 +83,23 @@ msgstr "✕"
#: ../root/release/add_cover_art.tt:104
msgid "⚠ Error creating edit"
-msgstr ""
+msgstr "⚠ 编辑错误"
#: ../root/release/add_cover_art.tt:88
msgid "⚠ Error requesting signature"
-msgstr ""
+msgstr "⚠ 请求签名错误"
#: ../root/release/add_cover_art.tt:102
msgid "⚠ Error uploading image"
-msgstr ""
+msgstr "⚠ 图片上传错误"
#: ../root/release/add_cover_art.tt:103
msgid "⚠ Server busy, try again later"
-msgstr ""
+msgstr "⚠ 服务器繁忙,请稍后重试"
#: ../root/release/add_cover_art.tt:87
msgid "⚠ Unrecognized file"
-msgstr ""
+msgstr "⚠ 文件无法识别"
#: ../root/release/add_cover_art.tt:86
msgid "✓ Success"
@@ -115,11 +118,11 @@ msgstr "(无其他封面)"
#: ../root/edit/details/MergeReleases.js:239
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
-#: ../root/utility/tableColumns.js:508 ../root/utility/tableColumns.js:516
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/utility/tableColumns.js:513 ../root/utility/tableColumns.js:521
msgctxt "and"
msgid "/"
-msgstr ""
+msgstr "/"
#: ../root/release/edit/recordings.tt:137
msgid ""
@@ -128,10 +131,13 @@ msgid ""
"artists}, so don’t use the “copy artist credits” option while editing a "
"classical release unless you’re very sure it’s a good idea!"
msgstr ""
+"注意: 在古典音乐中,{csg_recording_artist|录音艺术家} 应该"
+"总是与{csg_track_artist|音轨艺术家} 不同,因此,除非您确认无误,否则在编辑古"
+"典音乐专辑时不要使用“复制艺术家名单”选项!"
#: ../root/components/common-macros.tt:480 ../root/recording/edit_form.tt:6
msgid "Warning:"
-msgstr ""
+msgstr "警告:"
#: ../root/cdtoc/lookup.tt:22
msgid ""
@@ -139,12 +145,15 @@ msgid ""
"tracklist appears correct, you may use it as a starting point as a new "
"MusicBrainz release"
msgstr ""
+"CD 存根成功匹配了你提供的唱片 ID。如果下面音轨列表内容正确,你可以将它作为 "
+"MusicBrainz 的新发行版"
#: ../root/release/edit/tracklist.tt:323
msgid ""
"A format is required. If you don’t know it, tick the “I don’t know” checkbox "
"next to the format dropdown."
msgstr ""
+"必须选择格式。 如果你不清楚,请勾选格式下拉菜单旁边的“我不知道”复选框。"
#: ../root/release/edit/information.tt:23
msgid "A release title is required."
@@ -154,14 +163,14 @@ msgstr "专辑标题必填。"
msgid ""
"A value of 1 or 2 indicates that either entity1 or entity0 are orderable, "
"respectively."
-msgstr ""
+msgstr "值1或2分别表示实体1或实体0是可排序的。"
#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
#: ../lib/MusicBrainz/Server/Data/Vote.pm:175
#: ../root/edit/components/Vote.js:100
msgctxt "vote"
msgid "Abstain"
-msgstr ""
+msgstr "放弃"
#: ../root/doc/edit_type.tt:8
msgid "Accept"
@@ -173,6 +182,8 @@ msgid ""
"for additional info (such as \"Encore\"). [mbid|name] allows linking to "
"artists and works."
msgstr ""
+"在行首插入“@”表示艺术家、“*”表示作品或乐曲、“#”表示补充信息(如“Encore”)。"
+"[mbid|name] 能链接艺术家和作品。"
#: ../root/area/create.tt:1 ../root/area/create.tt:3
msgid "Add Area"
@@ -201,14 +212,14 @@ msgstr "添加乐器"
#: ../root/label/create.tt:1 ../root/label/create.tt:3
msgid "Add Label"
-msgstr "添加厂牌"
+msgstr "添加唱片公司"
-#: ../root/release/edit/information.tt:213
-#: ../root/release/edit/information.tt:214
+#: ../root/release/edit/information.tt:215
+#: ../root/release/edit/information.tt:216
#: ../root/layout/components/BottomMenu.js:248
msgctxt "button/menu"
msgid "Add Label"
-msgstr "添加厂牌"
+msgstr "添加唱片公司"
#: ../root/release/edit/layout.tt:67 ../root/release/edit/tracklist.tt:267
#: ../root/static/scripts/release-editor/dialogs.js:309
@@ -224,8 +235,8 @@ msgctxt "header"
msgid "Add Release"
msgstr "添加专辑"
-#: ../root/release/edit/information.tt:169
-#: ../root/release/edit/information.tt:170
+#: ../root/release/edit/information.tt:171
+#: ../root/release/edit/information.tt:172
msgctxt "button/menu"
msgid "Add Release Event"
msgstr "添加专辑事件"
@@ -266,9 +277,9 @@ msgstr "添加新示例"
msgid ""
"Add a medium by clicking “Add Medium” below, or tick the box confirming the "
"tracklist is unknown."
-msgstr ""
+msgstr "点击下方的 “添加媒介” 添加一个媒介,或勾选方框确认音轨列表为未知。"
-#: ../root/release/edit/recordings.tt:212
+#: ../root/release/edit/recordings.tt:178
#: ../root/static/scripts/edit/components/AddEntityDialog.js:21
msgid "Add a new recording"
msgstr "添加新录音"
@@ -293,14 +304,17 @@ msgstr "添加 {item}"
msgid "Add {num} track(s)"
msgstr "添加 {num} 条音轨"
-#: ../root/release/edit/information.tt:245
+#: ../root/release/edit/information.tt:247
msgid "Additional information"
msgstr "附加信息"
-#: ../root/place/edit_form.tt:16
-#: ../root/layout/components/sidebar/PlaceSidebar.js:82
-msgid "Address:"
-msgstr "地址:"
+#: ../root/place/edit_form.tt:16 ../root/components/list/PlaceList.js:66
+#: ../root/edit/details/AddPlace.js:55 ../root/edit/details/EditPlace.js:68
+#: ../root/layout/components/sidebar/PlaceSidebar.js:84
+#: ../root/report/PlacesWithoutCoordinates.js:41
+#: ../root/search/components/PlaceResults.js:65
+msgid "Address"
+msgstr "地址"
#: ../root/release/edit/recordings.tt:3
msgid ""
@@ -308,32 +322,44 @@ msgid ""
"recording for each track. Choose “Add a new recording” if an appropriate one "
"doesn’t exist yet."
msgstr ""
+"所有音轨都要求关联一个专辑。点击“编辑”为每条音轨选择一个转机。如果没有合适的"
+"专辑则选择“添加一新专辑”。"
#: ../root/components/common-macros.tt:577
msgid ""
"An entity with that name and disambiguation already exists. You must enter a "
"unique disambiguation comment."
-msgstr ""
+msgstr "具有该名称并消除歧义的实体已经存在。您必须输入唯一的消歧注释。"
#: ../root/release/edit/tracklist.tt:144
msgid "An error occurred: "
-msgstr ""
+msgstr "发生错误: "
-#: ../root/release/edit/information.tt:249
-msgid "Annotation:"
-msgstr ""
+#: ../root/release/edit/information.tt:251
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
+#: ../root/annotation/AnnotationRevision.js:32
+#: ../root/annotation/EditAnnotation.js:74
+#: ../root/layout/components/Search.js:41
+#: ../root/report/hooks/useAnnotationColumns.js:28
+#: ../root/search/components/AnnotationResults.js:56
+#: ../root/search/components/SearchForm.js:45
+#: ../root/static/scripts/common/components/Annotation.js:51
+msgid "Annotation"
+msgstr "注释"
#: ../root/edit/search_macros.tt:423
msgid "Applied Edit Count of Editor"
-msgstr ""
+msgstr "应用编辑器的编辑计数"
#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
#: ../lib/MusicBrainz/Server/Data/Vote.pm:178
msgctxt "vote"
msgid "Approve"
-msgstr "赞同"
+msgstr "通过"
-#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Area.pm:7
+#: ../root/artist/edit_form.tt:20 ../root/edit/search_macros.tt:423
+#: ../root/label/edit_form.tt:18 ../root/place/edit_form.tt:19
+#: ../lib/MusicBrainz/Server/Edit/Area.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:44
#: ../root/components/list/AreaList.js:46
#: ../root/components/list/ArtistList.js:92
@@ -343,8 +369,11 @@ msgstr "赞同"
#: ../root/edit/details/AddPlace.js:61 ../root/edit/details/EditArea.js:43
#: ../root/edit/details/EditArtist.js:108 ../root/edit/details/EditLabel.js:119
#: ../root/edit/details/EditPlace.js:75 ../root/layout/components/Search.js:35
+#: ../root/layout/components/sidebar/ArtistSidebar.js:126
+#: ../root/layout/components/sidebar/LabelSidebar.js:90
+#: ../root/layout/components/sidebar/PlaceSidebar.js:91
#: ../root/report/PlacesWithoutCoordinates.js:42
-#: ../root/search/components/ArtistResults.js:56
+#: ../root/search/components/ArtistResults.js:55
#: ../root/search/components/LabelResults.js:69
#: ../root/search/components/PlaceResults.js:66
#: ../root/search/components/SearchForm.js:43
@@ -352,24 +381,18 @@ msgstr "赞同"
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:48
#: ../root/user/UserProfile.js:49
msgid "Area"
-msgstr "地区"
+msgstr "区域"
#: ../root/area/edit_form.tt:8
msgid "Area Details"
-msgstr ""
-
-#: ../root/artist/edit_form.tt:20 ../root/label/edit_form.tt:18
-#: ../root/place/edit_form.tt:19
-#: ../root/layout/components/sidebar/ArtistSidebar.js:120
-#: ../root/layout/components/sidebar/LabelSidebar.js:87
-#: ../root/layout/components/sidebar/PlaceSidebar.js:88
-msgid "Area:"
-msgstr ""
+msgstr "区域详细信息"
#: ../root/cdstub/cdstub.tt:7 ../root/cdtoc/attach_filter_release.tt:29
#: ../root/cdtoc/list.tt:8 ../root/cdtoc/lookup.tt:42
-#: ../root/edit/search_macros.tt:423 ../root/release/edit/tracklist.tt:163
-#: ../root/release/edit/tracklist.tt:453
+#: ../root/cdtoc/lookup.tt:75 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/information.tt:26 ../root/release/edit/tracklist.tt:110
+#: ../root/release/edit/tracklist.tt:163 ../root/release/edit/tracklist.tt:453
+#: ../root/release_group/set_cover_art.tt:32
#: ../lib/MusicBrainz/Server/Edit/Artist.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:38
#: ../root/cdstub/BrowseCDStubs.js:37 ../root/cdstub/CDStubInfo.js:28
@@ -394,8 +417,14 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:38
#: ../root/edit/details/historic/AddRelease.js:90
#: ../root/edit/details/historic/AddTrackKV.js:41
-#: ../root/edit/details/historic/EditTrack.js:35 ../root/isrc/Index.js:67
+#: ../root/edit/details/historic/ChangeArtistQuality.js:24
+#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
+#: ../root/edit/details/historic/EditTrack.js:35
+#: ../root/edit/details/historic/MoveRelease.js:30
+#: ../root/edit/details/historic/RemoveRelease.js:26 ../root/isrc/Index.js:67
#: ../root/layout/components/Search.js:24
+#: ../root/layout/components/sidebar/RecordingSidebar.js:49
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
#: ../root/release_group/ReleaseGroupIndex.js:168
#: ../root/report/DuplicateArtists.js:67
#: ../root/report/DuplicateReleaseGroups.js:59
@@ -412,11 +441,12 @@ msgstr ""
#: ../root/search/components/CDStubResults.js:45
#: ../root/search/components/RecordingResults.js:143
#: ../root/search/components/ReleaseGroupResults.js:64
-#: ../root/search/components/ReleaseResults.js:113
+#: ../root/search/components/ReleaseResults.js:112
#: ../root/search/components/SearchForm.js:37
#: ../root/static/scripts/common/constants.js:36
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:50
#: ../root/static/scripts/common/utility/formatSetlist.js:52
+#: ../root/static/scripts/edit/components/forms.js:29
#: ../root/static/scripts/release/components/MediumTable.js:86
#: ../root/taglookup/Form.js:25 ../root/user/UserProfile.js:50
msgid "Artist"
@@ -424,30 +454,17 @@ msgstr "艺术家"
#: ../root/edit/search_macros.tt:423
msgid "Artist Area"
-msgstr ""
+msgstr "艺术家区域"
#: ../root/artist/edit_form.tt:10
msgid "Artist Details"
-msgstr ""
-
-#: ../root/cdtoc/lookup.tt:75 ../root/release/edit/information.tt:26
-#: ../root/release/edit/tracklist.tt:110
-#: ../root/release_group/set_cover_art.tt:32
-#: ../root/edit/details/historic/ChangeArtistQuality.js:24
-#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
-#: ../root/edit/details/historic/MoveRelease.js:30
-#: ../root/edit/details/historic/RemoveRelease.js:26
-#: ../root/layout/components/sidebar/RecordingSidebar.js:49
-#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
-#: ../root/static/scripts/edit/components/forms.js:29
-msgid "Artist:"
-msgstr "艺术家:"
+msgstr "艺术家详细信息"
#: ../root/cdtoc/attach_artist_releases.tt:40
#: ../root/cdtoc/attach_filter_release.tt:54
msgctxt "button/menu"
msgid "Attach CD TOC"
-msgstr ""
+msgstr "附上 CD 目录"
#: ../root/cdtoc/attach_artist_releases.tt:3
#: ../root/cdtoc/attach_artist_releases.tt:4
@@ -458,27 +475,40 @@ msgstr ""
#: ../root/cdtoc/SelectArtistForCDToc.js:32
msgctxt "header"
msgid "Attach CD TOC"
-msgstr ""
+msgstr "附上 CD 目录"
#: ../root/cdtoc/lookup.tt:66 ../root/release/edit/tracklist.tt:478
msgid "Attach Disc ID"
-msgstr ""
+msgstr "附上唱片 ID"
#: ../root/cdtoc/index.tt:8
msgid "Attached to releases"
-msgstr ""
+msgstr "附上发行日期"
#: ../root/relationship/linktype/form.tt:52
-msgid "Attributes:"
-msgstr ""
+#: ../root/admin/attributes/Attribute.js:72
+#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
+#: ../root/admin/attributes/Language.js:33
+#: ../root/admin/attributes/Script.js:33
+#: ../root/components/RelationshipsTable.js:336
+#: ../root/edit/details/AddRelationshipType.js:169
+#: ../root/edit/details/EditRelationshipType.js:297
+#: ../root/edit/details/RemoveRelationshipType.js:117
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
+#: ../root/utility/tableColumns.js:671
+msgid "Attributes"
+msgstr "属性"
#: ../root/edit/search_macros.tt:397
msgid "Auto-Editor"
-msgstr ""
+msgstr "自动确认编辑器"
#: ../root/cdtoc/attach_artist_releases.tt:19
#: ../root/cdtoc/attach_filter_release.tt:33 ../root/cdtoc/list.tt:13
#: ../root/cdtoc/lookup.tt:47 ../root/release/edit/duplicates.tt:17
+#: ../root/release/edit/information.tt:222
+#: ../root/release_group/set_cover_art.tt:62
#: ../root/components/list/ReleaseList.js:139
#: ../root/edit/details/AddRelease.js:112
#: ../root/edit/details/EditBarcodes.js:45
@@ -488,25 +518,20 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:242
#: ../root/edit/details/historic/AddRelease.js:125
#: ../root/edit/details/historic/EditReleaseEvents.js:113
+#: ../root/layout/components/sidebar/CDStubSidebar.js:71
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:128
#: ../root/otherlookup/OtherLookupForm.js:62
#: ../root/release_group/ReleaseGroupIndex.js:174
#: ../root/report/ReleasesSameBarcode.js:40
-#: ../root/search/components/ReleaseResults.js:119
+#: ../root/search/components/ReleaseResults.js:118
msgid "Barcode"
msgstr "条码"
-#: ../root/release/edit/information.tt:220
-#: ../root/release_group/set_cover_art.tt:62
-#: ../root/layout/components/sidebar/CDStubSidebar.js:63
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:126
-msgid "Barcode:"
-msgstr "条形码:"
-
#: ../root/cdtoc/lookup.tt:33
msgid ""
"Based on the above CD stub, we also found the following releases in "
"MusicBrainz that may be related:"
-msgstr ""
+msgstr "根据以上 CD 存根,我们还在 MusicBrainz 中找到以下可能相关的发行版:"
#: ../root/release/edit/duplicates.tt:4
msgid ""
@@ -514,16 +539,28 @@ msgid ""
"similar release to already exist in MusicBrainz. If you wish to base your "
"release on an existing release, select it below."
msgstr ""
+"根据您提供的信息,我们发现MusicBrainz中已经存在一下类似的发行版。如果您希望将"
+"您的版本基于现有的基础上,请在下面选择它。"
-#: ../root/artist/edit_form.tt:42
-msgid "Begin Area:"
-msgstr ""
+#: ../root/artist/edit_form.tt:42 ../root/components/list/ArtistList.js:102
+#: ../root/search/components/ArtistResults.js:57
+msgid "Begin Area"
+msgstr "出生地"
#: ../root/artist/edit_form.tt:38 ../root/components/forms.tt:212
#: ../root/event/edit_form.tt:36 ../root/artist/utils.js:34
+#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
+#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
+#: ../root/edit/details/AddRemoveAlias.js:90
+#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
+#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
+#: ../root/edit/details/EditPlace.js:93
#: ../root/layout/components/sidebar/AreaSidebar.js:58
-msgid "Begin date:"
-msgstr ""
+#: ../root/report/RecordingsWithFutureDates.js:34
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
+msgid "Begin date"
+msgstr "开始日期"
#: ../root/release/add_cover_art.tt:95 ../root/search/error/InternalError.js:29
msgid ""
@@ -531,57 +568,63 @@ msgid ""
"so at {bugs|our bug tracker}. The information below will help, so please be "
"sure to include it!"
msgstr ""
+"以下是错误信息。如果您想提交一份缺陷报告,您可以前往 {bugs|我们的缺陷追踪"
+"器}。请务必在报告中包含以下的信息!"
#: ../root/layout.tt:117 ../root/layout/components/ExternalLinks.js:132
#: ../root/layout/components/Footer.js:33
msgid "Blog"
-msgstr ""
+msgstr "博客"
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:128
#: ../root/admin/PrivilegeSearch.js:121
msgid "Bot"
-msgstr ""
+msgstr "机器人"
#: ../root/admin/attributes/form.tt:30
msgid ""
"Both Other and Uncommon are shown in the \"other\" section, but Uncommon "
"should be used for scripts in Unicode which are unlikely to be used."
msgstr ""
+"“其他”和“不常见”都显示在“其他”部分,但“不常见”应用于不太可能使用的Unicode脚"
+"本。"
#: ../root/layout.tt:125 ../root/layout/components/Footer.js:52
msgid ""
"Brought to you by {MeB|MetaBrainz Foundation} and our {spon|sponsors} and "
"{supp|supporters}. Cover Art provided by the {caa|Cover Art Archive}."
msgstr ""
+"由 {MeB|MetaBrainz 基金会} 和我们的 {spon|赞助商} 和 {supp|支持者} 为您呈现。"
+"专辑封面图片由 {caa|Cover Art Archive} 提供。"
#: ../root/layout.tt:116 ../root/layout/components/Footer.js:32
#: ../root/main/index.js:209
msgid "Bug Tracker"
-msgstr ""
+msgstr "错误追踪器"
#: ../root/release/edit/tracklist.tt:6
msgid "By default, the parser expects the following format:"
-msgstr ""
+msgstr "默认情况下,解析器需要一下格式:"
#: ../root/cdtoc/lookup.tt:21
msgid "CD Stub found"
-msgstr ""
+msgstr "找到 CD 存根"
#: ../root/cdstub/header.tt:5 ../root/cdstub/CDStubHeader.js:21
msgid "CD stub by {artist}"
-msgstr ""
+msgstr "{artist} 的 CD 存根"
#: ../root/release/edit/tracklist.tt:248
msgid "CD stub import"
-msgstr ""
+msgstr "输入 CD 存根"
#: ../root/cdstub/layout.tt:2 ../root/cdstub/CDStubLayout.js:27
msgid "CD stub “{title}” by {artist}"
-msgstr ""
+msgstr "{artist} 制作的 “{title}” CD 存根"
#: ../root/doc/edit_type.tt:42
msgid "Can be approved"
-msgstr ""
+msgstr "可被批准"
#: ../root/layout/merge-helper.tt:34 ../root/release/edit/layout.tt:59
#: ../root/release/edit/tracklist.tt:117 ../root/area/AreaMerge.js:51
@@ -599,7 +642,7 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/DialogButtons.js:28
#: ../root/work/WorkMerge.js:65
msgid "Cancel"
-msgstr ""
+msgstr "取消"
#: ../root/relationship/linktype/form.tt:26
#: ../root/relationship/linktype/form.tt:31
@@ -612,155 +655,139 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:94
#: ../root/relationship/linktype/RelationshipTypePairTree.js:103
msgid "Cardinality of {entity_placeholder}"
-msgstr ""
+msgstr "{entity_placeholder}的基数"
-#: ../root/release/edit/information.tt:192
+#: ../root/release/edit/information.tt:194
msgid "Cat. No:"
-msgstr ""
+msgstr "Cat. No:"
#: ../root/cdtoc/attach_artist_releases.tt:18
#: ../root/cdtoc/attach_filter_release.tt:32 ../root/cdtoc/list.tt:12
#: ../root/cdtoc/lookup.tt:46 ../root/release/edit/duplicates.tt:16
+#: ../root/release_group/set_cover_art.tt:56
#: ../root/edit/details/MergeReleases.js:241
#: ../root/recording/RecordingIndex.js:62
#: ../root/release_group/ReleaseGroupIndex.js:173
-#: ../root/search/components/ReleaseResults.js:118
-#: ../root/utility/tableColumns.js:482 ../root/utility/tableColumns.js:487
+#: ../root/search/components/ReleaseResults.js:117
+#: ../root/utility/tableColumns.js:487 ../root/utility/tableColumns.js:492
msgid "Catalog#"
-msgstr ""
-
-#: ../root/release_group/set_cover_art.tt:56
-msgid "Catalog#:"
-msgstr ""
-
-#: ../root/admin/attributes/form.tt:53 ../root/admin/attributes/Attribute.js:82
-#: ../root/edit/details/AddRelationshipAttribute.js:50
-#: ../root/edit/details/EditRelationshipAttribute.js:93
-msgid "Child order"
-msgstr ""
+msgstr "目录#"
+#: ../root/admin/attributes/form.tt:53
#: ../root/relationship/linkattributetype/form.tt:7
#: ../root/relationship/linktype/form.tt:7
+#: ../root/admin/attributes/Attribute.js:82
+#: ../root/edit/details/AddRelationshipAttribute.js:50
+#: ../root/edit/details/EditRelationshipAttribute.js:93
#: ../root/edit/details/EditRelationshipType.js:241
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:122
#: ../root/relationship/linktype/RelationshipTypeIndex.js:162
#: ../root/relationship/linktype/RelationshipTypePairTree.js:58
-msgid "Child order:"
-msgstr ""
+msgid "Child order"
+msgstr "子订单"
#: ../root/release/edit/recordings.tt:114
msgid "Click Edit to edit the recording associations for this disc."
-msgstr ""
+msgstr "单击“编辑”,编辑此光盘的录制关联。"
#: ../root/release/edit/tracklist.tt:237 ../root/release/edit/tracklist.tt:266
msgid "Close"
-msgstr ""
+msgstr "关闭"
#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditHeader.js:155
+#: ../root/edit/components/EditSidebar.js:59
msgid "Closed"
-msgstr ""
+msgstr "已关闭"
#: ../root/artist/split.tt:36
msgid "Collaborators on this artist"
-msgstr ""
+msgstr "此艺术家的合作编辑者"
#: ../root/release/edit/tracklist.tt:301
msgid "Collapse medium"
-msgstr ""
+msgstr "崩溃介质"
-#: ../root/cdstub/index.tt:3 ../root/cdstub/CDStubIndex.js:36
+#: ../root/cdstub/index.tt:3 ../root/release/add_cover_art.tt:69
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:71 ../root/cdstub/CDStubIndex.js:36
msgid "Comment"
msgstr "注释"
-#: ../root/release/add_cover_art.tt:69 ../root/release/add_cover_art.tt:137
-#: ../root/release/reorder_cover_art.tt:19
-#: ../root/release_group/set_cover_art.tt:71
-#: ../root/edit/details/AddCoverArt.js:54
-#: ../root/edit/details/EditCoverArt.js:67
-#: ../root/edit/details/RemoveCoverArt.js:56
-#: ../root/release/CoverArtFields.js:93
-msgid "Comment:"
-msgstr ""
-
#: ../root/place/edit_form.tt:28 ../root/edit/details/AddPlace.js:67
#: ../root/edit/details/EditPlace.js:86
+#: ../root/layout/components/sidebar/PlaceSidebar.js:99
msgid "Coordinates"
-msgstr ""
+msgstr "坐标"
#: ../root/release/edit/recordings.tt:149
msgid "Copy all track artist credits to associated recordings."
-msgstr ""
+msgstr "将所有音轨艺术家名单复制到关联的音轨。"
#: ../root/release/edit/recordings.tt:143
msgid "Copy all track titles to associated recordings."
-msgstr ""
+msgstr "将所有音轨标题复制到关联的音轨。"
#: ../root/components/forms.tt:242
#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:122
msgid "Copy name"
-msgstr ""
+msgstr "复制曲名"
#: ../root/release/edit/information.tt:83
msgid "Copy the release artist credit to the release group"
-msgstr ""
+msgstr "将艺术家发行信息复制到发行组"
#: ../root/release/edit/information.tt:68
msgid "Copy the release title to the release group"
-msgstr ""
+msgstr "将发行名复制到发行组"
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:44 ../root/release/edit/duplicates.tt:14
+#: ../root/release/edit/information.tt:156
+#: ../root/release_group/set_cover_art.tt:41
#: ../root/edit/details/EditReleaseLabel.js:113
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:122
#: ../root/edit/details/historic/EditReleaseEvents.js:110
#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/common/components/FilterForm.js:187
-#: ../root/utility/tableColumns.js:504 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:509 ../root/utility/tableColumns.js:521
msgid "Country"
msgstr "地区"
-#: ../root/release/edit/information.tt:154
-#: ../root/release_group/set_cover_art.tt:41
-msgid "Country:"
-msgstr ""
-
#: ../root/release_group/set_cover_art.tt:67
#: ../root/components/EntityTabs.js:114 ../root/release/CoverArt.js:57
#: ../root/user/UserProfile.js:51
msgid "Cover Art"
msgstr "专辑封面"
-#: ../root/edit/search_macros.tt:423
-msgid "Created"
-msgstr ""
-
#: ../root/release/add_cover_art.tt:85
msgid "Creating edit..."
-msgstr ""
+msgstr "正在创建编辑"
#: ../root/release/edit/tracklist.tt:81
msgid "Custom delimiter"
-msgstr ""
+msgstr "自定义分隔符"
-#: ../root/release/edit/information.tt:146
+#: ../root/release/edit/information.tt:148
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:253
#: ../root/static/scripts/edit/components/PartialDateInput.js:186
msgid "DD"
-msgstr "DD"
+msgstr "日"
#: ../root/medium/tracklist.tt:37 ../root/release/edit/tracklist.tt:466
#: ../root/medium/MediumTracklist.js:53
#: ../root/static/scripts/release/components/MediumTable.js:128
msgid "Data Tracks"
-msgstr ""
+msgstr "数据音轨"
#: ../root/cdtoc/attach_artist_releases.tt:16
#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
#: ../root/cdtoc/lookup.tt:43 ../root/release/edit/duplicates.tt:13
+#: ../root/release/edit/information.tt:130
+#: ../root/release_group/set_cover_art.tt:37
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:25
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:30
#: ../root/admin/statistics-events/StatisticsEventIndex.js:26
@@ -769,14 +796,16 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:239
#: ../root/edit/details/historic/AddRelease.js:121
#: ../root/edit/details/historic/EditReleaseEvents.js:109
-#: ../root/elections/ElectionVotes.js:28 ../root/recording/RecordingIndex.js:60
+#: ../root/elections/ElectionVotes.js:28
+#: ../root/layout/components/sidebar/EventSidebar.js:61
+#: ../root/recording/RecordingIndex.js:60
#: ../root/release_group/ReleaseGroupIndex.js:171
#: ../root/search/components/EventResults.js:74
-#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/ReleaseResults.js:115
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:106
#: ../root/static/scripts/common/components/FilterForm.js:225
-#: ../root/utility/tableColumns.js:279 ../root/utility/tableColumns.js:284
-#: ../root/utility/tableColumns.js:510 ../root/utility/tableColumns.js:516
+#: ../root/utility/tableColumns.js:284 ../root/utility/tableColumns.js:289
+#: ../root/utility/tableColumns.js:515 ../root/utility/tableColumns.js:521
msgid "Date"
msgstr "日期"
@@ -784,13 +813,7 @@ msgstr "日期"
#: ../root/event/edit_form.tt:32
#: ../root/static/scripts/edit/components/DateRangeFieldset.js:184
msgid "Date Period"
-msgstr ""
-
-#: ../root/release/edit/information.tt:128
-#: ../root/release_group/set_cover_art.tt:37
-#: ../root/layout/components/sidebar/EventSidebar.js:59
-msgid "Date:"
-msgstr ""
+msgstr "日期期限"
#: ../root/artist/edit_form.tt:36 ../root/components/forms.tt:210
#: ../root/event/edit_form.tt:34
@@ -799,12 +822,13 @@ msgid ""
"Dates are in the format YYYY-MM-DD. Partial dates such as YYYY-MM or just "
"YYYY are OK, or you can omit the date entirely."
msgstr ""
-
-#: ../root/edit/search_macros.tt:120
-msgid "Delete"
-msgstr "删除"
+"日期的格式为YYYY-MM-DD。部分日期(如YYYY-MM或只是YYYY)也可以,或者你可以省略"
+"该日期。"
#: ../root/admin/attributes/form.tt:61 ../root/doc/edit_type.tt:23
+#: ../root/instrument/edit_form.tt:13
+#: ../root/relationship/linkattributetype/form.tt:15
+#: ../root/relationship/linktype/form.tt:20
#: ../root/admin/attributes/Attribute.js:80
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:33
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:42
@@ -824,18 +848,12 @@ msgstr "删除"
#: ../root/instrument/InstrumentIndex.js:34
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:110
#: ../root/relationship/linktype/RelationshipTypeIndex.js:146
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
#: ../root/search/components/InstrumentResults.js:55
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:206
-#: ../root/utility/tableColumns.js:676
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:209
+#: ../root/utility/tableColumns.js:681
msgid "Description"
-msgstr ""
-
-#: ../root/instrument/edit_form.tt:13
-#: ../root/relationship/linkattributetype/form.tt:15
-#: ../root/relationship/linktype/form.tt:20
-#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
-msgid "Description:"
-msgstr ""
+msgstr "描述"
#: ../root/doc/edit_type.tt:28 ../root/components/EntityTabs.js:146
#: ../root/elections/ElectionDetails.js:29 ../root/entity/Details.js:91
@@ -846,7 +864,7 @@ msgstr "详细信息"
#: ../root/area/edit_form.tt:10 ../root/artist/edit_form.tt:14
#: ../root/event/edit_form.tt:13 ../root/instrument/edit_form.tt:10
#: ../root/label/edit_form.tt:13 ../root/place/edit_form.tt:13
-#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:256
+#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:258
#: ../root/release_group/edit_form.tt:15 ../root/series/edit_form.tt:13
#: ../root/work/edit_form.tt:13 ../root/edit/details/AddArea.js:54
#: ../root/edit/details/AddArtist.js:62 ../root/edit/details/AddEvent.js:44
@@ -867,57 +885,73 @@ msgstr "详细信息"
#: ../root/edit/details/EditSeries.js:48 ../root/edit/details/EditWork.js:59
#: ../root/static/scripts/genre/components/GenreEditForm.js:151
msgid "Disambiguation"
-msgstr ""
+msgstr "消歧义"
-#: ../root/release/discids.tt:8 ../root/edit/details/SetTrackLengths.js:54
+#: ../root/release/discids.tt:8 ../root/cdtoc/CDTocInfo.js:32
+#: ../root/edit/details/AddDiscId.js:34 ../root/edit/details/MoveDiscId.js:26
+#: ../root/edit/details/RemoveDiscId.js:31
+#: ../root/edit/details/SetTrackLengths.js:54
+#: ../root/edit/details/historic/AddDiscId.js:27
+#: ../root/edit/details/historic/MoveDiscId.js:21
+#: ../root/edit/details/historic/RemoveDiscId.js:23
#: ../root/otherlookup/OtherLookupForm.js:112
#: ../root/utility/tableColumns.js:199 ../root/utility/tableColumns.js:204
msgid "Disc ID"
-msgstr ""
+msgstr "唱片 ID"
#: ../root/cdstub/index.tt:10 ../root/cdstub/CDStubIndex.js:44
msgid "Disc ID information"
-msgstr ""
+msgstr "唱片ID信息"
#: ../root/cdtoc/index.tt:3
msgid "Disc ID “{discid}
”"
-msgstr ""
+msgstr "唱片 ID “{discid}
”"
#: ../root/cdtoc/index.tt:1
msgid "Disc ID “{discid}”"
-msgstr ""
+msgstr "唱片 ID “{discid}”"
#: ../root/release/discids.tt:1 ../root/release/discids.tt:3
#: ../root/components/EntityTabs.js:104 ../root/report/ReportsIndex.js:624
msgid "Disc IDs"
-msgstr ""
+msgstr "唱片IDs"
#: ../root/release/edit/duplicates.tt:40
msgid "Do not use any of the above releases as a starting point"
-msgstr ""
+msgstr "请勿使用上述任何版本作为起点"
#: ../root/relationship/linktype/form.tt:65
-msgid "Documentation:"
-msgstr ""
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
+#: ../root/edit/details/AddRelationshipType.js:187
+#: ../root/edit/details/EditRelationshipType.js:327
+#: ../root/layout/components/BottomMenu.js:293
+#: ../root/layout/components/Search.js:51
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
+#: ../root/search/components/SearchForm.js:56
+msgid "Documentation"
+msgstr "说明文件"
#: ../root/layout.tt:112 ../root/layout/components/Footer.js:26
msgid "Donate"
msgstr "捐助"
#: ../root/release/edit/macros.tt:54
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:166
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:165
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:219
#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:64
#: ../root/static/scripts/edit/components/URLInputPopover.js:134
#: ../root/static/scripts/relationship-editor/components/DialogButtons.js:37
msgid "Done"
-msgstr ""
+msgstr "已完成"
#: ../root/release/edit/recordings.tt:158
msgid ""
"Each track in the MusicBrainz database has to be linked to a recording, "
"choose the appropriate recording or look for it in the database."
msgstr ""
+"MusicBrainz数据库中的每首音轨都必须链接到录音,选择合适的录音或在数据库中查"
+"找。"
#: ../root/cdtoc/list.tt:18 ../root/entity/edit.tt:1
#: ../root/release/discids.tt:12 ../root/release/edit/recordings.tt:73
@@ -941,63 +975,63 @@ msgstr ""
#: ../root/static/scripts/edit/components/ArtistCreditEditor.js:444
#: ../root/user/UserCollections.js:134
msgid "Edit"
-msgstr ""
+msgstr "修改"
#: ../root/artist/edit_credit.tt:1 ../root/artist/edit_credit.tt:6
msgid "Edit Artist Credit"
-msgstr ""
+msgstr "编辑艺术家荣誉"
#: ../root/admin/attributes/edit.tt:1 ../root/admin/attributes/edit.tt:3
msgid "Edit Attribute"
-msgstr ""
+msgstr "编辑属性"
#: ../root/release/edit_cover_art.tt:1 ../root/release/edit_cover_art.tt:4
msgid "Edit Cover Art"
-msgstr ""
+msgstr "编辑封面"
#: ../root/forms/edit-note.tt:2 ../root/release/edit/editnote.tt:27
#: ../root/release/edit/layout.tt:18
#: ../root/static/scripts/edit/components/EnterEditNote.js:48
msgid "Edit Note"
-msgstr ""
+msgstr "编辑备注"
#: ../root/edit/search_macros.tt:423
msgid "Edit Note Authors"
-msgstr ""
+msgstr "编辑备注作者"
#: ../root/edit/search_macros.tt:423
msgid "Edit Note Content"
-msgstr ""
+msgstr "编辑备注内容"
#: ../root/relationship/linkattributetype/edit.tt:1
#: ../root/relationship/linkattributetype/edit.tt:3
msgid "Edit Relationship Attribute"
-msgstr ""
+msgstr "编辑关系属性"
#: ../root/relationship/linktype/edit.tt:1
#: ../root/relationship/linktype/edit.tt:3
msgid "Edit Relationship Type"
-msgstr ""
+msgstr "编辑关系类型"
#: ../root/doc/edit_type.tt:18 ../root/doc/edit_types.tt:1
-#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:96
+#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:99
#: ../root/layout/components/BottomMenu.js:315
msgid "Edit Types"
-msgstr ""
+msgstr "编辑类型"
-#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:28
+#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:26
#: ../root/static/scripts/edit/components/URLInputPopover.js:146
msgid "Edit URL"
-msgstr ""
+msgstr "修改URL"
#: ../root/components/forms.tt:36 ../root/components/forms.tt:40
#: ../root/static/scripts/edit/components/EnterEditNote.js:77
msgid "Edit note:"
-msgstr ""
+msgstr "编辑备注:"
#: ../root/edit/search_macros.tt:423
msgid "Edited entity"
-msgstr ""
+msgstr "已编辑的内容"
#: ../root/edit/search_macros.tt:423
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:48
@@ -1007,29 +1041,40 @@ msgstr ""
#: ../root/search/components/SearchForm.js:47
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:105
msgid "Editor"
-msgstr ""
+msgstr "编辑者"
#: ../root/edit/search_macros.tt:423
msgid "Editor Flag"
-msgstr ""
+msgstr "编辑器标志"
#: ../root/release/edit/tracklist.tt:45
msgid "Enable vinyl track numbers"
-msgstr ""
+msgstr "启用黑胶音轨编号"
-#: ../root/artist/edit_form.tt:56
-msgid "End Area:"
-msgstr ""
+#: ../root/artist/edit_form.tt:56 ../root/components/list/ArtistList.js:112
+#: ../root/search/components/ArtistResults.js:59
+msgid "End Area"
+msgstr "过世地"
#: ../root/artist/edit_form.tt:51 ../root/components/forms.tt:214
#: ../root/event/edit_form.tt:38 ../root/artist/utils.js:65
+#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
+#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
+#: ../root/edit/details/AddRemoveAlias.js:97
+#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
+#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
+#: ../root/edit/details/EditPlace.js:101
+#: ../root/elections/ElectionTable/index.js:25
#: ../root/layout/components/sidebar/AreaSidebar.js:64
-msgid "End date:"
-msgstr ""
+#: ../root/report/RecordingsWithFutureDates.js:39
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
+msgid "End date"
+msgstr "结束日期"
#: ../root/relationship/linktype/form.tt:112
msgid "Endpoint:"
-msgstr ""
+msgstr "终点:"
#: ../root/components/forms.tt:258 ../root/components/forms.tt:283
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:113
@@ -1038,24 +1083,29 @@ msgstr "英语"
#: ../root/release/edit/tracklist.tt:3
msgid "Enter a tracklist below:"
-msgstr ""
+msgstr "在下面输入音轨列表:"
#: ../root/place/edit_form.tt:50
msgid ""
"Enter coordinates manually or click the map to get coordinates from the "
"marker. If you’re too far out, clicking will zoom instead."
msgstr ""
+"手动输入坐标或点击地图以从标记获取坐标。如果你离得太远,请点击进行缩放。"
#: ../root/components/forms.tt:51 ../root/release/add_cover_art.tt:170
#: ../root/release/edit/layout.tt:58
#: ../root/static/scripts/edit/components/EnterEdit.js:74
msgid "Enter edit"
-msgstr ""
+msgstr "输入编辑"
#: ../root/release/edit/tracklist.tt:86
msgid ""
"Enter the delimiter that separates the track name from the artist name "
"(valid {url|regular expressions} are accepted)."
+msgstr "输入音轨名称和艺术家名称的分隔符(支持有效的 {url|正则表达式})。"
+
+#: ../root/edit/search_macros.tt:423
+msgid "Entered"
msgstr ""
#: ../root/components/forms.tt:30
@@ -1065,10 +1115,12 @@ msgid ""
"information, but it can also encourage other users to vote on your edit "
"— thus making your edit get applied faster."
msgstr ""
+"我们强烈建议您撰写一份 {note|编辑备注} ,描述您从何处获取这些信息。这不仅能够"
+"标识信息来源,也能鼓励其他用户为您的编辑投票 — 使其能更快地生效。"
#: ../root/admin/attributes/form.tt:37 ../root/admin/attributes/Attribute.js:36
msgid "Entity type"
-msgstr ""
+msgstr "实体类型"
#: ../root/components/forms.tt:32
#: ../root/static/scripts/edit/components/EnterEditNote.js:63
@@ -1076,6 +1128,8 @@ msgid ""
"Even just providing a URL or two is helpful! For more suggestions, see "
"{doc_how_to|our guide for writing good edit notes}."
msgstr ""
+"即使只提供一两个 URL 也是有益的!如需更多建议,请查看 {doc_how_to|如何撰写良"
+"好编辑备注的指南}。"
#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Event.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:52
@@ -1091,7 +1145,7 @@ msgstr "事件"
#: ../root/event/edit_form.tt:11
msgid "Event Details"
-msgstr ""
+msgstr "活动详情"
#: ../root/relationship/linktype/form.tt:71
#: ../root/edit/details/EditRelationshipType.js:335
@@ -1101,101 +1155,97 @@ msgstr "实例"
#: ../root/release/edit/tracklist.tt:247
msgid "Existing medium"
-msgstr ""
+msgstr "现有媒介"
#: ../root/release/edit/tracklist.tt:151
msgid "Expand"
-msgstr ""
+msgstr "展开"
#: ../root/release/edit/tracklist.tt:301
msgid "Expand medium"
-msgstr ""
+msgstr "拓展媒介"
#: ../root/doc/edit_type.tt:38
msgid "Expire action"
-msgstr ""
+msgstr "过期操作"
#: ../root/area/edit_form.tt:22 ../root/artist/edit_form.tt:70
#: ../root/event/edit_form.tt:46 ../root/instrument/edit_form.tt:32
#: ../root/label/edit_form.tt:41 ../root/place/edit_form.tt:37
-#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:266
+#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:268
#: ../root/release_group/edit_form.tt:23 ../root/series/edit_form.tt:26
#: ../root/work/edit_form.tt:90
#: ../root/static/scripts/genre/components/GenreEditForm.js:160
msgid "External Links"
-msgstr ""
+msgstr "外部链接"
#: ../root/release/add_cover_art.tt:48
msgid "File:"
-msgstr ""
+msgstr "文件:"
#: ../root/relationship/linktype/form.tt:126
msgid "Find Relationships"
-msgstr ""
+msgstr "查找关系"
#: ../root/release/edit/layout.tt:64
msgid "Finish"
-msgstr ""
+msgstr "完成"
#: ../root/release/edit/layout.tt:17
msgid ""
"First enter all track information, including titles and artist credits, in "
"order to edit their recordings."
-msgstr ""
+msgstr "首先输入所有音轨信息,包括标题和艺术家名单,以便编辑他们的录音。"
#: ../root/artist/edit_form.tt:3 ../root/recording/edit_form.tt:17
#: ../root/release_group/edit_form.tt:5 ../root/series/edit_form.tt:3
msgid ""
"For more information, check the {doc_doc|documentation} and {doc_styleguide|"
"style guidelines}."
-msgstr ""
+msgstr "如需更多信息,请查看 {doc_doc|文档} 和 {doc_styleguide|风格指南}。"
#: ../root/event/edit_form.tt:3 ../root/label/edit_form.tt:3
#: ../root/place/edit_form.tt:3 ../root/work/edit_form.tt:4
#: ../root/search/components/SearchForm.js:106
msgid "For more information, check the {doc_doc|documentation}."
-msgstr ""
+msgstr "如需更多信息,请查看 {doc_doc|文档}。"
#: ../root/cdtoc/list.tt:9 ../root/release/edit/duplicates.tt:11
+#: ../root/release/edit/tracklist.tt:305
+#: ../root/release_group/set_cover_art.tt:46
#: ../root/components/list/ReleaseList.js:98
-#: ../root/edit/details/EditMedium.js:485
+#: ../root/edit/details/AddMedium.js:136 ../root/edit/details/EditMedium.js:485
#: ../root/edit/details/EditReleaseLabel.js:131
#: ../root/edit/details/MergeReleases.js:237
#: ../root/edit/details/historic/AddRelease.js:126
#: ../root/edit/details/historic/EditReleaseEvents.js:114
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:137
#: ../root/release_group/ReleaseGroupIndex.js:169
#: ../root/report/components/CDTocList.js:49
-#: ../root/search/components/ReleaseResults.js:114
+#: ../root/search/components/ReleaseResults.js:113
msgid "Format"
msgstr "格式"
-#: ../root/release/edit/tracklist.tt:305
-#: ../root/release_group/set_cover_art.tt:46
-#: ../root/edit/details/AddMedium.js:136
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:132
-msgid "Format:"
-msgstr "格式:"
-
#: ../root/layout.tt:114 ../root/layout/components/Footer.js:28
#: ../root/main/index.js:212
msgid "Forums"
-msgstr ""
+msgstr "论坛"
#: ../root/relationship/linktype/form.tt:13
#: ../root/relationship/linktype/RelationshipTypeIndex.js:198
#: ../root/relationship/linktype/RelationshipTypePairTree.js:65
msgid "Forward link phrase:"
-msgstr ""
+msgstr "转发链接短语:"
#: ../root/components/with-pager.tt:5 ../root/components/PaginatedResults.js:52
msgid "Found {n} result"
msgid_plural "Found {n} results"
-msgstr[0] ""
+msgstr[0] "找到 {n} 条结果"
#: ../root/components/with-pager.tt:7 ../root/components/PaginatedResults.js:58
msgid "Found {n} result for \"{q}\""
msgid_plural "Found {n} results for \"{q}\""
-msgstr[0] ""
+msgstr[0] "找到 \"{q}\" 的 {n} 条结果"
#: ../root/components/forms.tt:260 ../root/components/forms.tt:285
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:115
@@ -1206,23 +1256,25 @@ msgstr "法语"
#: ../root/admin/attributes/Language.js:45
#: ../root/admin/attributes/Script.js:44
msgid "Frequency"
-msgstr ""
+msgstr "频率"
#: ../root/admin/attributes/form.tt:14 ../root/admin/attributes/form.tt:28
msgid "Frequency notes:"
-msgstr ""
+msgstr "频率说明:"
#: ../root/cdstub/index.tt:30 ../root/cdstub/CDStubIndex.js:59
#: ../root/cdtoc/CDTocInfo.js:27
msgid "Full TOC:"
-msgstr ""
+msgstr "完整目录:"
-#: ../root/artist/edit_form.tt:17
-#: ../root/layout/components/sidebar/ArtistSidebar.js:84
-#: ../root/static/scripts/account/components/EditProfileForm.js:207
+#: ../root/artist/edit_form.tt:17 ../root/components/list/ArtistList.js:87
+#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
+#: ../root/layout/components/sidebar/ArtistSidebar.js:89
+#: ../root/search/components/ArtistResults.js:54
+#: ../root/static/scripts/account/components/EditProfileForm.js:237
#: ../root/user/UserProfile.js:268
-msgid "Gender:"
-msgstr ""
+msgid "Gender"
+msgstr "性别"
#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Genre.pm:7
#: ../root/edit/details/AddGenre.js:24 ../root/edit/details/EditGenre.js:28
@@ -1237,195 +1289,191 @@ msgstr "流派"
#: ../root/release/edit/tracklist.tt:527
#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:153
msgid "Guess case"
-msgstr ""
+msgstr "猜测案例"
#: ../root/components/forms.tt:254
msgctxt "button/menu"
msgid "Guess case"
-msgstr ""
+msgstr "猜测案例"
#: ../root/components/forms.tt:249
msgctxt "header"
msgid "Guess case"
-msgstr ""
+msgstr "猜测案例"
#: ../root/release/edit/tracklist.tt:320
msgid "Guess case medium title"
-msgstr ""
+msgstr "猜测案例中的标题"
#: ../root/components/forms.tt:232 ../root/release/edit/information.tt:16
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:111
#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:26
msgid "Guess case options"
-msgstr ""
+msgstr "猜测案例选项"
#: ../root/release/edit/tracklist.tt:224
msgid "Guess case track"
-msgstr ""
+msgstr "猜测音轨大小写"
#: ../root/components/forms.tt:230 ../root/release/edit/information.tt:15
#: ../root/release/edit/tracklist.tt:225
#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:159
msgid "Guess feat. artists"
-msgstr ""
+msgstr "猜猜看。艺术家"
#: ../root/release/edit/tracklist.tt:528
msgid "Guess feat. artists from track titles"
-msgstr ""
+msgstr "从音轨标题中猜测 feat. 艺术家"
#: ../root/components/forms.tt:241
#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:115
msgid "Guess sort name"
-msgstr ""
+msgstr "猜测排序名称"
#: ../root/components/forms.tt:124
msgid "HH:MM"
-msgstr ""
+msgstr "HH:MM"
#: ../root/instrument/edit_form.tt:20
msgid "HTML tags allowed in the description: {tag_list}."
-msgstr ""
+msgstr "描述中允许的 HTML 标签:{tag_list}。"
#: ../root/admin/attributes/form.tt:17
msgid ""
"Hidden is used by default for ancient languages and languages only in ISO "
"639-3 (until requested by a user)."
-msgstr ""
+msgstr "默认情况下,“隐藏”用于古代语言和 ISO 639-3中的语言(直到用户要求)。"
#: ../root/admin/attributes/form.tt:31
msgid "Hidden should be used for scripts not in Unicode."
-msgstr ""
+msgstr "对于不在Unicode中的脚本,应该使用“隐藏”。"
#: ../root/admin/attributes/form.tt:16
msgid ""
"Hidden should be used for sign languages and languages with no ISO 639-3 "
"code."
-msgstr ""
+msgstr "对于没有 ISO 639-3代码的手语和语言,应该使用“隐藏”。"
#: ../root/doc/edit_types.tt:5 ../root/doc/edit_types.tt:19
#: ../root/doc/edit_types.tt:21 ../lib/MusicBrainz/Server/Edit/Historic.pm:10
msgid "Historic"
-msgstr ""
+msgstr "编辑历史"
-#: ../root/release/edit/information.tt:325
+#: ../root/release/edit/information.tt:339
msgid "I confirm that this is the barcode as it appears on the release."
-msgstr ""
+msgstr "我确认这就是发行版上显示的条形码。"
#: ../root/release/edit/tracklist.tt:390
msgid "I confirm this is a correct medium format/packaging combination."
-msgstr ""
+msgstr "我确认这是正确的媒体格式/媒体介质。"
#: ../root/release/edit/tracklist.tt:413
msgid "I confirm this is an intentional use of Various Artists on tracks."
-msgstr ""
+msgstr "我确认我有意在音轨使用群星艺术家。"
#: ../root/release/edit/tracklist.tt:314
msgid "I don’t know"
-msgstr ""
+msgstr "我不知道"
#: ../root/release/edit/tracklist.tt:426
msgid "I don’t know the tracklist for this medium."
-msgstr ""
+msgstr "我不知道这种媒介的音轨表。"
#: ../root/release/edit/tracklist.tt:280
msgid "I have no information about this release’s media and tracklist."
-msgstr ""
+msgstr "我没有关于这个版本的媒体和音轨列表的信息。"
#: ../root/edit/search_macros.tt:423 ../root/admin/attributes/Attribute.js:78
#: ../root/admin/attributes/Language.js:39
#: ../root/admin/attributes/Script.js:40
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
msgid "ID"
-msgstr ""
+msgstr "ID"
#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
#: ../root/edit/details/AddArtist.js:136 ../root/edit/details/AddLabel.js:102
+#: ../root/layout/components/sidebar/SidebarIpis.js:18
msgid "IPI code"
-msgstr ""
+msgstr "IPI代码"
+
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/EditArtist.js:162 ../root/edit/details/EditLabel.js:131
+msgid "IPI codes"
+msgstr "IPI 代码"
#: ../root/components/forms.tt:333
msgid ""
"IPI codes are assigned by CISAC to “interested parties” in musical rights "
"management. Check {ipi_doc|the documentation} for more info."
msgstr ""
-
-#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
-#: ../root/edit/details/EditArtist.js:162
-msgid "IPI codes:"
-msgstr ""
+"IPI编号由CISAC向音乐版权管理\"利益相关方\"分配。如需更多信息,请查看{ipi_doc|"
+"文档}。"
#: ../root/layout.tt:115
msgid "IRC"
-msgstr ""
+msgstr "IRC"
#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
#: ../root/edit/details/AddArtist.js:145 ../root/edit/details/AddLabel.js:111
+#: ../root/layout/components/sidebar/SidebarIsnis.js:22
msgid "ISNI code"
-msgstr ""
+msgstr "ISNI代码"
+
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/EditArtist.js:170 ../root/edit/details/EditLabel.js:140
+msgid "ISNI codes"
+msgstr "ISNI 代码"
#: ../root/components/forms.tt:342
msgid ""
"ISNI codes are an ISO standard used to uniquely identify persons and "
"organizations. Check {isni_doc|the documentation} for more info."
msgstr ""
-
-#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
-#: ../root/edit/details/EditArtist.js:170
-msgid "ISNI codes:"
-msgstr ""
+"ISNI编号是一对一识别个人和团体的ISO标准。如需更多信息,请查看{isni_doc|文"
+"档}。"
#: ../root/area/edit_form.tt:12 ../root/edit/details/AddArea.js:68
#: ../root/edit/details/EditArea.js:82
-msgid "ISO 3166-1"
-msgstr ""
-
-#: ../root/area/edit_form.tt:12
#: ../root/layout/components/sidebar/AreaSidebar.js:71
-msgid "ISO 3166-1:"
-msgstr ""
+msgid "ISO 3166-1"
+msgstr "ISO 3166-1"
#: ../root/area/edit_form.tt:13 ../root/edit/details/AddArea.js:75
#: ../root/edit/details/EditArea.js:89
-msgid "ISO 3166-2"
-msgstr ""
-
-#: ../root/area/edit_form.tt:13
#: ../root/layout/components/sidebar/AreaSidebar.js:81
-msgid "ISO 3166-2:"
-msgstr ""
+msgid "ISO 3166-2"
+msgstr "ISO 3166-2"
#: ../root/area/edit_form.tt:14 ../root/edit/details/AddArea.js:82
#: ../root/edit/details/EditArea.js:96
-msgid "ISO 3166-3"
-msgstr ""
-
-#: ../root/area/edit_form.tt:14
#: ../root/layout/components/sidebar/AreaSidebar.js:91
-msgid "ISO 3166-3:"
-msgstr ""
+msgid "ISO 3166-3"
+msgstr "ISO 3166-3"
#: ../root/admin/attributes/form.tt:8 ../root/admin/attributes/Language.js:41
msgid "ISO 639-1"
-msgstr ""
+msgstr "ISO 639-1"
#: ../root/admin/attributes/form.tt:9 ../root/admin/attributes/Language.js:42
msgid "ISO 639-2/B"
-msgstr ""
+msgstr "ISO 639-2/B"
#: ../root/admin/attributes/form.tt:10 ../root/admin/attributes/Language.js:43
msgid "ISO 639-2/T"
-msgstr ""
+msgstr "ISO 639-2/T"
#: ../root/admin/attributes/form.tt:11 ../root/admin/attributes/Language.js:44
msgid "ISO 639-3"
-msgstr ""
+msgstr "ISO 639-3"
#: ../root/admin/attributes/form.tt:24 ../root/admin/attributes/Script.js:42
msgid "ISO code"
-msgstr ""
+msgstr "ISO代码"
#: ../root/admin/attributes/form.tt:25 ../root/admin/attributes/Script.js:43
msgid "ISO number"
-msgstr ""
+msgstr "国际标准化组织编号"
#: ../root/recording/edit_form.tt:45 ../root/edit/details/RemoveIsrc.js:27
#: ../root/otherlookup/OtherLookupForm.js:72
@@ -1434,9 +1482,14 @@ msgstr ""
msgid "ISRC"
msgstr "ISRC"
-#: ../root/recording/edit_form.tt:45
-msgid "ISRCs:"
-msgstr ""
+#: ../root/recording/edit_form.tt:45 ../root/report/ReportsIndex.js:606
+#: ../root/search/components/RecordingResults.js:144
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:721
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:411
+#: ../root/static/scripts/common/components/IsrcList.js:44
+#: ../root/utility/tableColumns.js:694
+msgid "ISRCs"
+msgstr "ISRC"
#: ../root/work/edit_form.tt:16 ../root/edit/details/AddWork.js:47
#: ../root/edit/details/EditWork.js:66 ../root/edit/details/RemoveIswc.js:27
@@ -1444,13 +1497,14 @@ msgstr ""
#: ../root/report/IswcsWithManyWorks.js:49
#: ../root/search/components/WorkResults.js:57
#: ../root/static/scripts/common/components/IswcList.js:26
-#: ../root/utility/tableColumns.js:703
+#: ../root/utility/tableColumns.js:708
msgid "ISWC"
-msgstr ""
+msgstr "国际标准音乐作品编码ISWC"
-#: ../root/work/edit_form.tt:16
-msgid "ISWCs:"
-msgstr ""
+#: ../root/work/edit_form.tt:16 ../root/report/ReportsIndex.js:615
+#: ../root/static/scripts/common/components/IswcList.js:44
+msgid "ISWCs"
+msgstr "ISWC"
#: ../root/event/edit_form.tt:26
msgid ""
@@ -1464,85 +1518,91 @@ msgid ""
"you can check the boxes below to replace them with the track titles/artists "
"for this release."
msgstr ""
+"如果上列{recording_doc|录音标题/艺术家} 不正确,您可以选中下方的复选框用音轨"
+"标题/此专辑艺术家替代。"
-#: ../root/release/edit/information.tt:298
+#: ../root/release/edit/information.tt:300
msgid ""
"If this is an Amazon ASIN, please do not enter it in the catalog number "
"field, but add it as a URL relationship later."
msgstr ""
+"如果这是一个亚马逊 ASIN,请勿填写在目录编号栏内,而是稍后将其添加为一个 URL "
+"关联。"
#: ../root/release/edit/recordings.tt:160
msgid ""
"If we do not have a recording for this track in the database yet, please "
"select \"Add a new recording\" below."
-msgstr ""
+msgstr "如果数据库中没有此音轨对应的录音,请在下方选择“添加新录音”。"
#: ../root/cdtoc/attach_artist_releases.tt:49
msgid "If you can't find what you're looking for, you can add a new release:"
-msgstr ""
+msgstr "如果没有找到所需的结果,您可以添加一张新专辑:"
-#: ../root/release/edit/information.tt:316
+#: ../root/release/edit/information.tt:330
msgid ""
"If you do not know whether the release has a barcode or not, just leave this "
"blank."
-msgstr ""
+msgstr "如果您不知道此专辑是否有条形码,留空即可。"
#: ../root/cdtoc/attach_filter_release.tt:75
msgid ""
"If you don't see the release you are looking for, you can still add a new "
"one, using this CD TOC:"
-msgstr ""
+msgstr "如果没有找到所需的专辑,您依然可以使用此 CD 目录添加一张新专辑:"
#: ../root/components/forms.tt:336 ../root/components/forms.tt:345
msgid "If you don’t know the code for this entity, just leave the field blank."
-msgstr ""
+msgstr "如果您不知道此实体的代码,将此栏留空即可。"
#: ../root/release/edit/information.tt:54
msgid ""
-"If you don’t select an existing release group, a new one will be created "
-"with the types selected below."
+"If you don’t select an existing release group, a new one will be added with "
+"the types selected below."
msgstr ""
#: ../root/release/edit/tracklist.tt:5
msgid "If you have a tracklist you can copy and paste, you can input it here."
-msgstr ""
+msgstr "如果您有可以复制和粘贴的音轨列表,可在此处输入。"
#: ../root/release/edit/tracklist.tt:15
msgid ""
"If you select “{enable_vinyl_numbers}”, the parser will also accept strings "
"such as “A1” as track numbers."
msgstr ""
+"如果您选择 “{enable_vinyl_numbers}”,解析器将同时接受类似 “A1” 的音轨编号。"
#: ../root/edit/search_macros.tt:10
msgid ""
"If you want to save an edit search for future use, you can just bookmark it!"
-msgstr ""
+msgstr "如果想要保存一次搜索以便今后使用,您可以直接添加书签!"
#: ../root/release/edit/tracklist.tt:393
msgid ""
"If you’re sure the combination of “Digital Media” and the selected packaging "
"is correct, confirm it above. Otherwise, please fix the data."
msgstr ""
+"如果您确定“数字媒体”和所选包装的组合正确,请在上方确认。否则,请修复数据。"
#: ../root/release/edit/tracklist.tt:353
msgid ""
"If you’re sure the entered medium title is correct, confirm it above. "
"Otherwise, please fix the data."
-msgstr ""
+msgstr "如果你确定输入的媒介标题是正确的,请在上面确认。否则,请修改数据。"
#: ../root/release/edit/tracklist.tt:416
msgid ""
"If you’re sure the use of Various Artists is correct, confirm it above. "
"Otherwise, please fix the data."
-msgstr ""
+msgstr "如果您确定使用群星艺术家是正确的,请在上方确认。否则,请修正数据。"
#: ../root/components/common-macros.tt:60 ../root/components/Artwork.js:50
msgid "Image not available, please try again later."
-msgstr ""
+msgstr "图像不可用,请稍后再试。"
#: ../root/cdtoc/lookup.tt:28 ../root/cdstub/ImportCDStub.js:36
msgid "Import CD Stub"
-msgstr ""
+msgstr "导入 CD 存根"
#: ../root/edit/search_macros.tt:423
#: ../lib/MusicBrainz/Server/Edit/Instrument.pm:7
@@ -1562,37 +1622,37 @@ msgstr "乐器"
#: ../root/instrument/edit_form.tt:8
msgid "Instrument Details"
-msgstr ""
+msgstr "乐器详情"
#: ../root/components/common-macros.tt:486
msgid "Javascript is required for this page to work properly."
-msgstr ""
+msgstr "此页面需要 Javascript 才能正常工作。"
#: ../root/components/forms.tt:267 ../root/components/forms.tt:292
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:133
msgid "Keep all-uppercase words uppercased"
-msgstr ""
+msgstr "使所有大写单词依然保持大写"
#: ../root/release/edit/recordings.tt:7
msgid ""
"Keep in mind that recording durations are {doc_link|recalculated from "
"tracks} once the duration of a track changes. As such, if you correct the "
"duration of a track whose recording is only used in this release, just reuse "
-"the old recording, don’t create a new one. If the recording is also used "
-"elsewhere and the durations are significantly different, consider creating a "
+"the old recording, don’t add a new one. If the recording is also used "
+"elsewhere and the durations are significantly different, consider adding a "
"new recording instead."
msgstr ""
#: ../root/release/edit/tracklist.tt:502
msgid ""
-"Keep in mind that unselecting this will delete the track if the medium has a "
+"Keep in mind that unselecting this will remove the track if the medium has a "
"disc ID! If you unselect it by mistake, please readd the pregap track before "
"submitting."
msgstr ""
#: ../root/release/edit/tracklist.tt:517
msgid ""
-"Keep in mind that unselecting this will delete the tracks if the medium has "
+"Keep in mind that unselecting this will remove the tracks if the medium has "
"a disc ID! If you unselect it by mistake, please readd the data tracks "
"before submitting."
msgstr ""
@@ -1601,12 +1661,16 @@ msgstr ""
#: ../root/cdtoc/attach_filter_release.tt:31 ../root/cdtoc/list.tt:11
#: ../root/cdtoc/lookup.tt:45 ../root/edit/search_macros.tt:423
#: ../root/release/edit/duplicates.tt:15
+#: ../root/release/edit/information.tt:179
+#: ../root/release_group/set_cover_art.tt:52
#: ../lib/MusicBrainz/Server/Edit/Label.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:43
#: ../root/components/list/LabelList.js:54 ../root/edit/details/AddLabel.js:31
+#: ../root/edit/details/AddReleaseLabel.js:35
#: ../root/edit/details/EditLabel.js:43
#: ../root/edit/details/EditReleaseLabel.js:51
#: ../root/edit/details/MergeReleases.js:240
+#: ../root/edit/details/RemoveReleaseLabel.js:31
#: ../root/edit/details/historic/AddRelease.js:123
#: ../root/edit/details/historic/EditReleaseEvents.js:111
#: ../root/label/LabelHeader.js:25 ../root/layout/components/Search.js:37
@@ -1615,46 +1679,49 @@ msgstr ""
#: ../root/report/ReleaseLabelSameArtist.js:31
#: ../root/report/components/LabelList.js:47
#: ../root/report/components/LabelUrlList.js:35
-#: ../root/search/components/ReleaseResults.js:117
+#: ../root/search/components/ReleaseResults.js:116
#: ../root/search/components/SearchForm.js:42
#: ../root/static/scripts/common/components/FilterForm.js:168
#: ../root/static/scripts/common/constants.js:40
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:60
-#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:533
-#: ../root/utility/tableColumns.js:538
+#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:538
+#: ../root/utility/tableColumns.js:543
msgid "Label"
-msgstr "厂牌"
+msgstr "唱片公司"
#: ../root/edit/search_macros.tt:423
msgid "Label Area"
-msgstr ""
+msgstr "厂牌区域"
#: ../root/label/edit_form.tt:10
msgid "Label Details"
-msgstr ""
+msgstr "厂牌详情"
-#: ../root/label/edit_form.tt:28
-#: ../root/layout/components/sidebar/LabelSidebar.js:81
-msgid "Label code:"
-msgstr ""
-
-#: ../root/release/edit/information.tt:177
-#: ../root/release_group/set_cover_art.tt:52
-#: ../root/edit/details/AddReleaseLabel.js:35
-#: ../root/edit/details/RemoveReleaseLabel.js:31
-msgid "Label:"
-msgstr ""
+#: ../root/label/edit_form.tt:28 ../root/edit/details/AddLabel.js:94
+#: ../root/edit/details/EditLabel.js:85
+#: ../root/layout/components/sidebar/LabelSidebar.js:83
+msgid "Label code"
+msgstr "厂牌代码"
#: ../root/release/edit/information.tt:114
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:177
-msgid "Language:"
-msgstr ""
+#: ../root/admin/attributes/Language.js:31
+#: ../root/admin/attributes/Language.js:34
+#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
+#: ../root/edit/details/EditRelease.js:113
+#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:191
+#: ../root/report/IswcsWithManyWorks.js:54
+#: ../root/search/components/ReleaseResults.js:119
+#: ../root/utility/tableColumns.js:559
+msgid "Language"
+msgstr "语言"
#: ../root/layout.tt:139 ../root/layout/components/Footer.js:85
msgid "Last replication packet received at {datetime}"
-msgstr ""
+msgstr "上一次收到副本数据包是在 {datetime}"
-#: ../root/cdstub/cdstub.tt:9 ../root/release/discids.tt:10
+#: ../root/cdstub/cdstub.tt:9 ../root/recording/edit_form.tt:35
+#: ../root/recording/edit_form.tt:38 ../root/release/discids.tt:10
#: ../root/release/edit/tracklist.tt:164 ../root/release/edit/tracklist.tt:454
#: ../root/cdstub/CDStubInfo.js:29 ../root/cdtoc/AttachCDTocConfirmation.js:72
#: ../root/cdtoc/CDTocInfo.js:54 ../root/components/RelationshipsTable.js:338
@@ -1666,6 +1733,8 @@ msgstr ""
#: ../root/edit/details/EditRecording.js:69
#: ../root/edit/details/historic/AddRelease.js:91
#: ../root/edit/details/historic/AddTrackKV.js:54 ../root/isrc/Index.js:68
+#: ../root/layout/components/sidebar/RecordingSidebar.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:146
#: ../root/recording/RecordingIndex.js:55
#: ../root/report/IsrcsWithManyRecordings.js:61
#: ../root/report/components/CDTocList.js:54
@@ -1674,27 +1743,21 @@ msgstr ""
msgid "Length"
msgstr "长度"
-#: ../root/recording/edit_form.tt:35 ../root/recording/edit_form.tt:38
-#: ../root/layout/components/sidebar/RecordingSidebar.js:54
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:138
-msgid "Length:"
-msgstr "长度:"
-
#: ../root/release/edit/tracklist.tt:54
msgid "Lines contain track artists"
-msgstr ""
+msgstr "每行包含音轨艺术家"
#: ../root/release/edit/tracklist.tt:31
msgid "Lines start with a track number"
-msgstr ""
+msgstr "每行以音轨编号开头"
#: ../root/release/edit/editnote.tt:15
msgid "Loading edit previews..."
-msgstr ""
+msgstr "加载编辑预览..."
#: ../root/edit/search_macros.tt:397
msgid "Location Editor"
-msgstr ""
+msgstr "位置编辑者"
#: ../root/components/common-macros.tt:421
#: ../root/components/RequestLogin.js:23
@@ -1708,95 +1771,102 @@ msgstr "登录"
#: ../root/relationship/linktype/RelationshipTypeIndex.js:208
#: ../root/relationship/linktype/RelationshipTypePairTree.js:79
msgid "Long link phrase:"
-msgstr ""
+msgstr "长链接文本:"
-#: ../root/release/edit/recordings.tt:175
+#: ../root/release/edit/recordings.tt:186
msgid "Looking for suggested recordings..."
-msgstr ""
+msgstr "正在查找建议的录音..."
#: ../root/cdtoc/lookup.tt:3 ../root/cdtoc/lookup.tt:4
msgid "Lookup CD"
-msgstr ""
+msgstr "查找 CD"
-#: ../root/release/edit/information.tt:139
+#: ../root/release/edit/information.tt:141
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:252
#: ../root/static/scripts/edit/components/PartialDateInput.js:174
msgid "MM"
-msgstr "MM"
+msgstr "月"
#: ../root/components/forms.tt:15 ../root/components/forms.tt:20
#: ../root/static/scripts/edit/components/EnterEdit.js:63
msgid "Make all edits votable."
-msgstr ""
+msgstr "使所有编辑都可投票。"
#: ../root/release/edit/tracklist.tt:246
msgid "Manual entry"
-msgstr ""
+msgstr "手动输入"
#: ../root/cdtoc/lookup.tt:5
msgid "Matching CDs"
-msgstr ""
+msgstr "匹配的CD"
#: ../root/cdtoc/lookup.tt:41 ../root/components/common-macros.tt:503
#: ../lib/MusicBrainz/Server/Edit/Medium.pm:8
#: ../root/cdtoc/AttachCDTocConfirmation.js:65
#: ../root/cdtoc/SetTracklistDurations.js:56
-#: ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/RemoveDiscId.js:25
#: ../root/edit/details/RemoveMedium.js:71
#: ../root/edit/details/SetTrackLengths.js:40
#: ../root/search/components/RecordingResults.js:148
#: ../root/static/scripts/common/utility/mediumFormatName.js:14
msgid "Medium"
-msgstr ""
+msgstr "媒介"
#: ../root/release/edit/tracklist.tt:318
msgid "Medium title:"
-msgstr ""
+msgstr "媒介标题:"
#: ../root/layout/merge-helper.tt:30
#: ../root/layout/components/MergeHelper.js:71
#: ../root/layout/components/sidebar/MergeLink.js:34
+msgctxt "button/link"
msgid "Merge"
-msgstr "合并"
+msgstr ""
#: ../root/layout/merge-helper.tt:3 ../root/layout/components/MergeHelper.js:30
msgid "Merge Process"
-msgstr ""
+msgstr "合并过程"
#: ../root/cdtoc/list.tt:63 ../root/release/discids.tt:45
msgid "Move"
-msgstr ""
+msgstr "移动"
#: ../root/cdtoc/move_search.tt:1 ../root/cdtoc/move_search.tt:2
msgid "Move Disc ID"
-msgstr ""
+msgstr "移动唱片 ID"
#: ../root/release/add_cover_art.tt:44
msgid "Move file down"
-msgstr ""
+msgstr "下移文件"
#: ../root/release/add_cover_art.tt:42
msgid "Move file up"
-msgstr ""
+msgstr "上移文件"
#: ../root/release/edit/tracklist.tt:328
msgid "Move medium down"
-msgstr ""
+msgstr "下移媒介"
#: ../root/release/edit/tracklist.tt:329
msgid "Move medium up"
-msgstr ""
+msgstr "上移媒介"
#: ../root/release/edit/tracklist.tt:197
msgid "Move track down"
-msgstr ""
+msgstr "下移音轨"
#: ../root/release/edit/tracklist.tt:201
msgid "Move track up"
-msgstr ""
+msgstr "上移音轨"
#: ../root/admin/attributes/form.tt:7 ../root/admin/attributes/form.tt:23
-#: ../root/admin/attributes/form.tt:58 ../root/admin/attributes/Attribute.js:79
+#: ../root/admin/attributes/form.tt:58 ../root/components/forms.tt:226
+#: ../root/relationship/linkattributetype/form.tt:12
+#: ../root/relationship/linktype/form.tt:12
+#: ../root/relationship/linktype/form.tt:77
+#: ../root/relationship/linktype/form.tt:107
+#: ../root/admin/attributes/Attribute.js:79
#: ../root/admin/attributes/Language.js:40
#: ../root/admin/attributes/Script.js:41
#: ../root/components/Aliases/ArtistCreditList.js:50
@@ -1804,7 +1874,7 @@ msgstr ""
#: ../root/edit/details/AddArea.js:41 ../root/edit/details/AddArtist.js:51
#: ../root/edit/details/AddEvent.js:38 ../root/edit/details/AddGenre.js:35
#: ../root/edit/details/AddInstrument.js:41 ../root/edit/details/AddLabel.js:41
-#: ../root/edit/details/AddPlace.js:38
+#: ../root/edit/details/AddMedium.js:129 ../root/edit/details/AddPlace.js:38
#: ../root/edit/details/AddRelationshipAttribute.js:34
#: ../root/edit/details/AddRelationshipType.js:66
#: ../root/edit/details/AddRelease.js:51
@@ -1834,57 +1904,48 @@ msgstr ""
#: ../root/entity/Details.js:96
#: ../root/search/components/AnnotationResults.js:55
#: ../root/search/components/AreaResults.js:63
-#: ../root/search/components/ArtistResults.js:52
+#: ../root/search/components/ArtistResults.js:51
#: ../root/search/components/EditorResults.js:42
#: ../root/search/components/EventResults.js:73
#: ../root/search/components/InstrumentResults.js:53
#: ../root/search/components/LabelResults.js:66
#: ../root/search/components/PlaceResults.js:63
#: ../root/search/components/RecordingResults.js:141
-#: ../root/search/components/ReleaseResults.js:112
+#: ../root/search/components/ReleaseResults.js:111
#: ../root/search/components/SeriesResults.js:57
#: ../root/search/components/TagResults.js:51
#: ../root/search/components/WorkResults.js:54
#: ../root/static/scripts/account/components/ApplicationForm.js:81
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:197
#: ../root/static/scripts/common/components/FilterForm.js:135
#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:112
#: ../root/static/scripts/genre/components/GenreEditForm.js:147
+#: ../root/static/scripts/release/components/EditWorkDialog.js:166
#: ../root/user/UserSubscriptions.js:48
msgid "Name"
msgstr "名称"
-#: ../root/components/forms.tt:226
-#: ../root/relationship/linkattributetype/form.tt:12
-#: ../root/relationship/linktype/form.tt:12
-#: ../root/relationship/linktype/form.tt:77
-#: ../root/relationship/linktype/form.tt:107
-#: ../root/edit/details/AddMedium.js:129
-#: ../root/static/scripts/release/components/EditWorkDialog.js:166
-msgid "Name:"
-msgstr ""
-
#: ../root/artist/edit_credit.tt:18 ../root/artist/split.tt:45
msgid "New Artist Credit"
-msgstr ""
+msgstr "新艺术家名单"
#: ../root/admin/attributes/create.tt:1 ../root/admin/attributes/create.tt:3
msgid "New Attribute"
-msgstr ""
+msgstr "新属性"
#: ../root/release/add_cover_art.tt:148
msgid "New Image Goes Here"
-msgstr ""
+msgstr "新图片将出现在这里"
#: ../root/relationship/linkattributetype/create.tt:1
#: ../root/relationship/linkattributetype/create.tt:3
msgid "New Relationship Attribute"
-msgstr ""
+msgstr "新关联属性"
#: ../root/relationship/linktype/create.tt:1
#: ../root/relationship/linktype/create.tt:3
msgid "New Relationship Type"
-msgstr ""
+msgstr "新关联类型"
#: ../root/components/paginator.tt:44 ../root/components/paginator.tt:46
#: ../root/release/edit/macros.tt:53 ../root/components/Paginator.js:140
@@ -1892,11 +1953,11 @@ msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:42
#: ../root/static/scripts/release-editor/bindingHandlers.js:41
msgid "Next"
-msgstr ""
+msgstr "下一个"
#: ../root/release/edit/layout.tt:62
msgid "Next »"
-msgstr ""
+msgstr "下一步 »"
#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
#: ../lib/MusicBrainz/Server/Data/Vote.pm:176
@@ -1907,88 +1968,94 @@ msgstr "否"
#: ../root/components/forms.tt:369
msgid "No description available."
-msgstr ""
+msgstr "无可用描述。"
#: ../root/release_group/set_cover_art.tt:96
msgid "No releases have cover art marked as \"Front\", cannot set cover art."
-msgstr ""
+msgstr "没有专辑有标记为“正面”的封面图片,无法设置封面图片。"
#: ../root/release/edit/tracklist.tt:140 ../root/admin/IpLookup.js:38
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:468
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:472
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:88
msgid "No results"
-msgstr ""
+msgstr "无结果"
#: ../root/components/search.tt:43 ../root/admin/EmailSearch.js:87
#: ../root/otherlookup/OtherLookupReleaseResults.js:32
msgid "No results found."
-msgstr ""
+msgstr "没有找到结果。"
#: ../root/cdtoc/attach_filter_release.tt:61
#: ../root/cdtoc/SelectArtistForCDToc.js:102
#: ../root/search/components/PaginatedSearchResults.js:58
msgid "No results found. Try refining your search query."
-msgstr ""
+msgstr "没有找到结果。请尝试细化搜索条件。"
#: ../root/edit/search_macros.tt:291
msgid "No vote"
-msgstr ""
+msgstr "没有投票"
#: ../root/release/edit/tracklist.tt:444
#: ../root/static/scripts/release-editor/fields.js:211
msgid ""
"None of the attached disc IDs can fit a pregap track of the given length."
-msgstr ""
+msgstr "在附加的唱片 ID中,没有一个能对应符合所给长度的前间隙音轨。"
#: ../root/cdtoc/attach_list.tt:78
msgid ""
"None of the mediums on this release can have the given CD TOC attached, "
"because they have the wrong number of tracks."
-msgstr ""
+msgstr "此专辑没有媒介能附加所给的CD 目录,因为音轨数错误。"
+
+#: ../root/release/edit/recordings.tt:3 ../root/edit/details/EditRelease.js:164
+#: ../root/edit/details/MergeReleases.js:347
+#: ../root/edit/details/SetTrackLengths.js:74
+#: ../root/edit/details/historic/MergeReleases.js:55
+#: ../root/user/ReportUser.js:116
+msgid "Note"
+msgstr "备注"
-#: ../root/release/edit/information.tt:283
+#: ../root/release/edit/information.tt:285
msgid ""
"Note! If you do not know the month or day of release, please leave them "
"empty. January 1st is not often the actual release date, please double "
"check that you have entered the release date correctly."
msgstr ""
-
-#: ../root/release/edit/recordings.tt:3
-msgid "Note:"
-msgstr ""
+"注意!如果您不知道专辑的发行月份或日期,请留空。一月一日通常都不是实际的发行"
+"日期,请再三检查您输入的发行日期是否正确。"
#: ../root/edit/search_macros.tt:243
msgid ""
-"Note: only searches edits that: add or edit relationships, created after "
-"2011-05-16; or which remove relationships, created after 2013-07-08; or "
+"Note: only searches edits that: add or edit relationships, entered after "
+"2011-05-16; or which remove relationships, entered after 2013-07-08; or "
"which reorder relationships."
msgstr ""
#: ../root/release/edit/recordings.tt:120
msgid "Now loading recording associations..."
-msgstr ""
+msgstr "正在加载录音关联..."
#: ../root/release/edit/tracklist.tt:180 ../root/release/edit/tracklist.tt:400
msgid "Now loading tracklist..."
-msgstr ""
+msgstr "正在加载音轨列表..."
#: ../root/release_group/set_cover_art.tt:13
msgid ""
"Only releases with a front cover on the {caa|Cover Art Archive} can be "
"selected."
-msgstr ""
+msgstr "只能选择在 {caa|Cover Art Archive} 有正面封面的专辑。"
#: ../root/cdtoc/move_search.tt:7
msgid ""
"Only releases with the same amount of tracks ({n}) as the release the disc "
"ID is currently attached to are shown."
-msgstr ""
+msgstr "仅显示音轨数目均为{n}的专辑及其附加的唱片 ID。"
#: ../root/edit/search_macros.tt:101
msgid ""
"Oops! It seems your search parameters are not correct, please double check "
"your input!"
-msgstr ""
+msgstr "糟糕!似乎您的搜索参数不正确,请再三检查您的输入!"
#: ../root/release/edit/recordings.tt:139 ../root/release/edit/tracklist.tt:24
msgid "Options"
@@ -1999,36 +2066,38 @@ msgstr "选项"
#: ../root/edit/details/EditRelationshipType.js:285
#: ../root/relationship/linktype/RelationshipTypeIndex.js:184
msgid "Orderable direction:"
-msgstr ""
+msgstr "可排序方向:"
-#: ../root/series/edit_form.tt:17
-msgid "Ordering Type:"
-msgstr ""
+#: ../root/series/edit_form.tt:17 ../root/edit/details/AddSeries.js:52
+#: ../root/edit/details/EditSeries.js:66
+#: ../root/layout/components/sidebar/SeriesSidebar.js:53
+#: ../root/utility/tableColumns.js:765
+msgid "Ordering Type"
+msgstr "订购类型"
#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:77
msgid "PDF file"
-msgstr ""
+msgstr "PDF 文件"
-#: ../root/release/edit/information.tt:238
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:156
-msgid "Packaging:"
-msgstr ""
+#: ../root/release/edit/information.tt:240
+#: ../root/edit/details/AddRelease.js:105
+#: ../root/edit/details/EditRelease.js:137
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
+msgid "Packaging"
+msgstr "包装"
#: ../root/admin/attributes/form.tt:50
-#: ../root/edit/details/AddRelationshipAttribute.js:55
-#: ../root/edit/details/EditRelationshipAttribute.js:85
-msgid "Parent"
-msgstr ""
-
#: ../root/relationship/linkattributetype/form.tt:4
#: ../root/relationship/linktype/form.tt:4
+#: ../root/edit/details/AddRelationshipAttribute.js:55
+#: ../root/edit/details/EditRelationshipAttribute.js:85
#: ../root/edit/details/EditRelationshipType.js:317
-msgid "Parent:"
-msgstr ""
+msgid "Parent"
+msgstr "母"
#: ../root/release/edit/tracklist.tt:238
msgid "Parse Tracks"
-msgstr ""
+msgstr "解析音轨"
#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Place.pm:8
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:45
@@ -2041,51 +2110,50 @@ msgstr ""
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:62
#: ../root/user/UserProfile.js:55
msgid "Place"
-msgstr ""
+msgstr "地点"
#: ../root/place/edit_form.tt:10
msgid "Place Details"
-msgstr ""
+msgstr "地点详情"
#: ../root/edit/search_macros.tt:421
msgid "Please choose a condition"
-msgstr ""
+msgstr "请选择一个条件"
-#: ../root/release/edit/information.tt:312
+#: ../root/release/edit/information.tt:326
msgid ""
-"Please enter the barcode of the release you are entering, see Barcode for more information."
+"Please enter the barcode of the release you are entering, see Barcode for more information."
msgstr ""
+"请输入当前专辑的条形码,如需更多信息请查阅 条形码。"
#: ../root/layout/merge-helper.tt:24
#: ../root/layout/components/MergeHelper.js:58
msgid ""
"Please navigate to the pages of other entities you wish to merge and select "
"the \"merge\" link."
-msgstr ""
+msgstr "请转到其他要合并的实体页面,并选择“合并”链接。"
#: ../root/release/add_cover_art.tt:66 ../root/release/CoverArtFields.js:84
msgid ""
"Please see the {doc|Cover Art Types} documentation for a description of "
"these types."
-msgstr ""
+msgstr "关于这些类型的描述,请查看 {doc|封面图片类型} 文档。"
#: ../root/cdtoc/attach_artist_releases.tt:7
msgid "Please select the medium you wish to attach this CD TOC to."
-msgstr ""
+msgstr "请选择要附加此 CD 目录的媒介。"
-#: ../root/cdtoc/list.tt:6 ../root/release/reorder_cover_art.tt:10
-#: ../root/edit/details/EditMedium.js:469
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
msgid "Position"
-msgstr ""
-
-#: ../root/release/add_cover_art.tt:125 ../root/edit/details/AddMedium.js:123
-msgid "Position:"
-msgstr ""
+msgstr "位置"
#: ../root/cdtoc/lookup.tt:32
msgid "Possible Mediums"
-msgstr ""
+msgstr "可能的媒介"
#: ../root/components/paginator.tt:6 ../root/components/paginator.tt:8
#: ../root/release/edit/macros.tt:52 ../root/components/Paginator.js:72
@@ -2093,27 +2161,27 @@ msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:38
#: ../root/static/scripts/release-editor/bindingHandlers.js:44
msgid "Previous"
-msgstr ""
+msgstr "前一个"
#: ../root/release/edit/information.tt:95 ../root/release_group/edit_form.tt:16
#: ../root/edit/details/AddReleaseGroup.js:67
#: ../root/edit/details/EditReleaseGroup.js:60
msgid "Primary Type:"
-msgstr ""
+msgstr "主要类型:"
#: ../root/relationship/linktype/form.tt:46
msgid "Priority:"
-msgstr ""
+msgstr "优先级:"
#: ../root/components/search.tt:9 ../root/search/components/SearchForm.js:78
msgid "Query:"
-msgstr ""
+msgstr "查询:"
#: ../root/components/rating-macros.tt:1
#: ../root/static/scripts/common/utility/ratingTooltip.js:13
msgid "Rate: {rating} star"
msgid_plural "Rate: {rating} stars"
-msgstr[0] ""
+msgstr[0] "评分:{rating} 星"
#: ../root/edit/search_macros.tt:423
#: ../lib/MusicBrainz/Server/Edit/Recording.pm:7
@@ -2130,18 +2198,18 @@ msgstr[0] ""
#: ../root/search/components/SearchForm.js:40
#: ../root/static/scripts/common/constants.js:42
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1573
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
#: ../root/user/UserProfile.js:56
msgid "Recording"
msgstr "录音"
#: ../root/recording/edit_form.tt:24
msgid "Recording Details"
-msgstr ""
+msgstr "录音详情"
#: ../root/recording/layout.tt:3 ../root/recording/RecordingLayout.js:40
msgid "Recording “{name}” by {artist}"
-msgstr ""
+msgstr "{artist}的录音“{name}”"
#: ../root/release/edit/layout.tt:17 ../root/area/AreaRecordings.js:25
#: ../root/artist/ArtistRecordings.js:144
@@ -2157,41 +2225,46 @@ msgstr ""
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:29
#: ../root/tag/TagLayout.js:27 ../root/work/WorkIndex.js:55
msgid "Recordings"
-msgstr ""
+msgstr "录音"
#: ../root/doc/edit_type.tt:8
msgid "Reject"
-msgstr ""
+msgstr "驳回"
#: ../root/edit/search_macros.tt:397
msgid "Relationship Editor"
-msgstr ""
+msgstr "关联编辑器"
#: ../root/edit/search_macros.tt:423
#: ../root/edit/details/AddRelationshipType.js:56
#: ../root/edit/details/EditRelationshipType.js:156
#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
-#: ../root/utility/tableColumns.js:745
+#: ../root/utility/tableColumns.js:750
msgid "Relationship Type"
-msgstr ""
+msgstr "关联类型"
#: ../root/cdtoc/attach_artist_releases.tt:15
#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
#: ../root/components/list/ReleaseList.js:81
#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
#: ../root/edit/details/ChangeReleaseQuality.js:24
#: ../root/edit/details/EditBarcodes.js:38
#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
#: ../root/edit/details/EditReleaseLabel.js:42
#: ../root/edit/details/MergeReleases.js:235
#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
#: ../root/edit/details/ReorderCoverArt.js:34
#: ../root/edit/details/ReorderMediums.js:25
#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
#: ../root/layout/components/Search.js:29
#: ../root/release_group/ReleaseGroupIndex.js:167
#: ../root/report/components/CDTocReleaseList.js:50
@@ -2208,13 +2281,13 @@ msgstr "专辑"
#: ../root/edit/search_macros.tt:423
msgid "Release Country"
-msgstr "专辑地区"
+msgstr "发行国或地区"
#: ../root/release/edit/layout.tt:14
msgid "Release Duplicates"
-msgstr ""
+msgstr "重复专辑"
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
#: ../root/layout/components/Search.js:30
#: ../root/report/DuplicateReleaseGroups.js:60
@@ -2232,63 +2305,51 @@ msgstr "专辑组"
#: ../root/release_group/edit_form.tt:12
msgid "Release Group Details"
-msgstr ""
-
-#: ../root/release/edit/information.tt:37
-msgid "Release Group:"
-msgstr ""
+msgstr "专辑组详情"
#: ../root/cdtoc/attach_artist_releases.tt:31
#: ../root/cdtoc/attach_filter_release.tt:46
msgid "Release Group: {release_group_link}"
-msgstr ""
+msgstr "专辑组:{release_group_link}"
#: ../root/release/edit/layout.tt:12
msgid "Release Information"
-msgstr ""
+msgstr "专辑信息"
#: ../root/edit/search_macros.tt:423
msgid "Release Language"
-msgstr ""
+msgstr "专辑语言"
#: ../root/edit/search_macros.tt:423
msgid "Release Quality"
-msgstr ""
+msgstr "专辑质量"
-#: ../root/release/edit/information.tt:122
+#: ../root/release/edit/information.tt:124
#: ../root/static/scripts/common/components/ReleaseEvents.js:34
msgid "Release event"
-msgstr ""
+msgstr "发行事件"
#: ../root/release_group/layout.tt:1
#: ../root/release_group/ReleaseGroupLayout.js:35
msgid "Release group “{name}” by {artist}"
-msgstr ""
+msgstr "{artist} 的专辑组 “{name}”"
#: ../root/release/edit/information.tt:3
#: ../root/layout/components/sidebar/ReleaseSidebar.js:121
msgid "Release information"
-msgstr ""
+msgstr "专辑信息"
#: ../root/cdtoc/attach_filter_release.tt:9 ../root/cdtoc/lookup.tt:85
#: ../root/cdtoc/move_search.tt:15
msgid "Release title or MBID"
-msgstr ""
+msgstr "专辑标题或 MBID"
#: ../root/release/layout.tt:1 ../root/release/ReleaseLayout.js:32
msgid "Release “{name}” by {artist}"
-msgstr ""
+msgstr "{artist} 的专辑 “{name}”"
-#: ../root/release/edit/tracklist.tt:105
-#: ../root/edit/details/AddReleaseLabel.js:26
-#: ../root/edit/details/EditRelease.js:46
-#: ../root/edit/details/RemoveReleaseLabel.js:26
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
-msgid "Release:"
-msgstr ""
-
-#: ../root/cdtoc/list.tt:60 ../root/release/add_cover_art.tt:110
-#: ../root/release/discids.tt:42
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
#: ../root/account/applications/ApplicationList.js:45
#: ../root/admin/attributes/Attribute.js:106
#: ../root/admin/attributes/Language.js:68
@@ -2304,7 +2365,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
#: ../root/release/CoverArt.js:116
-#: ../root/static/scripts/account/components/EditProfileForm.js:285
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
#: ../root/static/scripts/edit/components/Multiselect.js:210
#: ../root/user/UserCollections.js:135
msgid "Remove"
@@ -2312,74 +2373,74 @@ msgstr "移除"
#: ../root/relationship/linktype/form.tt:81
msgid "Remove Example"
-msgstr ""
+msgstr "移除示例"
-#: ../root/release/edit/information.tt:197
+#: ../root/release/edit/information.tt:199
msgid "Remove Label"
-msgstr ""
+msgstr "移除厂牌"
-#: ../root/release/edit/information.tt:157
+#: ../root/release/edit/information.tt:159
msgid "Remove Release Event"
-msgstr ""
+msgstr "移除发行事件"
#: ../root/work/edit_form.tt:60
msgid "Remove attribute"
-msgstr ""
+msgstr "移除属性"
#: ../root/components/common-macros.tt:584
#: ../root/components/common-macros.tt:592
#: ../root/components/RemoveFromMergeTableCell.js:39
-#: ../root/utility/tableColumns.js:722 ../root/utility/tableColumns.js:732
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
msgid "Remove from merge"
-msgstr ""
+msgstr "从合并中移除"
#: ../root/release/edit/tracklist.tt:330
#: ../lib/MusicBrainz/Server/Edit/Medium/Delete.pm:23
msgid "Remove medium"
-msgstr ""
+msgstr "移除媒体"
#: ../root/layout/merge-helper.tt:33
#: ../root/layout/components/MergeHelper.js:75
msgid "Remove selected entities"
-msgstr ""
+msgstr "移除选中实体"
#: ../root/release/edit/tracklist.tt:227
#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveTrack.pm:11
msgid "Remove track"
-msgstr ""
+msgstr "删除音轨"
#: ../root/components/rating-macros.tt:1
#: ../root/static/scripts/common/utility/ratingTooltip.js:12
msgid "Remove your rating"
-msgstr ""
+msgstr "移除您的评分"
#: ../root/components/forms.tt:163 ../root/components/forms.tt:168
msgid "Remove {item}"
-msgstr ""
+msgstr "移除{item}"
#: ../root/release/reorder_cover_art.tt:1
#: ../root/release/reorder_cover_art.tt:4
msgctxt "header"
msgid "Reorder Cover Art"
-msgstr ""
+msgstr "重排封面"
#: ../root/release/add_cover_art.tt:83
msgid "Request signature..."
-msgstr ""
+msgstr "请求签名..."
#: ../root/release/edit/tracklist.tt:525
msgid "Reset track numbers"
-msgstr ""
+msgstr "重置音轨编号"
#: ../root/cdtoc/attach_filter_release.tt:58 ../root/cdtoc/move_search.tt:25
#: ../root/components/search.tt:19 ../root/cdtoc/SelectArtistForCDToc.js:63
#: ../root/cdtoc/SelectArtistForCDToc.js:99
msgid "Results:"
-msgstr ""
+msgstr "结果:"
#: ../root/release/edit/recordings.tt:14
msgid "Reuse previous recordings"
-msgstr ""
+msgstr "复用前一录音"
#: ../root/relationship/linktype/form.tt:14
#: ../root/edit/details/AddRelationshipType.js:113
@@ -2388,49 +2449,54 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:203
#: ../root/relationship/linktype/RelationshipTypePairTree.js:72
msgid "Reverse link phrase:"
-msgstr ""
+msgstr "反向链接文本"
-#: ../root/release/edit/information.tt:305
+#: ../root/release/edit/information.tt:307
msgid "Review the {packaging|list of packaging types} for help."
-msgstr ""
+msgstr "查看 {packaging|包装类型列表} 以寻求帮助。"
#: ../root/release/edit/layout.tt:27
msgid ""
"Review the {url|documentation} on release editor seeding and make sure your "
"data is formatted correctly."
-msgstr ""
+msgstr "查看关于专辑编辑器制种的{url|文档},确保您的数据格式正确。"
#: ../root/layout.tt:132
msgid ""
"Running: {branch} ({sha})"
msgstr ""
+"正在运行:{branch} ({sha})"
#: ../root/admin/attributes/form.tt:82
#: ../root/relationship/linkattributetype/form.tt:24
#: ../root/relationship/linktype/form.tt:200
-#: ../root/static/scripts/account/components/EditProfileForm.js:307
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
#: ../root/static/scripts/account/components/PreferencesForm.js:260
msgid "Save"
msgstr "保存"
-#: ../root/release/edit/information.tt:116
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:186
-msgid "Script:"
-msgstr ""
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr "文字"
#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
-#: ../root/release/edit/tracklist.tt:117 ../root/admin/EmailSearch.js:75
-#: ../root/admin/PrivilegeSearch.js:146 ../root/cdstub/ImportCDStub.js:49
-#: ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
#: ../root/doc/components/DocSearchBox.js:22
#: ../root/layout/components/BottomMenu.js:217
#: ../root/layout/components/Search.js:94
#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
-#: ../root/static/scripts/common/components/Autocomplete2.js:817
-#: ../root/static/scripts/common/components/Autocomplete2.js:837
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
#: ../root/static/scripts/common/components/SearchIcon.js:14
#: ../root/taglookup/Form.js:54
msgid "Search"
@@ -2438,30 +2504,26 @@ msgstr "搜索"
#: ../root/cdtoc/lookup.tt:71
msgid "Search by artist"
-msgstr ""
+msgstr "根据艺术家搜索"
#: ../root/cdtoc/lookup.tt:81
msgid "Search by release"
-msgstr ""
+msgstr "根据专辑搜索"
#: ../root/edit/search.tt:2 ../root/edit/search_macros.tt:8
#: ../root/edit/search_results.tt:3
msgid "Search for Edits"
-msgstr ""
-
-#: ../root/release/edit/recordings.tt:163
-msgid "Search:"
-msgstr ""
+msgstr "搜索编辑"
#: ../root/release/edit/tracklist.tt:136
msgid "Searching..."
-msgstr ""
+msgstr "搜索中..."
#: ../root/release/edit/information.tt:98 ../root/release_group/edit_form.tt:17
#: ../root/edit/details/AddReleaseGroup.js:80
#: ../root/edit/details/EditReleaseGroup.js:79
msgid "Secondary Types:"
-msgstr ""
+msgstr "二级类型:"
#: ../root/cdtoc/move_search.tt:42 ../root/cdtoc/SelectArtistForCDToc.js:94
msgid "Select"
@@ -2470,28 +2532,28 @@ msgstr "选择"
#: ../root/release/edit/tracklist.tt:123
msgid ""
"Select a medium from the search results below and then click \"Add Medium\"."
-msgstr ""
+msgstr "从以下的搜索结果中选择一个媒介,然后点击“添加媒介”。"
#: ../root/cdtoc/move_search.tt:4
msgid ""
"Select a release to which the disc ID {discid}
. should be moved "
"to."
-msgstr ""
+msgstr "选择一个专辑,唱片 ID{discid}
将被移动至该专辑。"
#: ../root/components/forms.tt:360
msgid ""
"Select any type from the list to see its description. If the work doesn’t "
"seem to match any type, just leave this blank."
-msgstr ""
+msgstr "从列表中选择任一类型来查看其描述。如果作品不匹配任何类型,留空即可。"
#: ../root/release/add_cover_art.tt:31
msgid "Select images..."
-msgstr ""
+msgstr "选择图片..."
#: ../root/components/forms.tt:259 ../root/components/forms.tt:284
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:114
msgid "Sentence"
-msgstr ""
+msgstr "语句"
#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Series.pm:7
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:51
@@ -2507,41 +2569,48 @@ msgstr "系列"
#: ../root/series/edit_form.tt:10
msgid "Series Details"
-msgstr ""
+msgstr "系列详情"
#: ../root/release_group/set_cover_art.tt:1
msgid "Set Release Group Cover Art"
-msgstr ""
+msgstr "设置专辑组封面"
#: ../root/release_group/set_cover_art.tt:4
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/SetCoverArt.pm:20
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:88
msgid "Set cover art"
-msgstr ""
+msgstr "设置封面"
#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
-msgid "Set track durations"
-msgstr ""
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
+msgstr "设置音轨长度"
-#: ../root/event/edit_form.tt:17
-msgid "Setlist:"
-msgstr ""
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
+msgstr "歌单"
#: ../root/edit/search_macros.tt:43
msgid ""
"Show me {autoedit_select_block} sorted {sort_select_block} that "
"{match_or_negation_block} {and_vs_or_block} of the following conditions:"
msgstr ""
+"按{sort_select_block}显示{match_or_negation_block}下列条件{and_vs_or_block}的"
+"{autoedit_select_block}"
#: ../root/release/edit/duplicates.tt:2
msgid "Similar releases"
-msgstr ""
+msgstr "类似专辑"
#: ../root/release/edit/tracklist.tt:499
msgid ""
"Some discs contain a hidden track in the pregap section that precedes track "
"1. Use this to add (or remove) the special pregap track section."
msgstr ""
+"某些唱片在音轨 1 之前的前置间隙部分包含了一条隐藏音轨。使用这个来添加(或移"
+"除)特殊的前间隙音轨部分。"
#: ../root/release/edit/tracklist.tt:514
msgid ""
@@ -2549,114 +2618,149 @@ msgid ""
"to add (or remove) the special data tracks section. You should only add data "
"tracks that contain audio or video ({info|more info})"
msgstr ""
+"一些碟片在所有音轨后含有一或多个数据轨。使用此宣讲添加(或移除)特设的数据轨部"
+"分。您应该之添加含有音视频信息的数据轨({info|更多信息})"
#: ../root/release/edit/editnote.tt:4
msgid ""
"Some errors were detected in the data you’ve entered. Click on the "
"highlighted tabs and correct any visible errors."
-msgstr ""
+msgstr "您输入的数据中有错误。点击高亮的选项卡并修正所有可见的错误。"
-#: ../root/components/forms.tt:239
-#: ../root/layout/components/sidebar/ArtistSidebar.js:76
-msgid "Sort name:"
-msgstr ""
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
+msgstr "排序名称"
#: ../root/artist/split.tt:1
msgid "Split Artist"
-msgstr ""
+msgstr "分割艺术家"
#: ../root/artist/split.tt:6 ../root/artist/CannotSplit.js:22
msgid "Split Into Separate Artists"
-msgstr ""
+msgstr "分割为不同艺术家"
-#: ../root/edit/search_macros.tt:423
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
msgctxt "edit status"
msgid "Status"
msgstr "状态"
#: ../root/release/edit/information.tt:111
-msgid "Status:"
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
msgstr ""
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
msgid "Stop using beta site"
-msgstr ""
+msgstr "停止使用测试版网站"
#: ../root/release/edit/editnote.tt:44
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1870
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
msgid "Submitting edits..."
-msgstr ""
+msgstr "正在提交编辑..."
-#: ../root/release/edit/recordings.tt:182
+#: ../root/release/edit/recordings.tt:193
msgid "Suggested recordings:"
-msgstr ""
+msgstr "建议的录音:"
#: ../root/release/edit/tracklist.tt:526
msgid "Swap track titles with artist credits"
-msgstr ""
+msgstr "交换艺术家名单与音轨标题"
#: ../root/cdtoc/attach_artist_releases.tt:21
#: ../root/cdtoc/attach_filter_release.tt:35 ../root/cdtoc/list.tt:15
#: ../root/recording/RecordingIndex.js:65
#: ../root/release_group/ReleaseGroupIndex.js:177
#: ../root/search/components/RecordingResults.js:146
-#: ../root/search/components/ReleaseResults.js:125
+#: ../root/search/components/ReleaseResults.js:124
#: ../root/static/scripts/common/components/TaggerIcon.js:82
-#: ../root/utility/tableColumns.js:777
+#: ../root/utility/tableColumns.js:782
msgid "Tagger"
-msgstr "标记器"
+msgstr "分类者"
#: ../root/release/add_cover_art.tt:12
msgid ""
"The Cover Art Archive is currently experiencing difficulties. Adding images "
"for this release is unlikely to work at the moment."
-msgstr ""
+msgstr "Cover Art Archive 目前遇到了问题。现在可能无法为此专辑添加图片。"
-#: ../root/release/edit/information.tt:334
+#: ../root/release/edit/information.tt:348
msgid "The annotation field functions like a miniature wiki."
-msgstr ""
+msgstr "注释栏功能类似于小型wiki。"
-#: ../root/release/edit/information.tt:295
+#: ../root/release/edit/information.tt:297
msgid "The catalog number you have entered looks like an Amazon ASIN."
-msgstr ""
+msgstr "您输入的目录编号看起来像是一个 Amazon ASIN。"
#: ../root/layout.tt:91 ../root/layout/index.js:285
msgid ""
"The data you have submitted does not make any changes to the data already "
"present."
-msgstr ""
+msgstr "您提交的数据对现存数据未造成任何更改。"
#: ../root/release/edit/layout.tt:23
msgid "The data you’ve seeded contained the following errors:"
-msgstr ""
+msgstr "您制种的数据含有下列错误:"
-#: ../root/release/edit/information.tt:161
+#: ../root/release/edit/information.tt:163
msgid "The date you've entered is not valid."
-msgstr ""
+msgstr "您输入的日期无效。"
-#: ../root/release/edit/information.tt:347
+#: ../root/release/edit/information.tt:361
msgid ""
"The disambiguation field is used to help users distinguish between "
"identically named releases."
-msgstr ""
+msgstr "消歧义栏用于帮助用户区分同名专辑。"
#: ../root/edit/search_macros.tt:9
msgid ""
"The filters below allow you to find only edits fulfilling specific criteria. "
"See the {doc_link|documentation} for more info about using the filters."
msgstr ""
+"下列过滤器允许您按照特定条件筛选编辑。如需更多关于过滤器的信息,请查看 "
+"{doc_link|文档}。"
-#: ../root/release/edit/information.tt:337
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
msgid ""
"The purpose of this field is to add information that usually doesn't fit "
"into the strict structural data schema of MusicBrainz (be it due to "
"technical limitations that may be addressed later, or because the "
"information in itself has to be free-text)."
msgstr ""
+"此栏用于添加不符合MusicBrainz严格数据结构的信息(由于可能会在后面叙述的技术闲"
+"置或者信息本身是自由文本)"
+
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
#: ../root/layout.tt:71 ../root/layout/index.js:245
msgid "The server is temporarily in read-only mode for database maintenance."
-msgstr ""
+msgstr "出于数据库维护的需要,此服务器临时处于只读模式。"
#: ../root/release/edit/tracklist.tt:124
msgid ""
@@ -2664,20 +2768,23 @@ msgid ""
"but not other data such as medium format) will be loaded as a medium on this "
"release."
msgstr ""
+"媒介的音轨列表(含音轨/录音关联,但不含诸如媒介格式一类的其他数据)会作为专辑中"
+"的一个媒介导入。"
#: ../root/release/edit/recordings.tt:30 ../root/edit/details/AddMedium.js:154
#: ../root/edit/details/RemoveMedium.js:91
#: ../root/edit/details/RemoveMedium.js:108
#: ../root/static/scripts/release/components/MediumRelationshipEditor.js:193
msgid "The tracklist for this medium is unknown."
-msgstr ""
+msgstr "此媒介的音轨列表未知。"
-#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:162
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
#: ../root/static/scripts/edit/components/PartialDateInput.js:52
msgid ""
"The year should have four digits. If you want to enter a year earlier than "
"1000 CE, please pad with zeros, such as “0123”."
msgstr ""
+"年份应为四位数字。如要输入早于公元 1000 年的年份,请用零补全,如“0123”。"
#: ../root/cdtoc/lookup.tt:14
msgid ""
@@ -2686,12 +2793,15 @@ msgid ""
"disc to another MusicBrainz release, or to add a new one if the search shows "
"it is missing from the database."
msgstr ""
+"目前MusicBrainz中没有与您提供的信息相关的光盘。您可以使用下面的表单进行搜索,"
+"以便将此光盘附加到MusicBrainz的另一个发行版上,或者如果搜索显示该光盘在数据库"
+"中缺失,则添加一个新的光盘。"
#: ../root/release/discids.tt:56
msgid ""
"There are no disc IDs attached to this release; to find out more about how "
"to add one, see {doc|How to Add Disc IDs}."
-msgstr ""
+msgstr "此专辑未附加任何唱片ID;要了解如何添加,参见 {doc|如何添加唱片ID}。"
#: ../root/artist/split.tt:10
msgid ""
@@ -2701,16 +2811,19 @@ msgid ""
"{rel_uri|relationships} instead, which will allow ModBot to automatically "
"remove this artist in the upcoming days."
msgstr ""
+"没有录音,专辑组,专辑或音轨是在{name}名下的。如果你想要移除{name},请编辑"
+"{alias_uri|别名}选项底部的所有艺术家名单并移除所有现存的{rel_uri|关联},这样"
+"ModBot可以在日后自动移除这个艺术家。"
#: ../root/place/edit_form.tt:29
msgid "These coordinates could not be parsed."
-msgstr ""
+msgstr "无法解析这些坐标。"
#: ../root/cdtoc/attach_list.tt:54 ../root/cdtoc/attach_list.tt:67
msgid "This CDTOC is already attached to this medium."
-msgstr ""
+msgstr "此 CD 目录已经附加到此媒介。"
-#: ../root/release/edit/information.tt:340
+#: ../root/release/edit/information.tt:354
msgid ""
"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
@@ -2718,62 +2831,66 @@ msgid ""
"can quote a source to support a point you're making, you should never enter "
"promotional texts or other artist or label-owned texts into the annotation."
msgstr ""
+"该注释将以开放许可证的形式发布 (CC BY-NC-"
+"SA 3.0) 故因此,它不应该包含你在该许可下无权发布的文本。虽然你可以引用一"
+"个来源来支持你的观点,但你不应该在注释中输入宣传文本或其他艺术家或标签的文"
+"本。"
#: ../root/area/edit_form.tt:17
msgid "This area has ended."
-msgstr ""
+msgstr "此区域已不存在。"
#: ../root/artist/edit_form.tt:53
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:53
msgid "This artist has ended."
-msgstr ""
+msgstr "这位艺术家已经逝世。"
#: ../root/relationship/linkattributetype/form.tt:20
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:145
msgid "This attribute supports free text credits"
-msgstr ""
+msgstr "此属性支持自由文本贡献名单"
#: ../root/work/edit_form.tt:56
msgid "This attribute type is only used for grouping, please select a subtype"
-msgstr ""
+msgstr "此属性类型只用于分组,请选择一个子类型"
#: ../root/relationship/linkattributetype/form.tt:21
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:151
msgid "This attribute uses free text values"
-msgstr ""
+msgstr "该属性使用自由文本值"
#: ../root/layout.tt:37 ../root/layout/index.js:111
msgid ""
"This beta test server allows testing of new features with the live database."
-msgstr ""
+msgstr "这台内测服务器可用于在实时数据库上测试新功能。"
#: ../root/release/edit/tracklist.tt:509
msgid "This disc contains data tracks at the end"
-msgstr ""
+msgstr "此唱片末尾含有数据音轨"
#: ../root/release/edit/tracklist.tt:494
msgid "This disc has a hidden pregap track before track 1"
-msgstr ""
+msgstr "此唱片在音轨 1 之前有隐藏的前间隙音轨。"
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:37
msgid "This entity has been removed, and cannot be displayed correctly."
-msgstr ""
+msgstr "这个项目已被移除,无法正常显示。"
#: ../root/components/common-macros.tt:186
#: ../root/static/scripts/common/components/EntityLink.js:36
-msgid "This entity will be created by this edit."
+msgid "This entity will be added by this edit."
msgstr ""
#: ../root/event/edit_form.tt:15
msgid "This event was cancelled."
-msgstr ""
+msgstr "此事件已取消。"
-#: ../root/release/edit/information.tt:350
+#: ../root/release/edit/information.tt:364
msgid ""
"This field is not a place to store general background information about the "
"release: that kind of information should go in the annotation field."
-msgstr ""
+msgstr "此字段不是存储有关发布的一般背景信息的地方:此类信息应放在注释字段中。"
#: ../root/artist/edit_credit.tt:12
msgid ""
@@ -2781,6 +2898,8 @@ msgid ""
"accepted, all tracks, recordings, releases and release groups using this "
"artist credit will be update to use the new one."
msgstr ""
+"此表格允许您编辑艺术家姓名“{ac}”。编辑被接受后,所有使用此艺术家信息的曲目、"
+"录音、专辑和专辑组都将更新为新的值。"
#: ../root/artist/split.tt:29
msgid ""
@@ -2788,26 +2907,30 @@ msgid ""
"is accepted, existing artist credits will be updated, and collaboration "
"relationships will be removed"
msgstr ""
+"此表格允许你将{artist}拆分为多个艺术家。在此编辑被接受后,现存的艺术家名单会"
+"更新,而合作品关联则会被移除。"
#: ../root/admin/attributes/form.tt:73
msgid "This format can have disc IDs"
-msgstr ""
+msgstr "此格式可以关联唱片 ID"
#: ../root/layout.tt:37 ../root/layout/index.js:115
msgid "This is a MusicBrainz development server."
-msgstr ""
+msgstr "这是一台 MusicBrainz 开发服务器。"
#: ../root/layout.tt:54 ../root/layout/index.js:143
msgid ""
"This is a MusicBrainz mirror server. To edit or make changes to the data, "
"please {uri|return to musicbrainz.org}."
msgstr ""
+"这是一台 MusicBrainz 镜像服务器。若要编辑数据,请 {uri|返回 musicbrainz."
+"org}。"
#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:73
msgid ""
"This is a PDF file, the thumbnail may not show the entire contents of the "
"file."
-msgstr ""
+msgstr "这是一个 PDF 文件,缩略图可能未显示文件的所有内容。"
#: ../root/admin/attributes/form.tt:77
msgid "This is a free text work attribute"
@@ -2822,25 +2945,25 @@ msgstr ""
#: ../root/release_group/set_cover_art.tt:76
msgid "This is the current release group image"
-msgstr ""
+msgstr "这是当前的专辑组图片"
#: ../root/label/edit_form.tt:36
msgid "This label has ended."
-msgstr ""
+msgstr "此厂牌已不存在。"
-#: ../root/release/edit/information.tt:207
+#: ../root/release/edit/information.tt:209
msgid "This label/catalog number pair already exists."
-msgstr ""
+msgstr "此厂牌/目录编号配对已经存在。"
#: ../root/cdtoc/attach_list.tt:56
msgid "This medium format cannot have a disc ID attached."
-msgstr ""
+msgstr "此媒介格式无法附加唱片 ID。"
#: ../root/release/edit/tracklist.tt:383
msgid ""
"This medium format is set to “Digital Media”, but the packaging type for "
"this release is not “None”."
-msgstr ""
+msgstr "此媒介的格式为“数字媒介”,但此专辑的包装类型不是“无”。"
#: ../root/release/edit/tracklist.tt:334
msgid ""
@@ -2856,7 +2979,7 @@ msgstr ""
#: ../root/place/edit_form.tt:32
msgid "This place has ended."
-msgstr ""
+msgstr "此地点已不存在。"
#: ../root/release/edit/tracklist.tt:369
msgid ""
@@ -2867,33 +2990,33 @@ msgid ""
msgstr ""
#: ../root/components/common-macros.tt:229
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:685
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
#: ../root/static/scripts/common/components/EntityLink.js:323
msgid "This recording is a video"
-msgstr ""
+msgstr "此录音是一个视频"
#: ../root/relationship/linktype/form.tt:17
msgid "This relationship allows setting dates"
-msgstr ""
+msgstr "此关联允许设定日期"
#: ../root/relationship/linktype/form.tt:16
msgid "This relationship is deprecated"
-msgstr ""
+msgstr "此关联已弃用"
#: ../root/relationship/linktype/form.tt:100
msgid "This relationship type does not have any examples."
-msgstr ""
+msgstr "此关联类型没有任何示例。"
-#: ../root/release/edit/information.tt:233
+#: ../root/release/edit/information.tt:235
msgid "This release does not have a barcode"
-msgstr ""
+msgstr "此专辑没有条形码"
#: ../root/release/discids.tt:58
msgid "This release has no mediums that can have disc IDs."
-msgstr ""
+msgstr "此专辑没有可关联唱片 ID 的媒介。"
-#: ../root/release/edit/information.tt:356
+#: ../root/release/edit/information.tt:370
msgid ""
"This release status should be used for unofficial translations and "
"transliterations of tracklists and release titles, and does not denote a "
@@ -2911,21 +3034,27 @@ msgstr ""
#: ../root/components/common-macros.tt:559
#: ../root/static/scripts/common/components/DataTrackIcon.js:13
msgid "This track is a data track."
-msgstr ""
+msgstr "该音轨是数据轨。"
#: ../root/components/common-macros.tt:555
#: ../root/static/scripts/common/components/PregapTrackIcon.js:13
msgid "This track is hidden in the pregap."
-msgstr ""
+msgstr "此音轨隐藏在前置间隙中。"
-#: ../root/event/edit_form.tt:40
-#: ../root/layout/components/sidebar/EventSidebar.js:69
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
#: ../root/main/error/components/ErrorEnvironment.js:27
-msgid "Time:"
-msgstr ""
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
+msgstr "时间:"
#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
-#: ../root/release/edit/tracklist.tt:162 ../root/release/edit/tracklist.tt:452
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
@@ -2940,38 +3069,34 @@ msgstr ""
msgid "Title"
msgstr "标题"
-#: ../root/release/edit/information.tt:8
-msgid "Title:"
-msgstr ""
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
+msgstr "要修改类型,请 {edit_page|编辑专辑组}。"
#: ../root/release/edit/tracklist.tt:243
msgid ""
-"To create a new tracklist, use an existing medium or import a disc from a CD "
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
"stub, select the appropriate tab."
msgstr ""
-#: ../root/release/edit/information.tt:105
-msgid "To edit types, please {edit_page|edit the release group}."
-msgstr ""
-
#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
#: ../root/cdtoc/CDTocInfo.js:44
msgid "Total length:"
-msgstr ""
+msgstr "总长度:"
#: ../root/cdstub/index.tt:17 ../root/cdstub/CDStubIndex.js:51
#: ../root/cdtoc/CDTocInfo.js:40
msgid "Total tracks:"
-msgstr ""
+msgstr "音轨总数:"
#: ../root/release/edit/tracklist.tt:524
#: ../root/static/scripts/release-editor/dialogs.js:40
msgid "Track Parser"
-msgstr ""
+msgstr "音轨解析器"
#: ../root/release/edit/tracklist.tt:114
msgid "Track count:"
-msgstr ""
+msgstr "音轨数:"
#: ../root/cdstub/index.tt:7 ../root/release/edit/layout.tt:16
#: ../root/cdstub/CDStubIndex.js:41 ../root/edit/details/AddMedium.js:144
@@ -2980,9 +3105,10 @@ msgstr ""
#: ../root/static/scripts/release-editor/fields.js:768
#: ../root/static/scripts/release/components/TracklistAndCredits.js:359
msgid "Tracklist"
-msgstr ""
+msgstr "音轨列表"
#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
#: ../root/artist_credit/ArtistCreditIndex.js:156
#: ../root/artist_credit/ArtistCreditLayout.js:29
#: ../root/components/list/ReleaseList.js:108
@@ -2990,7 +3116,7 @@ msgstr ""
#: ../root/edit/details/historic/AddRelease.js:83
#: ../root/release_group/ReleaseGroupIndex.js:170
#: ../root/search/components/CDStubResults.js:46
-#: ../root/search/components/ReleaseResults.js:115
+#: ../root/search/components/ReleaseResults.js:114
msgid "Tracks"
msgstr "音轨"
@@ -3002,10 +3128,6 @@ msgid ""
"information about this release’s media, remove all media."
msgstr ""
-#: ../root/release_group/set_cover_art.tt:47
-msgid "Tracks:"
-msgstr ""
-
#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
msgid "Turkish"
@@ -3013,7 +3135,7 @@ msgstr "土耳其语"
#: ../root/layout.tt:118 ../root/layout/components/Footer.js:34
msgid "Twitter"
-msgstr ""
+msgstr "Twitter"
#: ../root/edit/search_macros.tt:423
#: ../root/account/applications/ApplicationList.js:155
@@ -3043,25 +3165,25 @@ msgstr ""
#: ../root/report/components/WorkList.js:66
#: ../root/search/components/AnnotationResults.js:54
#: ../root/search/components/AreaResults.js:64
-#: ../root/search/components/ArtistResults.js:54
+#: ../root/search/components/ArtistResults.js:53
#: ../root/search/components/EventResults.js:76
#: ../root/search/components/InstrumentResults.js:54
#: ../root/search/components/LabelResults.js:67
#: ../root/search/components/PlaceResults.js:64
#: ../root/search/components/RecordingResults.js:149
#: ../root/search/components/ReleaseGroupResults.js:65
-#: ../root/search/components/ReleaseResults.js:121
+#: ../root/search/components/ReleaseResults.js:120
#: ../root/search/components/SeriesResults.js:58
#: ../root/search/components/WorkResults.js:58
#: ../root/static/scripts/account/components/ApplicationForm.js:88
#: ../root/static/scripts/alias/AliasEditForm.js:331
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:200
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:871
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:544
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
#: ../root/static/scripts/common/components/FilterForm.js:83
#: ../root/static/scripts/edit/externalLinks.js:1207
#: ../root/static/scripts/edit/externalLinks.js:1529
-#: ../root/utility/tableColumns.js:649 ../root/utility/tableColumns.js:654
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
msgid "Type"
msgstr "类型"
@@ -3072,11 +3194,11 @@ msgstr "类型"
#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
#: ../root/layout/components/sidebar/CollectionSidebar.js:59
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:150
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
#: ../root/layout/components/sidebar/SidebarType.js:25
#: ../root/search/components/SearchForm.js:84
msgid "Type:"
-msgstr ""
+msgstr "类型:"
#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
#: ../root/release_group/set_cover_art.tt:69
@@ -3084,127 +3206,137 @@ msgstr ""
#: ../root/edit/details/EditCoverArt.js:58
#: ../root/edit/details/RemoveCoverArt.js:33 ../root/release/CoverArt.js:86
msgid "Types:"
-msgstr ""
+msgstr "类型:"
-#: ../root/url/edit_form.tt:6
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
#: ../root/main/error/components/ErrorEnvironment.js:49
-msgid "URL:"
-msgstr ""
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr "URL"
#: ../root/release/edit/tracklist.tt:21
msgid "Unable to parse the tracklist you entered."
-msgstr ""
+msgstr "无法解析输入的音轨列表。"
#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
-#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:903
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
msgid "Untrusted"
-msgstr ""
+msgstr "未信任的"
#: ../root/release/edit/recordings.tt:98
msgid "Update the recording artist credit to match the track artist credit."
-msgstr ""
+msgstr "更改录音艺术家名单以匹配音轨艺术家名单。"
#: ../root/release/edit/recordings.tt:93
msgid "Update the recording title to match the track title."
-msgstr ""
+msgstr "更新音轨名以匹配音轨标题。"
#: ../root/release/add_cover_art.tt:84
msgid "Uploading image..."
-msgstr ""
+msgstr "正在上传图片..."
#: ../root/components/forms.tt:272 ../root/components/forms.tt:297
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:142
msgid "Uppercase Roman numerals"
-msgstr ""
+msgstr "大写罗马数字"
#: ../root/layout.tt:120 ../root/layout/components/Footer.js:45
msgid "Use beta site"
-msgstr ""
+msgstr "使用测试版网站"
#: ../root/release/edit/tracklist.tt:68
msgid "Use custom artist delimiter"
-msgstr ""
+msgstr "使用自定义艺术家分隔符"
#: ../root/release/edit/tracklist.tt:261
msgid "Use the following fields to search for a CD stub."
-msgstr ""
+msgstr "使用以下表单域搜索 CD 存根。"
#: ../root/release/edit/tracklist.tt:256
msgid "Use the following fields to search for an existing medium."
-msgstr ""
+msgstr "使用以下的表单域来搜索现有媒介。"
#: ../root/release/edit/tracklist.tt:60
msgid "Use track artists"
-msgstr ""
+msgstr "使用音轨艺术家"
#: ../root/release/edit/tracklist.tt:95
msgid "Use track lengths"
-msgstr ""
+msgstr "使用音轨长度"
#: ../root/release/edit/tracklist.tt:37
msgid "Use track numbers"
-msgstr ""
+msgstr "使用音轨编号"
#: ../root/release/edit/tracklist.tt:74
msgid "Use track titles"
-msgstr ""
+msgstr "使用音轨标题"
#: ../root/release/add_cover_art.tt:81
msgid "Validating file..."
-msgstr ""
+msgstr "正在验证文件..."
#: ../root/recording/edit_form.tt:44
#: ../root/edit/details/AddStandaloneRecording.js:64
#: ../root/edit/details/EditRecording.js:77
msgid "Video"
-msgstr ""
+msgstr "视频"
#: ../root/recording/layout.tt:3 ../root/recording/RecordingLayout.js:39
msgid "Video “{name}” by {artist}"
-msgstr ""
+msgstr "{artist}的视频“{name}”"
#: ../root/edit/search_macros.tt:423 ../root/edit/EditIndex.js:76
#: ../root/edit/components/EditHeader.js:128
msgid "Vote tally"
-msgstr ""
+msgstr "投票计数"
#: ../root/edit/search_macros.tt:423 ../root/elections/ElectionVotes.js:26
msgid "Voter"
msgstr "投票者"
#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
-#: ../root/user/UserProfile.js:693
+#: ../root/user/UserProfile.js:698
msgid "Votes"
-msgstr ""
+msgstr "投票"
#: ../root/edit/search_macros.tt:423
msgid "Voting closed"
-msgstr ""
+msgstr "投票已关闭"
#: ../root/doc/edit_type.tt:32
msgid "Voting period (days)"
-msgstr ""
+msgstr "投票阶段(天)"
-#: ../root/release/edit/tracklist.tt:362 ../root/release/edit/tracklist.tt:382
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
#: ../root/static/scripts/common/components/Warning.js:28
#: ../root/static/scripts/common/components/WarningIcon.js:14
msgid "Warning"
-msgstr ""
+msgstr "警告"
-#: ../root/release/edit/information.tt:280
+#: ../root/release/edit/information.tt:282
msgid ""
"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
"for which they don't know the actual date. Please use this date only "
"if you're certain this date is correct!"
msgstr ""
-#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:408
-msgid "Warning:"
-msgstr ""
-
#: ../root/cdtoc/attach_filter_release.tt:61
msgid "We couldn’t find a release matching that MBID."
-msgstr ""
+msgstr "无法找到匹配此 MBID 的专辑。"
#: ../root/cdtoc/lookup.tt:7
msgid ""
@@ -3213,10 +3345,13 @@ msgid ""
"below in order to attach this disc to another MusicBrainz release, or to add "
"a new one if the search shows it is missing from the database."
msgstr ""
+"我们找到了与您要求的信息相匹配的光盘,如下所示。如果这些都不是你想要的发行"
+"版,你可以使用下面的表单进行搜索,以便将此光盘附加到MusicBrainz的另一个发行版"
+"中,或者如果搜索结果显示数据库中缺少该光盘,则添加一个新光盘。"
#: ../root/cdtoc/lookup.tt:12
msgid "We used DiscID {discid}
to look up this information."
-msgstr ""
+msgstr "我们使用唱片 ID {discid}
来查找此信息。"
#: ../root/layout/merge-helper.tt:18
#: ../root/layout/components/MergeHelper.js:53
@@ -3225,10 +3360,12 @@ msgid ""
"still add more to this merge queue by simply browsing to the entities page "
"and following the merge link."
msgstr ""
+"当您准备合并这些时,只需单击“合并”按钮。您仍然可以通过简单地浏览实体页面并点"
+"击合并链接向该合并队列添加更多内容。"
#: ../root/layout.tt:113 ../root/layout/components/Footer.js:27
msgid "Wiki"
-msgstr ""
+msgstr "Wiki"
#: ../root/edit/search_macros.tt:397
msgid "Wiki Transcluder"
@@ -3251,13 +3388,13 @@ msgstr "作品"
#: ../root/work/edit_form.tt:20
#: ../root/static/scripts/common/components/AttributeList.js:65
msgid "Work Attributes"
-msgstr ""
+msgstr "作品属性"
#: ../root/work/edit_form.tt:11
msgid "Work Details"
-msgstr ""
+msgstr "作品详情"
-#: ../root/release/edit/information.tt:131
+#: ../root/release/edit/information.tt:133
#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
#: ../root/static/scripts/edit/components/PartialDateInput.js:161
msgid "YYYY"
@@ -3280,70 +3417,73 @@ msgid ""
"You are about to add an ISRC to this recording. The ISRC must be entered in "
"standard CCXXXYYNNNNN
format:"
msgstr ""
+"您将要为此录音添加 ISRC。ISRC 必须以 CCXXXYYNNNNN
标准格式输入。"
#: ../root/components/forms.tt:309
msgid ""
"You are about to add an ISWC to this work. The ISWC must be entered in "
"standard T-DDD.DDD.DDD-C
format:"
msgstr ""
+"您将要为此作品添加 ISWC。ISWC 必须以 T-DDD.DDD.DDD-C
标准格式输"
+"入。"
#: ../root/cdtoc/attach_artist_releases.tt:5
msgid "You are viewing releases by {artist}."
-msgstr ""
+msgstr "您正在浏览 {artist} 的专辑。"
#: ../root/release/edit/tracklist.tt:12
msgid ""
"You can use the checkboxes under the parser to deactivate some sections. For "
"example, you can deactivate “{lines_have_artists}” if your data has no track "
-"artists, or “{use_track_lengths}” if you have track durations but want the "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
"parser to ignore them."
msgstr ""
-#: ../root/release/edit/information.tt:163
+#: ../root/release/edit/information.tt:165
msgid "You cannot use the same country more than once."
-msgstr ""
+msgstr "您不能多次使用相同的发行国或地区。"
#: ../root/layout/merge-helper.tt:4 ../root/layout/components/MergeHelper.js:32
msgid "You currently have the following entities selected for merging:"
-msgstr ""
+msgstr "您已选择以下要合并的实体:"
#: ../root/recording/edit_form.tt:7
msgid ""
"You have used the {valink|Various Artists} special purpose artist on this "
"recording."
-msgstr ""
+msgstr "您在此录音使用了 {valink|群星} 特殊用途艺术家。"
#: ../root/release/edit/editnote.tt:10
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:778
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
msgid "You haven’t made any changes!"
-msgstr ""
+msgstr "您还没有进行任何更改!"
#: ../root/edit/search_macros.tt:414
msgid "You must be logged in to use this option."
-msgstr ""
+msgstr "您必须登录才能使用此选项。"
#: ../root/components/common-macros.tt:576
msgid "You must enter a disambiguation comment for this entity."
-msgstr ""
+msgstr "您必须为此实体输入消歧义注解。"
#: ../root/release/edit/tracklist.tt:436
msgid ""
"You must enter a title for every track (if the track is untitled, enter "
"“{untitled_track}”)."
-msgstr ""
+msgstr "您必须为每个曲目输入标题(如果曲目没有标题,则输入“{untitled_track}”)。"
#: ../root/release/edit/editnote.tt:32
msgid "You must provide an edit note when adding a release."
-msgstr ""
+msgstr "添加专辑时必须提供编辑备注。"
#: ../root/release/edit/tracklist.tt:440
msgid ""
"You must select an artist for every track (the background color of every "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
@@ -3352,14 +3492,14 @@ msgid ""
"You must select an artist for the release (the background color of the "
"artist field should be green). If you’ve entered an artist but the "
"background remains uncolored, click the magnifying glass to match the name "
-"to a MusicBrainz artist. If the artist doesn’t exist yet, you can create it "
-"by selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
"down."
msgstr ""
#: ../root/release/edit/information.tt:56
msgid "You must select an existing release group."
-msgstr ""
+msgstr "您必须选择一个现有的专辑组。"
#: ../root/release/edit/editnote.tt:36
#: ../lib/MusicBrainz/Server/Form/EditNoteModify.pm:32
@@ -3367,13 +3507,13 @@ msgstr ""
msgid ""
"Your edit note seems to have no actual content. Please provide a note that "
"will be helpful to your fellow editors!"
-msgstr ""
+msgstr "您的编辑备注似乎没有实际内容。请提供一个有助于同行编辑者的备注。"
#: ../root/edit/search.tt:7
msgid ""
"Your search took too long and was cancelled. It may help to be more "
"specific, or to try again."
-msgstr ""
+msgstr "您的搜索花费了太长时间,已经被取消。请细化搜索条件,或再试一次。"
#: ../root/layout.tt:21 ../root/layout/index.js:210
msgid ""
@@ -3381,6 +3521,8 @@ msgid ""
"your privileges. If you haven’t already been contacted about why, please "
"{uri|send us a message}."
msgstr ""
+"您目前不允许编辑或投票,因为管理员已经撤销了您的权限。如果您还没有被告知原"
+"因,请{uri|发送消息}。"
#: ../root/layout.tt:17 ../root/layout/index.js:202
msgid ""
@@ -3388,6 +3530,8 @@ msgid ""
"admin has revoked your privileges. If you haven’t already been contacted "
"about why, please {uri|send us a message}."
msgstr ""
+"您目前不允许编辑,投票或留下编辑笔记,因为管理员已经撤销了您的权限。如果您还"
+"没有被告知原因,请给我们{uri|发送消息}。"
#: ../root/layout.tt:25 ../lib/MusicBrainz/Server/Controller/EditNote.pm:63
#: ../root/layout/index.js:219
@@ -3396,12 +3540,15 @@ msgid ""
"has revoked your privileges. If you haven’t already been contacted about "
"why, please {uri|send us a message}."
msgstr ""
+"您目前不允许离开或更改编辑笔记,因为管理员已经撤销了您的权限。如果您还没有被"
+"告知原因,请给我们{uri|发送消息}。"
#: ../root/release/edit/tracklist.tt:289
msgid ""
"You’ve seeded some Disc IDs that aren’t matched to any medium. If this is "
"wrong, use the “Attach Disc ID” options below."
msgstr ""
+"您给未附加至任何媒介的唱片ID制了种。如有误,请使用下方的\"附上唱片 ID\"选项。"
#: ../root/release/edit/tracklist.tt:409
msgid ""
@@ -3419,76 +3566,78 @@ msgstr ""
#: ../root/static/scripts/common/i18n/localizeLanguageName.js:15
#: ../root/static/scripts/edit/components/Multiselect.js:197
msgid "[removed]"
-msgstr ""
+msgstr "【删除了】"
#: ../root/edit/search_macros.tt:172
msgid "after"
-msgstr ""
+msgstr "晚于"
#: ../root/edit/search_macros.tt:39
msgid "all"
-msgstr ""
+msgstr "所有"
#: ../root/edit/search_macros.tt:287
msgid "and voted"
-msgstr ""
+msgstr "并投票"
#: ../root/edit/search_macros.tt:39
msgid "any"
-msgstr ""
+msgstr "任何"
-#: ../root/release/edit/recordings.tt:199
-msgid "appears on:"
-msgstr ""
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
+msgstr "出现于"
#: ../root/edit/search_macros.tt:20
msgid "auto-edits"
-msgstr ""
+msgstr "自动确认编辑"
#: ../root/edit/search_macros.tt:172
msgid "before"
-msgstr ""
+msgstr "之前"
#: ../root/edit/search_macros.tt:172
msgid "between"
-msgstr ""
+msgstr "介于"
#: ../root/release/edit/recordings.tt:79 ../root/release/edit/recordings.tt:83
msgid "by"
-msgstr ""
+msgstr "来自"
#: ../root/components/common-macros.tt:107
#: ../root/static/scripts/common/components/EntityLink.js:96
msgid "cancelled"
-msgstr ""
+msgstr "已取消"
#: ../root/edit/search_macros.tt:350
msgid "do not include"
-msgstr ""
+msgstr "不包括"
#: ../root/edit/search_macros.tt:350
msgid "do not include editors in my subscriptions"
-msgstr ""
+msgstr "不要在我的订阅中包括编辑者"
#: ../root/edit/search_macros.tt:350
msgid "do not include me"
-msgstr ""
+msgstr "不包括我"
#: ../root/edit/search_macros.tt:35
msgid "do not match"
-msgstr ""
+msgstr "不匹配"
#: ../root/edit/search_macros.tt:378
msgid "does not include"
-msgstr ""
+msgstr "不包括"
#: ../root/edit/search_macros.tt:25
msgid "earliest closed first"
-msgstr ""
+msgstr "最早关闭优先"
#: ../root/edit/search_macros.tt:20
msgid "edits"
-msgstr ""
+msgstr "编辑"
#: ../root/components/forms.tt:263 ../root/components/forms.tt:288
#: ../root/edit/search_macros.tt:188 ../root/release/edit/tracklist.tt:3
@@ -3497,54 +3646,54 @@ msgstr ""
#: ../root/static/scripts/edit/components/GuessCaseOptions.js:121
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:886
msgid "help"
-msgstr ""
+msgstr "帮助"
#: ../root/cdtoc/attach_list.tt:94 ../root/cdtoc/list.tt:84
msgid "hide tracklist"
-msgstr ""
+msgstr "隐藏音轨列表"
#: ../root/components/common-macros.tt:98
#: ../root/static/scripts/common/components/EntityLink.js:117
msgid "historical"
-msgstr ""
+msgstr "历史"
#: ../root/components/common-macros.tt:96
#: ../root/static/scripts/common/components/EntityLink.js:119
msgid "historical, until {end}"
-msgstr ""
+msgstr "历史,直到{end}"
#: ../root/components/common-macros.tt:94
#: ../root/static/scripts/common/components/EntityLink.js:113
msgid "historical, {begin}-{end}"
-msgstr ""
+msgstr "历史,{begin}-{end}"
#: ../root/edit/search_macros.tt:25
msgid "in an unspecified order (possibly faster)"
-msgstr ""
+msgstr "以随机顺序(可能更快)"
#: ../root/edit/search_macros.tt:350
msgid "include"
-msgstr "包含"
+msgstr "包括"
#: ../root/edit/search_macros.tt:350
msgid "include a beginner editor"
-msgstr ""
+msgstr "包括新手编辑者"
#: ../root/edit/search_macros.tt:350
msgid "include an editor in my subscriptions"
-msgstr ""
+msgstr "在我的订阅中包括编辑者"
#: ../root/edit/search_macros.tt:350
msgid "include me"
-msgstr ""
+msgstr "包括我"
#: ../root/edit/search_macros.tt:350
msgid "include someone other than the edit author"
-msgstr ""
+msgstr "包括其他的编辑者"
#: ../root/edit/search_macros.tt:378
msgid "includes"
-msgstr ""
+msgstr "包括"
#: ../root/components/common-macros.tt:153
#: ../root/components/common-macros.tt:229
@@ -3560,40 +3709,40 @@ msgstr "信息"
#: ../root/edit/search_macros.tt:336 ../root/edit/search_macros.tt:360
#: ../root/edit/search_macros.tt:393
msgid "is"
-msgstr ""
+msgstr "是"
#: ../root/edit/search_macros.tt:360
msgid "is a beginner"
-msgstr ""
+msgstr "是新手"
#: ../root/edit/search_macros.tt:134
msgid "is after"
-msgstr ""
+msgstr "后于"
#: ../root/edit/search_macros.tt:134
msgid "is before"
-msgstr ""
+msgstr "先于"
#: ../root/edit/search_macros.tt:134 ../root/edit/search_macros.tt:151
msgid "is between"
-msgstr ""
+msgstr "介于"
#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:321
#: ../root/edit/search_macros.tt:360 ../root/edit/search_macros.tt:387
msgid "is in my subscriptions"
-msgstr ""
+msgstr "在我的订阅中"
#: ../root/edit/search_macros.tt:151
msgid "is less than"
-msgstr ""
+msgstr "少于"
#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:360
msgid "is me"
-msgstr ""
+msgstr "是我"
#: ../root/edit/search_macros.tt:151
msgid "is more than"
-msgstr ""
+msgstr "多于"
#: ../root/edit/search_macros.tt:134 ../root/edit/search_macros.tt:151
#: ../root/edit/search_macros.tt:172 ../root/edit/search_macros.tt:193
@@ -3602,118 +3751,118 @@ msgstr ""
#: ../root/edit/search_macros.tt:321 ../root/edit/search_macros.tt:336
#: ../root/edit/search_macros.tt:360 ../root/edit/search_macros.tt:393
msgid "is not"
-msgstr ""
+msgstr "不等于"
#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:321
#: ../root/edit/search_macros.tt:360 ../root/edit/search_macros.tt:387
msgid "is not in my subscriptions"
-msgstr ""
+msgstr "不在我的订阅中"
#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:360
msgid "is not me"
-msgstr ""
+msgstr "不是我"
#: ../root/release/edit/tracklist.tt:484
msgid "link"
-msgstr ""
+msgstr "链接"
#: ../root/edit/search_macros.tt:35
msgid "match"
-msgstr ""
+msgstr "匹配"
#: ../root/edit/search_macros.tt:25
msgid "newest first"
-msgstr ""
+msgstr "最新优先"
#: ../root/edit/search_macros.tt:20
msgid "non-auto-edits"
-msgstr ""
+msgstr "非自动确认编辑"
#: ../root/edit/search_macros.tt:25
msgid "oldest first"
-msgstr ""
+msgstr "最旧优先"
#: ../root/edit/search_macros.tt:172
msgid "on"
-msgstr ""
+msgstr "在"
#: ../root/release/add_cover_art.tt:33
msgid "or drop files here"
-msgstr ""
+msgstr "或拖拽文件到此处"
#: ../root/edit/search_macros.tt:25
msgid "recently closed first"
-msgstr ""
+msgstr "最近关闭优先"
#: ../root/release/edit/recordings.tt:38
msgid "recording"
-msgstr ""
+msgstr "录音"
#: ../root/cdtoc/attach_list.tt:18 ../root/cdtoc/attach_list.tt:92
#: ../root/cdtoc/list.tt:82
msgid "show tracklist"
-msgstr ""
+msgstr "显示音轨列表"
#: ../root/release/edit/recordings.tt:37
msgid "track"
-msgstr ""
+msgstr "音轨"
#: ../root/edit/search_macros.tt:25
msgid "voting closing later first"
-msgstr ""
+msgstr "越晚关闭的投票优先"
#: ../root/edit/search_macros.tt:25
msgid "voting closing sooner first"
-msgstr ""
+msgstr "越早关闭的投票优先"
#: ../root/edit/search_macros.tt:25
msgid "with recent edit notes first"
-msgstr ""
+msgstr "优先显示最近的编辑备注"
#: ../root/cdtoc/lookup.tt:24
msgid "{artist} - {name}"
-msgstr ""
+msgstr "{artist} - {name}"
#: ../root/components/common-macros.tt:131
#: ../root/static/scripts/common/components/ExpandedArtistCredit.js:34
msgid "{artist} as {name}"
-msgstr ""
+msgstr "{artist} 作为 {name}"
#: ../root/cdtoc/attach_artist_releases.tt:45
msgid "{artist} has no releases which have only {n} track."
msgid_plural "{artist} has no releases which have {n} tracks."
-msgstr[0] ""
+msgstr[0] "{artist} 没有包含 {n} 条音轨的专辑。"
#: ../root/cdstub/index.tt:13 ../root/cdstub/CDStubIndex.js:47
msgid "{doc|Disc ID}:"
-msgstr ""
+msgstr "{doc|唱片 ID}:"
#: ../root/components/common-macros.tt:199 ../root/main/index.js:268
#: ../root/static/scripts/common/components/DescriptiveLink.js:74
#: ../root/static/scripts/release-editor/dialogs.js:150
msgid "{entity} by {artist}"
-msgstr ""
+msgstr "{artist} 的 {entity}"
#: ../root/layout.tt:82 ../root/layout/index.js:272
msgid ""
"{link|New notes} have been left on some of your edits. Please make sure to "
"read them and respond if necessary."
-msgstr ""
+msgstr "你的一些编辑下有 {link|新的备注} 。请务必阅读并进行必要的回应。"
#: ../root/components/common-macros.tt:260
#: ../root/static/scripts/common/components/EntityLink.js:262
msgid "{name} – {additional_info}"
-msgstr ""
+msgstr "{name} – {additional_info}"
#: ../root/cdtoc/attach_filter_release.tt:20
msgid "{num} release found matching your query."
msgid_plural "{num} releases found matching your query."
-msgstr[0] ""
+msgstr[0] "找到符合您查询的 {num} 张专辑"
#: ../root/components/common-macros.tt:199
#: ../root/static/scripts/common/components/DescriptiveLink.js:87
msgid "{place} in {area}"
-msgstr ""
+msgstr "位于 {area} 的 {place}"
#: ../root/recording/edit_form.tt:39
msgid ""
@@ -3722,42 +3871,42 @@ msgstr ""
#: ../root/cdtoc/move_search.tt:33
msgid "{release} by {artist}"
-msgstr ""
+msgstr "{artist} 的 {release}"
#: ../root/instrument/layout.tt:1 ../root/instrument/InstrumentLayout.js:33
msgid "{type} “{instrument}”"
-msgstr ""
+msgstr "{type} “{instrument}”"
#: ../root/work/layout.tt:1 ../root/work/WorkLayout.js:30
msgid "{type} “{work}”"
-msgstr ""
+msgstr "{type} “{work}”"
#: ../root/layout.tt:45 ../root/layout/index.js:124
msgid "{uri|Return to musicbrainz.org}."
-msgstr ""
+msgstr "{uri|返回 musicbrainz.org}。"
#: ../root/recording/edit_form.tt:10
msgid ""
"{valink|Various Artists} should very rarely be used on recordings, make sure "
"that the artist has been entered correctly."
-msgstr ""
+msgstr "{valink|群星} 仅在极少情况下被用于录音,请确保输入的艺术家正确。"
#: ../root/components/common-macros.tt:550
#: ../root/static/scripts/common/i18n/addColon.js:13
#: ../root/static/scripts/common/i18n/addColon.js:17
msgid "{variable}:"
-msgstr ""
+msgstr "{variable}:"
#: ../root/release/edit/layout.tt:61
msgid "« Previous"
-msgstr ""
+msgstr "« 前一个"
#: ../root/components/paginator.tt:19 ../root/components/paginator.tt:31
#: ../root/components/paginator.tt:39 ../root/components/Paginator.js:94
#: ../root/components/Paginator.js:119 ../root/components/Paginator.js:133
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:162
msgid "…"
-msgstr ""
+msgstr "…"
#: ../lib/MusicBrainz/Script/RemoveEmpty.pm:139
msgid ""
@@ -3768,11 +3917,15 @@ msgid ""
"to add it again, but please ensure enough data is added to it this time to "
"avoid another automatic removal."
msgstr ""
+"这个实体被自动删除,因为它是空的:它没有与它相关联的关系,也没有(如果与问题中"
+"的实体类型相关)任何录音、专辑或专辑组。如果您认为这是一个有效的、不重复的条"
+"目,并且确实属于MusicBrainz,可以再次添加它,但请确保这次添加了足够的数据,以"
+"避免再次被自动删除。"
#: ../lib/MusicBrainz/Server/Controller.pm:34
#, perl-brace-format
msgid "'{id}' is not a valid MusicBrainz ID"
-msgstr ""
+msgstr "'{id}' 不是一个有效的MusicBrainz的 ID"
#: ../lib/MusicBrainz/Server/Controller.pm:122
#, perl-brace-format
@@ -3783,6 +3936,7 @@ msgid_plural ""
"Thank you, your {num_edits} {edit_url|edits} ({edit_ids}) have been "
"automatically accepted and applied."
msgstr[0] ""
+"谢谢,您的 {num_edits} 个 {edit_url|编辑} ({edit_ids}) 已被自动批准并生效。"
#: ../lib/MusicBrainz/Server/Controller.pm:128
#, perl-brace-format
@@ -3793,6 +3947,7 @@ msgid_plural ""
"Thank you, your {num_edits} {edit_url|edits} ({edit_ids}) have been entered "
"into the edit queue for peer review."
msgstr[0] ""
+"谢谢,您的 {num_edits} 个 {edit_url|编辑} ({edit_ids}) 已经进入编辑审查队列。"
#: ../lib/MusicBrainz/Server/Controller.pm:136
#, perl-brace-format
@@ -3805,37 +3960,39 @@ msgid_plural ""
"with {num_open_edits} in the edit queue for peer review, and the rest "
"automatically accepted and applied."
msgstr[0] ""
+"谢谢,您的 {num_edits} 个 {edit_url|编辑} ({edit_ids}) 已被保存,其中 "
+"{num_open_edits} 个已经进入编辑审查队列,其余已经自动批准并生效。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:57
msgid "The user ID is missing or is in an invalid format."
-msgstr ""
+msgstr "账号空缺或格式不正确。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:67
msgid "The email address is missing."
-msgstr ""
+msgstr "电子邮箱地址空缺。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:77
msgid "The time is missing or is in an invalid format."
-msgstr ""
+msgstr "时间空缺或格式不正确。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:88
msgid "The verification key is missing."
-msgstr ""
+msgstr "验证密钥空缺。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:99
#: ../lib/MusicBrainz/Server/Controller/Account.pm:274
msgid "The checksum is invalid, please double check your email."
-msgstr ""
+msgstr "校验和不正确,请重新检查您的邮件。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:110
msgid "Sorry, this email verification link has expired."
-msgstr ""
+msgstr "对不起,这个邮件验证链接已失效。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:122
#: ../lib/MusicBrainz/Server/Controller/Account.pm:286
#, perl-brace-format
msgid "The user with ID '{user_id}' could not be found."
-msgstr ""
+msgstr "用户ID '{user_id}' 无法被找到。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:173
msgid ""
@@ -3843,40 +4000,42 @@ msgid ""
"again, however if you continue to experience difficulty contact us at "
"support@musicbrainz.org."
msgstr ""
+"无法向您的电子邮件地址发送登录信息。请再试一次,如果您仍然遇到问题,请通过 "
+"support@musicbrainz.org 联系我们。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:199
msgid "There is no user with this username"
-msgstr ""
+msgstr "没有用户使用这个用户名。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:204
msgid "There is no user with this username and email"
-msgstr ""
+msgstr "没有用户使用这个用户名和邮箱。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:207
msgid ""
"We can't send a password reset email, because we have no email on record for "
"this user."
-msgstr ""
+msgstr "无法发送密码重置电子邮件,因为没有此用户的电子邮件记录。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:237
msgid "Your password has been reset."
-msgstr ""
+msgstr "您的密码已被重置。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:252
msgid "Missing one or more required parameters."
-msgstr ""
+msgstr "一个或多个项目空缺。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:263
msgid "Sorry, this password reset link has expired."
-msgstr ""
+msgstr "对不起,这个密码重置链接已失效。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:337
msgid "There is no user with this email"
-msgstr ""
+msgstr "没有用户使用这个邮箱。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:420
msgid "Your profile has been updated."
-msgstr ""
+msgstr "您的资料已更新。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:424
#, perl-brace-format
@@ -3885,10 +4044,12 @@ msgid ""
"your mailbox and click on the link in the email to verify the new email "
"address."
msgstr ""
+"我们已经向{email}
发送了一封确认电子邮件。请查看您的收件箱并点击"
+"电子邮件中的链接来验证新电子邮件地址。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:463
msgid "Your password has been changed."
-msgstr ""
+msgstr "您的密码已更改。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:701
msgid ""
@@ -3897,6 +4058,9 @@ msgid ""
"{settings|account settings}. If the problem still persists, please contact "
"us at {mail|support@musicbrainz.org}."
msgstr ""
+"无法发送验证邮件。
请确认您在 {settings|账号设置} 中输入"
+"了有效的电子邮件地址。如果问题仍然存在,请通过 {mail|support@musicbrainz."
+"org} 联系我们。"
#: ../lib/MusicBrainz/Server/Controller/Account.pm:785
msgid "There is no OAuth token with these parameters."
@@ -3904,83 +4068,83 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Account/Subscriptions/Collection.pm:22
msgid "The provided collection ID doesn’t exist."
-msgstr ""
+msgstr "提供的收藏 ID 不存在。"
#: ../lib/MusicBrainz/Server/Controller/Admin.pm:91
msgid "User successfully edited."
-msgstr ""
+msgstr "成功修改用户。"
#: ../lib/MusicBrainz/Server/Controller/Admin.pm:164
msgid ""
"Banner updated. Remember that each server has its own, independent banner."
-msgstr ""
+msgstr "横幅已更新。请留意每台服务器都有自己独立的横幅。"
#: ../lib/MusicBrainz/Server/Controller/Admin.pm:200
#: ../lib/MusicBrainz/Server/Controller/Admin.pm:266
#: ../root/static/scripts/release-editor/trackParser.js:497
msgid "Invalid regular expression."
-msgstr ""
+msgstr "无效的正则表达式。"
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:131
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
#, perl-brace-format
msgid "You cannot remove the attribute \"{name}\" because it is still in use."
-msgstr ""
+msgstr "您无法移除属性 “{name}”,因为它仍在使用。"
-#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:143
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
#, perl-brace-format
msgid ""
"You cannot remove the attribute “{name}” because it is the parent of other "
"attributes."
-msgstr ""
+msgstr "无法移除属性 “{name}”,因为它是其他属性的母属性。"
#: ../lib/MusicBrainz/Server/Controller/Artist.pm:738
msgid "You cannot merge a special purpose artist into another artist"
-msgstr ""
+msgstr "无法将特殊用途艺术家合并至另一个艺术家"
#: ../lib/MusicBrainz/Server/Controller/Artist.pm:743
msgid "You cannot merge into Deleted Artist"
-msgstr ""
+msgstr "无法合并至已删除的艺术家"
#: ../lib/MusicBrainz/Server/Controller/AutoEditorElections.pm:86
#, perl-brace-format
msgid "'{id}' is not a valid election ID"
-msgstr ""
+msgstr "‘{id}’ 不是有效的选举 ID"
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:78
msgid "Please provide a CD TOC ID."
-msgstr ""
+msgstr "请提供一个 CD 目录 ID。"
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:82
msgid "The provided CD TOC ID is not valid."
-msgstr ""
+msgstr "提供的 CD 目录 ID 无效。"
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:88
msgid "Please provide a medium ID."
-msgstr ""
+msgstr "请提供一个媒介 ID。"
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:92
msgid "The provided medium id is not valid."
-msgstr ""
+msgstr "提供的媒介 ID 无效。"
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:98
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:226
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:441
msgid "The provided medium ID doesn’t exist."
-msgstr ""
+msgstr "提供的媒介 ID 不存在。"
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:104
msgid ""
"The provided CD TOC ID doesn’t exist or is not connected to the provided "
"medium."
-msgstr ""
+msgstr "提供的 CD 目录 ID 不存在或未关联到所提供的媒介。"
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:153
msgid "Please provide a medium ID"
-msgstr ""
+msgstr "请提供媒介 ID"
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:158
msgid "Could not find medium"
-msgstr ""
+msgstr "无法找到媒介"
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:206
msgid ""
@@ -3993,45 +4157,45 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:213
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:435
msgid "The provided medium id is not valid"
-msgstr ""
+msgstr "提供的媒体ID不合法"
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:234
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:448
msgid "The selected medium cannot have disc IDs"
-msgstr ""
+msgstr "选择的媒介无法关联唱片 ID"
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:279
msgid "The provided artist id is not valid"
-msgstr ""
+msgstr "提供的艺术家 ID 无效"
#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:421
msgid "The provided CD TOC ID doesn’t exist."
-msgstr ""
+msgstr "提供的 CD 目录不存在"
#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
#, perl-brace-format
msgid ""
-"“{id}” is not a valid row ID; the entity might have been merged or deleted."
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
-#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:355
msgid "Low"
-msgstr ""
+msgstr "低"
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
#: ../root/static/scripts/common/constants.js:357
-#: ../root/static/scripts/common/constants.js:358
msgid "Normal"
-msgstr ""
+msgstr "一般"
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
-#: ../root/static/scripts/common/constants.js:359
+#: ../root/static/scripts/common/constants.js:358
msgid "High"
-msgstr ""
+msgstr "高"
#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
msgid "Default"
@@ -4043,11 +4207,11 @@ msgstr "默认"
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:105
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:123
msgid "Can’t change edit note"
-msgstr ""
+msgstr "不能更改编辑笔记"
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:50
msgid "You can’t change other users’ edit notes."
-msgstr ""
+msgstr "您不能更改其他用户的编辑笔记。"
#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:80
msgid "This note has already been removed."
@@ -4069,52 +4233,52 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Controller/Label.pm:256
msgid "You cannot merge a special purpose label into another label."
-msgstr ""
+msgstr "无法将特殊用途厂牌合并至另一个厂牌。"
#: ../lib/MusicBrainz/Server/Controller/Label.pm:261
msgid "You cannot merge into Deleted Label."
-msgstr ""
+msgstr "无法合并至已删除的厂牌。"
#: ../lib/MusicBrainz/Server/Controller/Rating.pm:41
msgid "The rating should be an integer between 0 and 100."
-msgstr ""
+msgstr "评分必须是 0 到 100 之间的整数。"
#: ../lib/MusicBrainz/Server/Controller/Relationship/LinkType.pm:71
#, perl-brace-format
msgid "'{types}' is not a valid pair of types for relationships."
-msgstr ""
+msgstr "‘{types}’ 不是有效的关联类型组合。"
#: ../lib/MusicBrainz/Server/Controller/Release.pm:600
msgid ""
"This merge strategy is not applicable to the releases you have selected."
-msgstr ""
+msgstr "此合并策略不适用于您选择的专辑。"
#: ../lib/MusicBrainz/Server/Controller/Release.pm:629
msgid "This release has no artwork."
-msgstr ""
+msgstr "此专辑没有图片。"
#: ../lib/MusicBrainz/Server/Controller/Release.pm:635
#, perl-brace-format
msgid "Found no artwork with ID “{id}”."
-msgstr ""
+msgstr "找不到ID为“{id}”的图片。"
#: ../lib/MusicBrainz/Server/Controller/Role/Annotation.pm:68
msgid "The annotation revision ID must be a positive integer"
-msgstr ""
+msgstr "注释修订版 ID 必须为正整数"
#: ../lib/MusicBrainz/Server/Controller/Role/Annotation.pm:76
#, perl-brace-format
msgid "Found no annotation with ID “{id}”."
-msgstr ""
+msgstr "找不到ID为“{id}”的注释。"
#: ../lib/MusicBrainz/Server/Controller/Role/Annotation.pm:91
#, perl-brace-format
msgid "The annotation with ID “{id}” is not associated with this entity."
-msgstr ""
+msgstr "ID 为 “{id}” 的注释未关联到此实体。"
#: ../lib/MusicBrainz/Server/Controller/Role/Annotation.pm:230
msgid "The old and new annotation ids must be unique, positive integers."
-msgstr ""
+msgstr "新的和旧的注解代码必须一致,并且是正整数。"
#: ../lib/MusicBrainz/Server/Controller/Role/EditRelationships.pm:222
#: ../root/layout/components/sidebar/SidebarEndDate.js:38
@@ -4122,90 +4286,90 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:108
#: ../root/static/scripts/relationship-editor/components/DialogSourceEntity.js:117
msgid "[unknown]"
-msgstr ""
+msgstr "[未知]"
#: ../lib/MusicBrainz/Server/Controller/Root.pm:88
#, perl-brace-format
msgid ""
"Language set. If it was not intended, just {url|set “{prev_lang_name}” back}."
-msgstr ""
+msgstr "已设定语言。如果这是误操作,你可以 {url|设置回 “{prev_lang_name}”}。"
#: ../lib/MusicBrainz/Server/Controller/Root.pm:96
msgid ""
"If you find any problems with the translation, please {url|help us improve "
"it}!"
-msgstr ""
+msgstr "如果你发现翻译中有任何问题,请{url|帮助我们改进它}!"
#: ../lib/MusicBrainz/Server/Controller/Root.pm:317
msgid ""
"Our Redis server appears to be down; some features may not work as intended "
"or expected."
-msgstr ""
+msgstr "我们的 Redis 服务器似乎宕机了;一些功能可能无法正常工作。"
-#: ../lib/MusicBrainz/Server/Controller/Series.pm:153
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
msgid "Series that have different entity types cannot be merged."
-msgstr ""
+msgstr "包含不同实体类型的系列无法被合并。"
#: ../lib/MusicBrainz/Server/Controller/User.pm:304
#: ../lib/MusicBrainz/Server/Controller/User.pm:330
#: ../lib/MusicBrainz/Server/Controller/User.pm:345
-#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:45
-#: ../root/user/ContactUser.js:47
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
msgid "Send Email"
-msgstr ""
+msgstr "发送邮件"
#: ../lib/MusicBrainz/Server/Controller/User.pm:305
msgid ""
"You cannot contact other users because you have not {url|verified your email "
"address}."
-msgstr ""
+msgstr "您无法联系其他用户,因为您还没有 {url|验证您的电子邮件地址}。"
#: ../lib/MusicBrainz/Server/Controller/User.pm:332
msgid "You are not allowed to send messages to editors."
-msgstr ""
+msgstr "你被禁止向编辑者发送信息。"
#: ../lib/MusicBrainz/Server/Controller/User.pm:346
#, perl-brace-format
msgid "The editor {name} has no email address attached to their account."
-msgstr ""
+msgstr "编辑者{name}没有在账户中添加电子邮箱地址"
#: ../lib/MusicBrainz/Server/Controller/User.pm:360
msgid "Email Sent"
-msgstr ""
+msgstr "电子邮件已发送"
#: ../lib/MusicBrainz/Server/Controller/User.pm:361
#, perl-brace-format
msgid ""
"Your email has been successfully sent! Click {link|here} to continue to "
"{user}'s profile."
-msgstr ""
+msgstr "成功发送电子邮件!点击 {link|此处} 前往 {user} 的资料页面。"
#: ../lib/MusicBrainz/Server/Controller/User.pm:389
msgid "Your message could not be sent"
-msgstr ""
+msgstr "您的信息无法被送达。"
#: ../lib/MusicBrainz/Server/Controller/User.pm:552
#, perl-brace-format
msgid "'{type}' is not an entity type that can have ratings."
-msgstr ""
+msgstr "‘{type}’ 不是可评分的实体类型。"
#: ../lib/MusicBrainz/Server/Controller/User.pm:807
msgid "An error occurred while trying to send your report."
-msgstr ""
+msgstr "尝试发送您的报告时发生了错误。"
#: ../lib/MusicBrainz/Server/Controller/User.pm:811
msgid "Your report has been sent."
-msgstr ""
+msgstr "您的报告已发送。"
#: ../lib/MusicBrainz/Server/Controller/WS/2/DiscID.pm:101
msgid "Invalid TOC"
-msgstr ""
+msgstr "目录无效"
#: ../lib/MusicBrainz/Server/Controller/WS/js.pm:285
msgid ""
"An error occurred trying to communicate with the Internet Archive servers. "
"Please wait a few moments and try again."
-msgstr ""
+msgstr "连接 Internet Archive 服务器时发生了错误。请等待几分钟后再试。"
#: ../lib/MusicBrainz/Server/Controller/WS/js.pm:298
msgid ""
@@ -4228,22 +4392,23 @@ msgid ""
"so we can resolve this."
msgstr ""
-#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:701
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
msgid ""
"You must be logged in to submit edits. {url|Log in} first, and then try "
"submitting your edits again."
-msgstr ""
+msgstr "您必须登录才能提交编辑。请先 {url|登录},然后再次尝试提交您的编辑。"
#: ../lib/MusicBrainz/Server/ControllerUtils/Delete.pm:25
msgid ""
"Since your edit adding this object was still open, that edit has been "
"cancelled instead of opening a new edit."
msgstr ""
+"由于添加此对象的编辑仍处于打开状态,因此该编辑已被取消,而不是打开新的编辑。"
#: ../lib/MusicBrainz/Server/Data/LinkType.pm:214
#, perl-brace-format
msgid "{t0}-{t1} relationships"
-msgstr ""
+msgstr "{t0}-{t1}关系"
#: ../lib/MusicBrainz/Server/Data/Release.pm:51
#, perl-brace-format
@@ -4260,12 +4425,12 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Data/Release.pm:53
msgid "The medium positions conflict."
-msgstr ""
+msgstr "媒介位置存在冲突。"
#: ../lib/MusicBrainz/Server/Data/Release.pm:54
msgid ""
"The track counts on at least one set of corresponding mediums do not match."
-msgstr ""
+msgstr "至少一组相应媒介上的音轨数不匹配。"
#: ../lib/MusicBrainz/Server/Data/Release.pm:55
msgid ""
@@ -4277,7 +4442,7 @@ msgstr ""
msgid ""
"Mediums with a pregap track can only be merged with other mediums with a "
"pregap track."
-msgstr ""
+msgstr "具有预间隙轨道的媒介只能与具有预间隙轨道的其他媒介合并。"
#: ../lib/MusicBrainz/Server/Data/Release.pm:57
#, perl-brace-format
@@ -4293,73 +4458,73 @@ msgstr "总计"
#: ../lib/MusicBrainz/Server/Edit/Area/AddAlias.pm:11
msgid "Add area alias"
-msgstr ""
+msgstr "添加地区别名"
#: ../lib/MusicBrainz/Server/Edit/Area/AddAnnotation.pm:11
msgid "Add area annotation"
-msgstr ""
+msgstr "添加地区注释"
#: ../lib/MusicBrainz/Server/Edit/Area/Create.pm:23
msgid "Add area"
-msgstr ""
+msgstr "添加地区"
#: ../lib/MusicBrainz/Server/Edit/Area/Delete.pm:10
msgid "Remove area"
-msgstr ""
+msgstr "移除地区"
#: ../lib/MusicBrainz/Server/Edit/Area/DeleteAlias.pm:15
msgid "Remove area alias"
-msgstr ""
+msgstr "移除地区别名"
-#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:33
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
msgid "Edit area"
-msgstr ""
+msgstr "编辑地区"
#: ../lib/MusicBrainz/Server/Edit/Area/EditAlias.pm:12
msgid "Edit area alias"
-msgstr ""
+msgstr "编辑地区别名"
#: ../lib/MusicBrainz/Server/Edit/Area/Merge.pm:11 ../root/area/AreaMerge.js:28
#: ../root/area/AreaMerge.js:30
msgid "Merge areas"
-msgstr ""
+msgstr "合并地区"
#: ../lib/MusicBrainz/Server/Edit/Artist/AddAlias.pm:11
msgid "Add artist alias"
-msgstr ""
+msgstr "添加艺术家别名"
#: ../lib/MusicBrainz/Server/Edit/Artist/AddAnnotation.pm:11
msgid "Add artist annotation"
-msgstr ""
+msgstr "添加艺术家注释"
#: ../lib/MusicBrainz/Server/Edit/Artist/Create.pm:29
msgid "Add artist"
-msgstr ""
+msgstr "添加艺术家"
#: ../lib/MusicBrainz/Server/Edit/Artist/Delete.pm:11
msgid "Remove artist"
-msgstr ""
+msgstr "删除艺术家"
#: ../lib/MusicBrainz/Server/Edit/Artist/DeleteAlias.pm:15
msgid "Remove artist alias"
-msgstr ""
+msgstr "删除艺术家别名"
-#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
msgid "Edit artist"
-msgstr ""
+msgstr "修改艺术家"
#: ../lib/MusicBrainz/Server/Edit/Artist/EditAlias.pm:12
msgid "Edit artist alias"
-msgstr ""
+msgstr "修改艺术家别名"
#: ../lib/MusicBrainz/Server/Edit/Artist/EditArtistCredit.pm:26
msgid "Edit artist credit"
-msgstr ""
+msgstr "编辑艺术家名单"
#: ../lib/MusicBrainz/Server/Edit/Artist/Merge.pm:16
#: ../root/artist/ArtistMerge.js:30 ../root/artist/ArtistMerge.js:32
msgid "Merge artists"
-msgstr ""
+msgstr "合并艺术家"
#: ../lib/MusicBrainz/Server/Edit/Artist/Merge.pm:72
#, perl-brace-format
@@ -4379,73 +4544,73 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Event/AddAlias.pm:11
msgid "Add event alias"
-msgstr ""
+msgstr "添加事件别名"
#: ../lib/MusicBrainz/Server/Edit/Event/AddAnnotation.pm:11
msgid "Add event annotation"
-msgstr ""
+msgstr "添加事件注释"
#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
-#: ../root/layout/components/sidebar/ArtistSidebar.js:161
-#: ../root/layout/components/sidebar/PlaceSidebar.js:115
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
msgid "Add event"
-msgstr ""
+msgstr "添加事件"
#: ../lib/MusicBrainz/Server/Edit/Event/Delete.pm:11
msgid "Remove event"
-msgstr ""
+msgstr "移除事件"
#: ../lib/MusicBrainz/Server/Edit/Event/DeleteAlias.pm:16
msgid "Remove event alias"
-msgstr ""
+msgstr "移除事件别名"
-#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:42
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
msgid "Edit event"
-msgstr ""
+msgstr "编辑事件"
#: ../lib/MusicBrainz/Server/Edit/Event/EditAlias.pm:12
msgid "Edit event alias"
-msgstr ""
+msgstr "编辑事件别名"
#: ../lib/MusicBrainz/Server/Edit/Event/Merge.pm:11
#: ../root/event/EventMerge.js:28 ../root/event/EventMerge.js:30
msgid "Merge events"
-msgstr ""
+msgstr "合并事件"
#: ../lib/MusicBrainz/Server/Edit/Genre/AddAlias.pm:11
msgid "Add genre alias"
-msgstr ""
+msgstr "添加流派别名"
#: ../lib/MusicBrainz/Server/Edit/Genre/AddAnnotation.pm:11
msgid "Add genre annotation"
-msgstr ""
+msgstr "添加流派注释"
#: ../lib/MusicBrainz/Server/Edit/Genre/Create.pm:21
msgid "Add genre"
-msgstr ""
+msgstr "添加流派"
#: ../lib/MusicBrainz/Server/Edit/Genre/Delete.pm:10
#: ../root/genre/DeleteGenre.js:31 ../root/genre/DeleteGenre.js:33
msgid "Remove genre"
-msgstr ""
+msgstr "移除流派"
#: ../lib/MusicBrainz/Server/Edit/Genre/DeleteAlias.pm:16
msgid "Remove genre alias"
-msgstr ""
+msgstr "移除流派别名"
-#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:24
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
#: ../root/genre/EditGenre.js:30
msgid "Edit genre"
-msgstr ""
+msgstr "编辑流派"
#: ../lib/MusicBrainz/Server/Edit/Genre/EditAlias.pm:12
msgid "Edit genre alias"
-msgstr ""
+msgstr "编辑流派别名"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddDiscID.pm:12
#: ../lib/MusicBrainz/Server/Edit/Medium/AddDiscID.pm:11
msgid "Add disc ID"
-msgstr ""
+msgstr "添加唱片 ID"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddLink.pm:11
#: ../lib/MusicBrainz/Server/Edit/Relationship/Create.pm:32
@@ -4455,29 +4620,29 @@ msgstr "添加关系"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
-#: ../root/layout/components/sidebar/ArtistSidebar.js:146
-#: ../root/layout/components/sidebar/LabelSidebar.js:102
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
msgid "Add release"
-msgstr ""
+msgstr "添加发行版"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddReleaseAnnotation.pm:14
#: ../lib/MusicBrainz/Server/Edit/Release/AddAnnotation.pm:12
msgid "Add release annotation"
-msgstr ""
+msgstr "添加专辑注释"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddReleaseEvents.pm:12
msgid "Add release events (historic)"
-msgstr ""
+msgstr "添加专辑事件(历史)"
#: ../lib/MusicBrainz/Server/Edit/Historic/AddTrack.pm:12
#: ../lib/MusicBrainz/Server/Edit/Historic/AddTrackKV.pm:11
msgid "Add track (historic)"
-msgstr ""
+msgstr "添加音轨(历史)"
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeArtistQuality.pm:13
msgid "Change artist quality (historic)"
-msgstr ""
+msgstr "更改艺术家质量(历史)"
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseGroup.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseAttrs.pm:17
@@ -4485,162 +4650,157 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
-#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:49
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
msgid "Edit release"
-msgstr ""
+msgstr "编辑专辑"
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
-#: ../root/release/ChangeQuality.js:36
+#: ../root/release/ChangeQuality.js:37
msgid "Change release data quality"
-msgstr ""
+msgstr "更改发布数据质量"
#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeTrackArtist.pm:14
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackNum.pm:14
msgid "Edit track (historic)"
-msgstr ""
+msgstr "编辑音轨(历史)"
#: ../lib/MusicBrainz/Server/Edit/Historic/EditLink.pm:16
#: ../lib/MusicBrainz/Server/Edit/Relationship/Edit.pm:40
msgid "Edit relationship"
-msgstr ""
+msgstr "编辑关系"
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseEvents.pm:12
#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseEventsOld.pm:18
msgid "Edit release events (historic)"
-msgstr ""
+msgstr "编辑专辑事件(历史)"
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
-#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
msgid "Edit recording"
-msgstr ""
+msgstr "修改录音"
#: ../lib/MusicBrainz/Server/Edit/Historic/MACToSAC.pm:13
msgid "Convert release to single artist (historic)"
-msgstr ""
+msgstr "将专辑转换为独立艺术家(历史)"
#: ../lib/MusicBrainz/Server/Edit/Historic/MergeRelease.pm:13
#: ../lib/MusicBrainz/Server/Edit/Historic/MergeReleaseMAC.pm:10
#: ../lib/MusicBrainz/Server/Edit/Release/Merge.pm:139
#: ../root/release/ReleaseMerge.js:37 ../root/release/ReleaseMerge.js:39
msgid "Merge releases"
-msgstr ""
+msgstr "合并专辑"
#: ../lib/MusicBrainz/Server/Edit/Historic/MoveDiscID.pm:12
#: ../lib/MusicBrainz/Server/Edit/Medium/MoveDiscID.pm:21
msgid "Move disc ID"
-msgstr ""
+msgstr "移动唱片编号"
#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveDiscID.pm:12
#: ../lib/MusicBrainz/Server/Edit/Medium/RemoveDiscID.pm:10
msgid "Remove disc ID"
-msgstr ""
+msgstr "删除唱片编号"
#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveLabelAlias.pm:12
#: ../lib/MusicBrainz/Server/Edit/Label/DeleteAlias.pm:16
msgid "Remove label alias"
-msgstr ""
+msgstr "删除唱片公司别名"
#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveLink.pm:11
#: ../lib/MusicBrainz/Server/Edit/Relationship/Delete.pm:36
msgid "Remove relationship"
-msgstr ""
+msgstr "移除关系"
#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveRelease.pm:15
#: ../lib/MusicBrainz/Server/Edit/Release/Delete.pm:12
msgid "Remove release"
-msgstr ""
+msgstr "删除发行版"
#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveReleaseEvents.pm:12
msgid "Remove release events (historic)"
-msgstr ""
+msgstr "移除关系事件(历史)"
#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveReleases.pm:12
msgid "Remove releases (historic)"
-msgstr ""
+msgstr "移除专辑(历史)"
#: ../lib/MusicBrainz/Server/Edit/Historic/SACToMAC.pm:16
msgid "Convert release to multiple artists (historic)"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
-#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
-msgid "Set track lengths"
-msgstr ""
+msgstr "将专辑转换为多位艺术家(历史)"
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
msgid "Add instrument alias"
-msgstr ""
+msgstr "添加乐器别名"
#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAnnotation.pm:11
msgid "Add instrument annotation"
-msgstr ""
+msgstr "添加乐器注释"
#: ../lib/MusicBrainz/Server/Edit/Instrument/Create.pm:20
#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:39
msgid "Add instrument"
-msgstr ""
+msgstr "添加乐器"
#: ../lib/MusicBrainz/Server/Edit/Instrument/Delete.pm:10
msgid "Remove instrument"
-msgstr ""
+msgstr "移除乐器"
#: ../lib/MusicBrainz/Server/Edit/Instrument/DeleteAlias.pm:16
msgid "Remove instrument alias"
-msgstr ""
+msgstr "移除乐器别名"
#: ../lib/MusicBrainz/Server/Edit/Instrument/Edit.pm:26
msgid "Edit instrument"
-msgstr ""
+msgstr "编辑乐器"
#: ../lib/MusicBrainz/Server/Edit/Instrument/EditAlias.pm:12
msgid "Edit instrument alias"
-msgstr ""
+msgstr "编辑乐器别名"
#: ../lib/MusicBrainz/Server/Edit/Instrument/Merge.pm:11
#: ../root/instrument/InstrumentMerge.js:28
#: ../root/instrument/InstrumentMerge.js:30
msgid "Merge instruments"
-msgstr ""
+msgstr "合并乐器"
#: ../lib/MusicBrainz/Server/Edit/Label/AddAlias.pm:11
msgid "Add label alias"
-msgstr ""
+msgstr "添加厂牌别名"
#: ../lib/MusicBrainz/Server/Edit/Label/AddAnnotation.pm:11
msgid "Add label annotation"
-msgstr ""
+msgstr "添加唱片公司注释"
#: ../lib/MusicBrainz/Server/Edit/Label/Create.pm:28
msgid "Add label"
-msgstr ""
+msgstr "添加唱片公司"
#: ../lib/MusicBrainz/Server/Edit/Label/Delete.pm:12
msgid "Remove label"
-msgstr ""
+msgstr "删除唱片公司"
-#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
msgid "Edit label"
-msgstr ""
+msgstr "修改唱片公司"
#: ../lib/MusicBrainz/Server/Edit/Label/EditAlias.pm:12
msgid "Edit label alias"
-msgstr ""
+msgstr "修改唱片公司别名"
#: ../lib/MusicBrainz/Server/Edit/Label/Merge.pm:12
#: ../root/label/LabelMerge.js:28 ../root/label/LabelMerge.js:30
msgid "Merge labels"
-msgstr ""
+msgstr "合并唱片公司"
#: ../lib/MusicBrainz/Server/Edit/Medium/Create.pm:31
msgid "Add medium"
-msgstr ""
+msgstr "添加媒体"
#: ../lib/MusicBrainz/Server/Edit/Medium/Edit.pm:51
msgid "Edit medium"
-msgstr ""
+msgstr "编辑媒体"
#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:169
msgid ""
@@ -4650,88 +4810,92 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Edit/Place/AddAlias.pm:11
msgid "Add place alias"
-msgstr ""
+msgstr "添加地点别名"
#: ../lib/MusicBrainz/Server/Edit/Place/AddAnnotation.pm:11
msgid "Add place annotation"
-msgstr ""
+msgstr "添加地点注释"
#: ../lib/MusicBrainz/Server/Edit/Place/Create.pm:26
msgid "Add place"
-msgstr ""
+msgstr "添加地点"
#: ../lib/MusicBrainz/Server/Edit/Place/Delete.pm:10
msgid "Remove place"
-msgstr ""
+msgstr "移除地点"
#: ../lib/MusicBrainz/Server/Edit/Place/DeleteAlias.pm:15
msgid "Remove place alias"
-msgstr ""
+msgstr "移除地点别名"
-#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:45
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
msgid "Edit place"
-msgstr ""
+msgstr "编辑地点"
#: ../lib/MusicBrainz/Server/Edit/Place/EditAlias.pm:12
msgid "Edit place alias"
-msgstr ""
+msgstr "编辑地点别名"
#: ../lib/MusicBrainz/Server/Edit/Place/Merge.pm:11
#: ../root/place/PlaceMerge.js:28 ../root/place/PlaceMerge.js:30
msgid "Merge places"
-msgstr ""
+msgstr "合并地点"
#: ../lib/MusicBrainz/Server/Edit/Recording/AddAlias.pm:11
msgid "Add recording alias"
-msgstr ""
+msgstr "添加录音别名"
#: ../lib/MusicBrainz/Server/Edit/Recording/AddAnnotation.pm:12
msgid "Add recording annotation"
-msgstr ""
+msgstr "添加录制注释"
#: ../lib/MusicBrainz/Server/Edit/Recording/AddISRCs.pm:23
msgid "Add ISRCs"
-msgstr ""
+msgstr "添加 ISRC"
#: ../lib/MusicBrainz/Server/Edit/Recording/Create.pm:26
msgid "Add standalone recording"
-msgstr ""
+msgstr "添加独立录音"
#: ../lib/MusicBrainz/Server/Edit/Recording/Delete.pm:12
msgid "Remove recording"
-msgstr ""
+msgstr "删除录音"
#: ../lib/MusicBrainz/Server/Edit/Recording/DeleteAlias.pm:15
msgid "Remove recording alias"
-msgstr ""
+msgstr "移除录音别名"
#: ../lib/MusicBrainz/Server/Edit/Recording/EditAlias.pm:12
msgid "Edit recording alias"
-msgstr ""
+msgstr "编辑录音别名"
#: ../lib/MusicBrainz/Server/Edit/Recording/Merge.pm:15
#: ../root/recording/RecordingMerge.js:30
#: ../root/recording/RecordingMerge.js:32
msgid "Merge recordings"
-msgstr ""
+msgstr "合并录音"
#: ../lib/MusicBrainz/Server/Edit/Recording/RemoveISRC.pm:21
msgid "Remove ISRC"
-msgstr ""
+msgstr "删除 ISRC"
-#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
msgid "Relationship"
-msgstr ""
+msgstr "关系"
#: ../lib/MusicBrainz/Server/Edit/Relationship/AddLinkAttribute.pm:16
msgid "Add relationship attribute"
-msgstr ""
+msgstr "添加关系属性"
#: ../lib/MusicBrainz/Server/Edit/Relationship/AddLinkType.pm:15
msgid "Add relationship type"
-msgstr ""
+msgstr "添加关系类型"
#: ../lib/MusicBrainz/Server/Edit/Relationship/Delete.pm:295
msgid ""
@@ -4745,67 +4909,67 @@ msgstr ""
msgid ""
"The “{relationship_type}” relationship between “{entity0}” and “{entity1}” "
"already exists."
-msgstr ""
+msgstr "“{entity0}” 与 “{entity1}” 之间的 “{relationship_type}” 关联已经存在。"
#: ../lib/MusicBrainz/Server/Edit/Relationship/EditLinkAttribute.pm:17
msgid "Edit relationship attribute"
-msgstr ""
+msgstr "编辑关系属性"
#: ../lib/MusicBrainz/Server/Edit/Relationship/EditLinkType.pm:23
msgid "Edit relationship type"
-msgstr ""
+msgstr "编辑关系类型"
#: ../lib/MusicBrainz/Server/Edit/Relationship/RemoveLinkAttribute.pm:13
msgid "Remove relationship attribute"
-msgstr ""
+msgstr "移除关系属性"
#: ../lib/MusicBrainz/Server/Edit/Relationship/RemoveLinkType.pm:14
msgid "Remove relationship type"
-msgstr ""
+msgstr "移除关系类型"
#: ../lib/MusicBrainz/Server/Edit/Relationship/Reorder.pm:23
msgid "Reorder relationships"
-msgstr ""
+msgstr "重排关联"
#: ../lib/MusicBrainz/Server/Edit/Release/AddAlias.pm:11
msgid "Add release alias"
-msgstr ""
+msgstr "添加专辑别名"
#: ../lib/MusicBrainz/Server/Edit/Release/AddCoverArt.pm:21
msgid "Add cover art"
-msgstr ""
+msgstr "添加封面"
#: ../lib/MusicBrainz/Server/Edit/Release/AddReleaseLabel.pm:19
msgid "Add release label"
-msgstr ""
+msgstr "添加专辑的制作公司"
#: ../lib/MusicBrainz/Server/Edit/Release/DeleteAlias.pm:15
msgid "Remove release alias"
-msgstr ""
+msgstr "移除专辑别名"
#: ../lib/MusicBrainz/Server/Edit/Release/DeleteReleaseLabel.pm:21
msgid "Remove release label"
-msgstr ""
+msgstr "删除发行版唱片公司"
#: ../lib/MusicBrainz/Server/Edit/Release/EditAlias.pm:12
msgid "Edit release alias"
-msgstr ""
+msgstr "编辑专辑别名"
#: ../lib/MusicBrainz/Server/Edit/Release/EditBarcodes.pm:20
msgid "Edit barcodes"
-msgstr ""
+msgstr "编辑条形码"
#: ../lib/MusicBrainz/Server/Edit/Release/EditCoverArt.pm:23
msgid "Edit cover art"
-msgstr ""
+msgstr "编辑封面"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:29
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
msgid "Edit release label"
-msgstr ""
+msgstr "编辑专辑制作公司"
-#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:100
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
-#: ../root/static/scripts/release-editor/duplicates.js:193
+#: ../root/static/scripts/release-editor/duplicates.js:192
msgctxt "medium format"
msgid "(unknown)"
msgstr "(未知)"
@@ -4813,19 +4977,19 @@ msgstr "(未知)"
#: ../lib/MusicBrainz/Server/Edit/Release/Merge.pm:337
#, perl-brace-format
msgid "These releases could not be merged: {reason}"
-msgstr ""
+msgstr "这些专辑无法被合并:{reason}"
#: ../lib/MusicBrainz/Server/Edit/Release/RemoveCoverArt.pm:21
msgid "Remove cover art"
-msgstr ""
+msgstr "移除封面"
#: ../lib/MusicBrainz/Server/Edit/Release/ReorderCoverArt.pm:24
msgid "Reorder cover art"
-msgstr ""
+msgstr "重排封面"
#: ../lib/MusicBrainz/Server/Edit/Release/ReorderMediums.pm:14
msgid "Reorder mediums"
-msgstr ""
+msgstr "重排媒介"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup.pm:7
#: ../root/edit/details/AddRelease.js:65
@@ -4833,45 +4997,47 @@ msgstr ""
#: ../root/edit/details/EditRelease.js:81
#: ../root/edit/details/EditReleaseGroup.js:36
#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
msgid "Release group"
-msgstr "专辑组"
+msgstr "发行团"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/AddAlias.pm:11
msgid "Add release group alias"
-msgstr ""
+msgstr "添加专辑组别名"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/AddAnnotation.pm:12
msgid "Add release group annotation"
-msgstr ""
+msgstr "添加专辑组注释"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
-#: ../root/layout/components/sidebar/ArtistSidebar.js:141
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
msgid "Add release group"
-msgstr ""
+msgstr "添加发行团"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Delete.pm:12
msgid "Remove release group"
-msgstr ""
+msgstr "删除发行团"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/DeleteAlias.pm:15
msgid "Remove release group alias"
-msgstr ""
+msgstr "移除专辑组别名"
-#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:44
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
msgid "Edit release group"
-msgstr ""
+msgstr "编辑专辑组"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/EditAlias.pm:12
msgid "Edit release group alias"
-msgstr ""
+msgstr "编辑专辑组别名"
#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Merge.pm:13
#: ../root/artist/ArtistIndex.js:303
#: ../root/release_group/ReleaseGroupMerge.js:28
#: ../root/release_group/ReleaseGroupMerge.js:30
msgid "Merge release groups"
-msgstr ""
+msgstr "合并专辑组合"
#: ../lib/MusicBrainz/Server/Edit/Role/IPI.pm:40
#, perl-brace-format
@@ -4915,72 +5081,56 @@ msgstr[0] ""
#: ../lib/MusicBrainz/Server/Edit/Series/AddAlias.pm:11
msgid "Add series alias"
-msgstr ""
+msgstr "添加系列别名"
#: ../lib/MusicBrainz/Server/Edit/Series/AddAnnotation.pm:11
msgid "Add series annotation"
-msgstr ""
+msgstr "添加系列注释"
#: ../lib/MusicBrainz/Server/Edit/Series/Create.pm:22
msgid "Add series"
-msgstr ""
+msgstr "添加系列"
#: ../lib/MusicBrainz/Server/Edit/Series/Delete.pm:12
msgid "Remove series"
-msgstr ""
+msgstr "移除系列"
#: ../lib/MusicBrainz/Server/Edit/Series/DeleteAlias.pm:16
msgid "Remove series alias"
-msgstr ""
+msgstr "移除系列别名"
-#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:32
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
msgid "Edit series"
-msgstr ""
+msgstr "编辑系列"
#: ../lib/MusicBrainz/Server/Edit/Series/EditAlias.pm:12
msgid "Edit series alias"
-msgstr ""
+msgstr "编辑系列别名"
#: ../lib/MusicBrainz/Server/Edit/Series/Merge.pm:11
#: ../root/series/SeriesMerge.js:28 ../root/series/SeriesMerge.js:30
msgid "Merge series"
-msgstr ""
+msgstr "合并系列"
-#: ../lib/MusicBrainz/Server/Edit/URL.pm:7 ../root/edit/details/EditUrl.js:34
-#: ../root/edit/details/EditUrl.js:39 ../root/otherlookup/OtherLookupForm.js:67
-#: ../root/report/BadAmazonUrls.js:39
-#: ../root/report/LinksWithMultipleEntities.js:60
-#: ../root/report/WikidataLinksWithMultipleEntities.js:55
-#: ../root/report/components/ArtistUrlList.js:34
-#: ../root/report/components/LabelUrlList.js:34
-#: ../root/report/components/ReleaseGroupUrlList.js:36
-#: ../root/report/components/ReleaseUrlList.js:36
-#: ../root/report/components/UrlList.js:46
-#: ../root/static/scripts/common/constants.js:46
-#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
-#: ../root/static/scripts/edit/components/URLInputPopover.js:75
-#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
-msgid "URL"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:652
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
#: ../root/utility/edit.js:47
msgid "Open"
-msgstr ""
+msgstr "已开启"
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:272 ../root/utility/edit.js:40
msgid "Applied"
-msgstr ""
+msgstr "已生效"
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:273 ../root/utility/edit.js:45
msgid "Failed vote"
-msgstr ""
+msgstr "失败的投票"
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:274 ../root/utility/edit.js:43
msgid "Failed dependency"
-msgstr ""
+msgstr "失败的依赖"
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
#: ../root/report/ReportNotAvailable.js:13
#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
msgid "Error"
@@ -4988,120 +5138,120 @@ msgstr "错误"
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:276 ../root/utility/edit.js:44
msgid "Failed prerequisite"
-msgstr ""
+msgstr "失败的前置条件"
#: ../lib/MusicBrainz/Server/Edit/Utils.pm:277 ../root/utility/edit.js:46
msgid "No votes"
-msgstr ""
+msgstr "无投票"
-#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278
-#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
-#: ../root/user/UserProfile.js:642 ../root/utility/edit.js:41
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
msgid "Cancelled"
msgstr ""
#: ../lib/MusicBrainz/Server/Edit/WikiDoc.pm:7
msgid "Wiki documentation"
-msgstr ""
+msgstr "维基文档"
#: ../lib/MusicBrainz/Server/Edit/WikiDoc/Change.pm:16
msgid "Change WikiDoc"
-msgstr ""
+msgstr "更改维基文档"
#: ../lib/MusicBrainz/Server/Edit/Work/AddAlias.pm:12
msgid "Add work alias"
-msgstr ""
+msgstr "添加作品别名"
#: ../lib/MusicBrainz/Server/Edit/Work/AddAnnotation.pm:12
msgid "Add work annotation"
-msgstr ""
+msgstr "添加作品注释"
#: ../lib/MusicBrainz/Server/Edit/Work/AddISWCs.pm:21
msgid "Add ISWCs"
-msgstr ""
+msgstr "加 ISWC"
#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
-#: ../root/layout/components/sidebar/ArtistSidebar.js:156
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
msgid "Add work"
-msgstr ""
+msgstr "添加作品"
#: ../lib/MusicBrainz/Server/Edit/Work/Delete.pm:11
msgid "Remove work"
-msgstr ""
+msgstr "删除作品"
#: ../lib/MusicBrainz/Server/Edit/Work/DeleteAlias.pm:16
msgid "Remove work alias"
-msgstr ""
+msgstr "删除作品别名"
#: ../lib/MusicBrainz/Server/Edit/Work/Edit.pm:88
msgid "Edit work"
-msgstr ""
+msgstr "修改作品"
#: ../lib/MusicBrainz/Server/Edit/Work/EditAlias.pm:13
msgid "Edit work alias"
-msgstr ""
+msgstr "修改作品别名"
#: ../lib/MusicBrainz/Server/Edit/Work/Merge.pm:12 ../root/work/WorkMerge.js:30
#: ../root/work/WorkMerge.js:32
msgid "Merge works"
-msgstr ""
+msgstr "合并作品"
#: ../lib/MusicBrainz/Server/Edit/Work/RemoveISWC.pm:23
msgid "Remove ISWC"
-msgstr ""
+msgstr "删除 ISWC"
#: ../lib/MusicBrainz/Server/EditSearch/Predicate.pm:67
msgid "This operator is not supported"
-msgstr ""
+msgstr "不支持这个操作"
#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:91
msgctxt "autoeditor election status"
msgid "Awaiting 1st seconder"
-msgstr ""
+msgstr "等待第一位附议者"
#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:92
msgctxt "autoeditor election status"
msgid "Awaiting 2nd seconder"
-msgstr ""
+msgstr "等待第二位附议者"
#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:93
#, perl-brace-format
msgctxt "autoeditor election status"
msgid "Voting open since {date}"
-msgstr ""
+msgstr "投票开启于 {date}"
#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:94
#, perl-brace-format
msgctxt "autoeditor election status"
msgid "Accepted at {date}"
-msgstr ""
+msgstr "批准于 {date}"
#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:95
#, perl-brace-format
msgctxt "autoeditor election status"
msgid "Declined at {date}"
-msgstr ""
+msgstr "驳回于 {date}"
#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:96
#, perl-brace-format
msgctxt "autoeditor election status"
msgid "Cancelled at {date}"
-msgstr ""
+msgstr "取消于 {date}"
#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:100
msgctxt "autoeditor election status (short)"
msgid "Awaiting 1st seconder"
-msgstr ""
+msgstr "等待第一位附议者"
#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:101
msgctxt "autoeditor election status (short)"
msgid "Awaiting 2nd seconder"
-msgstr ""
+msgstr "等待第二位附议者"
#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:102
msgctxt "autoeditor election status (short)"
msgid "Voting open"
-msgstr ""
+msgstr "投票开启"
#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:103
msgctxt "autoeditor election status (short)"
@@ -5111,60 +5261,60 @@ msgstr "已接受"
#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:104
msgctxt "autoeditor election status (short)"
msgid "Declined"
-msgstr ""
+msgstr "已驳回"
#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:105
msgctxt "autoeditor election status (short)"
msgid "Cancelled"
-msgstr ""
+msgstr "已取消"
#: ../lib/MusicBrainz/Server/Entity/Barcode.pm:25
#: ../root/static/scripts/common/utility/formatBarcode.js:15
msgid "[none]"
-msgstr ""
+msgstr "【无】"
#: ../lib/MusicBrainz/Server/Entity/LinkAttribute.pm:33
#: ../root/static/scripts/common/utility/displayLinkAttribute.js:39
#, perl-brace-format
msgid "{attribute} [{credited_as}]"
-msgstr ""
+msgstr "{attribute} [{credited_as}]"
#: ../lib/MusicBrainz/Server/Entity/LinkAttribute.pm:37
#: ../root/static/scripts/common/utility/displayLinkAttribute.js:29
#, perl-brace-format
msgid "{attribute}: {value}"
-msgstr ""
+msgstr "{attribute}:{value}"
#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:50
msgid " – ????"
-msgstr ""
+msgstr " – ????"
#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:56
#, perl-brace-format
msgid "{begindate} – {enddate}"
-msgstr ""
+msgstr "{begindate} – {enddate}"
#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:60
#, perl-brace-format
msgid "– {enddate}"
-msgstr ""
+msgstr "– {enddate}"
#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:64
#, perl-brace-format
msgid "{begindate} – ????"
-msgstr ""
+msgstr "{begindate} – ????"
#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:66
#, perl-brace-format
msgid "{begindate} –"
-msgstr ""
+msgstr "{begindate} –"
#: ../lib/MusicBrainz/Server/Entity/Role/Relatable.pm:59
#: ../root/static/scripts/common/utility/groupRelationships.js:460
#: ../root/static/scripts/common/utility/groupRelationships.js:466
#, perl-brace-format
msgid "{role} (as {credited_name})"
-msgstr ""
+msgstr "{role}(作为 {credited_name})"
#: ../lib/MusicBrainz/Server/Entity/URL/Anghami.pm:10
msgid "Stream at Anghami"
@@ -5172,39 +5322,39 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Entity/URL/Audiomack.pm:10
msgid "Stream at Audiomack"
-msgstr ""
+msgstr "在 Audiomack 串流"
#: ../lib/MusicBrainz/Server/Entity/URL/Boomplay.pm:10
msgid "Stream at Boomplay"
-msgstr ""
+msgstr "在 Boomplay 串流"
#: ../lib/MusicBrainz/Server/Entity/URL/CPDL.pm:9
msgid "Score(s) at CPDL"
-msgstr ""
+msgstr "CPDL 乐谱"
#: ../lib/MusicBrainz/Server/Entity/URL/Deezer.pm:10
msgid "Stream at Deezer"
-msgstr ""
+msgstr "Deezer 在线播放"
#: ../lib/MusicBrainz/Server/Entity/URL/Dogmazic.pm:10
msgid "Stream at Dogmazic"
-msgstr ""
+msgstr "Dogmazic 在线播放"
#: ../lib/MusicBrainz/Server/Entity/URL/Gutenberg.pm:9
msgid "Project Gutenberg"
-msgstr ""
+msgstr "古登堡计划"
#: ../lib/MusicBrainz/Server/Entity/URL/IMSLP.pm:31
msgid "Score at IMSLP"
-msgstr ""
+msgstr "在 IMSLP 的乐谱"
#: ../lib/MusicBrainz/Server/Entity/URL/MiguMusic.pm:9
msgid "Stream at Migu Music"
-msgstr ""
+msgstr "Migu Music 在线播放"
#: ../lib/MusicBrainz/Server/Entity/URL/NicoNicoVideo.pm:9
msgid "Niconico"
-msgstr ""
+msgstr "Niconico"
#: ../lib/MusicBrainz/Server/Entity/URL/RateYourMusic.pm:13
msgid "Interview at Rate Your Music"
@@ -5212,41 +5362,41 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Entity/URL/Runeberg.pm:9
msgid "Project Runeberg"
-msgstr ""
+msgstr "鲁内贝里计划"
#: ../lib/MusicBrainz/Server/Entity/URL/Spotify.pm:14
msgid "Playlists at Spotify"
-msgstr ""
+msgstr "Spotify 播放列表"
#: ../lib/MusicBrainz/Server/Entity/URL/Spotify.pm:16
msgid "Stream at Spotify"
-msgstr ""
+msgstr "Spotify 在线播放"
#: ../lib/MusicBrainz/Server/Entity/URL/Tidal.pm:14
msgid "Purchase at Tidal"
-msgstr ""
+msgstr "在Tidal购买"
#: ../lib/MusicBrainz/Server/Entity/URL/Tidal.pm:16
msgid "Stream at Tidal"
-msgstr ""
+msgstr "在Tidal串流"
#: ../lib/MusicBrainz/Server/Entity/URL/Weibo.pm:9
msgid "Weibo"
-msgstr ""
+msgstr "微博"
#: ../lib/MusicBrainz/Server/Entity/URL/Wikisource.pm:9
msgid "Wikisource"
-msgstr ""
+msgstr "维基文库"
#: ../lib/MusicBrainz/Server/Entity/URL/YouTubeMusic.pm:10
msgid "Stream at YouTube Music"
-msgstr ""
+msgstr "YouTube Music 在线播放"
#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Language.pm:51
#: ../root/admin/attributes/Language.js:16
msgctxt "language optgroup"
msgid "Hidden"
-msgstr ""
+msgstr "隐藏"
#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Language.pm:52
#: ../lib/MusicBrainz/Server/Form/Utils.pm:58
@@ -5260,19 +5410,19 @@ msgstr "其他"
#: ../root/admin/attributes/Language.js:18
msgctxt "language optgroup"
msgid "Frequently used"
-msgstr ""
+msgstr "常用的"
#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Script.pm:42
#: ../root/admin/attributes/Script.js:16
msgctxt "script frequency"
msgid "Hidden"
-msgstr ""
+msgstr "隐藏"
#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Script.pm:43
#: ../root/admin/attributes/Script.js:17
msgctxt "script frequency"
msgid "Other (Uncommon)"
-msgstr ""
+msgstr "其他(不常见)"
#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Script.pm:44
#: ../root/admin/attributes/Script.js:18
@@ -5284,79 +5434,82 @@ msgstr "其他"
#: ../root/admin/attributes/Script.js:19
msgctxt "script frequency"
msgid "Frequently used"
-msgstr ""
+msgstr "常用的"
#: ../lib/MusicBrainz/Server/Form/Admin/LinkAttributeType.pm:59
msgid ""
"Cannot add or edit instruments here; use the instrument editing forms "
"instead."
-msgstr ""
+msgstr "无法在此处添加或编辑乐器;请使用乐器编辑表单。"
#: ../lib/MusicBrainz/Server/Form/Alias.pm:114
msgid "This alias can only be a primary alias if a locale is selected"
-msgstr ""
+msgstr "设为主要别名时需要先选择语言"
#: ../lib/MusicBrainz/Server/Form/Alias.pm:126
msgid "This alias already exists."
-msgstr ""
+msgstr "此别名已存在。"
#: ../lib/MusicBrainz/Server/Form/Application.pm:47
msgid "Redirect URL must be entered for web applications."
-msgstr ""
+msgstr "必须为网页应用程序输入重定向 URL。"
#: ../lib/MusicBrainz/Server/Form/Application.pm:51
msgid ""
"Redirect URL scheme must be either http
or https
"
"for web applications."
msgstr ""
+"网页应用程序的重定向 URL 协议必须为 http
或 https
。"
#: ../lib/MusicBrainz/Server/Form/Application.pm:58
msgid ""
"Redirect URL scheme must be a reverse-DNS string, as in org.example."
"app://auth
, for installed applications."
msgstr ""
+"对于已安装的应用程序,重定向 URL Scheme 必须是一个反向 DNS 字符串,例如 "
+"org.example.app://auth
。"
#: ../lib/MusicBrainz/Server/Form/Area.pm:88
msgid "An area already exists with this ISO code"
-msgstr ""
+msgstr "此 ISO 代码已用于另一个地区"
#: ../lib/MusicBrainz/Server/Form/Artist.pm:75
msgid "Group artists cannot have a gender."
-msgstr ""
+msgstr "团体艺术家无性别属性。"
#: ../lib/MusicBrainz/Server/Form/Artist.pm:82
msgid "Orchestras cannot have a gender."
-msgstr ""
+msgstr "乐团无性别属性。"
#: ../lib/MusicBrainz/Server/Form/Artist.pm:89
msgid "Choirs cannot have a gender."
-msgstr ""
+msgstr "合唱团无性别属性。"
#: ../lib/MusicBrainz/Server/Form/Collection.pm:92
msgid "The collection type must match the type of entities it contains."
-msgstr ""
+msgstr "收藏的类型必须匹配其包含的实体类型。"
#: ../lib/MusicBrainz/Server/Form/Collection.pm:110
#, perl-brace-format
msgid ""
"To add “{editor}” as a collaborator, please select them from the dropdown."
-msgstr ""
+msgstr "要将 “{editor}” 添加为合作编辑者,请从下拉框选择 Ta。"
#: ../lib/MusicBrainz/Server/Form/Collection.pm:115
#, perl-brace-format
msgid "Editor “{editor}” does not exist."
-msgstr ""
+msgstr "编辑者 “{editor}” 不存在。"
#: ../lib/MusicBrainz/Server/Form/EditNoteModify.pm:30
msgid ""
"You must provide an edit note. If you want to blank the note, please remove "
"it instead."
-msgstr ""
+msgstr "你必须提供一份编辑笔记。如果你想留空,请删除它。"
#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:50
#, perl-brace-format
msgid "Please add an artist name for {credit}"
-msgstr ""
+msgstr "请给 {credit} 添加艺术家姓名"
#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:57
#, perl-brace-format
@@ -5364,134 +5517,137 @@ msgid ""
"Artist \"{artist}\" is unlinked, please select an existing artist. You may "
"need to add a new artist to MusicBrainz first."
msgstr ""
+"歌手“{Artist}”未关联,请选择一个现有的歌手。你可能需要先向MusicBrainz添加一个"
+"新的歌手。"
#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:63
msgid "Please add an artist name for each credit."
-msgstr ""
+msgstr "请为每个名单添加一个艺术家名称。"
#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:78
msgid "Artist credit field is required"
-msgstr ""
+msgstr "艺术家名单为必填项"
#: ../lib/MusicBrainz/Server/Form/Field/Coordinates.pm:58
msgid "These coordinates could not be parsed"
-msgstr ""
+msgstr "无法解析这些坐标"
#: ../lib/MusicBrainz/Server/Form/Field/DatePeriod.pm:42
#: ../root/static/scripts/edit/components/DateRangeFieldset.js:68
msgid "The end date cannot precede the begin date."
-msgstr ""
+msgstr "结束日期不能早于开始日期。"
#: ../lib/MusicBrainz/Server/Form/Field/DiscID.pm:15
msgid "This is not a valid disc ID"
-msgstr ""
+msgstr "这不是有效的唱片 ID"
#: ../lib/MusicBrainz/Server/Form/Field/FreeDBID.pm:15
msgid "This is not a valid FreeDB ID"
-msgstr ""
+msgstr "这不是有效的 FreeDB ID"
#: ../lib/MusicBrainz/Server/Form/Field/GID.pm:15
msgid "This is not a valid MBID"
-msgstr ""
+msgstr "这不是有效的 MBID"
#: ../lib/MusicBrainz/Server/Form/Field/ID.pm:15
msgid "This is not a valid database ID"
-msgstr ""
+msgstr "这不是有效的数据库 ID"
#: ../lib/MusicBrainz/Server/Form/Field/IPI.pm:15
#: ../lib/MusicBrainz/Server/Form/Field/IPI.pm:19
msgid "This is not a valid IPI."
-msgstr ""
+msgstr "这不是有效的 IPI。"
#: ../lib/MusicBrainz/Server/Form/Field/ISNI.pm:15
#: ../lib/MusicBrainz/Server/Form/Field/ISNI.pm:19
msgid "This is not a valid ISNI."
-msgstr ""
+msgstr "这不是有效的 ISNI。"
#: ../lib/MusicBrainz/Server/Form/Field/ISO_3166_1.pm:15
msgid "This is not a valid ISO 3166-1 code"
-msgstr ""
+msgstr "这不是有效的 ISO 3166-1 代码"
#: ../lib/MusicBrainz/Server/Form/Field/ISO_3166_2.pm:15
msgid "This is not a valid ISO 3166-2 code"
-msgstr ""
+msgstr "这不是有效的 ISO 3166-2 代码"
#: ../lib/MusicBrainz/Server/Form/Field/ISO_3166_3.pm:15
msgid "This is not a valid ISO 3166-3 code"
-msgstr ""
+msgstr "这不是有效的 ISO 3166-3 代码"
#: ../lib/MusicBrainz/Server/Form/Field/ISRC.pm:17
msgid "This is not a valid ISRC"
-msgstr ""
+msgstr "这不是有效的 ISRC"
#: ../lib/MusicBrainz/Server/Form/Field/ISRC.pm:21
msgid "This is not a valid ISRC."
-msgstr ""
+msgstr "这不是有效的 ISRC。"
#: ../lib/MusicBrainz/Server/Form/Field/ISWC.pm:15
#: ../lib/MusicBrainz/Server/Form/Field/ISWC.pm:19
msgid "This is not a valid ISWC"
-msgstr ""
+msgstr "ISWC 无效"
#: ../lib/MusicBrainz/Server/Form/Field/LabelCode.pm:17
msgid "Label codes must be greater than 0 and 5 digits at most"
-msgstr ""
+msgstr "厂牌代码必须大于 0,且至多有 5 位数字。"
#: ../lib/MusicBrainz/Server/Form/Field/Length.pm:31
msgid "Not a valid time. Must be in the format MM:SS"
-msgstr ""
+msgstr "时间格式无效。必须按照 MM:SS 格式"
#: ../lib/MusicBrainz/Server/Form/Field/PartialDate.pm:68
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:103
msgid "invalid date"
-msgstr ""
+msgstr "无效日期"
#: ../lib/MusicBrainz/Server/Form/Field/Relationship.pm:95
#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:290
msgid ""
"You must select a relationship type and target entity for every relationship."
-msgstr ""
+msgstr "您必须为每一个关联选择一个关联类型和目标实体。"
#: ../lib/MusicBrainz/Server/Form/Field/Setlist.pm:15
msgid "Please ensure all lines start with @, * or #, followed by a space."
-msgstr ""
+msgstr "请确保每一行都以 @,* 或 # 开始,紧跟一个空格。"
#: ../lib/MusicBrainz/Server/Form/Field/Text.pm:21
msgid "The characters you’ve entered are invalid or not allowed."
-msgstr ""
+msgstr "您输入的字符无效或不被允许。"
#: ../lib/MusicBrainz/Server/Form/Field/Time.pm:19
msgid "This is not a valid time."
-msgstr ""
+msgstr "这不是有效的时间。"
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:26
-msgid "Enter a valid url e.g. \"http://google.com/\""
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
msgstr ""
-#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:29
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
msgid "URL protocol must be HTTP, HTTPS or FTP"
-msgstr ""
+msgstr "URL 协议必须为 HTTP, HTTPS 或 FTP"
#: ../lib/MusicBrainz/Server/Form/Filter/Event.pm:31
msgctxt "event type"
msgid "[none]"
-msgstr ""
+msgstr "[无]"
#: ../lib/MusicBrainz/Server/Form/Filter/Release.pm:95
msgid ""
"Must be a valid date or partial date. Examples: 2006-05-25, "
"1990-01, ????-01, ..."
msgstr ""
+"必须是一个有效的日期或部分日期。例如:2006-05-25, 1990-01, ????-01, ..."
#: ../lib/MusicBrainz/Server/Form/Filter/ReleaseGroup.pm:54
#: ../lib/MusicBrainz/Server/Form/Filter/ReleaseGroup.pm:63
msgctxt "release group type"
msgid "[none]"
-msgstr ""
+msgstr "[无]"
#: ../lib/MusicBrainz/Server/Form/Filter/Work.pm:29
msgid "As performer"
-msgstr "作为演奏者"
+msgstr "作为表演者"
#: ../lib/MusicBrainz/Server/Form/Filter/Work.pm:30
msgid "As writer"
@@ -5500,109 +5656,98 @@ msgstr "作为作者"
#: ../lib/MusicBrainz/Server/Form/Filter/Work.pm:37
msgctxt "work type"
msgid "[none]"
-msgstr ""
+msgstr "[无]"
#: ../lib/MusicBrainz/Server/Form/Merge.pm:21
msgid "Please pick the entity you want the others merged into."
-msgstr ""
+msgstr "请选择其他实体要合并至的目标实体。"
#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:54
#: ../root/edit/details/MergeReleases.js:35
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:38
msgid "Append mediums to target release"
-msgstr ""
+msgstr "向目标专辑追加媒介"
#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:55
#: ../root/edit/details/MergeReleases.js:36
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:39
msgid "Merge mediums and recordings"
-msgstr ""
+msgstr "合并媒体和录音"
#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:66
msgid "Another medium is already in this position"
-msgstr ""
+msgstr "此位置已有另一媒介"
#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:69
msgid "Positions must be greater than 0"
-msgstr ""
+msgstr "位置必须大于 0"
#: ../lib/MusicBrainz/Server/Form/Recording.pm:68
msgid ""
"This recording’s duration is determined by the tracks that are linked to it, "
"and cannot be changed directly."
-msgstr ""
+msgstr "此录音的时长由其链接的音轨决定,无法直接更改。"
#: ../lib/MusicBrainz/Server/Form/Recording/Standalone.pm:11
msgid "You must provide an edit note when adding a standalone recording"
-msgstr ""
+msgstr "添加独立录音时必须提供编辑备注"
#: ../lib/MusicBrainz/Server/Form/Release/AddCoverArt.pm:59
#: ../lib/MusicBrainz/Server/Form/Role/CSRFToken.pm:10
#: ../lib/MusicBrainz/Server/Form/Role/CSRFToken.pm:81
msgid "The form you’ve submitted has expired. Please resubmit your request."
-msgstr ""
+msgstr "您提交的表单已过期。请重新提交请求。"
#: ../lib/MusicBrainz/Server/Form/Role/EditNote.pm:26
msgid "You must provide an edit note"
-msgstr ""
+msgstr "必须提供编辑备注"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:34
msgid "Invalid URL format"
-msgstr ""
+msgstr "URL 格式无效"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:65
msgid "A language is required."
-msgstr ""
+msgstr "语言为必填项。"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:71
msgid "A fluency level is required."
-msgstr ""
+msgstr "流利程度为必填项。"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
-#: ../root/static/scripts/common/constants.js:367
+#: ../root/static/scripts/common/constants.js:366
msgid "Basic"
-msgstr ""
+msgstr "基础"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
-#: ../root/static/scripts/common/constants.js:368
+#: ../root/static/scripts/common/constants.js:367
msgid "Intermediate"
-msgstr ""
+msgstr "中级"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
-#: ../root/static/scripts/common/constants.js:366
+#: ../root/static/scripts/common/constants.js:365
msgid "Advanced"
msgstr "高级"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
-#: ../root/static/scripts/common/constants.js:369
+#: ../root/static/scripts/common/constants.js:368
msgid "Native"
-msgstr ""
+msgstr "母语"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:96
msgid "You must supply a complete birth date for us to display your age."
-msgstr ""
+msgstr "必须指定完整的出生日期,这样我们才能显示您的年龄。"
#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:100
msgid "Birth year must be after 1900"
-msgstr ""
-
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
-#: ../root/annotation/AnnotationRevision.js:32
-#: ../root/annotation/EditAnnotation.js:74
-#: ../root/layout/components/Search.js:41
-#: ../root/report/hooks/useAnnotationColumns.js:28
-#: ../root/search/components/AnnotationResults.js:56
-#: ../root/search/components/SearchForm.js:45
-#: ../root/static/scripts/common/components/Annotation.js:51
-msgid "Annotation"
-msgstr ""
+msgstr "出生年份必须在1900年之后"
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
#: ../root/layout/components/Search.js:45
#: ../root/search/components/CDStubResults.js:44
#: ../root/search/components/SearchForm.js:46
msgid "CD Stub"
-msgstr ""
+msgstr "CD存根"
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:49
#: ../root/layout/components/Search.js:42
@@ -5611,80 +5756,69 @@ msgctxt "noun"
msgid "Tag"
msgstr "标签"
-#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
-#: ../root/edit/details/AddRelationshipType.js:187
-#: ../root/edit/details/EditRelationshipType.js:327
-#: ../root/layout/components/BottomMenu.js:293
-#: ../root/layout/components/Search.js:51
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
-#: ../root/search/components/SearchForm.js:56
-msgid "Documentation"
-msgstr ""
-
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
#: ../root/search/components/SearchForm.js:60
msgid "Indexed search"
-msgstr ""
+msgstr "搜索索引"
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:64
msgid "Indexed search with advanced query syntax"
-msgstr ""
+msgstr "使用高级检索语法搜索索引"
#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:65
#: ../root/search/components/SearchForm.js:67
msgid "Direct database search"
-msgstr ""
+msgstr "直接数据库搜索"
#: ../lib/MusicBrainz/Server/Form/Series.pm:29
msgid "A type is required."
-msgstr ""
+msgstr "类型为必填项。"
#: ../lib/MusicBrainz/Server/Form/User/ChangePassword.pm:53
msgid "The old password is incorrect"
-msgstr ""
+msgstr "旧密码错误"
#: ../lib/MusicBrainz/Server/Form/User/ChangePassword.pm:58
msgid "An account with this name could not be found"
-msgstr ""
+msgstr "无法找到此名称对应的账号。"
#: ../lib/MusicBrainz/Server/Form/User/Login.pm:15
msgid "Username field is required"
-msgstr ""
+msgstr "用户名为必填项"
#: ../lib/MusicBrainz/Server/Form/User/Login.pm:23
msgid "Password field is required"
-msgstr ""
+msgstr "密码为必填项"
#: ../lib/MusicBrainz/Server/Form/User/Preferences.pm:84
#: ../root/static/scripts/account/components/PreferencesForm.js:80
msgid "Daily"
-msgstr ""
+msgstr "每天"
#: ../lib/MusicBrainz/Server/Form/User/Preferences.pm:85
#: ../root/static/scripts/account/components/PreferencesForm.js:81
msgid "Weekly"
-msgstr ""
+msgstr "每周"
#: ../lib/MusicBrainz/Server/Form/User/Preferences.pm:86
#: ../root/static/scripts/account/components/PreferencesForm.js:82
msgid "Never"
-msgstr ""
+msgstr "永不"
#: ../lib/MusicBrainz/Server/Form/User/Register.pm:15
#, perl-brace-format
msgid ""
"The value of this field cannot be longer than {max} characters, but you "
"entered {actual}."
-msgstr ""
+msgstr "此栏的内容不能多于 {max} 个字符,但您输入了 {actual} 个。"
#: ../lib/MusicBrainz/Server/Form/User/Register.pm:44
msgid "Please enter a password in this field"
-msgstr ""
+msgstr "请在此栏输入密码"
#: ../lib/MusicBrainz/Server/Form/User/Register.pm:55
msgid "The password confirmation does not match the password"
-msgstr ""
+msgstr "确认密码与密码不一致"
#: ../lib/MusicBrainz/Server/Form/User/Report.pm:35
#: ../root/user/ReportUser.js:48
@@ -5694,12 +5828,12 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Form/User/Report.pm:36
#: ../root/user/ReportUser.js:52
msgid "Editor is unresponsive to edit notes"
-msgstr ""
+msgstr "编辑者未响应编辑备注"
#: ../lib/MusicBrainz/Server/Form/User/Report.pm:37
#: ../root/user/ReportUser.js:56
msgid "Editor intentionally ignores accepted guidelines"
-msgstr ""
+msgstr "编辑器故意无视已批准的指导原则。"
#: ../lib/MusicBrainz/Server/Form/User/Report.pm:38
#: ../root/user/ReportUser.js:60
@@ -5714,7 +5848,7 @@ msgstr ""
#: ../lib/MusicBrainz/Server/Form/User/Report.pm:40
#: ../root/user/ReportUser.js:69
msgid "Editor has violated some other part of our Code of Conduct"
-msgstr ""
+msgstr "编辑者违反了我们的行为准则的其他部分"
#: ../lib/MusicBrainz/Server/Form/Utils.pm:46
#: ../root/static/scripts/common/i18n/localizeLanguageName.js:19
@@ -5724,7 +5858,7 @@ msgstr "[无歌词]"
#: ../lib/MusicBrainz/Server/Form/Utils.pm:82
msgctxt "script optgroup"
msgid "Frequently used"
-msgstr ""
+msgstr "常用的"
#: ../lib/MusicBrainz/Server/Form/Utils.pm:82
msgctxt "script optgroup"
@@ -5734,59 +5868,59 @@ msgstr "其他"
#: ../lib/MusicBrainz/Server/Form/Utils.pm:214
msgid ""
"This username contains invalid characters. (Check for consecutive spaces.)"
-msgstr ""
+msgstr "此用户名包含无效字符。(注意检查连续的空格。)"
#: ../lib/MusicBrainz/Server/Form/Utils.pm:217
msgid "This username is reserved for internal use."
-msgstr ""
+msgstr "此用户名已被保留用作内部使用。"
#: ../lib/MusicBrainz/Server/Form/Utils.pm:220
msgid "Please choose another username, this one is already taken."
-msgstr ""
+msgstr "此用户名已被占用,请选择另一个用户名。"
#: ../lib/MusicBrainz/Server/Form/Work.pm:60
msgid "Please select a work attribute type."
-msgstr ""
+msgstr "请选择作品属性类型。"
#: ../lib/MusicBrainz/Server/Form/Work.pm:67
msgid "Please enter a work attribute value."
-msgstr ""
+msgstr "请输入作品属性值。"
#: ../lib/MusicBrainz/Server/Form/Work.pm:94
msgid ""
"You cannot select “[Multiple languages]” and specific languages at the same "
"time."
-msgstr ""
+msgstr "不能同时选择 “[多种语言]” 和特定语言。"
#: ../lib/MusicBrainz/Server/Form/Work.pm:99
msgid "You cannot select “[No lyrics]” and a lyrics language at the same time."
-msgstr ""
+msgstr "不能同时选择“[无歌词]”和歌词语言。"
#: ../lib/MusicBrainz/Server/Form/Work.pm:104
msgid "You cannot select the same language more than once."
-msgstr ""
+msgstr "您不能多次选择相同的语言。"
#: ../lib/MusicBrainz/Server/Form/Work.pm:146
msgid "Unknown work attribute type."
-msgstr ""
+msgstr "未知作品属性类型。"
#: ../lib/MusicBrainz/Server/Form/Work.pm:155
msgid "You cannot enter the same attribute and value more than once."
-msgstr ""
+msgstr "您不能多次输入相同的属性和值。"
#: ../lib/MusicBrainz/Server/Form/Work.pm:162
msgid "This value is not allowed for this work attribute type."
-msgstr ""
+msgstr "此值不适用于此作品属性类型。"
#: ../lib/MusicBrainz/Server/Release.pm:30
msgid "(Special case)"
-msgstr ""
+msgstr "(特例)"
#: ../lib/MusicBrainz/Server/Release.pm:31
msgid ""
"An album release primarily consists of previously unreleased material. This "
"includes album re-issues, with or without bonus tracks."
-msgstr ""
+msgstr "发行专辑主要由先前未发行的素材组成。包括专辑再发行,含或不含额外音轨。"
#: ../lib/MusicBrainz/Server/Release.pm:32
msgid ""
@@ -5794,98 +5928,104 @@ msgid ""
"tracks or remixes of the main track. A single is usually named after its "
"main song."
msgstr ""
+"单曲通常有一首主歌,可能还有几首其他音轨或主音轨的混音。通常以主歌的名字来命"
+"名。"
#: ../lib/MusicBrainz/Server/Release.pm:33
msgid ""
"An EP is an Extended Play release and often contains the letters EP in the "
"title."
-msgstr ""
+msgstr "EP是指迷你专辑,且标题中通常包含EP字样。"
#: ../lib/MusicBrainz/Server/Release.pm:34
msgid ""
"A compilation is a collection of previously released tracks by one or more "
"artists."
-msgstr ""
+msgstr "汇编集是由一个或多个艺术家先前发行音轨组成的收藏集。"
#: ../lib/MusicBrainz/Server/Release.pm:35
msgid ""
"A soundtrack is the musical score to a movie, TV series, stage show, "
"computer game etc."
-msgstr ""
+msgstr "原声音乐是指电影、电视剧、舞台表演、电脑游戏等的音效。"
#: ../lib/MusicBrainz/Server/Release.pm:36
msgid "Non-music spoken word releases."
-msgstr ""
+msgstr "非音乐表达的发行专辑。"
#: ../lib/MusicBrainz/Server/Release.pm:37
msgid "An interview release contains an interview with the Artist."
-msgstr ""
+msgstr "包含对艺术家采访的采访专辑。"
#: ../lib/MusicBrainz/Server/Release.pm:38
msgid "An audiobook is a book read by a narrator without music."
-msgstr ""
+msgstr "有声读物是由叙述者阅读而没有音乐的书。"
#: ../lib/MusicBrainz/Server/Release.pm:39
msgid "A release that was recorded live."
-msgstr ""
+msgstr "现场表演录制的发行专辑。"
#: ../lib/MusicBrainz/Server/Release.pm:40
msgid "A release that was (re)mixed from previously released material."
-msgstr ""
+msgstr "从先前发布的素材中(重新)混合的发行专辑。"
#: ../lib/MusicBrainz/Server/Release.pm:41
msgid "Any release that does not fit any of the categories above."
-msgstr ""
+msgstr "任何不符合上述分类的发行专辑。"
#: ../lib/MusicBrainz/Server/Release.pm:43
msgid ""
"Any release officially sanctioned by the artist and/or their record company. "
"(Most releases will fit into this category.)"
-msgstr ""
+msgstr "任何经艺术家和/或其唱片公司许可的专辑。(多数专辑符合此分类)"
#: ../lib/MusicBrainz/Server/Release.pm:44
msgid ""
"A giveaway release or a release intended to promote an upcoming official "
"release. (e.g. prerelease albums or releases included with a magazine)"
msgstr ""
+"赠送专辑或用于推广待发行正式专辑的专辑(如预发行专辑,杂志附赠专辑,电台DJ播"
+"放版)。"
#: ../lib/MusicBrainz/Server/Release.pm:45
msgid ""
"An unofficial/underground release that was not sanctioned by the artist and/"
"or the record company."
msgstr ""
+"非官方/地下专辑是未经艺术家和/或唱片公司许可的专辑,包括非官方现场表演录音和"
+"盗版专辑。"
#: ../lib/MusicBrainz/Server/Release.pm:46
msgid ""
"A pseudo-release is a duplicate release for translation/transliteration "
"purposes."
-msgstr ""
+msgstr "伪专辑是专辑经过翻译或转录后的版本。"
-#: ../lib/MusicBrainz/Server/Translation.pm:253
+#: ../lib/MusicBrainz/Server/Translation.pm:254
#: ../root/static/scripts/common/i18n/commaList.js:24
#, perl-brace-format
msgid "{almost_last_list_item} and {last_list_item}"
-msgstr ""
+msgstr "{almost_last_list_item} 和 {last_list_item}"
-#: ../lib/MusicBrainz/Server/Translation.pm:259
+#: ../lib/MusicBrainz/Server/Translation.pm:260
#: ../root/static/scripts/common/i18n/commaList.js:30
#, perl-brace-format
msgid "{list_item}, {rest}"
-msgstr ""
+msgstr "{list_item}, {rest}"
-#: ../lib/MusicBrainz/Server/Translation.pm:270
+#: ../lib/MusicBrainz/Server/Translation.pm:271
#: ../root/static/scripts/common/i18n/commaList.js:21
#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
#, perl-brace-format
msgid "{last_list_item}"
-msgstr ""
+msgstr "{last_list_item}"
-#: ../lib/MusicBrainz/Server/Translation.pm:273
+#: ../lib/MusicBrainz/Server/Translation.pm:274
#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
#, perl-brace-format
msgid "{commas_only_list_item}, {rest}"
-msgstr ""
+msgstr "{commas_only_list_item}, {rest}"
#: ../root/account/ChangePassword.js:45
msgid ""
@@ -5896,10 +6036,14 @@ msgid ""
"change their passwords. Sorry for the inconvenience. For more information "
"see {blog|the recent blog post}."
msgstr ""
+"请修改您的密码。我们不幸发现一些用户密码的密文曾短暂地在我们的 FTP 站点提供下"
+"载。虽然因此次意外而被破解出密码明文的概率非常低,我们仍然建议所有用户修改密"
+"码。我们对此造成的不便深表感抱歉。如需更多信息,请查看 {blog|最近的博客文"
+"章}。"
#: ../root/account/ChangePassword.js:58
msgid "Please enter your old password below, and then your new password."
-msgstr ""
+msgstr "请在下方输入您的旧密码和新密码。"
#: ../root/account/ChangePassword.js:69 ../root/account/LostPassword.js:44
#: ../root/admin/EditUser.js:155
@@ -5910,34 +6054,34 @@ msgstr ""
#: ../root/account/ChangePassword.js:77
msgid "Old password:"
-msgstr ""
+msgstr "旧密码:"
#: ../root/account/ChangePassword.js:85 ../root/account/ResetPassword.js:41
msgid "New password:"
-msgstr ""
+msgstr "新密码:"
#: ../root/account/ChangePassword.js:93 ../root/account/ResetPassword.js:49
#: ../root/static/scripts/account/components/RegisterForm.js:100
msgid "Confirm password:"
-msgstr ""
+msgstr "确认密码:"
#: ../root/account/ChangePassword.js:99 ../root/account/ChangePassword.js:117
#: ../root/account/ChangePassword.js:119 ../root/account/ChangePassword.js:130
#: ../root/account/ChangePassword.js:131
#: ../root/components/UserAccountTabs.js:86
msgid "Change Password"
-msgstr ""
+msgstr "修改密码"
#: ../root/account/Donation.js:32 ../root/account/Donation.js:34
#: ../root/components/UserAccountTabs.js:92
msgid "Donation Check"
-msgstr ""
+msgstr "检查捐款"
#: ../root/account/Donation.js:38
msgid ""
"We were not able to check your donation status right now. Please try again "
"later."
-msgstr ""
+msgstr "我们暂时无法检查你的捐赠状态,请稍后再试。"
#: ../root/account/Donation.js:45
msgid ""
@@ -5945,6 +6089,8 @@ msgid ""
"PayPal donation, then we have not received a notification from PayPal yet. "
"Please wait a few minutes and reload this page to check again."
msgstr ""
+"我们最近没有收到来自你的捐赠。如果你近期使用 PayPal 进行了捐赠,那么我们可能"
+"还没有从 PayPayl 收到通知。请等待几分钟后刷新此页面重新查看。"
#: ../root/account/Donation.js:52
msgid ""
@@ -5954,40 +6100,41 @@ msgstr ""
#: ../root/account/Donation.js:62
msgid "Thank you for contributing to MusicBrainz."
-msgstr ""
+msgstr "感谢您对 MusicBrainz 的贡献。"
#: ../root/account/Donation.js:68
msgid "You will not be nagged for another {days} days."
-msgstr ""
+msgstr "我们在 {days} 天内不会再打扰您。"
#: ../root/account/Donation.js:74
msgid "You will never be nagged again!"
-msgstr ""
+msgstr "我们永远不会再打扰您!"
#: ../root/account/EditProfile.js:34 ../root/account/EditProfile.js:36
#: ../root/components/UserAccountTabs.js:74
msgid "Edit Profile"
-msgstr ""
+msgstr "编辑资料"
#: ../root/account/EditProfile.js:39
msgid ""
"See also your {uri|user preferences}, which include your privacy settings."
-msgstr ""
+msgstr "也可参见您的 {uri|用户偏好},其中包含了您的隐私设置。"
#: ../root/account/EmailVerificationStatus.js:19
msgid "Email Verification"
-msgstr ""
+msgstr "电子邮件验证"
#: ../root/account/EmailVerificationStatus.js:23
msgid ""
"Thank you, your email address has now been verified! If you still can't "
"edit, please try to log out and log in again."
msgstr ""
+"谢谢,您的电子邮件地址已验证!如果您仍然无法编辑,请尝试登出并再次登录。"
#: ../root/account/LostPassword.js:29 ../root/account/LostPassword.js:30
#: ../root/account/LostPasswordSent.js:14
msgid "Lost Password"
-msgstr ""
+msgstr "忘记密码"
#: ../root/account/LostPassword.js:33
msgid ""
@@ -5995,27 +6142,30 @@ msgid ""
"to reset your password. If you have forgotten your username, {link|retrieve "
"it} first and then reset your password."
msgstr ""
+"请在下方输入您的用户名和电子邮件地址。我们将会给您发送一封含有密码重置链接的"
+"电子邮件。如果您忘记了您的用户名,请先 {link|取回您的用户名} 再重置密码。"
#: ../root/account/LostPassword.js:50 ../root/account/LostUsername.js:37
#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
#: ../root/admin/components/UserList.js:32
#: ../root/report/components/EditorList.js:79
-#: ../root/static/scripts/account/components/EditProfileForm.js:188
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
#: ../root/static/scripts/account/components/PreferencesForm.js:208
#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
msgid "Email"
-msgstr ""
+msgstr "电子邮件"
#: ../root/account/LostPassword.js:55 ../root/account/ResetPassword.js:29
#: ../root/account/ResetPassword.js:30 ../root/account/ResetPassword.js:55
#: ../root/account/ResetPasswordStatus.js:19
msgid "Reset Password"
-msgstr ""
+msgstr "重置密码"
#: ../root/account/LostPasswordSent.js:14
#: ../root/account/LostUsernameSent.js:14
msgid "Email Sent!"
-msgstr ""
+msgstr "电子邮件已发送!"
#: ../root/account/LostPasswordSent.js:17
msgid ""
@@ -6023,17 +6173,21 @@ msgid ""
"receive this email or still have problems logging in, please {link|contact "
"us}."
msgstr ""
+"我们已将重置密码的说明发送给您。如果您没有收到电子邮件或仍然无法登录,请 "
+"{link|联系我们}。"
#: ../root/account/LostUsername.js:27 ../root/account/LostUsername.js:28
#: ../root/account/LostUsernameSent.js:14
msgid "Lost Username"
-msgstr ""
+msgstr "忘记用户名"
#: ../root/account/LostUsername.js:30
msgid ""
"Enter your email address below and we will send you an email with your "
"MusicBrainz account information."
msgstr ""
+"请在下方输入您的电子邮件地址,我们会给您发送一封含有您 MusicBrainz 账号信息的"
+"电子邮件。"
#: ../root/account/LostUsernameSent.js:17
msgid ""
@@ -6041,25 +6195,27 @@ msgid ""
"receive this email or still have problems logging in, please {link|contact "
"us}."
msgstr ""
+"我们已给您发送一封含有您 MusicBrainz 账号信息的电子邮件。如果您没有收到电子邮"
+"件或仍然无法登录,请 {link|联系我们}。"
#: ../root/account/Preferences.js:34 ../root/account/PreferencesSaved.js:18
#: ../root/components/UserAccountTabs.js:80
msgid "Preferences"
-msgstr ""
+msgstr "偏好设定"
#: ../root/account/PreferencesSaved.js:21
msgid ""
"Your preferences have been saved. Click {link|here} to continue to your user "
"page."
-msgstr ""
+msgstr "您的偏好设定已保存。点击 {link|此处} 继续前往您的用户页面。"
#: ../root/account/Register.js:28 ../root/account/Register.js:35
msgid "Create an Account"
-msgstr ""
+msgstr "注册账号"
#: ../root/account/Register.js:31
msgid "Captcha incorrect. Try again."
-msgstr ""
+msgstr "验证码不正确。请再试一次。"
#: ../root/account/Register.js:39
msgid ""
@@ -6069,6 +6225,9 @@ msgid ""
"license this data for commercial use. Please read our {doc|license page} for "
"more details. "
msgstr ""
+"注意,任何您向MusicBrainz做出的贡献将会发布到公共领域,并/或以知识共"
+"享许可协议:署名-非商业性使用-相同方式共享授权。此外,您还给予MetaBrainz基金"
+"会授权数据商用的权利。更多信息参见 {doc|license page} 。"
#: ../root/account/Register.js:51
msgid ""
@@ -6076,6 +6235,8 @@ msgid ""
"information you choose to provide will not be sold or shared with anyone "
"else. For full details, please read our {doc|Privacy Policy}."
msgstr ""
+"MusicBrainz 非常注重用户的隐私!我们不会向任何人出售或分享您选择提供的个人资"
+"料。详情请参见我们的 {doc|隐私政策}。"
#: ../root/account/Register.js:61
msgid ""
@@ -6083,56 +6244,63 @@ msgid ""
"deleting your account. For more details, see our {doc|GDPR compliance "
"statement}."
msgstr ""
+"您可以在任何时间删除您的账号,以移除您的个人信息。详情请见我们的{doc|GDPR合规"
+"声明}。"
#: ../root/account/Register.js:73
msgid ""
"If you have any questions, please review the {faq|FAQs} or {doc|"
"documentation} before {con|contacting us}. "
msgstr ""
+"如果您有任何问题,请在{con|联系我们}之前查看{faq|常见问题}和{doc|文档}。 "
#: ../root/account/Register.js:85
msgid ""
"Follow our {bl|blog} or {tw|twitter account}! To talk to other users, try "
"the {fo|forums} or {irc|IRC}."
msgstr ""
+"关注我们的 {bl|博客} 或 {tw|Twitter 账号}!要与其他用户交流,请前往 {fo|论"
+"坛} 或 {irc|IRC}。"
#: ../root/account/Register.js:98
msgid ""
"MusicBrainz has one account type for all users. If you represent an artist "
"or label, please use the above form to create an account."
msgstr ""
+"MusicBrainz 对所有用户提供同一种账号类型。如果您代表一位艺术家或一个厂牌,请"
+"使用以上的表单创建一个账号。"
#: ../root/account/ResetPassword.js:33
msgid "Set a new password for your MusicBrainz account."
-msgstr ""
+msgstr "为您的 MusicBrainz 账号设置一个新密码。"
#: ../root/account/applications/ApplicationList.js:34
#: ../root/static/scripts/account/components/ApplicationForm.js:40
msgid "Web Application"
-msgstr ""
+msgstr "网页应用程序"
#: ../root/account/applications/ApplicationList.js:35
#: ../root/static/scripts/account/components/ApplicationForm.js:41
msgid "Installed Application"
-msgstr ""
+msgstr "已安装的应用程序"
#: ../root/account/applications/ApplicationList.js:65
msgid "Revoke Access"
-msgstr ""
+msgstr "撤销访问权限"
#: ../root/account/applications/ApplicationList.js:77
msgid "Offline Access"
-msgstr ""
+msgstr "离线访问"
#: ../root/account/applications/ApplicationList.js:94
#: ../root/account/applications/ApplicationList.js:95
#: ../root/layout/components/TopMenu.js:51
msgid "Applications"
-msgstr ""
+msgstr "应用"
#: ../root/account/applications/ApplicationList.js:97
msgid "Authorized Applications"
-msgstr ""
+msgstr "已授权的应用程序"
#: ../root/account/applications/ApplicationList.js:101
msgid ""
@@ -6146,11 +6314,11 @@ msgstr ""
#: ../root/account/applications/ApplicationList.js:115
#: ../root/account/applications/ApplicationList.js:154
msgid "Application"
-msgstr ""
+msgstr "应用"
#: ../root/account/applications/ApplicationList.js:116
msgid "Access"
-msgstr ""
+msgstr "访问"
#: ../root/account/applications/ApplicationList.js:117
msgid "Last granted token"
@@ -6172,11 +6340,11 @@ msgstr "操作"
#: ../root/account/applications/ApplicationList.js:129
msgid "You have not authorized any applications."
-msgstr ""
+msgstr "您没有授权任何应用程序。"
#: ../root/account/applications/ApplicationList.js:132
msgid "Developer Applications"
-msgstr ""
+msgstr "开发者应用"
#: ../root/account/applications/ApplicationList.js:136
msgid ""
@@ -6187,43 +6355,43 @@ msgstr ""
#: ../root/account/applications/ApplicationList.js:156
msgid "OAuth Client ID"
-msgstr ""
+msgstr "OAuth 客户端 ID"
#: ../root/account/applications/ApplicationList.js:157
msgid "OAuth Client Secret"
-msgstr ""
+msgstr "OAuth 客户端密钥"
#: ../root/account/applications/ApplicationList.js:167
msgid "You do not have any registered applications."
-msgstr ""
+msgstr "您没有已注册的应用程序。"
#: ../root/account/applications/EditApplication.js:21
#: ../root/account/applications/EditApplication.js:22
msgid "Edit Application"
-msgstr ""
+msgstr "编辑应用程序"
#: ../root/account/applications/EditApplication.js:26
#: ../root/admin/EditBanner.js:39 ../root/admin/wikidoc/EditWikiDoc.js:51
#: ../root/admin/wikidoc/WikiDocIndex.js:102
msgid "Update"
-msgstr ""
+msgstr "更新"
#: ../root/account/applications/RegisterApplication.js:22
#: ../root/account/applications/RegisterApplication.js:23
msgid "Register Application"
-msgstr ""
+msgstr "注册应用程序"
#: ../root/account/applications/RegisterApplication.js:27
msgid "Register"
-msgstr ""
+msgstr "注册"
#: ../root/account/applications/RemoveApplication.js:21
msgid "Are you sure you want to remove this application?"
-msgstr ""
+msgstr "你确定希望移除此应用吗?"
#: ../root/account/applications/RemoveApplication.js:22
msgid "Remove Application"
-msgstr ""
+msgstr "移除应用程序"
#: ../root/account/applications/RevokeApplicationAccess.js:30
msgid "You’re about to revoke {app}’s permissions to:"
@@ -6235,12 +6403,12 @@ msgstr ""
#: ../root/account/applications/RevokeApplicationAccess.js:46
msgid "Revoke Application Access"
-msgstr ""
+msgstr "撤销应用程序访问权限"
#: ../root/account/sso/DiscourseRegistered.js:19
#: ../root/account/sso/DiscourseRegistered.js:20
msgid "Account Created"
-msgstr ""
+msgstr "帐号已创建"
#: ../root/account/sso/DiscourseRegistered.js:23
#: ../root/account/sso/DiscourseUnconfirmedEmailAddress.js:17
@@ -6248,70 +6416,76 @@ msgid ""
"You must verify your email address before you can log in to {discourse|"
"MetaBrainz Community Discourse}."
msgstr ""
+"您必须验证您的电子邮件地址才能登录 {discourse|MetaBrainz 社区 Discourse 论"
+"坛}。"
#: ../root/account/sso/DiscourseRegistered.js:30
msgid ""
"An email has been sent to {addr}. Please check your mailbox and click on the "
"link in the email to verify your email address."
msgstr ""
+"已向 {addr} 发送了一封电子邮件。请检查您的收件箱并点击其中的链接来验证您的电"
+"子邮件地址。"
#: ../root/account/sso/DiscourseUnconfirmedEmailAddress.js:13
#: ../root/account/sso/DiscourseUnconfirmedEmailAddress.js:14
msgid "Unverified Email Address"
-msgstr ""
+msgstr "未验证的电子邮件地址"
#: ../root/admin/DeleteUser.js:47 ../root/admin/DeleteUser.js:49
#: ../root/components/UserAccountTabs.js:111
msgid "Delete Account"
-msgstr ""
+msgstr "删除账号"
#: ../root/admin/DeleteUser.js:54
msgid ""
"Are you sure you want to delete all information about {e}? This cannot be "
"undone!"
-msgstr ""
+msgstr "你确定要删除关于 {e} 的所有信息吗? 该操作将无法被撤销!"
#: ../root/admin/DeleteUser.js:66
msgid "Allow the name “{editor_name}” to be reused."
-msgstr ""
+msgstr "允许名字“{editor_name}”被重复使用。"
#: ../root/admin/DeleteUser.js:75
msgid "Delete {e}"
-msgstr ""
+msgstr "删除 {e}"
#: ../root/admin/DeleteUser.js:84
msgid ""
"For information about the account deletion process, please read the {uri|"
"account FAQ}."
-msgstr ""
+msgstr "如需关于删除账号流程的信息,请阅读{uri|账号常见问题}。"
#: ../root/admin/DeleteUser.js:92
msgid ""
"This will also cancel all your open edits and change all of your votes on "
"any edits currently open to Abstain."
-msgstr ""
+msgstr "这也将取消您所有开放的编辑,并改变您对当前开放的任何编辑的所有投票。"
#: ../root/admin/DeleteUser.js:100
msgid ""
"Keep in mind this process might take a fairly long time if you have entered "
"a lot of tags. If the process times out, please {contact_url|contact us}."
msgstr ""
+"注意,如果您输入了很多标签,此过程可能需要相当长的时间。如果进程超时,请"
+"{contact_url|contact us}。"
#: ../root/admin/DeleteUser.js:109
msgid "Are you sure you want to delete your account? This cannot be undone!"
-msgstr ""
+msgstr "您确定要删除您的帐号吗?该操作将无法被撤销!"
#: ../root/admin/DeleteUser.js:120
msgid "Delete my account"
-msgstr ""
+msgstr "删除我的账号"
#: ../root/admin/EditBanner.js:25 ../root/layout/components/TopMenu.js:156
msgid "Edit Banner Message"
-msgstr ""
+msgstr "编辑横幅信息"
#: ../root/admin/EditBanner.js:27
msgid "Edit banner message"
-msgstr ""
+msgstr "编辑横幅信息"
#: ../root/admin/EditBanner.js:29
msgid ""
@@ -6321,19 +6495,19 @@ msgstr ""
#: ../root/admin/EditBanner.js:36
msgid "Banner message"
-msgstr ""
+msgstr "横幅信息"
#: ../root/admin/EditUser.js:69
msgid "Adjust User Account Flags"
-msgstr ""
+msgstr "调整用户帐号属性"
#: ../root/admin/EditUser.js:76 ../root/admin/PrivilegeSearch.js:63
msgid "User permissions"
-msgstr ""
+msgstr "用户权限:"
#: ../root/admin/EditUser.js:79 ../root/admin/PrivilegeSearch.js:67
msgid "Auto-editor"
-msgstr ""
+msgstr "自动确认编辑器"
#: ../root/admin/EditUser.js:84 ../root/admin/PrivilegeSearch.js:72
msgid "Transclusion editor"
@@ -6341,15 +6515,15 @@ msgstr ""
#: ../root/admin/EditUser.js:89 ../root/admin/PrivilegeSearch.js:77
msgid "Relationship editor"
-msgstr ""
+msgstr "关联编辑器"
#: ../root/admin/EditUser.js:94 ../root/admin/PrivilegeSearch.js:82
msgid "Location editor"
-msgstr ""
+msgstr "位置编辑者"
#: ../root/admin/EditUser.js:99 ../root/admin/PrivilegeSearch.js:87
msgid "Banner message editor"
-msgstr ""
+msgstr "横幅消息编辑器"
#: ../root/admin/EditUser.js:103 ../root/admin/PrivilegeSearch.js:92
msgid "User sanctions"
@@ -6357,29 +6531,29 @@ msgstr ""
#: ../root/admin/EditUser.js:106 ../root/admin/PrivilegeSearch.js:96
msgid "Spammer"
-msgstr ""
+msgstr "垃圾邮件来源"
#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
-#: ../root/user/UserProfile.js:896
+#: ../root/user/UserProfile.js:901
msgid "Editing/voting disabled"
-msgstr ""
+msgstr "编辑/投票已禁用"
#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
-#: ../root/user/UserProfile.js:899
+#: ../root/user/UserProfile.js:904
msgid "Edit notes disabled"
-msgstr ""
+msgstr "已禁用编辑备注"
#: ../root/admin/EditUser.js:125 ../root/admin/PrivilegeSearch.js:117
msgid "Technical flags"
-msgstr ""
+msgstr "技术旗标"
#: ../root/admin/EditUser.js:133 ../root/admin/PrivilegeSearch.js:126
msgid "No nag"
-msgstr ""
+msgstr "不要打扰"
#: ../root/admin/EditUser.js:137 ../root/admin/PrivilegeSearch.js:131
msgid "Administration flags"
-msgstr ""
+msgstr "管理员属性"
#: ../root/admin/EditUser.js:141
msgid "MBID submitter"
@@ -6391,48 +6565,49 @@ msgstr "账号管理员"
#: ../root/admin/EditUser.js:152
msgid "Edit profile"
-msgstr ""
+msgstr "编辑资料"
#: ../root/admin/EditUser.js:166
msgid "Skip verification"
-msgstr ""
+msgstr "跳过验证"
#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
#: ../root/report/components/EditorList.js:74
-#: ../root/static/scripts/account/components/EditProfileForm.js:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
msgid "Website"
-msgstr ""
+msgstr "网站"
-#: ../root/admin/EditUser.js:177
-#: ../root/static/scripts/account/components/EditProfileForm.js:259
-#: ../root/user/UserProfile.js:393
-msgid "Bio:"
-msgstr ""
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
+msgstr "简介"
#: ../root/admin/EditUser.js:182
msgid "Edit user"
-msgstr ""
+msgstr "编辑用户"
#: ../root/admin/EmailSearch.js:31 ../root/admin/EmailSearch.js:33
msgid "Search users by email"
-msgstr ""
+msgstr "根据电子邮件搜索用户"
#: ../root/admin/EmailSearch.js:38
msgid "Enter a {link|POSIX regular expression}."
-msgstr ""
+msgstr "输入一个 {link|POSIX 正则表达式}。"
#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
-#: ../root/user/UserProfile.js:423
+#: ../root/user/UserProfile.js:428
msgid "IP lookup"
-msgstr ""
+msgstr "IP 查找"
#: ../root/admin/IpLookup.js:30
msgid "IP hash:"
-msgstr ""
+msgstr "IP 哈希值:"
#: ../root/admin/PrivilegeSearch.js:44 ../root/admin/PrivilegeSearch.js:46
msgid "Search users by privileges"
-msgstr ""
+msgstr "按权限搜索用户"
#: ../root/admin/PrivilegeSearch.js:50
msgid ""
@@ -6443,15 +6618,15 @@ msgstr ""
#: ../root/admin/PrivilegeSearch.js:58
msgid "Exact match only"
-msgstr ""
+msgstr "仅精确匹配"
#: ../root/admin/PrivilegeSearch.js:135
msgid "MBID submitter"
-msgstr ""
+msgstr "MBID 提交器"
#: ../root/admin/attributes/Attribute.js:30
msgid "Disc IDs allowed"
-msgstr ""
+msgstr "允许的唱片 ID"
#: ../root/admin/attributes/Attribute.js:39
#: ../root/edit/details/AddRelationshipAttribute.js:64
@@ -6459,106 +6634,69 @@ msgstr ""
msgid "Free text"
msgstr ""
-#: ../root/admin/attributes/Attribute.js:72
-#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
-#: ../root/admin/attributes/Language.js:33
-#: ../root/admin/attributes/Script.js:33
-#: ../root/components/RelationshipsTable.js:336
-#: ../root/edit/details/AddRelationshipType.js:169
-#: ../root/edit/details/EditRelationshipType.js:297
-#: ../root/edit/details/RemoveRelationshipType.js:117
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
-#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
-#: ../root/utility/tableColumns.js:666
-msgid "Attributes"
-msgstr ""
-
#: ../root/admin/attributes/Attribute.js:81
#: ../root/otherlookup/OtherLookupForm.js:107
msgid "MBID"
-msgstr ""
+msgstr "MBID"
#: ../root/admin/attributes/Attribute.js:83
msgid "Parent ID"
-msgstr ""
+msgstr "母 ID"
#: ../root/admin/attributes/Attribute.js:116
#: ../root/admin/attributes/Language.js:77
#: ../root/admin/attributes/Script.js:75
msgid "Add new attribute"
-msgstr ""
+msgstr "添加新属性"
#: ../root/admin/attributes/CannotRemoveAttribute.js:19
#: ../root/admin/attributes/CannotRemoveAttribute.js:20
msgid "Cannot Remove Attribute"
-msgstr ""
+msgstr "无法移除属性"
#: ../root/admin/attributes/DeleteAttribute.js:26
msgid "Are you sure you wish to remove the {name} attribute?"
-msgstr ""
+msgstr "您确定要删除 {name} 属性吗?"
#: ../root/admin/attributes/DeleteAttribute.js:30
msgid "Remove Attribute"
-msgstr ""
-
-#: ../root/admin/attributes/Language.js:31
-#: ../root/admin/attributes/Language.js:34
-#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
-#: ../root/edit/details/EditRelease.js:113
-#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
-#: ../root/report/IswcsWithManyWorks.js:54
-#: ../root/search/components/ReleaseResults.js:120
-#: ../root/utility/tableColumns.js:554
-msgid "Language"
-msgstr "语言"
-
-#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
-#: ../root/edit/details/AddRelease.js:98
-#: ../root/edit/details/EditRelease.js:125
-#: ../root/edit/details/historic/AddRelease.js:65
-msgid "Script"
-msgstr "文字"
+msgstr "移除属性"
#: ../root/admin/components/UserList.js:30
-#: ../root/report/components/EditorList.js:69
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
msgid "Member since"
-msgstr ""
+msgstr "注册于"
#: ../root/admin/components/UserList.js:33
msgid "Verified on"
-msgstr ""
+msgstr "验证于"
-#: ../root/admin/components/UserList.js:34
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
msgid "Last login"
-msgstr ""
-
-#: ../root/admin/components/UserList.js:35
-#: ../root/report/components/EditorList.js:84
-msgid "Bio"
-msgstr ""
+msgstr "上一次登录"
#: ../root/admin/components/UserList.js:52
#: ../root/report/components/EditorList.js:57
msgid "delete"
-msgstr ""
+msgstr "删除"
#: ../root/admin/statistics-events/CreateStatisticsEvent.js:21
#: ../root/admin/statistics-events/CreateStatisticsEvent.js:23
msgid "Add a new statistics event"
-msgstr ""
+msgstr "添加新统计事件"
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:21
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:22
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:45
msgid "Remove statistics event"
-msgstr ""
+msgstr "移除统计事件"
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:37
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:47
#: ../root/admin/statistics-events/StatisticsEventIndex.js:29
#: ../root/static/scripts/common/components/FingerprintTable.js:105
msgid "Link"
-msgstr ""
+msgstr "链接"
#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:42
msgid "Are you sure you want to remove this statistics event?"
@@ -6566,51 +6704,48 @@ msgstr ""
#: ../root/admin/statistics-events/EditStatisticsEvent.js:21
msgid "Edit statistics event"
-msgstr ""
+msgstr "编辑统计事件"
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:27
msgid "Statistics event details"
-msgstr ""
+msgstr "统计事件详情"
#: ../root/admin/statistics-events/StatisticsEventEditForm.js:53
#: ../root/edit/ModifyNote.js:81 ../root/oauth2/OAuth2FormPost.js:44
#: ../root/static/scripts/edit/components/InlineSubmitButton.js:23
#: ../root/user/components/UserTagFilters.js:61
msgid "Submit"
-msgstr ""
+msgstr "提交"
#: ../root/admin/statistics-events/StatisticsEventIndex.js:21
#: ../root/admin/statistics-events/StatisticsEventIndex.js:22
msgid "Statistics Events"
-msgstr ""
+msgstr "统计事件"
#: ../root/admin/statistics-events/StatisticsEventIndex.js:59
msgctxt "statistics event"
msgid "Add new event"
-msgstr ""
+msgstr "添加新活动"
#: ../root/admin/wikidoc/CreateWikiDoc.js:29
#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
msgid "Add Page"
msgstr "添加页面"
#: ../root/admin/wikidoc/CreateWikiDoc.js:36
#: ../root/admin/wikidoc/EditWikiDoc.js:36
msgid "Page:"
-msgstr ""
+msgstr "页面:"
#: ../root/admin/wikidoc/CreateWikiDoc.js:42
msgid "Version:"
-msgstr ""
-
-#: ../root/admin/wikidoc/CreateWikiDoc.js:48
-msgid "Create"
-msgstr ""
+msgstr "版本:"
#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
msgid "Remove Page"
-msgstr ""
+msgstr "移除页面"
#: ../root/admin/wikidoc/DeleteWikiDoc.js:28
msgid ""
@@ -6621,25 +6756,25 @@ msgstr ""
#: ../root/admin/wikidoc/DeleteWikiDoc.js:38
#: ../root/components/ConfirmLayout.js:38 ../root/edit/DeleteNote.js:64
msgid "Yes, I am sure"
-msgstr ""
+msgstr "是的,我确定"
#: ../root/admin/wikidoc/EditWikiDoc.js:30
#: ../root/admin/wikidoc/EditWikiDoc.js:32
msgid "Update Page"
-msgstr ""
+msgstr "更新页面"
#: ../root/admin/wikidoc/EditWikiDoc.js:40
msgid "Current version:"
-msgstr ""
+msgstr "当前版本:"
#: ../root/admin/wikidoc/EditWikiDoc.js:45
#: ../root/edit/details/ChangeWikiDoc.js:61
msgid "New version:"
-msgstr ""
+msgstr "新版本:"
#: ../root/admin/wikidoc/WikiDocIndex.js:41
msgid "Page name"
-msgstr ""
+msgstr "页面名称"
#: ../root/admin/wikidoc/WikiDocIndex.js:47
msgid "Transcluded version"
@@ -6647,19 +6782,19 @@ msgstr ""
#: ../root/admin/wikidoc/WikiDocIndex.js:68
msgid "Error!"
-msgstr ""
+msgstr "出错了!"
#: ../root/admin/wikidoc/WikiDocIndex.js:81
msgid "diff"
-msgstr ""
+msgstr "差异"
#: ../root/admin/wikidoc/WikiDocIndex.js:90
msgid "Wiki version"
-msgstr ""
+msgstr "Wiki 版本"
#: ../root/admin/wikidoc/WikiDocIndex.js:114
msgid "View on wiki"
-msgstr ""
+msgstr "在 Wiki 浏览"
#: ../root/admin/wikidoc/WikiDocIndex.js:149
#: ../root/admin/wikidoc/WikiDocIndex.js:151
@@ -6690,50 +6825,53 @@ msgstr ""
#: ../root/admin/wikidoc/WikiDocIndex.js:185
msgid "There was a problem accessing the wiki API."
-msgstr ""
+msgstr "访问 wiki API 时遇到了问题。"
#: ../root/annotation/AnnotationComparison.js:43
#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
msgid "Annotation comparison"
-msgstr ""
+msgstr "注释对比"
#: ../root/annotation/AnnotationComparison.js:49
msgid "Old annotation"
-msgstr ""
+msgstr "旧注释"
#: ../root/annotation/AnnotationComparison.js:58
msgid "New annotation"
-msgstr ""
+msgstr "新注释"
#: ../root/annotation/AnnotationComparison.js:71
msgid ""
"Comparing revision by {user_old} on {date_old} with revision by {user_new} "
"on {date_new}."
msgstr ""
+"正在对比 {user_old} 创建于 {date_old} 的修订版和 {user_new} 创建于 "
+"{date_new} 的修订版。"
#: ../root/annotation/AnnotationComparison.js:87
msgid "View annotation history."
-msgstr ""
+msgstr "浏览注释历史。"
#: ../root/annotation/AnnotationHistory.js:40
#: ../root/annotation/AnnotationHistory.js:42
msgid "Annotation history"
-msgstr ""
+msgstr "注释历史"
#: ../root/annotation/AnnotationHistory.js:54
msgid "Compare versions"
-msgstr ""
+msgstr "比较不同版本"
#: ../root/annotation/AnnotationHistory.js:62
msgid "This entity has no annotation history."
-msgstr ""
+msgstr "此实体没有注释历史。"
#: ../root/annotation/EditAnnotation.js:47
#: ../root/annotation/EditAnnotation.js:49
#: ../root/layout/components/sidebar/AnnotationLinks.js:37
#: ../root/static/scripts/common/components/Annotation.js:97
msgid "Edit annotation"
-msgstr ""
+msgstr "编辑注释"
#: ../root/annotation/EditAnnotation.js:53
msgid ""
@@ -6741,42 +6879,46 @@ msgid ""
"to the public under {open|open licenses}, do not submit any copyrighted text "
"here!"
msgstr ""
+"请注意任何提交到 MusicBrainz 的内容都将以 {open|开放协议} 公开,请勿提交任何"
+"版权文本!"
#: ../root/annotation/EditAnnotation.js:62
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:70
-msgid "Preview:"
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:80
#: ../root/static/scripts/common/components/Annotation.js:71
msgid "Changelog:"
-msgstr ""
+msgstr "变更日志:"
#: ../root/annotation/EditAnnotation.js:93
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "button"
msgid "Preview"
msgstr ""
#: ../root/annotation/EditAnnotation.js:98
msgid "Annotation Formatting"
-msgstr ""
+msgstr "注释格式"
#: ../root/annotation/EditAnnotation.js:100
msgid "Annotations support a limited set of wiki formatting options:"
-msgstr ""
+msgstr "注释支持一部分维基的格式选项:"
#: ../root/annotation/EditAnnotation.js:105
msgid "Emphasis:"
-msgstr ""
+msgstr "重点:"
#: ../root/annotation/EditAnnotation.js:107
msgid "''italics''; '''bold'''; '''''bold italics'''''; ---- horizontal rule"
-msgstr ""
+msgstr "''斜体''; '''粗体'''; '''''粗斜体'''''; ---- 水平分割线"
#: ../root/annotation/EditAnnotation.js:112
msgid "Headings:"
-msgstr ""
+msgstr "标题:"
#: ../root/annotation/EditAnnotation.js:114
msgid "= Title 1 =; == Title 2 ==; === Title 3 ==="
@@ -6784,7 +6926,7 @@ msgstr ""
#: ../root/annotation/EditAnnotation.js:118
msgid "Lists:"
-msgstr ""
+msgstr "列表:"
#: ../root/annotation/EditAnnotation.js:120
msgid ""
@@ -6794,7 +6936,7 @@ msgstr ""
#: ../root/annotation/EditAnnotation.js:125
msgid "Links:"
-msgstr ""
+msgstr "链接:"
#: ../root/annotation/EditAnnotation.js:127
msgid "URL; [URL]; [URL|label]; [entity-type:MBID|label]"
@@ -6809,6 +6951,10 @@ msgid ""
"write [unknown]
then it will appear the way you "
"intended it to show."
msgstr ""
+"方括号 [] 用于创建超链接,如果您不希望它们被转换为超链接,您必须使用等价的"
+"HTML 编码([
对应 [)和(]
对应 ])。"
+"例如:如果您想要在注释內使用 [未知] ,您必须输入「[未知&"
+"#93;
」,这样才能按照您的意愿显示。"
#: ../root/area/AreaArtists.js:32 ../root/area/AreaArtists.js:33
#: ../root/components/EntityTabs.js:23
@@ -6820,21 +6966,21 @@ msgstr ""
#: ../root/report/components/EventList.js:69
#: ../root/search/components/EventResults.js:77
#: ../root/search/components/WorkResults.js:56
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:892
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:552
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
-#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:797
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
msgid "Artists"
msgstr "艺术家"
#: ../root/area/AreaArtists.js:52 ../root/instrument/InstrumentArtists.js:59
#: ../root/report/DuplicateArtists.js:127
msgid "Add selected artists for merging"
-msgstr ""
+msgstr "添加选中的艺术家至合并操作"
#: ../root/area/AreaArtists.js:60
msgid "This area is not currently associated with any artists."
-msgstr ""
+msgstr "此地区目前没有关联任何艺术家。"
#: ../root/area/AreaEvents.js:32 ../root/area/AreaEvents.js:33
#: ../root/artist/ArtistEvents.js:41 ../root/artist/ArtistEvents.js:42
@@ -6844,38 +6990,38 @@ msgstr ""
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:19
#: ../root/tag/TagLayout.js:34
msgid "Events"
-msgstr ""
+msgstr "活动"
#: ../root/area/AreaEvents.js:54 ../root/artist/ArtistEvents.js:69
#: ../root/place/PlaceEvents.js:53
msgid "Add selected events for merging"
-msgstr ""
+msgstr "添加选中的事件至合并操作"
#: ../root/area/AreaEvents.js:62
msgid "This area is not currently associated with any events."
-msgstr ""
+msgstr "此地区目前没有关联任何事件。"
#: ../root/area/AreaHeader.js:29
msgid "{area_type} in {parent_areas}"
-msgstr ""
+msgstr "{parent_areas} 的 {area_type}"
#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
#: ../root/components/EntityTabs.js:26
#: ../root/components/TagEntitiesList.js:174
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
#: ../root/report/ReportsIndex.js:174
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
#: ../root/tag/TagLayout.js:29
msgid "Labels"
-msgstr "厂牌"
+msgstr "唱片公司"
#: ../root/area/AreaLabels.js:51
msgid "Add selected labels for merging"
-msgstr ""
+msgstr "合并选中的厂牌"
#: ../root/area/AreaLabels.js:59
msgid "This area is not currently associated with any labels."
-msgstr ""
+msgstr "此区域目前没有关联任何厂牌。"
#: ../root/area/AreaMerge.js:32
msgid ""
@@ -6889,7 +7035,7 @@ msgstr ""
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:27
#: ../root/tag/TagLayout.js:30
msgid "Places"
-msgstr ""
+msgstr "地点"
#: ../root/area/AreaPlaces.js:49 ../root/place/PlaceMap.js:40
msgid ""
@@ -6899,24 +7045,27 @@ msgstr ""
#: ../root/area/AreaPlaces.js:69
msgid "Add selected places for merging"
-msgstr ""
+msgstr "合并选中的地点"
#: ../root/area/AreaPlaces.js:78
msgid "This area is not currently associated with any places."
-msgstr ""
+msgstr "此地区目前没有关联任何地点。"
#: ../root/area/AreaRecordings.js:29
msgid "This area has no relationships to any recordings."
-msgstr ""
+msgstr "此地区没有与任何录音的关联。"
#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
-#: ../root/components/EntityTabs.js:91 ../root/label/LabelRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
#: ../root/relationship/RelationshipsHeader.js:37
#: ../root/static/scripts/common/components/Relationships.js:92
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
msgid "Relationships"
-msgstr ""
+msgstr "关联"
#: ../root/area/AreaReleases.js:35 ../root/area/AreaReleases.js:38
#: ../root/artist/ArtistReleases.js:46 ../root/artist/ArtistReleases.js:47
@@ -6925,7 +7074,10 @@ msgstr ""
#: ../root/components/EntityTabs.js:31
#: ../root/components/TagEntitiesList.js:186
#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
#: ../root/instrument/InstrumentReleases.js:37
#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
#: ../root/report/ReportsIndex.js:250
@@ -6942,25 +7094,25 @@ msgstr "合并选中专辑"
#: ../root/area/AreaReleases.js:60
msgid "This area is not currently associated with any releases."
-msgstr ""
+msgstr "此地区目前没有关联任何专辑。"
#: ../root/area/AreaReleases.js:68
msgid "This area has no relationships to any releases."
-msgstr ""
+msgstr "此地区没有与任何专辑的关联。"
#: ../root/area/AreaUsers.js:26 ../root/area/AreaUsers.js:27
#: ../root/components/EntityTabs.js:32
msgid "Users"
-msgstr ""
+msgstr "用户"
#: ../root/area/AreaUsers.js:31
msgid "There is currently {num} user in this area."
msgid_plural "There are currently {num} users in this area."
-msgstr[0] ""
+msgstr[0] "目前有 {num} 位用户在此区域。"
#: ../root/area/AreaUsers.js:37
msgid "There are currently no users in this area."
-msgstr ""
+msgstr "此地区目前没有用户。"
#: ../root/area/AreaWorks.js:25 ../root/artist/ArtistWorks.js:41
#: ../root/artist/ArtistWorks.js:42 ../root/components/EntityTabs.js:33
@@ -6968,83 +7120,85 @@ msgstr ""
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:39
#: ../root/tag/TagLayout.js:28
msgid "Works"
-msgstr ""
+msgstr "作品"
#: ../root/area/AreaWorks.js:29
msgid "This area has no relationships to any works."
-msgstr ""
+msgstr "此地区没有与任何作品的关联。"
#: ../root/area/DeleteArea.js:35 ../root/area/DeleteArea.js:37
msgid "Remove Area"
-msgstr ""
+msgstr "移除地区"
#: ../root/area/DeleteArea.js:41
msgid ""
"This area cannot be removed because it is one of the areas that can be used "
"as a release country."
-msgstr ""
+msgstr "此地区无法被移除,因为它是可用作发行国或地区的地区之一。"
#: ../root/area/DeleteArea.js:55
msgid ""
"This area cannot be removed because it is still in use (in artists, labels, "
"places, relationships or open edits)."
msgstr ""
+"此地区无法被移除,因为它仍在被使用(在艺术家,厂牌,地点,关联或待审核编辑"
+"中)。"
#: ../root/artist/ArtistEvents.js:78
msgid "No events found that match this search."
-msgstr ""
+msgstr "未找到符合此搜索条件的活动。"
#: ../root/artist/ArtistEvents.js:79
msgid "This artist is not currently associated with any events."
-msgstr ""
+msgstr "此艺术家目前没有关联任何事件。"
#: ../root/artist/ArtistIndex.js:92
msgid "Show official release groups"
-msgstr ""
+msgstr "显示正式专辑组"
#: ../root/artist/ArtistIndex.js:99
msgid "Show all release groups"
-msgstr ""
+msgstr "显示所有专辑组"
#: ../root/artist/ArtistIndex.js:106
msgid "Show official various artist release groups"
-msgstr ""
+msgstr "显示正式群星专辑组"
#: ../root/artist/ArtistIndex.js:113
msgid "Show all various artist release groups"
-msgstr ""
+msgstr "显示所有群星专辑组"
#: ../root/artist/ArtistIndex.js:142
msgid "This artist only has unofficial release groups by various artists."
-msgstr ""
+msgstr "此艺术家只有群星的非正式专辑组。"
#: ../root/artist/ArtistIndex.js:148
msgid "Showing all release groups for various artists"
-msgstr ""
+msgstr "显示所有群星专辑组。"
#: ../root/artist/ArtistIndex.js:149
msgid "This artist does not have any various artists release groups"
-msgstr ""
+msgstr "此艺术家没有任何群星专辑组。"
#: ../root/artist/ArtistIndex.js:158
msgid "This artist only has release groups by various artists."
-msgstr ""
+msgstr "此艺术家只有群星专辑组。"
#: ../root/artist/ArtistIndex.js:162
msgid "Showing official release groups for various artists"
-msgstr ""
+msgstr "显示群星艺术家的正式专辑组"
#: ../root/artist/ArtistIndex.js:170
msgid "This artist only has unofficial release groups."
-msgstr ""
+msgstr "此艺术家只有非正式专辑组。"
#: ../root/artist/ArtistIndex.js:174
msgid "Showing all release groups by this artist"
-msgstr ""
+msgstr "显示此艺术家的所有专辑组。"
#: ../root/artist/ArtistIndex.js:185
msgid "Showing official release groups by this artist"
-msgstr ""
+msgstr "显示此艺术家的正式专辑组"
#: ../root/artist/ArtistIndex.js:239
msgid "Performance name of"
@@ -7052,7 +7206,7 @@ msgstr ""
#: ../root/artist/ArtistIndex.js:247
msgid "Legal name"
-msgstr "法定名称"
+msgstr "合法名称"
#: ../root/artist/ArtistIndex.js:253 ../root/label/LabelIndex.js:64
msgid "Previously known as"
@@ -7060,7 +7214,7 @@ msgstr ""
#: ../root/artist/ArtistIndex.js:260 ../root/label/LabelIndex.js:71
msgid "Renamed to"
-msgstr ""
+msgstr "更名为"
#: ../root/artist/ArtistIndex.js:268
msgid "Also performs as"
@@ -7068,7 +7222,7 @@ msgstr ""
#: ../root/artist/ArtistIndex.js:282
msgid "Discography"
-msgstr ""
+msgstr "目录"
#: ../root/artist/ArtistIndex.js:323 ../root/artist/ArtistRecordings.js:169
#: ../root/instrument/InstrumentRecordings.js:59 ../root/isrc/Index.js:99
@@ -7077,7 +7231,7 @@ msgstr "合并选中录音"
#: ../root/artist/ArtistIndex.js:332
msgid "This artist has no release groups, only standalone recordings."
-msgstr ""
+msgstr "此艺术家没有专辑组,只有独立录音。"
#: ../root/artist/ArtistIndex.js:336
msgid "No results found that match this search."
@@ -7090,7 +7244,7 @@ msgid ""
msgstr ""
#: ../root/artist/ArtistMerge.js:50
-msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+msgid "You should only use the checkbox above to fix errors (such as typos)."
msgstr ""
#: ../root/artist/ArtistMerge.js:56
@@ -7099,60 +7253,62 @@ msgid ""
"artists will still be combined if you don’t, but the {doc_acs|artist "
"credits} will be kept as they are now."
msgstr ""
+"如果一个名字出现在专辑封面上,不要选中复选框:艺术家仍然会合并,但是{doc_acs|"
+"艺术家名单}会保持现状。"
#: ../root/artist/ArtistMerge.js:65
msgid ""
"Update matching artist and relationship credits to use the target artist’s "
"name"
-msgstr ""
+msgstr "使用目标艺术家名称更新对应的艺术家和关联名单"
#: ../root/artist/ArtistRecordings.js:55
msgid "Show all recordings"
-msgstr ""
+msgstr "显示所有录音"
#: ../root/artist/ArtistRecordings.js:60
msgid "Show only standalone recordings"
-msgstr ""
+msgstr "只显示独立录音"
#: ../root/artist/ArtistRecordings.js:65
msgid "Show only videos"
-msgstr ""
+msgstr "只显示视频"
#: ../root/artist/ArtistRecordings.js:73
msgid "Showing only standalone recordings"
-msgstr ""
+msgstr "仅显示独立录音"
#: ../root/artist/ArtistRecordings.js:89
msgid "Showing only videos"
-msgstr ""
+msgstr "只显示视频"
#: ../root/artist/ArtistRecordings.js:105
msgid "Showing all recordings"
-msgstr ""
+msgstr "显示所有录音"
#: ../root/artist/ArtistRecordings.js:176
msgid "No recordings found that match this search."
-msgstr ""
+msgstr "未找到符合此搜索条件的录音。"
#: ../root/artist/ArtistRecordings.js:177
#: ../root/instrument/InstrumentRecordings.js:67
msgid "No recordings found."
-msgstr ""
+msgstr "没有找到录音。"
#: ../root/artist/ArtistRelationships.js:37
#: ../root/label/LabelRelationships.js:37
msgid "Appearances"
-msgstr ""
+msgstr "外观"
#: ../root/artist/ArtistReleases.js:73
msgid "No releases found that match this search."
-msgstr ""
+msgstr "未找到符合此搜索条件的专辑。"
#: ../root/artist/ArtistReleases.js:74
#: ../root/instrument/InstrumentReleases.js:66
#: ../root/release_group/ReleaseGroupIndex.js:197
msgid "No releases found."
-msgstr ""
+msgstr "没有找到专辑。"
#: ../root/artist/ArtistReleases.js:80
msgid ""
@@ -7162,11 +7318,11 @@ msgstr ""
#: ../root/artist/ArtistReleases.js:91
msgid "This search only found releases by various artists."
-msgstr ""
+msgstr "此次搜索只找到了群星艺术家的专辑。"
#: ../root/artist/ArtistReleases.js:93
msgid "This artist only has releases by various artists."
-msgstr ""
+msgstr "此艺术家只有群星艺术家的专辑。"
#: ../root/artist/ArtistReleases.js:98
msgid ""
@@ -7176,19 +7332,19 @@ msgstr ""
#: ../root/artist/ArtistWorks.js:65 ../root/iswc/Index.js:79
msgid "Add selected works for merging"
-msgstr ""
+msgstr "添加选中的作品至合并操作"
#: ../root/artist/ArtistWorks.js:74
msgid "No works found that match this search."
-msgstr ""
+msgstr "未找到符合此搜索条件的作品。"
#: ../root/artist/ArtistWorks.js:75
msgid "This artist is not currently associated with any works."
-msgstr ""
+msgstr "此艺术家目前没有关联任何作品。"
#: ../root/artist/CannotSplit.js:25
msgid "This artist is already empty and is awaiting automatic deletion."
-msgstr ""
+msgstr "此艺术家已经为空,即将被自动删除。"
#: ../root/artist/CannotSplit.js:28
msgid ""
@@ -7196,14 +7352,16 @@ msgid ""
"cannot be split until these are removed. {relationships|View all "
"relationships}."
msgstr ""
+"除了合作关系之外,歌手还有其他关系,除非这些关系被删除,否则不能拆分。"
+"{relationships|查看所有关系}。"
#: ../root/artist/SpecialPurpose.js:23 ../root/label/SpecialPurpose.js:23
msgid "Cannot edit"
-msgstr ""
+msgstr "无法编辑"
#: ../root/artist/SpecialPurpose.js:25
msgid "You may not edit special purpose artists"
-msgstr ""
+msgstr "不允许编辑特殊用途艺术家"
#: ../root/artist/SpecialPurpose.js:27
msgid ""
@@ -7214,52 +7372,52 @@ msgstr ""
#: ../root/artist/utils.js:13
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:65
msgid "Born in:"
-msgstr ""
+msgstr "出生于:"
#: ../root/artist/utils.js:17
msgctxt "group artist"
msgid "Founded in"
-msgstr ""
+msgstr "成立于"
#: ../root/artist/utils.js:19
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:55
msgid "Begin area:"
-msgstr ""
+msgstr "开始地区:"
#: ../root/artist/utils.js:26
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:61
msgid "Born:"
-msgstr "生于:"
+msgstr "出生于:"
#: ../root/artist/utils.js:30
msgctxt "group artist"
msgid "Founded"
-msgstr ""
+msgstr "成立于"
#: ../root/artist/utils.js:32
msgctxt "character artist"
msgid "Created"
-msgstr ""
+msgstr "已创建"
#: ../root/artist/utils.js:41
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:65
msgid "Died in:"
-msgstr ""
+msgstr "逝世于:"
#: ../root/artist/utils.js:45
msgctxt "group artist"
msgid "Dissolved in"
-msgstr ""
+msgstr "解散于"
#: ../root/artist/utils.js:47
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:55
msgid "End area:"
-msgstr ""
+msgstr "结束地区:"
#: ../root/artist/utils.js:57
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:62
msgid "Died:"
-msgstr ""
+msgstr "死亡:"
#: ../root/artist/utils.js:62
msgctxt "group artist"
@@ -7269,19 +7427,19 @@ msgstr ""
#: ../root/artist/utils.js:63
msgctxt "group artist"
msgid "Dissolved"
-msgstr ""
+msgstr "已解散"
#: ../root/artist_credit/ArtistCreditIndex.js:93
msgid "This artist credit is composed of the following artists:"
-msgstr ""
+msgstr "此艺术家名单包括以下艺术家:"
#: ../root/artist_credit/ArtistCreditIndex.js:103
msgid "credited as “{credit}”"
-msgstr ""
+msgstr "署名为 “{credit}”"
#: ../root/artist_credit/ArtistCreditIndex.js:111
msgid "Uses"
-msgstr ""
+msgstr "使用"
#: ../root/artist_credit/ArtistCreditIndex.js:124
#: ../root/artist_credit/ArtistCreditLayout.js:26
@@ -7290,97 +7448,99 @@ msgstr ""
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:33
#: ../root/tag/TagLayout.js:25
msgid "Release Groups"
-msgstr ""
+msgstr "发行团"
#: ../root/artist_credit/ArtistCreditIndex.js:126
#: ../root/components/TagEntitiesList.js:183
msgid "See all {num} release groups"
msgid_plural "See all {num} release groups"
-msgstr[0] ""
+msgstr[0] "查看所有 {num} 个专辑组"
#: ../root/artist_credit/ArtistCreditIndex.js:136
#: ../root/components/TagEntitiesList.js:187
msgid "See all {num} releases"
msgid_plural "See all {num} releases"
-msgstr[0] ""
+msgstr[0] "查看所有 {num} 张专辑"
#: ../root/artist_credit/ArtistCreditIndex.js:147
#: ../root/components/TagEntitiesList.js:191
msgid "See all {num} recordings"
msgid_plural "See all {num} recordings"
-msgstr[0] ""
+msgstr[0] "查看所有 {num} 条录音"
#: ../root/artist_credit/ArtistCreditIndex.js:158
msgid "See all {num} tracks"
msgid_plural "See all {num} tracks"
-msgstr[0] ""
+msgstr[0] "查看所有 {num} 条音轨"
#: ../root/artist_credit/ArtistCreditLayout.js:25
#: ../root/collection/CollectionHeader.js:77
#: ../root/components/EntityTabs.js:79 ../root/tag/TagLayout.js:23
msgid "Overview"
-msgstr "总览"
+msgstr "概要"
#: ../root/artist_credit/ArtistCreditLayout.js:43
#: ../root/artist_credit/ArtistCreditLayout.js:47
#: ../root/artist_credit/ArtistCreditLayout.js:57
msgid "Artist credit “{artist_credit}”"
-msgstr ""
+msgstr "艺术家名单 “{artist_credit}”"
#: ../root/artist_credit/EntityList.js:22 ../root/tag/EntityList.js:76
msgid "{num} recording found"
msgid_plural "{num} recordings found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 条录音"
#: ../root/artist_credit/EntityList.js:23 ../root/tag/EntityList.js:77
msgid "{num} release found"
msgid_plural "{num} releases found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 张专辑"
#: ../root/artist_credit/EntityList.js:25 ../root/tag/EntityList.js:79
msgid "{num} release group found"
msgid_plural "{num} release groups found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 个专辑组"
#: ../root/artist_credit/EntityList.js:28
msgid "{num} track found"
msgid_plural "{num} tracks found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 条音轨"
#: ../root/artist_credit/EntityList.js:32
msgid "No recordings with this artist credit were found."
-msgstr ""
+msgstr "未找到包含此艺术家名单的录音。"
#: ../root/artist_credit/EntityList.js:33
msgid "No releases with this artist credit were found."
-msgstr ""
+msgstr "未找到包含此艺术家名单的专辑。"
#: ../root/artist_credit/EntityList.js:34
msgid "No release groups with this artist credit were found."
-msgstr ""
+msgstr "未找到包含此艺术家名单的专辑组。"
#: ../root/artist_credit/EntityList.js:35
msgid "No tracks with this artist credit were found."
-msgstr ""
+msgstr "未找到包含此艺术家名单的音轨。"
#: ../root/cdstub/BrowseCDStubs.js:30 ../root/cdstub/BrowseCDStubs.js:31
#: ../root/layout/components/BottomMenu.js:231
msgid "Top CD Stubs"
-msgstr ""
+msgstr "热门 CD 存根"
#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
msgid "Lookup count"
-msgstr ""
+msgstr "查找计数"
#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
msgid "Modify count"
-msgstr ""
+msgstr "修改计数"
#: ../root/cdstub/BrowseCDStubs.js:49 ../root/cdstub/CDStubHeader.js:22
#: ../root/cdstub/CDStubLayout.js:29
#: ../root/layout/components/sidebar/CDStubSidebar.js:27
msgid "Various Artists"
-msgstr ""
+msgstr "群星"
#: ../root/cdstub/BrowseCDStubs.js:56
msgid "Added {add}, last modified {lastmod}"
@@ -7388,114 +7548,102 @@ msgstr "添加于 {add},最后修改于 {lastmod}"
#: ../root/cdstub/CDStubNotFound.js:19
msgid "CD Stub Not Found"
-msgstr ""
+msgstr "未找到 CD 存根"
#: ../root/cdstub/CDStubNotFound.js:22
msgid ""
"Sorry, {discid}
does not match a CD stub. You can try "
"{search_url|searching for it} instead."
msgstr ""
+"抱歉,{discid}
不匹配任何 CD 存根。您可以尝试 {search_url|搜索}。"
#: ../root/cdstub/DiscIdNotValid.js:19
msgid "Invalid Disc ID"
-msgstr ""
+msgstr "无效的唱片 ID"
#: ../root/cdstub/DiscIdNotValid.js:22
msgid "Sorry, {discid}
is not a valid disc ID."
-msgstr ""
+msgstr "抱歉,{discid}
不是一个有效的唱片 ID。"
#: ../root/cdstub/ImportCDStub.js:38
-msgid "Please search for the artist you wish to create a new release for:"
+msgid "Please search for the artist you wish to add a new release for:"
msgstr ""
#: ../root/cdstub/ImportCDStub.js:100
msgid "Import CD stub"
-msgstr ""
+msgstr "导入 CD 存根"
#: ../root/cdtoc/AttachCDTocConfirmation.js:53
msgid ""
"Are you sure that you wish to attach the disc ID {discid}
to "
"{format} {pos} of {release} by {artist}?"
msgstr ""
+"您确定要将唱片 ID{discid}
附加到{艺术家}的{release}的{format} "
+"{pos} ?"
#: ../root/cdtoc/AttachCDTocConfirmation.js:80
-msgid "Track duration comparison"
+msgid "Track length comparison"
msgstr ""
#: ../root/cdtoc/AttachCDTocConfirmation.js:84
#: ../root/cdtoc/SetTracklistDurations.js:67
msgid "This edit would only make subsecond changes to track lengths."
-msgstr ""
+msgstr "这个编辑只会对音频时长造成极小的改变"
#: ../root/cdtoc/AttachCDTocConfirmation.js:88
msgid "CD TOC track lengths"
-msgstr ""
+msgstr "CD 目录音轨长度"
#: ../root/cdtoc/AttachCDTocConfirmation.js:90
msgid "Medium track lengths"
-msgstr ""
+msgstr "媒介音轨长度"
#: ../root/cdtoc/CDTocInfo.js:23
msgid "CD TOC details"
-msgstr ""
-
-#: ../root/cdtoc/CDTocInfo.js:32 ../root/edit/details/AddDiscId.js:34
-#: ../root/edit/details/MoveDiscId.js:26
-#: ../root/edit/details/RemoveDiscId.js:31
-#: ../root/edit/details/historic/AddDiscId.js:27
-#: ../root/edit/details/historic/MoveDiscId.js:21
-#: ../root/edit/details/historic/RemoveDiscId.js:23
-msgid "Disc ID:"
-msgstr ""
+msgstr "CD 目录信息"
#: ../root/cdtoc/CDTocInfo.js:36
msgid "FreeDB:"
-msgstr ""
+msgstr "FreeDB:"
#: ../root/cdtoc/CDTocInfo.js:48
msgid "Track details:"
-msgstr ""
+msgstr "音轨信息"
#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
#: ../root/search/components/RecordingResults.js:147
-#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:789
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
msgid "Track"
msgstr "音轨"
#: ../root/cdtoc/CDTocInfo.js:53
msgid "Start"
-msgstr ""
+msgstr "开始"
#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
-#: ../root/search/components/ArtistResults.js:59
+#: ../root/search/components/ArtistResults.js:58
#: ../root/search/components/LabelResults.js:71
#: ../root/search/components/PlaceResults.js:68
-#: ../root/utility/tableColumns.js:299 ../root/utility/tableColumns.js:304
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
msgid "End"
msgstr "过世"
-#: ../root/cdtoc/CDTocInfo.js:58 ../root/cdtoc/CDTocInfo.js:60
-#: ../root/cdtoc/CDTocInfo.js:62 ../root/components/list/EventList.js:93
-#: ../root/edit/details/AddEvent.js:77 ../root/edit/details/EditEvent.js:88
-#: ../root/report/components/EventList.js:77
-#: ../root/search/components/EventResults.js:75
-msgid "Time"
-msgstr ""
-
#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
#: ../root/cdtoc/CDTocInfo.js:63
msgid "Sectors"
-msgstr ""
+msgstr "扇区"
#: ../root/cdtoc/RemoveDiscId.js:32 ../root/cdtoc/RemoveDiscId.js:33
msgid "Remove Disc ID"
-msgstr ""
+msgstr "移除唱片 ID"
#: ../root/cdtoc/RemoveDiscId.js:38
msgid ""
"Are you sure you want to remove the disc ID {discid}
from the "
"release {release} by {artist}?"
msgstr ""
+"确定要从 {artist} 的专辑 {release} 中移除唱片 ID{discid}
吗?"
#: ../root/cdtoc/RemoveDiscId.js:49
msgid ""
@@ -7504,29 +7652,32 @@ msgid ""
"ID can belong to more than one release. For more in-depth information about "
"this topic, please see our {doc|CD submission guide}."
msgstr ""
+"您需要证明此唱片 ID是错误地加入了专辑中,这是因为一个专辑能具有多个有效的唱片"
+"ID,而每个唱片 ID能属于多个专辑。如需这一方面更深入的信息,请查看我们的{doc|"
+"CD提交指南}。"
#: ../root/cdtoc/SelectArtistForCDToc.js:37
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:128
msgid "Search for an artist"
-msgstr ""
+msgstr "搜索艺术家"
#: ../root/cdtoc/SelectArtistForCDToc.js:67
msgid ""
"Click the radio button to select the appropriate artist, or click the "
"artist’s name to get more info."
-msgstr ""
+msgstr "点击单选按钮以选择合适的艺术家,或点击艺术家的名字以获取更多信息。"
#: ../root/cdtoc/SelectArtistForCDToc.js:113
msgid ""
"If you don't see the artist you are looking for, you can still add a new "
-"release. This will allow you to create this artist and a release at the same "
+"release. This will allow you to add this artist and a release at the same "
"time"
msgstr ""
#: ../root/cdtoc/SetTracklistDurations.js:46
#: ../root/cdtoc/SetTracklistDurations.js:47
msgid "Set Tracklist Durations"
-msgstr ""
+msgstr "设置音轨列表时长"
#: ../root/cdtoc/SetTracklistDurations.js:50
msgid ""
@@ -7536,85 +7687,85 @@ msgstr ""
#: ../root/cdtoc/SetTracklistDurations.js:63 ../root/edit/EditIndex.js:53
msgid "Changes"
-msgstr ""
+msgstr "变更"
#: ../root/cdtoc/SetTracklistDurations.js:78
msgid "The medium you are altering is part of the following release: {release}"
-msgstr ""
+msgstr "您正在修改的媒介是以下专辑的一部分:{release}"
#: ../root/collection/CollectionHeader.js:37
msgid "Public collection by {owner}"
-msgstr ""
+msgstr "{owner} 的公开收藏"
#: ../root/collection/CollectionHeader.js:40
msgid "Private collection by {owner}"
-msgstr ""
+msgstr "{owner} 的私有收藏"
#: ../root/collection/CollectionHeader.js:55
msgid "See all of your collections"
-msgstr ""
+msgstr "查看您的所有收藏"
#: ../root/collection/CollectionHeader.js:57
msgid "See all of {editor}'s public collections"
-msgstr ""
+msgstr "查看 {editor} 的所有公开收藏"
-#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:341
-#: ../root/user/UserProfile.js:399
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
msgid ""
"This content is hidden to prevent spam. To view it, please {url|log in}."
msgstr ""
#: ../root/collection/CollectionIndex.js:205
#: ../root/collection/CollectionMerge.js:70
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:217
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
#: ../root/user/UserCollections.js:117
msgid "Collaborators"
-msgstr ""
+msgstr "合作者"
#: ../root/collection/CollectionIndex.js:219
msgid "Remove selected items from collection"
-msgstr ""
+msgstr "从收藏中移除选中项。"
#: ../root/collection/CollectionIndex.js:224
msgid "This collection is empty."
-msgstr ""
+msgstr "此收藏为空。"
#: ../root/collection/CollectionLayout.js:34
msgid "Collection “{collection}”"
-msgstr ""
+msgstr "收藏 “{collection}”"
#: ../root/collection/CollectionMerge.js:50
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:52
#: ../root/user/UserCollections.js:103
msgid "Collection"
-msgstr ""
+msgstr "收藏集"
#: ../root/collection/CollectionMerge.js:58
msgid "Entity Type"
-msgstr ""
+msgstr "实体类型"
#: ../root/collection/CollectionMerge.js:63
msgid "Entities"
-msgstr ""
+msgstr "实体"
#: ../root/collection/CollectionMerge.js:77 ../root/user/UserCollections.js:76
msgid "Public"
-msgstr ""
+msgstr "公开"
#: ../root/collection/CollectionMerge.js:78 ../root/user/UserCollections.js:76
msgid "Private"
-msgstr ""
+msgstr "私有"
#: ../root/collection/CollectionMerge.js:79
#: ../root/static/scripts/account/components/PreferencesForm.js:190
#: ../root/user/UserCollections.js:128
msgid "Privacy"
-msgstr ""
+msgstr "隐私"
#: ../root/collection/CollectionMerge.js:116
#: ../root/collection/CollectionMerge.js:118
msgid "Merge collections"
-msgstr ""
+msgstr "合并收藏"
#: ../root/collection/CollectionMerge.js:120
msgid ""
@@ -7650,67 +7801,57 @@ msgstr ""
#: ../root/collection/CollectionMerge.js:174
msgid ""
"This process cannot be reverted. Are you sure you want to enter a merge?"
-msgstr ""
+msgstr "此操作无法撤销。您确定要执行合并吗?"
#: ../root/collection/CollectionMerge.js:184
msgid "Confirm"
-msgstr ""
+msgstr "确认"
#: ../root/collection/CreateCollection.js:28
#: ../root/collection/CreateCollection.js:31
#: ../root/user/UserCollections.js:226
-msgid "Create a new collection"
+msgid "Add a new collection"
msgstr ""
#: ../root/collection/DeleteCollection.js:28
#: ../root/collection/DeleteCollection.js:34
msgid "Remove collection"
-msgstr ""
+msgstr "移除收藏"
#: ../root/collection/DeleteCollection.js:30
msgid "Are you sure you want to remove the collection {collection}?"
-msgstr ""
+msgstr "您确定要移除收藏 {collection} 吗?"
#: ../root/components/Aliases/AliasTable.js:22
#: ../root/edit/details/AddRemoveAlias.js:57
#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
msgid "Alias"
msgstr "别名"
-#: ../root/components/Aliases/AliasTable.js:23
-#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
-#: ../root/edit/details/AddLabel.js:47
-#: ../root/edit/details/AddRemoveAlias.js:63
-#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
-#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
-#: ../root/report/DuplicateArtists.js:68
-#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
-msgid "Sort name"
-msgstr ""
-
#: ../root/components/Aliases/AliasTable.js:24
msgid "Begin Date"
-msgstr ""
+msgstr "开始日期"
#: ../root/components/Aliases/AliasTable.js:25
msgid "End Date"
-msgstr ""
+msgstr "结束日期"
#: ../root/components/Aliases/AliasTable.js:27
#: ../root/edit/details/AddRemoveAlias.js:71
#: ../root/edit/details/EditAlias.js:93
#: ../root/static/scripts/alias/AliasEditForm.js:312
msgid "Locale"
-msgstr ""
+msgstr "语系"
#: ../root/components/Aliases/AliasTableRow.js:51
msgid "primary"
-msgstr ""
+msgstr "主要"
#: ../root/components/Aliases/ArtistCreditList.js:33
#: ../root/report/ReportsIndex.js:116
msgid "Artist credits"
-msgstr ""
+msgstr "艺术家名单"
#: ../root/components/Aliases/ArtistCreditList.js:36
msgid ""
@@ -7726,7 +7867,7 @@ msgstr ""
#: ../root/components/Aliases/index.js:49 ../root/components/EntityTabs.js:127
#: ../root/entity/Aliases.js:32
msgid "Aliases"
-msgstr ""
+msgstr "别名"
#: ../root/components/Aliases/index.js:52
#: ../root/static/scripts/alias/AliasEditForm.js:277
@@ -7738,11 +7879,11 @@ msgstr ""
#: ../root/components/Aliases/index.js:67
msgid "{entity} has no aliases."
-msgstr ""
+msgstr "{entity} 没有别名。"
#: ../root/components/Aliases/index.js:75
msgid "Add a new alias"
-msgstr ""
+msgstr "添加一个新别名"
#: ../root/components/CleanupBanner.js:12
msgid ""
@@ -7750,12 +7891,16 @@ msgid ""
"and will be removed automatically in the next few days. If this is not "
"intended, please add more data to this artist."
msgstr ""
+"这位歌手没有任何关系,没有录音,没有专辑作品,也没有专辑组,他将在未来几天内"
+"被自动删除。如果您不希望这样做,请添加这个歌手更多的数据。"
#: ../root/components/CleanupBanner.js:18
msgid ""
"This event has no relationships and will be removed automatically in the "
"next few days. If this is not intended, please add more data to this event."
msgstr ""
+"此事件没有任何关系,将在未来几天内自动删除。如果您不希望这样做,请在此事件中"
+"添加更多数据。"
#: ../root/components/CleanupBanner.js:23
msgid ""
@@ -7763,12 +7908,16 @@ msgid ""
"automatically in the next few days. If this is not intended, please add more "
"data to this label."
msgstr ""
+"此标签没有关系或专辑,并将在未来几天内自动删除。如果您不希望这样做,请在这个"
+"标签上添加更多的数据。"
#: ../root/components/CleanupBanner.js:28
msgid ""
"This place has no relationships and will be removed automatically in the "
"next few days. If this is not intended, please add more data to this place."
msgstr ""
+"这个地方没有任何关系,将在未来几天内自动删除。如果您不希望这样做,请添加更多"
+"的数据到这个地方。"
#: ../root/components/CleanupBanner.js:33
msgid ""
@@ -7782,6 +7931,8 @@ msgid ""
"This series has no relationships and will be removed automatically in the "
"next few days. If this is not intended, please add more data to this series."
msgstr ""
+"此专辑组没有关联的关系或专辑,并且将在接下来的几天内自动删除。如果您不希望这"
+"样做,请向此专辑组添加更多数据。"
#: ../root/components/CleanupBanner.js:43
msgid ""
@@ -7791,7 +7942,7 @@ msgstr ""
#: ../root/components/CritiqueBrainzLinks.js:43
msgid "An error occurred when loading reviews."
-msgstr ""
+msgstr "加载评论时发生了错误。"
#: ../root/components/CritiqueBrainzLinks.js:47
msgid ""
@@ -7810,35 +7961,36 @@ msgstr[0] ""
#: ../root/components/EntityDeletionHelp.js:24
msgid "Are you sure you wish to remove {entity} from MusicBrainz?"
-msgstr ""
+msgstr "你确定要从 MusicBrainz 删除 {entity} 吗?"
#: ../root/components/EntityDeletionHelp.js:30
msgid ""
"If it’s a duplicate, {doc_merge|you should probably merge it instead}. If it "
"just has some small errors, it’s usually better to just fix those."
msgstr ""
+"如果是重复条目,{doc_merge|您需要合并}。如果只是些小错误,直接修正更好。"
#: ../root/components/EntityTabs.js:25
#: ../root/recording/RecordingFingerprints.js:25
msgid "Fingerprints"
-msgstr ""
+msgstr "指纹"
#: ../root/components/EntityTabs.js:27 ../root/place/PlaceMap.js:30
msgid "Map"
-msgstr ""
+msgstr "地图"
#: ../root/components/EntityTabs.js:28 ../root/place/PlacePerformances.js:28
#: ../root/place/PlacePerformances.js:35
msgid "Performances"
-msgstr ""
+msgstr "演出"
#: ../root/components/EntityTabs.js:101
msgid "Disc IDs ({num})"
-msgstr ""
+msgstr "唱片 ID ({num})"
#: ../root/components/EntityTabs.js:116
msgid "Cover Art ({num})"
-msgstr ""
+msgstr "封面 ({num})"
#: ../root/components/EntityTabs.js:131
#: ../root/components/UserAccountTabs.js:64 ../root/entity/Tags.js:35
@@ -7853,47 +8005,47 @@ msgstr "标签"
#: ../root/entity/Ratings.js:90
#: ../root/static/scripts/edit/externalLinks.js:732
msgid "Reviews"
-msgstr ""
+msgstr "评论"
#: ../root/components/EntityTabs.js:141
#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
-#: ../root/user/UserProfile.js:839 ../root/user/UserRatingList.js:48
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
#: ../root/user/UserRatingList.js:82
msgid "Ratings"
msgstr "评分"
#: ../root/components/EntityTabs.js:159
msgid "Edit Relationships"
-msgstr ""
+msgstr "编辑关联"
#: ../root/components/InstrumentRelTypes.js:32
msgid "as “{credit}”"
-msgstr ""
+msgstr "作为 “{credit}”"
#: ../root/components/RelationshipsTable.js:141
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:283
msgid "See all {num} relationships"
-msgstr ""
+msgstr "查看所有 {num} 个关联"
#: ../root/components/RelationshipsTable.js:335
msgid "Credited As"
-msgstr ""
+msgstr "署名为"
#: ../root/components/RelationshipsTable.js:352
msgid "“{link_phrase}” relationships"
-msgstr ""
+msgstr "“{link_phrase}” 关联"
#: ../root/components/RelationshipsTable.js:354
msgid "Invalid relationship type"
-msgstr ""
+msgstr "无效的关联类型"
#: ../root/components/RelationshipsTable.js:365
msgid "No relationships of the selected type were found."
-msgstr ""
+msgstr "未找到所选类型的关联关系。"
#: ../root/components/RelationshipsTable.js:366
msgid "The provided relationship type ID is not valid."
-msgstr ""
+msgstr "提供的关联类型 ID 无效。"
#: ../root/components/ReleaseLanguageScript.js:24
#: ../root/components/ReleaseLanguageScript.js:30
@@ -7903,69 +8055,69 @@ msgstr ""
#: ../root/search/components/ReleaseResults.js:62
#: ../root/static/scripts/common/components/ReleaseEvents.js:54
#: ../root/static/scripts/common/components/ReleaseEvents.js:71
-#: ../root/static/scripts/release-editor/duplicates.js:145
+#: ../root/static/scripts/release-editor/duplicates.js:144
msgctxt "missing data"
msgid "-"
-msgstr ""
+msgstr "-"
#: ../root/components/TagEntitiesList.js:125
msgid "Entities where {user} downvoted “{tag}”"
-msgstr ""
+msgstr "{user} 否决了标签 “{tag}” 的实体"
#: ../root/components/TagEntitiesList.js:129
msgid "Entities {user} tagged as “{tag}”"
-msgstr ""
+msgstr "{user} 标记为 “{tag}” 的实体"
#: ../root/components/TagEntitiesList.js:133
msgid "Entities tagged as “{tag}”"
-msgstr ""
+msgstr "标记为 “{tag}” 的实体"
#: ../root/components/TagEntitiesList.js:144
msgid "{num} entity found"
msgid_plural "{num} entities found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 个实体"
#: ../root/components/TagEntitiesList.js:158
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:13
#: ../root/tag/TagLayout.js:31
msgid "Areas"
-msgstr ""
+msgstr "区域"
#: ../root/components/TagEntitiesList.js:159
msgid "See all {num} areas"
msgid_plural "See all {num} areas"
-msgstr[0] ""
+msgstr[0] "查看所有 {num} 个地区"
#: ../root/components/TagEntitiesList.js:163
msgid "See all {num} artists"
msgid_plural "See all {num} artists"
-msgstr[0] ""
+msgstr[0] "查看所有 {num} 位艺术家"
#: ../root/components/TagEntitiesList.js:167
msgid "See all {num} events"
msgid_plural "See all {num} events"
-msgstr[0] ""
+msgstr[0] "查看所有 {num} 个事件"
#: ../root/components/TagEntitiesList.js:170 ../root/report/ReportsIndex.js:159
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:23
#: ../root/tag/TagLayout.js:32
msgid "Instruments"
-msgstr ""
+msgstr "乐器"
#: ../root/components/TagEntitiesList.js:171
msgid "See all {num} instruments"
msgid_plural "See all {num} instruments"
-msgstr[0] ""
+msgstr[0] "查看所有 {num} 个乐器"
#: ../root/components/TagEntitiesList.js:175
msgid "See all {num} labels"
msgid_plural "See all {num} labels"
-msgstr[0] ""
+msgstr[0] "查看所有 {num} 个厂牌"
#: ../root/components/TagEntitiesList.js:179
msgid "See all {num} places"
msgid_plural "See all {num} places"
-msgstr[0] ""
+msgstr[0] "查看所有 {num} 个地点"
#: ../root/components/TagEntitiesList.js:194
#: ../root/edit/details/AddSeries.js:25 ../root/edit/details/EditSeries.js:34
@@ -7977,17 +8129,17 @@ msgstr "系列"
#: ../root/components/TagEntitiesList.js:195
msgid "See all {num} series"
msgid_plural "See all {num} series"
-msgstr[0] ""
+msgstr[0] "查看所有 {num} 个系列"
#: ../root/components/TagEntitiesList.js:199
msgid "See all {num} works"
msgid_plural "See all {num} works"
-msgstr[0] ""
+msgstr[0] "查看所有 {num} 个作品"
#: ../root/components/UserAccountLayout.js:62
#: ../root/components/UserAccountLayout.js:63
msgid "Editor “{user}”"
-msgstr ""
+msgstr "编辑者“{user}”"
#: ../root/components/UserAccountTabs.js:28
#: ../root/layout/components/TopMenu.js:48
@@ -7999,14 +8151,15 @@ msgstr "资料"
#: ../root/layout/components/sidebar/CollectionSidebar.js:96
#: ../root/layout/components/sidebar/SubscriptionLinks.js:32
msgid "Subscriptions"
-msgstr ""
+msgstr "订阅"
#: ../root/components/UserAccountTabs.js:51 ../root/entity/Subscribers.js:51
#: ../root/entity/Subscribers.js:53
#: ../root/layout/components/sidebar/CollectionSidebar.js:125
#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
msgid "Subscribers"
-msgstr ""
+msgstr "订阅者"
#: ../root/components/UserAccountTabs.js:57 ../root/entity/Collections.js:33
#: ../root/entity/Collections.js:35
@@ -8018,14 +8171,14 @@ msgstr "收藏集"
#: ../root/components/UserAccountTabs.js:102
msgid "Edit User"
-msgstr ""
+msgstr "编辑用户"
#: ../root/components/VotingPeriod.js:40
msgid ""
"Closes in {num} day"
msgid_plural ""
"Closes in {num} days"
-msgstr[0] ""
+msgstr[0] "{num} 天后关闭"
#: ../root/components/VotingPeriod.js:49
msgid ""
@@ -8033,6 +8186,7 @@ msgid ""
msgid_plural ""
"Closes in {num} hours"
msgstr[0] ""
+"{num} 小时后关闭"
#: ../root/components/VotingPeriod.js:58
msgid ""
@@ -8040,130 +8194,102 @@ msgid ""
msgid_plural ""
"Closes in {num} minutes"
msgstr[0] ""
+"{num} 分钟后关闭"
#: ../root/components/VotingPeriod.js:66
msgid "About to close"
-msgstr ""
+msgstr "即将关闭"
#: ../root/components/list/ArtistList.js:73
-#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/ArtistResults.js:52
msgid "Sort Name"
-msgstr ""
-
-#: ../root/components/list/ArtistList.js:87
-#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
-#: ../root/search/components/ArtistResults.js:55
-msgid "Gender"
-msgstr "性别"
-
-#: ../root/components/list/ArtistList.js:102
-#: ../root/search/components/ArtistResults.js:58
-msgid "Begin Area"
-msgstr "出生地"
-
-#: ../root/components/list/ArtistList.js:112
-#: ../root/search/components/ArtistResults.js:60
-msgid "End Area"
-msgstr "过世地"
+msgstr "排序名称"
#: ../root/components/list/EventList.js:109
#: ../root/static/scripts/common/components/FilterForm.js:149
msgid "Role"
-msgstr ""
+msgstr "角色"
#: ../root/components/list/LabelList.js:68
#: ../root/search/components/AreaResults.js:65
#: ../root/search/components/LabelResults.js:68
msgid "Code"
-msgstr ""
-
-#: ../root/components/list/PlaceList.js:66 ../root/edit/details/AddPlace.js:55
-#: ../root/edit/details/EditPlace.js:68
-#: ../root/report/PlacesWithoutCoordinates.js:41
-#: ../root/search/components/PlaceResults.js:65
-msgid "Address"
-msgstr "地址"
+msgstr "代码"
#: ../root/components/list/ReleaseGroupList.js:166
msgid "Unspecified type"
-msgstr ""
+msgstr "未指定的类型"
#: ../root/components/list/ReleaseList.js:95
#: ../root/edit/details/MergeReleases.js:53
#: ../root/release_group/ReleaseGroupIndex.js:89
#: ../root/search/components/ReleaseResults.js:57
-#: ../root/static/scripts/release-editor/duplicates.js:143
+#: ../root/static/scripts/release-editor/duplicates.js:142
msgid "[missing media]"
-msgstr ""
-
-#: ../root/components/list/ReleaseList.js:164
-#: ../root/search/components/ReleaseResults.js:122
-#: ../root/static/scripts/common/components/FilterForm.js:206
-msgid "Status"
-msgstr "状态"
+msgstr "[缺失的媒介]"
#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
#: ../root/report/IswcsWithManyWorks.js:51
#: ../root/report/components/WorkList.js:55
#: ../root/search/components/WorkResults.js:55
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:891
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:551
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
msgid "Writers"
-msgstr ""
+msgstr "作者"
#: ../root/constants.js:22
msgid "View and modify your private collections"
-msgstr ""
+msgstr "查看并修改您的私有收藏"
#: ../root/constants.js:23
msgid "View your email address"
-msgstr ""
+msgstr "查看您的电子邮件地址"
#: ../root/constants.js:24
msgid "View your public account information"
-msgstr ""
+msgstr "查看您的公开账号信息"
#: ../root/constants.js:25
msgid "View and modify your private ratings"
-msgstr ""
+msgstr "查看并修改您的私有评分"
#: ../root/constants.js:26
msgid "Submit new barcodes to the database"
-msgstr ""
+msgstr "提交新条形码到数据库"
#: ../root/constants.js:27
msgid "Submit new ISRCs to the database"
-msgstr ""
+msgstr "提交新 ISRC 到数据库"
#: ../root/constants.js:28
msgid "View and modify your private tags"
-msgstr ""
+msgstr "查看和修改您的私有标签"
#: ../root/doc/DocError.js:32 ../root/doc/DocError.js:36
#: ../root/main/error/Error404.js:32 ../root/main/error/MirrorError404.js:13
msgid "Page Not Found"
-msgstr "找不到页面"
+msgstr "页面未找到"
#: ../root/doc/DocError.js:40
msgid "Sorry, “{id}” is not a valid documentation page."
-msgstr ""
+msgstr "抱歉,“{id}” 不是有效的文档页面。"
#: ../root/doc/DocError.js:46 ../root/main/error/Error400.js:37
#: ../root/main/error/Error403.js:29 ../root/main/error/Error404.js:46
msgid "Looking for help? Check out our {doc|documentation} or {faq|FAQ}."
-msgstr ""
+msgstr "需要帮助?查看我们的 {doc|文档} 或 {faq|常见问题}。"
#: ../root/doc/DocError.js:55
msgid ""
"Found a broken link on our site? Please let us know by {report|reporting a "
"bug}."
-msgstr ""
+msgstr "在我们的网站上找到了失效链接?请通过 {report|报告缺陷} 告诉我们。"
#: ../root/doc/DocPage.js:80
msgid ""
"This page has not been reviewed by our documentation team ({more_info|more "
"info})."
-msgstr ""
+msgstr "此页面未经过我们的文档团队审核({more_info|更多信息})。"
#: ../root/doc/DocPage.js:90
msgid "This page is {doc|transcluded} from revision {version} of {title}."
@@ -8175,82 +8301,82 @@ msgstr ""
#: ../root/doc/components/DocSearchBox.js:18
msgid "Search the documentation..."
-msgstr ""
+msgstr "正在搜索文档..."
#: ../root/edit/CancelEdit.js:28 ../root/edit/CancelEdit.js:29
msgid "Cancel Edit"
-msgstr ""
+msgstr "取消编辑"
#: ../root/edit/CancelEdit.js:32
msgid "Are you sure you wish to cancel edit #{n}? This cannot be undone!"
-msgstr ""
+msgstr "你确定希望取消编辑 #{n} 吗?此操作不可撤销!"
#: ../root/edit/CancelEdit.js:42 ../root/edit/EditIndex.js:56
#: ../root/edit/components/ListEdit.js:51
#: ../root/edit/details/historic/RemoveRelationship.js:35
msgid "An error occurred while loading this edit."
-msgstr ""
+msgstr "加载此编辑时出错。"
#: ../root/edit/CancelEdit.js:48
msgid ""
"You may enter an edit note while cancelling this edit. This can be useful to "
"point editors to another edit."
-msgstr ""
+msgstr "您可以在取消此编辑时输入编辑笔记。这可能有助于将编辑者指向另一个编辑。"
#: ../root/edit/CancelEdit.js:56 ../root/edit/components/EditHeader.js:185
#: ../root/edit/components/EditSummary.js:76
msgid "Cancel edit"
-msgstr ""
+msgstr "取消编辑"
#: ../root/edit/CannotApproveEdit.js:24
msgid "The edit has been cancelled."
-msgstr ""
+msgstr "此次编辑已取消。"
#: ../root/edit/CannotApproveEdit.js:26 ../root/edit/CannotCancelEdit.js:32
msgid "The edit has already been closed."
-msgstr ""
+msgstr "此次编辑已关闭。"
#: ../root/edit/CannotApproveEdit.js:29
msgid "Only {doc|auto-editors} can approve an edit."
-msgstr ""
+msgstr "只有 {doc|自动确认编辑者} 才能批准编辑。"
#: ../root/edit/CannotApproveEdit.js:34 ../root/edit/CannotApproveEdit.js:35
#: ../root/edit/NoteIsRequired.js:21 ../root/edit/NoteIsRequired.js:22
msgid "Error Approving Edit"
-msgstr ""
+msgstr "批准编辑时发生了错误"
#: ../root/edit/CannotApproveEdit.js:38
msgid "There was a problem approving {edit}."
-msgstr ""
+msgstr "批准 {edit} 时遇到了问题。"
#: ../root/edit/CannotCancelEdit.js:22 ../root/edit/CannotCancelEdit.js:23
msgid "Error Cancelling Edit"
-msgstr ""
+msgstr "取消编辑时发生了错误"
#: ../root/edit/CannotCancelEdit.js:26
msgid "There was a problem cancelling {edit}."
-msgstr ""
+msgstr "取消 {edit} 时遇到了问题。"
#: ../root/edit/CannotCancelEdit.js:33
-msgid "Only the editor who created an edit can cancel it."
+msgid "Only the editor who entered an edit can cancel it."
msgstr ""
#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
msgid "Error Voting on Edits"
-msgstr ""
+msgstr "对编辑投票时发生了错误"
#: ../root/edit/CannotVote.js:16
msgid "You’re not currently allowed to vote, please read the banner."
-msgstr ""
+msgstr "您目前被禁止投票,请阅读横幅信息。"
#: ../root/edit/DeleteNote.js:32 ../root/edit/DeleteNote.js:33
#: ../root/edit/components/EditNote.js:147
msgid "Remove edit note"
-msgstr ""
+msgstr "删除编辑笔记"
#: ../root/edit/DeleteNote.js:35
msgid "Are you sure you want to remove the following edit note?"
-msgstr ""
+msgstr "您确定要删除以下编辑笔记吗?"
#: ../root/edit/DeleteNote.js:47
msgid ""
@@ -8266,15 +8392,15 @@ msgstr "原因"
#: ../root/edit/EditData.js:34
msgid "Edit data for edit #{id}"
-msgstr ""
+msgstr "编辑 #{id} 的数据"
#: ../root/edit/EditData.js:57
msgid "Data:"
-msgstr ""
+msgstr "数据:"
#: ../root/edit/EditData.js:62
msgid "Related entities:"
-msgstr ""
+msgstr "相关实体:"
#: ../root/edit/EditData.js:90
msgid ""
@@ -8287,23 +8413,23 @@ msgstr ""
#: ../root/edit/EditIndex.js:49
msgid "Edit #{id}"
-msgstr ""
+msgstr "编辑 #{id}"
#: ../root/edit/EditIndex.js:58
msgid "Raw edit data may be available."
-msgstr ""
+msgstr "可能有原始编辑数据。"
#: ../root/edit/EditIndex.js:83
msgid "My vote:"
-msgstr ""
+msgstr "我的投票:"
#: ../root/edit/EditIndex.js:122
msgid "You are not currently able to vote on this edit. ({url|Details})"
-msgstr ""
+msgstr "您目前无法对此编辑进行投票。({url|详情})"
#: ../root/edit/EditIndex.js:132
msgid "Testing features"
-msgstr ""
+msgstr "测试中的特性"
#: ../root/edit/EditIndex.js:134
msgid ""
@@ -8317,46 +8443,48 @@ msgstr "接受编辑"
#: ../root/edit/EditIndex.js:145 ../root/edit/components/EditSummary.js:93
msgid "Reject edit"
-msgstr ""
+msgstr "驳回编辑"
#: ../root/edit/EditIndex.js:153
msgid "You must be logged in to vote on edits."
-msgstr ""
+msgstr "您必须登录才能对编辑进行投票。"
#: ../root/edit/EditIndex.js:159
msgid "Edit notes"
-msgstr ""
+msgstr "编辑备注:"
#: ../root/edit/EditIndex.js:164 ../root/edit/components/Vote.js:112
msgid "Submit vote and note"
-msgstr ""
+msgstr "提交投票和备注"
#: ../root/edit/EditIndex.js:166
msgid "Submit note"
-msgstr ""
+msgstr "提交备注"
#: ../root/edit/EditIndex.js:171
msgid "You must be logged in to see edit notes."
-msgstr ""
+msgstr "您必须登录才能查看编辑备注。"
#: ../root/edit/ModifyNote.js:36 ../root/edit/ModifyNote.js:37
#: ../root/edit/components/EditNote.js:142
msgid "Modify edit note"
-msgstr ""
+msgstr "修改编辑笔记"
#: ../root/edit/ModifyNote.js:39
msgid "You are modifying the following edit note:"
-msgstr ""
+msgstr "您正在修改以下编辑笔记:"
#: ../root/edit/ModifyNote.js:52
msgid "New edit note"
-msgstr ""
+msgstr "新编辑笔记"
#: ../root/edit/ModifyNote.js:58
msgid ""
"Keep in mind modification of edit notes is mostly intended to correct small "
"mistakes. Editors won’t be notified of your changes via email."
msgstr ""
+"记住,修改编辑笔记主要是为了纠正小错误。编辑者不会通过电子邮件通知您更改内"
+"容。"
#: ../root/edit/ModifyNote.js:65
msgid ""
@@ -8369,28 +8497,28 @@ msgstr ""
msgid ""
"{edit} has received one or more \"no\" votes, you must leave an edit note "
"before you can approve it."
-msgstr ""
+msgstr "{edit}收到了一个或多个“反对”的投票,您必须在批准之前留下编辑笔记。"
#: ../root/edit/NotesReceived.js:35 ../root/edit/NotesReceived.js:37
msgid "Recent Notes Left on Your Edits"
-msgstr ""
+msgstr "最近您的编辑收到的备注"
#: ../root/edit/NotesReceived.js:67
msgid "Nobody has left notes on any of your edits in the past three months."
-msgstr ""
+msgstr "过去三个月内没有人对您的编辑留下备注。"
#: ../root/edit/OpenEdits.js:27 ../root/edit/OpenEdits.js:29
msgid "Open Edits"
-msgstr ""
+msgstr "开启的编辑"
#: ../root/edit/SubscribedEditorEdits.js:27
#: ../root/edit/SubscribedEditorEdits.js:29
msgid "Edits by Your Subscribed Editors"
-msgstr ""
+msgstr "您所订阅编辑者的编辑"
#: ../root/edit/SubscribedEdits.js:27 ../root/edit/SubscribedEdits.js:29
msgid "Edits for Your Subscribed Entities"
-msgstr ""
+msgstr "编辑您订阅的实体"
#: ../root/edit/SubscribedEdits.js:32
msgid ""
@@ -8405,43 +8533,45 @@ msgid ""
"We are unable to display history for this cover art. For a current listing "
"of cover art, please see the {coverart|release's cover art page}."
msgstr ""
+"无法显示此封面图片的历史。关于当前的封面图片列表,请查看 {coverart|专辑的封面"
+"图片页面}。"
#: ../root/edit/components/EditArtwork.js:32
msgid "We are unable to display history for this cover art."
-msgstr ""
+msgstr "无法显示此封面的历史。"
#: ../root/edit/components/EditArtwork.js:36
msgid "Cover art:"
-msgstr ""
+msgstr "封面:"
#: ../root/edit/components/EditHeader.js:52
#: ../root/edit/components/EditNoteListEntry.js:27
msgid "Edit #{id} - {name}"
-msgstr ""
+msgstr "编辑 #{id} - {name}"
#: ../root/edit/components/EditHeader.js:78
msgid "Edit by {editor}"
-msgstr ""
+msgstr "{editor}的编辑"
#: ../root/edit/components/EditHeader.js:86
msgid "Editor hidden"
-msgstr ""
+msgstr "编辑器隐藏"
#: ../root/edit/components/EditHeader.js:92
msgid "log in to see who"
-msgstr ""
+msgstr "登录以查看"
#: ../root/edit/components/EditHeader.js:107
msgid "Their vote: "
-msgstr ""
+msgstr "Ta 们的投票: "
#: ../root/edit/components/EditHeader.js:114
msgid "My vote: "
-msgstr ""
+msgstr "我的投票: "
#: ../root/edit/components/EditHeader.js:118
msgid "N/A"
-msgstr ""
+msgstr "N/A"
#: ../root/edit/components/EditHeader.js:119
#: ../root/edit/components/Vote.js:107
@@ -8450,72 +8580,73 @@ msgid "None"
msgstr "无"
#: ../root/edit/components/EditHeader.js:141
-#: ../root/edit/components/EditSidebar.js:50 ../root/elections/Show.js:32
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
msgid "Voting"
-msgstr ""
+msgstr "投票"
#: ../root/edit/components/EditHeader.js:149
msgid "Approved"
-msgstr ""
+msgstr "已批准"
#: ../root/edit/components/EditHeader.js:177
#: ../root/edit/components/EditSummary.js:67
msgid "Approve edit"
-msgstr ""
+msgstr "通过编辑"
#: ../root/edit/components/EditList.js:82
msgid "Found at least {n} edit"
msgid_plural "Found at least {n} edits"
-msgstr[0] ""
+msgstr[0] "找到至少 {n} 次编辑"
#: ../root/edit/components/EditList.js:89
msgid "Found {n} edit"
msgid_plural "Found {n} edits"
-msgstr[0] ""
+msgstr[0] "找到 {n} 次编辑"
-#: ../root/edit/components/EditList.js:116
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
msgid "Submit votes & edit notes"
-msgstr ""
+msgstr "提交投票和编辑备注"
#: ../root/edit/components/EditNote.js:159
msgid "[time missing]"
-msgstr ""
+msgstr "[缺失时间]"
#: ../root/edit/components/EditNote.js:168
msgid "This edit note was removed by its author. Reason given: “{reason}”."
-msgstr ""
+msgstr "此编辑笔记已被其作者删除。给出的理由:“{Reason}”。"
#: ../root/edit/components/EditNote.js:173
msgid "This edit note was removed by its author. No reason was provided."
-msgstr ""
+msgstr "这个编辑笔记被作者删除了。没有提供任何理由。"
#: ../root/edit/components/EditNote.js:179
msgid "This edit note was removed by an admin. Reason given: “{reason}”."
-msgstr ""
+msgstr "此编辑笔记已被管理员删除。给出的原因:“{Reason}”。"
#: ../root/edit/components/EditNote.js:184
msgid "This edit note was removed by an admin. No reason was provided."
-msgstr ""
+msgstr "此编辑笔记已被管理员删除。没有提供任何理由。"
#: ../root/edit/components/EditNote.js:194
-#: ../root/edit/components/EditNote.js:250
+#: ../root/edit/components/EditNote.js:246
msgctxt "edit note"
msgid "see all changes"
-msgstr ""
+msgstr "查看所有更改"
#: ../root/edit/components/EditNote.js:211
msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:221
+#: ../root/edit/components/EditNote.js:220
msgid "Last modified by the note author ({time})."
msgstr ""
-#: ../root/edit/components/EditNote.js:229
+#: ../root/edit/components/EditNote.js:227
msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
msgstr ""
-#: ../root/edit/components/EditNote.js:239
+#: ../root/edit/components/EditNote.js:236
msgid "Last modified by an admin ({time})."
msgstr ""
@@ -8525,10 +8656,12 @@ msgid ""
"options}. Please do always keep the {doc_coc|Code of Conduct} in mind when "
"writing edit notes!"
msgstr ""
+"编辑笔记支持{doc_formatting|一组有限的wiki格式选项}。请在编写编辑笔记时始终牢"
+"记{doc_coc|行为准则}!"
#: ../root/edit/components/EditNotes.js:55
msgid "No edit notes have been added."
-msgstr ""
+msgstr "未添加编辑备注。"
#: ../root/edit/components/EditNotes.js:70
msgid "Add an edit note"
@@ -8536,62 +8669,52 @@ msgstr "添加编辑备注"
#: ../root/edit/components/EditNotes.js:78
msgid "You are not currently able to add notes to this edit. ({url|Details})"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:37
-msgctxt "edit status"
-msgid "Status:"
-msgstr ""
+msgstr "您目前无法向此编辑添加备注。({url|详情})"
-#: ../root/edit/components/EditSidebar.js:45
+#: ../root/edit/components/EditSidebar.js:48
msgid "Opened:"
-msgstr ""
-
-#: ../root/edit/components/EditSidebar.js:56
-msgid "Closed:"
-msgstr ""
+msgstr "开启于:"
-#: ../root/edit/components/EditSidebar.js:65
+#: ../root/edit/components/EditSidebar.js:68
msgid "For quicker closing"
msgstr ""
-#: ../root/edit/components/EditSidebar.js:68
+#: ../root/edit/components/EditSidebar.js:71
msgid "1 vote"
msgid_plural "{n} unanimous votes"
msgstr[0] ""
-#: ../root/edit/components/EditSidebar.js:77
+#: ../root/edit/components/EditSidebar.js:80
msgid "If no votes cast"
-msgstr ""
+msgstr "如果没有投票"
-#: ../root/edit/components/EditSidebar.js:86
+#: ../root/edit/components/EditSidebar.js:89
msgid "Raw edit data for this edit"
-msgstr ""
+msgstr "此编辑的原始编辑数据"
-#: ../root/edit/components/EditSidebar.js:91
+#: ../root/edit/components/EditSidebar.js:94
msgid "For more information:"
-msgstr ""
+msgstr "如需更多信息:"
-#: ../root/edit/components/EditSidebar.js:94
+#: ../root/edit/components/EditSidebar.js:97
msgid "Voting FAQ"
-msgstr ""
+msgstr "投票常见问题"
-#: ../root/edit/components/EditSidebar.js:95
+#: ../root/edit/components/EditSidebar.js:98
msgid "Editing FAQ"
-msgstr ""
+msgstr "编辑常见问题"
#: ../root/edit/components/EditSummary.js:59
-#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
msgid "Add Note"
-msgstr ""
+msgstr "添加备注"
#: ../root/edit/components/EditorTypeInfo.js:29 ../root/user/UserProfile.js:101
msgid "This user is new to MusicBrainz."
-msgstr ""
+msgstr "此用户刚加入 MusicBrainz 不久。"
#: ../root/edit/components/EditorTypeInfo.js:31
msgid "beginner"
-msgstr ""
+msgstr "新手"
#: ../root/edit/components/EditorTypeInfo.js:39
msgid "This user is automated."
@@ -8599,13 +8722,7 @@ msgstr ""
#: ../root/edit/components/EditorTypeInfo.js:40
msgid "bot"
-msgstr ""
-
-#: ../root/edit/components/HistoricReleaseList.js:49
-#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
-#: ../root/edit/details/historic/RemoveReleases.js:20
-msgid "Releases:"
-msgstr ""
+msgstr "机器人"
#: ../root/edit/components/IntentionallyRawIcon.js:17
msgid ""
@@ -8615,98 +8732,98 @@ msgstr ""
#: ../root/edit/components/ListHeader.js:49
msgid "Open edits for {user}"
-msgstr ""
+msgstr "{user} 的待审核编辑"
#: ../root/edit/components/ListHeader.js:57
msgid "All edits for {user}"
-msgstr ""
+msgstr "{user} 的所有编辑"
#: ../root/edit/components/ListHeader.js:69
msgid "Open edits for this collection"
-msgstr ""
+msgstr "此收藏的待审核编辑"
#: ../root/edit/components/ListHeader.js:70
msgid "Open edits for this entity"
-msgstr ""
+msgstr "此实体的待审核编辑"
#: ../root/edit/components/ListHeader.js:80
msgid "All edits for this collection"
-msgstr ""
+msgstr "此收藏的所有编辑"
#: ../root/edit/components/ListHeader.js:81
msgid "All edits for this entity"
-msgstr ""
+msgstr "此实体的所有编辑"
#: ../root/edit/components/ListHeader.js:92
msgid "All edits for your subscribed entities"
-msgstr ""
+msgstr "已订阅实体的所有编辑"
#: ../root/edit/components/ListHeader.js:100
msgid "Open edits for your subscribed entities"
-msgstr ""
+msgstr "已订阅实体的待审核编辑"
#: ../root/edit/components/ListHeader.js:111
msgid "All edits for your subscribed editors"
-msgstr ""
+msgstr "已订阅编辑者的所有编辑"
#: ../root/edit/components/ListHeader.js:119
msgid "Open edits for your subscribed editors"
-msgstr ""
+msgstr "已订阅编辑者的待审核编辑"
#: ../root/edit/components/ListHeader.js:134
msgid "Refine this search"
-msgstr ""
+msgstr "细化搜索条件"
#: ../root/edit/components/ListHeader.js:143
msgid "Subscribed entities"
-msgstr ""
+msgstr "已订阅的实体"
#: ../root/edit/components/ListHeader.js:150
msgid "Subscribed editors"
-msgstr ""
+msgstr "已订阅的编辑者"
#: ../root/edit/components/ListHeader.js:158
#: ../root/layout/components/sidebar/CollectionSidebar.js:77
#: ../root/layout/components/sidebar/EditLinks.js:43
msgid "Open edits"
-msgstr ""
+msgstr "待审核编辑"
#: ../root/edit/components/ListHeader.js:165 ../root/vote/VotingIndex.js:44
#: ../root/vote/VotingIndex.js:46
msgid "Voting suggestions"
-msgstr ""
+msgstr "投票建议"
#: ../root/edit/components/ListHeader.js:172
msgid "Search for edits"
-msgstr ""
+msgstr "搜索编辑"
#: ../root/edit/components/ListHeader.js:199
msgid "Quick links:"
-msgstr ""
+msgstr "快速链接:"
#: ../root/edit/components/ListHeader.js:211
msgid "Help:"
-msgstr ""
+msgstr "帮助:"
#: ../root/edit/components/ListHeader.js:215
msgid "Introduction to Voting"
-msgstr ""
+msgstr "投票简介"
#: ../root/edit/components/ListHeader.js:219
msgid "Introduction to Editing"
-msgstr ""
+msgstr "编辑简介"
#: ../root/edit/components/ListHeader.js:222 ../root/main/index.js:180
msgid "Style guidelines"
-msgstr ""
+msgstr "风格指南"
#: ../root/edit/components/VoteTally.js:31
msgid "automatically applied"
-msgstr ""
+msgstr "自动生效"
#: ../root/edit/components/VoteTally.js:39
msgid "{yes} yes : {no} no"
-msgstr ""
+msgstr "{yes} 是:{no} 否"
#: ../root/edit/details/AddAnnotation.js:43
#: ../root/edit/details/historic/AddReleaseAnnotation.js:25
@@ -8716,44 +8833,20 @@ msgstr ""
#: ../root/edit/details/AddAnnotation.js:56
#: ../root/edit/details/historic/AddReleaseAnnotation.js:35
msgid "This annotation is empty."
-msgstr ""
+msgstr "此注释为空。"
#: ../root/edit/details/AddAnnotation.js:72
#: ../root/edit/details/historic/AddReleaseAnnotation.js:43
msgid "Summary"
-msgstr ""
-
-#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
-#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
-#: ../root/edit/details/AddRemoveAlias.js:90
-#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
-#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
-#: ../root/edit/details/EditPlace.js:93
-#: ../root/report/RecordingsWithFutureDates.js:35
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
-msgid "Begin date"
-msgstr ""
+msgstr "概要"
-#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
-#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
-#: ../root/edit/details/AddRemoveAlias.js:97
-#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
-#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
-#: ../root/edit/details/EditPlace.js:101
-#: ../root/elections/ElectionTable/index.js:25
-#: ../root/report/RecordingsWithFutureDates.js:40
-#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
-#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
-msgid "End date"
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddArea.js:102 ../root/edit/details/AddArtist.js:129
-#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/AddPlace.js:84
-#: ../root/edit/details/AddRemoveAlias.js:104
-#: ../root/edit/details/EditAlias.js:125 ../root/edit/details/EditArea.js:119
-#: ../root/edit/details/EditArtist.js:155 ../root/edit/details/EditLabel.js:111
-#: ../root/edit/details/EditPlace.js:109
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
msgid "Ended"
msgstr ""
@@ -8765,22 +8858,25 @@ msgstr "(无)"
#: ../root/edit/details/AddCoverArt.js:44
#: ../root/edit/details/EditCoverArt.js:47
-#: ../root/edit/details/RemoveCoverArt.js:45
-msgid "Filename:"
-msgstr "文件名:"
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr "文件名"
-#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/RemoveDiscId.js:25
-msgid "Medium:"
-msgstr ""
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr "评论:"
-#: ../root/edit/details/AddEvent.js:84 ../root/edit/details/EditEvent.js:95
-#: ../root/event/EventIndex.js:54
-msgid "Setlist"
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
msgstr ""
#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
msgid "Client:"
-msgstr ""
+msgstr "客户:"
#: ../root/edit/details/AddIsrcs.js:28
msgctxt "isrc client"
@@ -8789,7 +8885,7 @@ msgstr "(未知)"
#: ../root/edit/details/AddIsrcs.js:33 ../root/edit/details/AddIswcs.js:25
msgid "Additions:"
-msgstr ""
+msgstr "补充内容:"
#: ../root/edit/details/AddIsrcs.js:39
msgid "ISRC {isrc} to {recording}"
@@ -8799,19 +8895,19 @@ msgstr ""
msgid "ISWC {iswc} to {work}"
msgstr ""
-#: ../root/edit/details/AddLabel.js:94 ../root/edit/details/EditLabel.js:85
-msgid "Label code"
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
msgstr ""
-#: ../root/edit/details/AddMedium.js:162
-msgid "Artist Credits:"
-msgstr ""
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr "艺术家名单"
-#: ../root/edit/details/AddRelationship.js:22
-#: ../root/edit/details/RemoveRelationship.js:20
-#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:198
-#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
-msgid "Relationship:"
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddRelationship.js:33
@@ -8851,7 +8947,7 @@ msgstr ""
#: ../root/edit/details/EditRelationshipType.js:213
#: ../root/edit/details/RemoveRelationshipType.js:80
msgid "Link phrase:"
-msgstr ""
+msgstr "链接文本:"
#: ../root/edit/details/AddRelationshipType.js:128
#: ../root/edit/details/RemoveRelationshipType.js:87
@@ -8868,146 +8964,127 @@ msgstr "(无)"
#: ../root/edit/details/AddRelease.js:68
msgid "(new release group)"
-msgstr "(新建专辑组)"
-
-#: ../root/edit/details/AddRelease.js:82
-#: ../root/edit/details/EditRelease.js:101
-#: ../root/edit/details/historic/AddRelease.js:56
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
-msgctxt "release status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/edit/details/AddRelease.js:105
-#: ../root/edit/details/EditRelease.js:137
-msgid "Packaging"
-msgstr "包装"
+msgstr "(新专辑组)"
#: ../root/edit/details/AddRelease.js:119
#: ../root/edit/details/EditReleaseLabel.js:92
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:230
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
msgid "Release events"
-msgstr ""
+msgstr "发行事件"
#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
#: ../root/edit/details/RemoveReleaseLabel.js:39
-msgid "Catalog number:"
-msgstr ""
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr "目录编号"
#: ../root/edit/details/AddRemoveAlias.js:46
#: ../root/edit/details/EditAlias.js:51
msgid "view all aliases"
-msgstr ""
+msgstr "查看所有别名"
#: ../root/edit/details/AddRemoveAlias.js:75
#: ../root/edit/details/EditAlias.js:99
msgid "Primary for locale"
-msgstr ""
+msgstr "语言的主要別名"
-#: ../root/edit/details/AddSeries.js:52 ../root/edit/details/EditSeries.js:66
-#: ../root/layout/components/sidebar/SeriesSidebar.js:53
-#: ../root/utility/tableColumns.js:760
-msgid "Ordering Type"
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
msgstr ""
#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
#: ../root/layout/components/sidebar/WorkSidebar.js:69
#: ../root/search/components/WorkResults.js:59
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
-#: ../root/static/scripts/work/edit.js:342 ../root/utility/tableColumns.js:816
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
msgid "Lyrics Languages"
-msgstr ""
+msgstr "歌词语言"
#: ../root/edit/details/ChangeReleaseQuality.js:30
#: ../root/edit/details/historic/ChangeArtistQuality.js:30
#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
-#: ../root/release/ChangeQuality.js:66
+#: ../root/release/ChangeQuality.js:67
msgid "Data Quality"
-msgstr ""
+msgstr "数据质量"
#: ../root/edit/details/ChangeWikiDoc.js:39
msgid "WikiDoc:"
-msgstr ""
+msgstr "WikiDoc:"
#: ../root/edit/details/ChangeWikiDoc.js:48
msgid "Old version:"
-msgstr ""
+msgstr "旧版本:"
#: ../root/edit/details/ChangeWikiDoc.js:50
msgid "New page"
-msgstr ""
+msgstr "新页面"
#: ../root/edit/details/ChangeWikiDoc.js:63
msgid "Page removed"
-msgstr ""
+msgstr "页面已被移除"
#: ../root/edit/details/ChangeWikiDoc.js:75
msgid "Diff"
-msgstr ""
+msgstr "差异"
#: ../root/edit/details/ChangeWikiDoc.js:78
msgid "View diff"
-msgstr ""
+msgstr "查看差异"
#: ../root/edit/details/EditAlias.js:71
msgid "primary for {locale}"
-msgstr ""
+msgstr "{locale} 的主要別名"
#: ../root/edit/details/EditArtistCredit.js:26
#: ../root/report/components/ArtistCreditList.js:29
msgid "Artist Credit"
-msgstr ""
+msgstr "艺术家名单"
#: ../root/edit/details/EditArtistCredit.js:41
msgid "See all uses of the artist credit being changed."
msgstr ""
-#: ../root/edit/details/EditLabel.js:131
-msgid "IPI codes"
-msgstr ""
-
-#: ../root/edit/details/EditLabel.js:140
-msgid "ISNI codes"
-msgstr ""
-
#: ../root/edit/details/EditMedium.js:84
msgid "This track's MBID will change when this edit is applied."
-msgstr ""
+msgstr "应用此编辑后,此音轨的 MBID 将会更改。"
#: ../root/edit/details/EditMedium.js:309
msgid "Old Tracklist"
-msgstr ""
+msgstr "旧音轨列表"
#: ../root/edit/details/EditMedium.js:310
msgid "New Tracklist"
-msgstr ""
+msgstr "新建音轨列表"
#: ../root/edit/details/EditMedium.js:505
msgid "This edit changes which tracks are data tracks."
-msgstr ""
+msgstr "此编辑更改了哪些轨道是数据轨。"
#: ../root/edit/details/EditMedium.js:520
msgid "Old recording"
-msgstr ""
+msgstr "旧录音"
#: ../root/edit/details/EditMedium.js:521
msgid "New recording"
-msgstr ""
-
-#: ../root/edit/details/EditMedium.js:572
-#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
-msgid "Artist Credits"
-msgstr ""
+msgstr "新录音"
#: ../root/edit/details/EditMedium.js:578
msgid "Old Artist"
-msgstr ""
+msgstr "旧艺术家"
#: ../root/edit/details/EditMedium.js:579
msgid "New Artist"
-msgstr ""
+msgstr "新艺术家"
#: ../root/edit/details/EditRecording.js:63
msgid "This edit makes subsecond changes to the recording length"
@@ -9024,49 +9101,35 @@ msgstr ""
#: ../root/edit/details/EditRelationshipType.js:249
#: ../root/edit/details/EditRelationshipType.js:257
msgid "Deprecated:"
-msgstr ""
-
-#: ../root/edit/details/EditRelease.js:164
-#: ../root/edit/details/MergeReleases.js:347
-#: ../root/edit/details/SetTrackLengths.js:74
-#: ../root/edit/details/historic/MergeReleases.js:55
-#: ../root/user/ReportUser.js:116
-msgid "Note"
-msgstr ""
+msgstr "已弃用:"
#: ../root/edit/details/EditRelease.js:165
msgid "This edit also changed the track artists."
-msgstr ""
-
-#: ../root/edit/details/EditReleaseLabel.js:78
-#: ../root/edit/details/EditReleaseLabel.js:83
-#: ../root/edit/details/historic/EditReleaseEvents.js:112
-#: ../root/otherlookup/OtherLookupForm.js:57
-msgid "Catalog number"
-msgstr ""
+msgstr "此编辑也更改了音轨艺术家。"
#: ../root/edit/details/EditUrl.js:70
msgid "This change affects {num} relationship."
msgid_plural "This change affects {num} relationships."
-msgstr[0] ""
+msgstr[0] "此更改将影响 {num} 个关联。"
#: ../root/edit/details/EditUrl.js:79
msgid ""
"The new URL already exists in the database. This edit will therefore merge "
"the two URL entities."
-msgstr ""
+msgstr "此新增 URL 已存在于数据库中,故此次编辑将合并这两个 URL 实体。"
#: ../root/edit/details/EditUrl.js:82
msgid "This edit was a merge."
-msgstr ""
+msgstr "此编辑是一次合并操作。"
#: ../root/edit/details/EditUrl.js:86
msgid "Search for the target URL."
-msgstr ""
+msgstr "搜索目标 URL。"
#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
msgid "Work type"
-msgstr ""
+msgstr "作品类型"
#: ../root/edit/details/MergeAreas.js:19
#: ../root/edit/details/MergeArtists.js:20
@@ -9077,7 +9140,8 @@ msgstr ""
#: ../root/edit/details/MergeRecordings.js:19
#: ../root/edit/details/MergeReleaseGroups.js:20
#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
-msgid "Merge:"
+msgctxt "merge X into Y heading"
+msgid "Merge"
msgstr ""
#: ../root/edit/details/MergeAreas.js:25
@@ -9094,39 +9158,39 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:306
#: ../root/edit/details/MergeSeries.js:25 ../root/edit/details/MergeWorks.js:25
msgid "Into:"
-msgstr ""
+msgstr "至:"
#: ../root/edit/details/MergeArtists.js:32
msgid "Rename artist and relationship credits"
-msgstr ""
+msgstr "重命名艺术家和关联名单"
#: ../root/edit/details/MergeReleases.js:109
msgid "Medium {position}: {name} is now medium {new_position}: {new_name}"
-msgstr ""
+msgstr "媒介 {position}:{name} 现在是媒介 {new_position}:{new_name}"
#: ../root/edit/details/MergeReleases.js:120
msgid "Medium {position}: {name} is now medium {new_position}"
-msgstr ""
+msgstr "媒介 {position}:{name} 现在为媒介 {new_position}"
#: ../root/edit/details/MergeReleases.js:129
msgid "Medium {position} is now medium {new_position}: {new_name}"
-msgstr ""
+msgstr "媒介 {position} 现在为媒介 {new_position}:{new_name}"
#: ../root/edit/details/MergeReleases.js:140
msgid "Medium {position} is now medium {new_position}"
-msgstr ""
+msgstr "媒介 {position} 现在为媒介 {new_position}"
#: ../root/edit/details/MergeReleases.js:254
msgid "This release has no media to merge."
-msgstr ""
+msgstr "此专辑没有可合并的媒介。"
#: ../root/edit/details/MergeReleases.js:301
msgid "Recording Merges"
-msgstr ""
+msgstr "录音合并"
#: ../root/edit/details/MergeReleases.js:304
msgid "Track #"
-msgstr ""
+msgstr "音轨 #"
#: ../root/edit/details/MergeReleases.js:316
msgid ""
@@ -9136,12 +9200,12 @@ msgstr ""
#: ../root/edit/details/MergeReleases.js:333
msgid "All recordings for these releases are already merged."
-msgstr ""
+msgstr "所有这些发行版的录音都已合并。"
#: ../root/edit/details/MergeReleases.js:341
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:65
msgid "Merge strategy:"
-msgstr ""
+msgstr "合并策略:"
#: ../root/edit/details/MergeReleases.js:349
msgid ""
@@ -9152,12 +9216,12 @@ msgstr ""
#: ../root/edit/details/MoveDiscId.js:32
#: ../root/edit/details/historic/MoveDiscId.js:27
msgid "From:"
-msgstr ""
+msgstr "从:"
#: ../root/edit/details/MoveDiscId.js:36
#: ../root/edit/details/historic/MoveDiscId.js:31
msgid "To:"
-msgstr ""
+msgstr "至:"
#: ../root/edit/details/RemoveMedium.js:58
msgid ""
@@ -9175,74 +9239,78 @@ msgstr ""
#: ../root/edit/details/RemoveMedium.js:80
msgid "Original tracklist"
-msgstr ""
+msgstr "原始音轨列表"
#: ../root/edit/details/RemoveMedium.js:99
msgid "Current tracklist"
-msgstr ""
+msgstr "现有音轨列表"
#: ../root/edit/details/ReorderCoverArt.js:41
msgid "Old positions:"
-msgstr ""
+msgstr "旧位置:"
#: ../root/edit/details/ReorderCoverArt.js:53
msgid "New positions:"
-msgstr ""
+msgstr "新位置:"
#: ../root/edit/details/ReorderMediums.js:42
-msgid "Mediums:"
+msgid "Mediums"
msgstr ""
#: ../root/edit/details/ReorderMediums.js:46
msgid "Medium {new}: {title} (new medium)"
-msgstr ""
+msgstr "媒介 {new}:{title}(新媒介)"
#: ../root/edit/details/ReorderMediums.js:50
msgid ""
"Medium {new}: {title} (moved from position {old})"
msgstr ""
+"媒介 {new}:{title}(从位置 {old} 移动)"
#: ../root/edit/details/ReorderMediums.js:58
msgid "Medium {new} (new medium)"
-msgstr ""
+msgstr "媒介 {new}(新媒介)"
#: ../root/edit/details/ReorderMediums.js:61
msgid ""
-"Medium {new} (moved from position {old})"
+"Medium {new} (moved from position {old})"
msgstr ""
+"媒介 {new}(从位置 {old}"
+"span> 移动)"
#: ../root/edit/details/ReorderRelationships.js:21
msgid "Old Order"
-msgstr ""
+msgstr "旧顺序"
#: ../root/edit/details/ReorderRelationships.js:22
msgid "New Order"
-msgstr ""
+msgstr "新顺序"
#: ../root/edit/details/SetCoverArt.js:37
msgid "Old cover art:"
-msgstr ""
+msgstr "旧封面:"
#: ../root/edit/details/SetCoverArt.js:58
msgid ""
"The old image was selected automatically from the earliest release in the "
"release group."
-msgstr ""
+msgstr "旧图像是从专辑组中最早的专辑版本中自动选择的。"
#: ../root/edit/details/SetCoverArt.js:60
#: ../root/edit/details/SetCoverArt.js:85
msgid "We are unable to display this cover art."
-msgstr ""
+msgstr "无法显示此封面图片。"
#: ../root/edit/details/SetCoverArt.js:65
msgid "New cover art:"
-msgstr ""
+msgstr "新封面图片:"
#: ../root/edit/details/SetTrackLengths.js:63
msgid "Track lengths:"
-msgstr ""
+msgstr "音轨长度"
#: ../root/edit/details/SetTrackLengths.js:76
msgid "This edit makes subsecond changes to track lengths"
@@ -9250,101 +9318,90 @@ msgstr ""
#: ../root/edit/details/historic/AddDiscId.js:23
msgid "CD TOC:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelationship.js:20
-#: ../root/edit/details/historic/RemoveRelationship.js:22
-msgid "Relationships:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:116
-msgid "Release Events:"
-msgstr ""
-
-#: ../root/edit/details/historic/AddRelease.js:124
-#: ../root/report/hooks/useCatNoColumn.js:26
-msgid "Catalog Number"
-msgstr "编号"
+msgstr "CD 目录:"
#: ../root/edit/details/historic/AddTrackKV.js:49
#: ../root/edit/details/historic/AddTrackOld.js:34
#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
msgid "Track number"
-msgstr ""
+msgstr "音轨号"
#: ../root/edit/details/historic/AddTrackOld.js:28
msgid "Artist name:"
-msgstr ""
-
-#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
-#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
-msgid "Release group:"
-msgstr ""
+msgstr "艺术家名称:"
#: ../root/edit/details/historic/EditRelationship.js:53
msgid "Old relationships:"
-msgstr ""
+msgstr "旧关联:"
#: ../root/edit/details/historic/EditRelationship.js:125
msgid "New relationships:"
-msgstr ""
+msgstr "新关联:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:34
-#: ../root/edit/details/historic/EditReleaseLanguage.js:20
-msgid "Old:"
+msgctxt "release type and status"
+msgid "Old"
msgstr ""
#: ../root/edit/details/historic/EditReleaseAttributes.js:41
msgid "Type: {type}, status: {status}"
-msgstr ""
+msgstr "类型:{type},状态:{status}"
#: ../root/edit/details/historic/EditReleaseAttributes.js:60
msgid "New Type:"
-msgstr ""
+msgstr "新类型:"
#: ../root/edit/details/historic/EditReleaseAttributes.js:67
msgid "New Status:"
-msgstr ""
+msgstr "新状态:"
#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
msgid "Added"
-msgstr "已添加"
+msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:135
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
msgid "Removed"
msgstr ""
-#: ../root/edit/details/historic/EditReleaseEvents.js:149
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
msgid "Edited"
msgstr ""
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
#: ../root/edit/details/historic/EditReleaseLanguage.js:27
msgid "Language: {language}, script: {script}"
-msgstr ""
+msgstr "语言:{language},文字:{script}"
#: ../root/edit/details/historic/EditReleaseLanguage.js:48
msgid "New language:"
-msgstr ""
+msgstr "新语言:"
#: ../root/edit/details/historic/EditReleaseLanguage.js:57
msgid "New script:"
-msgstr ""
+msgstr "新脚本:"
#: ../root/edit/details/historic/MergeReleases.js:22
msgid "Old releases:"
-msgstr ""
+msgstr "旧专辑:"
#: ../root/edit/details/historic/MergeReleases.js:34
msgid "New releases:"
-msgstr ""
+msgstr "新专辑:"
#: ../root/edit/details/historic/MergeReleases.js:46
msgid "Merge attributes:"
-msgstr ""
+msgstr "合并属性:"
#: ../root/edit/details/historic/MergeReleases.js:50
msgid "Merge language & script:"
-msgstr ""
+msgstr "合并语言 & 文字:"
#: ../root/edit/details/historic/MergeReleases.js:57
msgid ""
@@ -9354,30 +9411,26 @@ msgstr ""
#: ../root/edit/details/historic/MoveRelease.js:26
msgid "Change track artists:"
-msgstr ""
-
-#: ../root/edit/details/historic/RemoveLabelAlias.js:17
-msgid "Alias:"
-msgstr "别名:"
-
-#: ../root/edit/details/historic/RemoveTrack.js:23
-msgid "Track:"
-msgstr ""
+msgstr "变更音轨艺术家:"
#: ../root/elections/ElectionDetails.js:32
-msgid "Candidate:"
-msgstr ""
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr "候选人"
#: ../root/elections/ElectionDetails.js:36
-msgid "Proposer:"
-msgstr ""
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr "提案人"
#: ../root/elections/ElectionDetails.js:40
-msgid "1st seconder:"
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:48
-msgid "2nd seconder:"
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
msgstr ""
#: ../root/elections/ElectionDetails.js:59
@@ -9385,11 +9438,13 @@ msgid "Total votes"
msgstr ""
#: ../root/elections/ElectionDetails.js:63
-msgid "Votes for:"
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
msgstr ""
#: ../root/elections/ElectionDetails.js:67
-msgid "Votes against:"
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
msgstr ""
#: ../root/elections/ElectionDetails.js:71
@@ -9406,46 +9461,18 @@ msgid ""
msgstr ""
#: ../root/elections/ElectionDetails.js:89
-msgctxt "election status"
-msgid "Status:"
-msgstr ""
-
-#: ../root/elections/ElectionTable/ElectionTableRows.js:60
-msgid "View details"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:22
-msgid "Candidate"
-msgstr ""
-
#: ../root/elections/ElectionTable/index.js:23
msgctxt "election status"
msgid "Status"
msgstr "状态"
+#: ../root/elections/ElectionTable/ElectionTableRows.js:60
+msgid "View details"
+msgstr "查看详情"
+
#: ../root/elections/ElectionTable/index.js:24
msgid "Start date"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:26
-msgid "Proposer"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:27
-msgid "Seconder 1"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:28
-msgid "Seconder 2"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:29
-msgid "Votes for"
-msgstr ""
-
-#: ../root/elections/ElectionTable/index.js:30
-msgid "Votes against"
-msgstr ""
+msgstr "开始日期"
#: ../root/elections/ElectionVotes.js:27
msgid "Vote"
@@ -9453,15 +9480,15 @@ msgstr "投票"
#: ../root/elections/ElectionVotes.js:38
msgid "(private)"
-msgstr ""
+msgstr "(私人的)"
#: ../root/elections/ElectionVoting.js:27
msgid "To find out if you can vote for this candidate, please {url|log in}."
-msgstr ""
+msgstr "要想知道是否可以为此候选人投票,请 {url|登录}。"
#: ../root/elections/ElectionVoting.js:36
msgid "You cannot vote for this candidate, because you are not an auto-editor."
-msgstr ""
+msgstr "无法为此候选人投票,因为您不是自动确认编辑者。"
#: ../root/elections/ElectionVoting.js:41
msgid ""
@@ -9478,11 +9505,11 @@ msgstr ""
#: ../root/elections/ElectionVoting.js:53
msgid "Voting is closed."
-msgstr ""
+msgstr "投票已关闭。"
#: ../root/elections/ElectionVoting.js:68
msgid "Second this candidate"
-msgstr ""
+msgstr "附议此候选人"
#: ../root/elections/ElectionVoting.js:80
msgid "Your current vote: {vote}"
@@ -9498,36 +9525,36 @@ msgstr "投反对票"
#: ../root/elections/ElectionVoting.js:94
msgid "Abstain"
-msgstr ""
+msgstr "放弃"
#: ../root/elections/ElectionVoting.js:111
msgid "Cancel the election"
-msgstr ""
+msgstr "取消选举"
#: ../root/elections/Index.js:19 ../root/elections/Index.js:20
msgid "Auto-editor elections"
-msgstr ""
+msgstr "自动确认编辑者选举"
#: ../root/elections/Index.js:23
msgid "No elections found."
-msgstr ""
+msgstr "未找到选举。"
#: ../root/elections/Nominate.js:25
msgid ""
"Are you sure you want to nominate the editor {editor} for auto-editor status?"
-msgstr ""
+msgstr "你确定要提名编辑者 {editor} 为自动确认编辑者吗?"
#: ../root/elections/Nominate.js:29
msgid "Nominate a candidate for auto-editor"
-msgstr ""
+msgstr "提名一位候选人为自动确认编辑者"
#: ../root/elections/Show.js:24
msgid "Auto-editor election #{no}"
-msgstr ""
+msgstr "自动确认编辑者选举 #{no}"
#: ../root/elections/Show.js:29
msgid "Back to elections"
-msgstr ""
+msgstr "返回选举"
#: ../root/elections/Show.js:34
msgid "Votes cast"
@@ -9540,16 +9567,16 @@ msgstr ""
#: ../root/entity/Collections.js:40
msgid "{entity} has been added to {num} collection:"
msgid_plural "{entity} has been added to {num} collections:"
-msgstr[0] ""
+msgstr[0] "{entity} 已加入 {num} 个收藏:"
#: ../root/entity/Collections.js:50
msgid "{collection} by {owner}"
-msgstr ""
+msgstr "{owner} 的 {collection}"
#: ../root/entity/Collections.js:62
msgid "plus {n} other private collection"
msgid_plural "plus {n} other private collections"
-msgstr[0] ""
+msgstr[0] "以及 {n} 个其他私有收藏"
#: ../root/entity/Collections.js:71
msgid "A private collection"
@@ -9558,15 +9585,15 @@ msgstr[0] "{n} 个私有收藏集"
#: ../root/entity/Collections.js:83
msgid "{entity} has not been added to any collections."
-msgstr ""
+msgstr "{entity} 未加入任何收藏。"
#: ../root/entity/Details.js:103
msgid "{mbid|MBID}:"
-msgstr ""
+msgstr "{mbid|MBID}:"
#: ../root/entity/Details.js:109 ../root/report/components/InstrumentList.js:69
msgid "Last updated"
-msgstr ""
+msgstr "上次更新"
#: ../root/entity/Details.js:113
msgctxt "last updated"
@@ -9575,31 +9602,31 @@ msgstr "(未知)"
#: ../root/entity/Details.js:117
msgid "Permanent link:"
-msgstr ""
+msgstr "永久链接:"
#: ../root/entity/Details.js:125
msgid "{xml_ws_docs|XML}"
-msgstr ""
+msgstr "{xml_ws_docs|XML}"
#: ../root/entity/Details.js:141
msgid "{json_ws_docs|JSON}"
-msgstr ""
+msgstr "{json_ws_docs|JSON}"
#: ../root/entity/Edits.js:53 ../root/entity/Edits.js:57
msgid "Open Edits for {name}"
-msgstr ""
+msgstr "{name} 的待审核编辑"
#: ../root/entity/Edits.js:54 ../root/entity/Edits.js:58
msgid "Edits for {name}"
-msgstr ""
+msgstr "对 {name} 的编辑"
#: ../root/entity/Edits.js:70
msgid "{entity_type} by {artist}"
-msgstr ""
+msgstr "{artist} 的 {entity_type}"
#: ../root/entity/NotFound.js:19
msgid "Area Not Found"
-msgstr ""
+msgstr "未找到地区"
#: ../root/entity/NotFound.js:21
msgid ""
@@ -9609,7 +9636,7 @@ msgstr ""
#: ../root/entity/NotFound.js:28
msgid "Artist Not Found"
-msgstr ""
+msgstr "未找到艺术家"
#: ../root/entity/NotFound.js:30
msgid ""
@@ -9619,7 +9646,7 @@ msgstr ""
#: ../root/entity/NotFound.js:37
msgid "Artist Credit Not Found"
-msgstr ""
+msgstr "未找到艺术家名单"
#: ../root/entity/NotFound.js:38
msgid "Sorry, we could not find an artist credit with that ID."
@@ -9627,15 +9654,15 @@ msgstr ""
#: ../root/entity/NotFound.js:43
msgid "CD TOC Not Found"
-msgstr ""
+msgstr "未找到 CD 目录"
#: ../root/entity/NotFound.js:44
msgid "Sorry, we could not find the CD TOC you specified."
-msgstr ""
+msgstr "抱歉,无法找到指定的 CD 目录。"
#: ../root/entity/NotFound.js:49
msgid "Collection Not Found"
-msgstr ""
+msgstr "未找到收藏"
#: ../root/entity/NotFound.js:51
msgid "Sorry, we could not find a collection with that MusicBrainz ID."
@@ -9643,7 +9670,7 @@ msgstr ""
#: ../root/entity/NotFound.js:57
msgid "Edit Not Found"
-msgstr ""
+msgstr "未找到编辑"
#: ../root/entity/NotFound.js:59
msgid ""
@@ -9653,19 +9680,19 @@ msgstr ""
#: ../root/entity/NotFound.js:66
msgid "Election Not Found"
-msgstr ""
+msgstr "未找到选举"
#: ../root/entity/NotFound.js:67
msgid "Sorry, we could not find this election."
-msgstr ""
+msgstr "抱歉,无法找到此选举。"
#: ../root/entity/NotFound.js:69
msgid "Back to all elections."
-msgstr ""
+msgstr "返回所有选举。"
#: ../root/entity/NotFound.js:72
msgid "Event Not Found"
-msgstr "未找到活动"
+msgstr "未找到事件"
#: ../root/entity/NotFound.js:74
msgid ""
@@ -9675,7 +9702,7 @@ msgstr ""
#: ../root/entity/NotFound.js:81
msgid "Genre Not Found"
-msgstr ""
+msgstr "未找到流派"
#: ../root/entity/NotFound.js:83
msgid ""
@@ -9685,7 +9712,7 @@ msgstr ""
#: ../root/entity/NotFound.js:90
msgid "Instrument Not Found"
-msgstr ""
+msgstr "未找到乐器"
#: ../root/entity/NotFound.js:92
msgid ""
@@ -9695,27 +9722,31 @@ msgstr ""
#: ../root/entity/NotFound.js:99
msgid "ISRC Not Currently Used"
-msgstr ""
+msgstr "未被使用的 ISRC"
#: ../root/entity/NotFound.js:101
msgid ""
"This ISRC is not associated with any recordings. If you wish to associate it "
"with a recording, please {search_url|search for the recording} and add it."
msgstr ""
+"此 ISRC 没有关联任何录音。如果您想要将它与某录音关联,请 {search_url|搜索该录"
+"音} 并编辑。"
#: ../root/entity/NotFound.js:109
msgid "ISWC Not Currently Used"
-msgstr ""
+msgstr "未被使用的 ISWC"
#: ../root/entity/NotFound.js:111
msgid ""
"This ISWC is not associated with any works. If you wish to associate it with "
"a work, please {search_url|search for the work} and add it."
msgstr ""
+"此 ISWC 没有关联任何作品。如果您想要将它与某作品关联,请 {search_url|搜索该作"
+"品} 并编辑。"
#: ../root/entity/NotFound.js:118
msgid "Label Not Found"
-msgstr ""
+msgstr "未找到厂牌"
#: ../root/entity/NotFound.js:120
msgid ""
@@ -9725,7 +9756,7 @@ msgstr ""
#: ../root/entity/NotFound.js:127
msgid "Entity Not Found"
-msgstr ""
+msgstr "未找到实体"
#: ../root/entity/NotFound.js:129
msgid ""
@@ -9735,7 +9766,7 @@ msgstr ""
#: ../root/entity/NotFound.js:136
msgid "Place Not Found"
-msgstr ""
+msgstr "未找到地点"
#: ../root/entity/NotFound.js:138
msgid ""
@@ -9745,7 +9776,7 @@ msgstr ""
#: ../root/entity/NotFound.js:145
msgid "Recording Not Found"
-msgstr ""
+msgstr "未找到录音"
#: ../root/entity/NotFound.js:147
msgid ""
@@ -9755,7 +9786,7 @@ msgstr ""
#: ../root/entity/NotFound.js:154
msgid "Relationship Attribute Not Found"
-msgstr ""
+msgstr "未找到关联属性"
#: ../root/entity/NotFound.js:156
msgid ""
@@ -9764,7 +9795,7 @@ msgstr ""
#: ../root/entity/NotFound.js:163
msgid "Relationship Type Not Found"
-msgstr ""
+msgstr "未找到关联类型"
#: ../root/entity/NotFound.js:165
msgid "Sorry, we could not find a relationship type with that MusicBrainz ID."
@@ -9772,7 +9803,7 @@ msgstr ""
#: ../root/entity/NotFound.js:172
msgid "Release Not Found"
-msgstr ""
+msgstr "未找到专辑"
#: ../root/entity/NotFound.js:174
msgid ""
@@ -9782,7 +9813,7 @@ msgstr ""
#: ../root/entity/NotFound.js:181
msgid "Release Group Not Found"
-msgstr ""
+msgstr "未找到专辑组"
#: ../root/entity/NotFound.js:183
msgid ""
@@ -9792,7 +9823,7 @@ msgstr ""
#: ../root/entity/NotFound.js:190
msgid "Series Not Found"
-msgstr ""
+msgstr "未找到系列"
#: ../root/entity/NotFound.js:192
msgid ""
@@ -9802,7 +9833,7 @@ msgstr ""
#: ../root/entity/NotFound.js:199
msgid "Track Not Found"
-msgstr ""
+msgstr "未找到音轨"
#: ../root/entity/NotFound.js:201
msgid ""
@@ -9812,7 +9843,7 @@ msgstr ""
#: ../root/entity/NotFound.js:209
msgid "URL Not Found"
-msgstr ""
+msgstr "未找到 URL"
#: ../root/entity/NotFound.js:210
msgid "Sorry, we could not find a URL with that MusicBrainz ID."
@@ -9820,7 +9851,7 @@ msgstr ""
#: ../root/entity/NotFound.js:215
msgid "Editor Not Found"
-msgstr ""
+msgstr "未找到编辑者"
#: ../root/entity/NotFound.js:217
msgid ""
@@ -9830,7 +9861,7 @@ msgstr ""
#: ../root/entity/NotFound.js:224
msgid "Work Not Found"
-msgstr ""
+msgstr "未找到作品"
#: ../root/entity/NotFound.js:226
msgid ""
@@ -9841,23 +9872,23 @@ msgstr ""
#: ../root/entity/Ratings.js:68
msgid "{count} private rating not listed."
msgid_plural "{count} private ratings not listed."
-msgstr[0] ""
+msgstr[0] "有 {count} 个私有评分未列出。"
#: ../root/entity/Ratings.js:75
msgid "Average rating:"
-msgstr ""
+msgstr "平均评分:"
#: ../root/entity/Ratings.js:81
msgid "{link} has no ratings."
-msgstr ""
+msgstr "{link} 没有评分。"
#: ../root/entity/Ratings.js:97
msgid "Most Recent"
-msgstr ""
+msgstr "最近"
#: ../root/entity/Ratings.js:104
msgid "Most Popular"
-msgstr ""
+msgstr "最热门"
#: ../root/entity/Subscribers.js:57
msgid "This is a special purpose entity and does not support subscriptions."
@@ -9867,52 +9898,52 @@ msgstr ""
msgid "There is currently {num} user subscribed to edits that you make:"
msgid_plural ""
"There are currently {num} users subscribed to edits that you make:"
-msgstr[0] ""
+msgstr[0] "目前有 {num} 位用户订阅了您的编辑:"
#: ../root/entity/Subscribers.js:79
msgid "There is currently {num} user subscribed to edits that {user} makes:"
msgid_plural ""
"There are currently {num} users subscribed to edits that {user} makes:"
-msgstr[0] ""
+msgstr[0] "目前有 {num} 位用户订阅了 {user} 的编辑:"
#: ../root/entity/Subscribers.js:92
msgid "There is currently {num} user subscribed to {entity}:"
msgid_plural "There are currently {num} users subscribed to {entity}:"
-msgstr[0] ""
+msgstr[0] "目前有 {num} 位用户订阅了 {entity}:"
#: ../root/entity/Subscribers.js:111
msgid "Plus {n} other anonymous user"
msgid_plural "Plus {n} other anonymous users"
-msgstr[0] ""
+msgstr[0] "以及其他 {n} 个匿名用户"
#: ../root/entity/Subscribers.js:121
msgid "An anonymous user"
msgid_plural "{n} anonymous users"
-msgstr[0] ""
+msgstr[0] "{n} 个匿名用户"
#: ../root/entity/Subscribers.js:135
msgid "There are currently no users subscribed to edits that you make."
-msgstr ""
+msgstr "目前没有用户订阅您的编辑。"
#: ../root/entity/Subscribers.js:138
msgid "There are currently no users subscribed to edits that {user} makes."
-msgstr ""
+msgstr "目前没有用户订阅 {user} 的编辑。"
#: ../root/entity/Subscribers.js:143
msgid "There are currently no users subscribed to {entity}."
-msgstr ""
+msgstr "目前没有用户订阅 {entity}。"
#: ../root/entity/Subscribers.js:152
msgid "You are currently subscribed. {unsub|Unsubscribe}?"
-msgstr ""
+msgstr "您已订阅。{unsub|取消订阅}?"
#: ../root/entity/Subscribers.js:156
msgid "Be the first! {sub|Subscribe}?"
-msgstr ""
+msgstr "成为第一位!{sub|订阅}?"
#: ../root/entity/Subscribers.js:159
msgid "You are not currently subscribed. {sub|Subscribe}?"
-msgstr ""
+msgstr "您未订阅。{sub|订阅}?"
#: ../root/entity/alias/AddOrEditAlias.js:37
msgid "Add alias"
@@ -9920,19 +9951,19 @@ msgstr "添加别名"
#: ../root/entity/alias/AddOrEditAlias.js:38
msgid "Edit alias"
-msgstr ""
+msgstr "编辑别名"
#: ../root/entity/alias/DeleteAlias.js:31
msgid "Remove alias"
-msgstr ""
+msgstr "移除别名"
#: ../root/entity/alias/DeleteAlias.js:42
msgid "You're removing the alias {alias}."
-msgstr ""
+msgstr "您正在移除别名 {alias}。"
#: ../root/entity/alias/DeleteAlias.js:48
msgid "Please review the {doc|alias documentation} before entering this edit."
-msgstr ""
+msgstr "请在执行编辑前浏览 {doc|别名文档}。"
#: ../root/event/EventMerge.js:32
msgid ""
@@ -9942,34 +9973,34 @@ msgstr ""
#: ../root/genre/CreateGenre.js:24 ../root/genre/CreateGenre.js:26
msgid "Add a new genre"
-msgstr ""
+msgstr "添加新流派"
#: ../root/genre/DeleteGenre.js:35
msgid "Are you sure you want to remove the genre {genre}?"
-msgstr ""
+msgstr "您确定要移除流派 {genre} 吗?"
#: ../root/genre/GenreIndex.js:34
msgid "Genre information"
-msgstr ""
+msgstr "流派信息"
#: ../root/genre/GenreIndex.js:36
msgid "Associated tags"
-msgstr ""
+msgstr "关联的标签"
#: ../root/genre/GenreIndex.js:39
msgid "Primary tag"
-msgstr ""
+msgstr "主要标签"
#: ../root/genre/GenreListPage.js:20 ../root/genre/GenreListPage.js:22
#: ../root/layout/components/BottomMenu.js:324
msgid "Genre List"
-msgstr ""
+msgstr "流派列表"
#: ../root/genre/GenreListPage.js:25
msgid ""
"These are all the {genre_url|genres} currently available for use in "
"MusicBrainz."
-msgstr ""
+msgstr "这些是目前在 MusicBrainz 可用的所有 {genre_url|流派}。"
#: ../root/genre/GenreListPage.js:31
msgid ""
@@ -9979,22 +10010,22 @@ msgstr ""
#: ../root/genre/GenreListPage.js:42
msgid ""
"Is a genre missing from the list? Request it by {link|adding a style ticket}."
-msgstr ""
+msgstr "列表中缺少一种流派吗?通过{link|添加一个样式票}请求它。"
#: ../root/instrument/DeleteInstrument.js:34
#: ../root/instrument/DeleteInstrument.js:36
msgid "Remove Instrument"
-msgstr ""
+msgstr "移除乐器"
#: ../root/instrument/DeleteInstrument.js:49
msgid ""
"This instrument cannot be removed because there are still relationships "
"attributed to it."
-msgstr ""
+msgstr "此乐器无法被移除,因为仍有关联的属性在使用它。"
#: ../root/instrument/InstrumentArtists.js:67
msgid "No artists found."
-msgstr ""
+msgstr "没有找到艺术家。"
#: ../root/instrument/InstrumentMerge.js:32
msgid ""
@@ -10005,11 +10036,11 @@ msgstr ""
#: ../root/instrument/List.js:45 ../root/instrument/List.js:47
#: ../root/layout/components/BottomMenu.js:321
msgid "Instrument List"
-msgstr ""
+msgstr "乐器列表"
#: ../root/instrument/List.js:61 ../root/report/components/InstrumentList.js:55
msgid "Unclassified instrument"
-msgstr ""
+msgstr "未分类的乐器"
#: ../root/instrument/List.js:72
msgid ""
@@ -10019,25 +10050,25 @@ msgstr ""
#: ../root/isrc/Index.js:38 ../root/isrc/Index.js:42
msgid "ISRC “{isrc}”"
-msgstr ""
+msgstr "ISRC “{isrc}”"
#: ../root/isrc/Index.js:48
msgid "Associated with {num} recording"
msgid_plural "Associated with {num} recordings"
-msgstr[0] ""
+msgstr[0] "与 {num} 个录音关联"
#: ../root/iswc/Index.js:31 ../root/iswc/Index.js:34
msgid "ISWC “{iswc}”"
-msgstr ""
+msgstr "ISWC “{iswc}”"
#: ../root/iswc/Index.js:39
msgid "Associated with {num} work"
msgid_plural "Associated with {num} works"
-msgstr[0] ""
+msgstr[0] "与 {num} 个作品关联"
#: ../root/label/LabelIndex.js:101
msgid "This label does not have any releases."
-msgstr ""
+msgstr "此厂牌没有任何专辑。"
#: ../root/label/LabelMerge.js:32
msgid ""
@@ -10057,75 +10088,75 @@ msgstr ""
#: ../root/layout/components/BottomMenu.js:99
msgid "(reset language)"
-msgstr ""
+msgstr "(重置语言)"
#: ../root/layout/components/BottomMenu.js:104
msgid "Help Translate"
-msgstr ""
+msgstr "协助翻译"
#: ../root/layout/components/BottomMenu.js:115
msgid "About Us"
-msgstr ""
+msgstr "关于我们"
#: ../root/layout/components/BottomMenu.js:120
msgid "About MusicBrainz"
-msgstr ""
+msgstr "关于 MusicBrainz"
#: ../root/layout/components/BottomMenu.js:123
msgid "Sponsors"
-msgstr ""
+msgstr "赞助商"
#: ../root/layout/components/BottomMenu.js:126
msgid "Team"
-msgstr ""
+msgstr "团队"
#: ../root/layout/components/BottomMenu.js:129
msgid "Shop"
-msgstr ""
+msgstr "商店"
#: ../root/layout/components/BottomMenu.js:132
msgid "Contact Us"
-msgstr ""
+msgstr "联系我们"
#: ../root/layout/components/BottomMenu.js:135
msgid "Data Licenses"
-msgstr ""
+msgstr "数据协议"
#: ../root/layout/components/BottomMenu.js:138
msgid "Social Contract"
-msgstr ""
+msgstr "社会合同"
#: ../root/layout/components/BottomMenu.js:141
msgid "Code of Conduct"
-msgstr ""
+msgstr "行为准则"
#: ../root/layout/components/BottomMenu.js:144
msgid "Privacy Policy"
-msgstr ""
+msgstr "隐私政策"
#: ../root/layout/components/BottomMenu.js:147
msgid "GDPR Compliance"
-msgstr ""
+msgstr "GDPR 合规性"
#: ../root/layout/components/BottomMenu.js:150
msgid "Data Removal Policy"
-msgstr ""
+msgstr "数据移除政策"
#: ../root/layout/components/BottomMenu.js:153
msgid "Auto-editor Elections"
-msgstr ""
+msgstr "自动确认编辑者选举"
#: ../root/layout/components/BottomMenu.js:156
msgid "Privileged User Accounts"
-msgstr ""
+msgstr "特权用户账号"
-#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:570
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
msgid "Statistics"
-msgstr ""
+msgstr "统计"
#: ../root/layout/components/BottomMenu.js:162
msgid "Timeline Graph"
-msgstr ""
+msgstr "时间线图表"
#: ../root/layout/components/BottomMenu.js:165
msgid "MusicBrainz History"
@@ -10133,7 +10164,7 @@ msgstr ""
#: ../root/layout/components/BottomMenu.js:174
msgid "Products"
-msgstr ""
+msgstr "产品"
#: ../root/layout/components/BottomMenu.js:179 ../root/main/index.js:153
msgid "MusicBrainz Picard"
@@ -10141,7 +10172,7 @@ msgstr "MusicBrainz Picard"
#: ../root/layout/components/BottomMenu.js:182 ../root/main/index.js:157
msgid "AudioRanger"
-msgstr ""
+msgstr "AudioRanger"
#: ../root/layout/components/BottomMenu.js:185 ../root/main/index.js:160
msgid "Mp3tag"
@@ -10149,11 +10180,11 @@ msgstr "Mp3tag"
#: ../root/layout/components/BottomMenu.js:188 ../root/main/index.js:163
msgid "Yate Music Tagger"
-msgstr ""
+msgstr "Yate Music Tagger"
#: ../root/layout/components/BottomMenu.js:192
msgid "MusicBrainz for Android"
-msgstr ""
+msgstr "MusicBrainz 安卓版"
#: ../root/layout/components/BottomMenu.js:196
msgid "MusicBrainz Server"
@@ -10161,38 +10192,38 @@ msgstr "MusicBrainz 服务器"
#: ../root/layout/components/BottomMenu.js:199 ../root/main/index.js:218
msgid "MusicBrainz Database"
-msgstr ""
+msgstr "MusicBrainz 数据库"
#: ../root/layout/components/BottomMenu.js:202
msgid "Developer Resources"
-msgstr ""
+msgstr "开发者资源"
#: ../root/layout/components/BottomMenu.js:205
msgid "MusicBrainz API"
-msgstr ""
+msgstr "MusicBrainz API"
#: ../root/layout/components/BottomMenu.js:208
msgid "Live Data Feed"
-msgstr ""
+msgstr "实时数据馈送"
#: ../root/layout/components/BottomMenu.js:222
msgid "Advanced Search"
-msgstr ""
+msgstr "高级搜索"
#: ../root/layout/components/BottomMenu.js:225
msgid "Edit Search"
-msgstr ""
+msgstr "编辑搜索"
#: ../root/layout/components/BottomMenu.js:228
msgid "Tag Cloud"
-msgstr ""
+msgstr "标签云"
#: ../root/layout/components/BottomMenu.js:240
#: ../root/layout/components/sidebar/CollectionSidebar.js:72
#: ../root/layout/components/sidebar/EditLinks.js:31
#: ../root/static/scripts/account/components/PreferencesForm.js:242
msgid "Editing"
-msgstr ""
+msgstr "修改"
#: ../root/layout/components/BottomMenu.js:245
msgctxt "button/menu"
@@ -10202,16 +10233,16 @@ msgstr "添加艺术家"
#: ../root/layout/components/BottomMenu.js:252
msgctxt "button/menu"
msgid "Add Release Group"
-msgstr "添加专辑组"
+msgstr "添加发行团"
#: ../root/layout/components/BottomMenu.js:256
msgctxt "button/menu"
msgid "Add Release"
-msgstr "添加专辑"
+msgstr "添加发行版"
#: ../root/layout/components/BottomMenu.js:260
msgid "Add Various Artists Release"
-msgstr ""
+msgstr "添加群星的发行专辑"
#: ../root/layout/components/BottomMenu.js:265
msgctxt "button/menu"
@@ -10236,72 +10267,72 @@ msgstr "添加系列"
#: ../root/layout/components/BottomMenu.js:278
msgctxt "button/menu"
msgid "Add Event"
-msgstr "添加活动"
+msgstr "添加事件"
#: ../root/layout/components/BottomMenu.js:281
msgid "Vote on Edits"
-msgstr ""
+msgstr "为编辑投票"
#: ../root/layout/components/BottomMenu.js:284
#: ../root/report/ReportsIndex.js:39 ../root/report/ReportsIndex.js:41
msgid "Reports"
-msgstr ""
+msgstr "报告"
#: ../root/layout/components/BottomMenu.js:298
msgid "Beginners Guide"
-msgstr ""
+msgstr "新手指南"
#: ../root/layout/components/BottomMenu.js:301
msgid "Style Guidelines"
-msgstr ""
+msgstr "风格指南"
#: ../root/layout/components/BottomMenu.js:304
msgid "How Tos"
-msgstr ""
+msgstr "教学"
#: ../root/layout/components/BottomMenu.js:307 ../root/main/index.js:183
msgid "FAQs"
-msgstr ""
+msgstr "常见问题"
#: ../root/layout/components/BottomMenu.js:311
msgid "Documentation Index"
-msgstr ""
+msgstr "文档索引"
#: ../root/layout/components/BottomMenu.js:318
#: ../root/relationship/RelationshipsHeader.js:17
#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
#: ../root/relationship/linktype/RelationshipTypesList.js:60
-#: ../root/utility/tableColumns.js:368
+#: ../root/utility/tableColumns.js:373
msgid "Relationship Types"
-msgstr ""
+msgstr "关联类型"
#: ../root/layout/components/BottomMenu.js:327
msgid "Development"
-msgstr ""
+msgstr "开发"
#: ../root/layout/components/ExternalLinks.js:56
msgid "{url} (as {credited_name})"
-msgstr ""
+msgstr "{url}(作为 {credited_name})"
#: ../root/layout/components/ExternalLinks.js:121
msgid "Official homepage"
-msgstr ""
+msgstr "官方主页"
#: ../root/layout/components/ExternalLinks.js:170
msgid "External links"
-msgstr ""
+msgstr "外部链接"
#: ../root/layout/components/ExternalLinks.js:177
msgid "View all relationships"
-msgstr ""
+msgstr "浏览所有关联"
#: ../root/layout/components/Footer.js:30
msgid "Chat (IRC)"
-msgstr ""
+msgstr "聊天(IRC)"
#: ../root/layout/components/Footer.js:66
msgid "Running: {git_details}"
-msgstr ""
+msgstr "正在运行:{git_details}"
#: ../root/layout/components/Head.js:49
msgid "Page {n}"
@@ -10309,19 +10340,19 @@ msgstr "第 {n} 页"
#: ../root/layout/components/Head.js:105
msgid "MusicBrainz: Artist"
-msgstr ""
+msgstr "MusicBrainz: 艺术家"
#: ../root/layout/components/Head.js:111
msgid "MusicBrainz: Label"
-msgstr ""
+msgstr "MusicBrainz: 厂牌"
#: ../root/layout/components/Head.js:117
msgid "MusicBrainz: Release"
-msgstr ""
+msgstr "MusicBrainz: 专辑"
#: ../root/layout/components/Head.js:123
msgid "MusicBrainz: Track"
-msgstr ""
+msgstr "MusicBrainz:音轨"
#: ../root/layout/components/TopMenu.js:68
msgid "Log Out"
@@ -10329,7 +10360,7 @@ msgstr "注销"
#: ../root/layout/components/TopMenu.js:82
msgid "My Data"
-msgstr ""
+msgstr "我的数据"
#: ../root/layout/components/TopMenu.js:88
msgid "My Collections"
@@ -10345,23 +10376,23 @@ msgstr "我的标签"
#: ../root/layout/components/TopMenu.js:98
msgid "My Open Edits"
-msgstr ""
+msgstr "我的待审核编辑"
#: ../root/layout/components/TopMenu.js:101
msgid "All My Edits"
-msgstr ""
+msgstr "所有我的修改"
#: ../root/layout/components/TopMenu.js:104
msgid "Edits for Subscribed Entities"
-msgstr ""
+msgstr "已订阅实体上的编辑"
#: ../root/layout/components/TopMenu.js:108
msgid "Edits by Subscribed Editors"
-msgstr ""
+msgstr "已订阅编辑者的编辑"
#: ../root/layout/components/TopMenu.js:112
msgid "Notes Left on My Edits"
-msgstr ""
+msgstr "我的编辑收到的备注"
#: ../root/layout/components/TopMenu.js:122
msgid "Admin"
@@ -10380,11 +10411,11 @@ msgstr "添加乐器"
#: ../root/layout/components/TopMenu.js:140
msgctxt "button/menu"
msgid "Add Genre"
-msgstr ""
+msgstr "添加流派"
#: ../root/layout/components/TopMenu.js:143
msgid "Edit Relationship Types"
-msgstr ""
+msgstr "编辑关联类型"
#: ../root/layout/components/TopMenu.js:150
msgid "Transclude WikiDocs"
@@ -10393,19 +10424,19 @@ msgstr ""
#: ../root/layout/components/TopMenu.js:163
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:233
msgid "Edit Attributes"
-msgstr ""
+msgstr "编辑属性"
#: ../root/layout/components/TopMenu.js:167
msgid "Edit Statistics Events"
-msgstr ""
+msgstr "编辑统计事件"
#: ../root/layout/components/TopMenu.js:171
msgid "Email Search"
-msgstr ""
+msgstr "搜索电子邮件"
#: ../root/layout/components/TopMenu.js:174
msgid "Privilege Search"
-msgstr ""
+msgstr "权限搜索"
#: ../root/layout/components/TopMenu.js:178
msgid "Locked Username Search"
@@ -10419,208 +10450,202 @@ msgstr "登录"
#: ../root/layout/components/TopMenu.js:204
#: ../root/static/scripts/account/components/RegisterForm.js:131
msgid "Create Account"
-msgstr ""
+msgstr "注册账号"
#: ../root/layout/components/sidebar/AnnotationLinks.js:38
msgid "Add annotation"
-msgstr ""
+msgstr "添加注释"
#: ../root/layout/components/sidebar/AnnotationLinks.js:44
#: ../root/static/scripts/common/components/Annotation.js:91
msgid "View annotation history"
-msgstr ""
+msgstr "浏览注释历史"
#: ../root/layout/components/sidebar/AreaSidebar.js:49
msgid "Area information"
-msgstr ""
+msgstr "地区信息"
#: ../root/layout/components/sidebar/ArtistSidebar.js:71
msgid "Artist information"
-msgstr ""
+msgstr "艺术家信息"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:151
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
msgid "Add recording"
-msgstr ""
+msgstr "添加录音"
-#: ../root/layout/components/sidebar/ArtistSidebar.js:169
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
msgid "Split into separate artists"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:46
-msgid "Added:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/CDStubSidebar.js:50
-msgid "Last modified:"
-msgstr ""
+msgstr "分割为不同艺术家"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:54
-msgid "Lookup count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:58
-msgid "Modify count:"
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
msgstr ""
-#: ../root/layout/components/sidebar/CDStubSidebar.js:73
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
msgid "Import as MusicBrainz release"
-msgstr ""
+msgstr "导入为 MusicBrainz 专辑"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:80
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
msgid "Add disc ID to an existing release"
-msgstr ""
+msgstr "添加唱片 ID 到现有专辑"
-#: ../root/layout/components/sidebar/CDStubSidebar.js:89
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
msgid "Search the database for this CD"
-msgstr ""
+msgstr "在数据库中查找此 CD"
#: ../root/layout/components/sidebar/CollectionLinks.js:23
msgid "You have no area collections!"
-msgstr ""
+msgstr "你没有地区收藏!"
#: ../root/layout/components/sidebar/CollectionLinks.js:24
msgid "You have no artist collections!"
-msgstr ""
+msgstr "你没有艺术家收藏!"
#: ../root/layout/components/sidebar/CollectionLinks.js:25
msgid "You have no event collections!"
-msgstr ""
+msgstr "你没有活动收藏!"
#: ../root/layout/components/sidebar/CollectionLinks.js:26
msgid "You have no instrument collections!"
-msgstr ""
+msgstr "你没有乐器收藏!"
#: ../root/layout/components/sidebar/CollectionLinks.js:27
msgid "You have no label collections!"
-msgstr ""
+msgstr "你没有厂牌收藏!"
#: ../root/layout/components/sidebar/CollectionLinks.js:28
msgid "You have no place collections!"
-msgstr ""
+msgstr "你没有地点收藏!"
#: ../root/layout/components/sidebar/CollectionLinks.js:29
msgid "You have no recording collections!"
-msgstr ""
+msgstr "你没有录音收藏!"
#: ../root/layout/components/sidebar/CollectionLinks.js:30
msgid "You have no release collections!"
-msgstr ""
+msgstr "你没有专辑收藏!"
#: ../root/layout/components/sidebar/CollectionLinks.js:31
msgid "You have no release group collections!"
-msgstr ""
+msgstr "你没有专辑组收藏!"
#: ../root/layout/components/sidebar/CollectionLinks.js:32
msgid "You have no series collections!"
-msgstr ""
+msgstr "你没有系列收藏!"
#: ../root/layout/components/sidebar/CollectionLinks.js:33
msgid "You have no work collections!"
-msgstr ""
+msgstr "你没有作品收藏!"
#: ../root/layout/components/sidebar/CollectionLinks.js:44
msgid "Add to a new collection"
-msgstr ""
+msgstr "添加到一个新歌曲集"
#: ../root/layout/components/sidebar/CollectionLinks.js:46
#: ../root/user/UserCollections.js:203
msgid "Collaborative collections"
-msgstr ""
+msgstr "合作编辑收藏"
#: ../root/layout/components/sidebar/CollectionLinks.js:50
#: ../root/user/UserCollections.js:182
msgid "My collections"
-msgstr ""
+msgstr "我的收藏"
#: ../root/layout/components/sidebar/CollectionLinks.js:57
msgid "Found in {num} user collection"
msgid_plural "Found in {num} user collections"
-msgstr[0] ""
+msgstr[0] "在 {num} 位用户的收藏中"
#: ../root/layout/components/sidebar/CollectionLinks.js:66
msgid "Other collections"
-msgstr ""
+msgstr "其他收藏"
#: ../root/layout/components/sidebar/CollectionList.js:86
msgid "Remove from {collection}"
-msgstr ""
+msgstr "从 {collection} 移除"
#: ../root/layout/components/sidebar/CollectionList.js:91
msgid "Add to {collection}"
-msgstr ""
+msgstr "添加到 {collection}"
#: ../root/layout/components/sidebar/CollectionSidebar.js:50
msgid "Collection information"
-msgstr ""
+msgstr "收藏信息"
#: ../root/layout/components/sidebar/CollectionSidebar.js:54
msgid "Owner:"
-msgstr ""
+msgstr "所有者:"
#: ../root/layout/components/sidebar/CollectionSidebar.js:66
msgid "Number of entities"
-msgstr ""
+msgstr "实体数量"
#: ../root/layout/components/sidebar/CollectionSidebar.js:84
#: ../root/layout/components/sidebar/EditLinks.js:50
msgid "Editing history"
-msgstr ""
+msgstr "编辑历史"
#: ../root/layout/components/sidebar/CollectionSidebar.js:107
#: ../root/layout/components/sidebar/SubscriptionLinks.js:42
#: ../root/user/UserSubscriptions.js:91
msgid "Unsubscribe"
-msgstr ""
+msgstr "取消订阅"
#: ../root/layout/components/sidebar/CollectionSidebar.js:119
#: ../root/layout/components/sidebar/SubscriptionLinks.js:52
msgid "Subscribe"
-msgstr ""
+msgstr "订阅"
#: ../root/layout/components/sidebar/EditLinks.js:36
msgid "Log in to edit"
-msgstr ""
+msgstr "登录以编辑"
#: ../root/layout/components/sidebar/EventSidebar.js:51
msgid "Event information"
-msgstr ""
+msgstr "事件信息"
-#: ../root/layout/components/sidebar/EventSidebar.js:62
+#: ../root/layout/components/sidebar/EventSidebar.js:65
msgid "Start Date:"
-msgstr ""
+msgstr "开始日期:"
-#: ../root/layout/components/sidebar/EventSidebar.js:63
+#: ../root/layout/components/sidebar/EventSidebar.js:66
msgid "End Date:"
-msgstr ""
+msgstr "结束日期:"
#: ../root/layout/components/sidebar/InstrumentSidebar.js:51
msgid "Instrument information"
-msgstr ""
+msgstr "乐器信息"
#: ../root/layout/components/sidebar/LabelSidebar.js:58
msgid "Label information"
-msgstr ""
+msgstr "厂牌信息"
#: ../root/layout/components/sidebar/LabelSidebar.js:67
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:73
msgid "Founded:"
-msgstr ""
+msgstr "成立时间:"
#: ../root/layout/components/sidebar/LabelSidebar.js:73
msgid "Defunct:"
-msgstr ""
+msgstr "已停用:"
#: ../root/layout/components/sidebar/LastUpdated.js:23
msgid "Last updated on {date}"
-msgstr ""
+msgstr "上次更新于 {date}"
#: ../root/layout/components/sidebar/LastUpdated.js:28
msgid "Last updated on an unknown date"
-msgstr ""
+msgstr "上次更新于未知日期"
#: ../root/layout/components/sidebar/PlaceSidebar.js:55
msgid "Place information"
-msgstr ""
+msgstr "地点信息"
#: ../root/layout/components/sidebar/PlaceSidebar.js:66
msgctxt "place"
@@ -10640,35 +10665,31 @@ msgstr ""
#: ../root/layout/components/sidebar/PlaceSidebar.js:77
msgctxt "place"
msgid "Closed"
-msgstr ""
-
-#: ../root/layout/components/sidebar/PlaceSidebar.js:94
-msgid "Coordinates:"
-msgstr ""
+msgstr "已关闭"
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
msgid "ListenBrainz"
-msgstr ""
+msgstr "ListenBrainz"
#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:64
msgid "Play on ListenBrainz"
-msgstr ""
+msgstr "在 ListenBrainz 播放"
#: ../root/layout/components/sidebar/RecordingSidebar.js:45
msgid "Recording information"
-msgstr ""
+msgstr "录音信息"
-#: ../root/layout/components/sidebar/RecordingSidebar.js:62
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
msgid "First release year"
-msgstr ""
+msgstr "初次发行年份"
#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:56
msgid "Release group information"
-msgstr ""
+msgstr "专辑组信息"
#: ../root/layout/components/sidebar/ReleaseSidebar.js:90
msgid "Front cover image failed to load correctly.
{all|View all artwork}."
-msgstr ""
+msgstr "无法正常加载正面封面图片。
{all|浏览所有图片}。"
#: ../root/layout/components/sidebar/ReleaseSidebar.js:96
#: ../root/release/CoverArt.js:69
@@ -10679,51 +10700,43 @@ msgstr ""
#: ../root/layout/components/sidebar/ReleaseSidebar.js:102
msgid "No front cover image available."
-msgstr ""
+msgstr "无可用的正面封面图片。"
#: ../root/layout/components/sidebar/ReleaseSidebar.js:105
msgid "View all artwork"
-msgstr ""
+msgstr "浏览所有图片"
#: ../root/layout/components/sidebar/ReleaseSidebar.js:108
msgid "No cover art available."
-msgstr ""
+msgstr "无可用的封面图片。"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:145
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
msgid "Additional details"
-msgstr ""
+msgstr "补充细节"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:241
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
msgid "Release group rating"
-msgstr ""
+msgstr "专辑组评分"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:247
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
msgid "Release group reviews"
-msgstr ""
+msgstr "专辑组评论"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:262
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
msgid "Release group external links"
-msgstr ""
+msgstr "专辑组外部链接"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:268
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
msgid "Edit relationships"
-msgstr ""
+msgstr "编辑关联"
-#: ../root/layout/components/sidebar/ReleaseSidebar.js:274
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
msgid "Change data quality"
-msgstr ""
+msgstr "更改数据质量"
#: ../root/layout/components/sidebar/SeriesSidebar.js:45
msgid "Series information"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIpis.js:18
-msgid "IPI code:"
-msgstr ""
-
-#: ../root/layout/components/sidebar/SidebarIsnis.js:22
-msgid "ISNI code:"
-msgstr ""
+msgstr "系列信息"
#: ../root/layout/components/sidebar/SidebarLicenses.js:141
msgid "License"
@@ -10731,13 +10744,13 @@ msgstr "许可协议"
#: ../root/layout/components/sidebar/SidebarRating.js:27
#: ../root/static/scripts/release/components/MediumTable.js:88
-#: ../root/utility/tableColumns.js:461
+#: ../root/utility/tableColumns.js:466
msgid "Rating"
msgstr "评分"
#: ../root/layout/components/sidebar/SidebarRating.js:35
msgid "see all ratings"
-msgstr ""
+msgstr "查看所有评分"
#: ../root/layout/components/sidebar/SidebarTags.js:51
#: ../root/static/scripts/common/components/TagEditor.js:673
@@ -10764,23 +10777,23 @@ msgstr "流派"
#: ../root/static/scripts/common/components/TagEditor.js:676
#: ../root/tag/TagCloud.js:125 ../root/user/UserTagList.js:97
msgid "Other tags"
-msgstr ""
+msgstr "其他标签"
#: ../root/layout/components/sidebar/SidebarTags.js:103
msgid "See all tags"
-msgstr ""
+msgstr "查看所有标签"
#: ../root/layout/components/sidebar/WorkSidebar.js:60
msgid "Work information"
-msgstr ""
+msgstr "作品信息"
#: ../root/layout/components/sidebar/WorkSidebar.js:96
msgid "Work attributes"
-msgstr ""
+msgstr "作品属性"
#: ../root/layout/index.js:38
msgid "Birthday cakes"
-msgstr ""
+msgstr "生日蛋糕"
#: ../root/layout/index.js:87
msgid ""
@@ -10790,20 +10803,22 @@ msgid_plural ""
"You’ve been a MusicBrainz editor for {num} years! Happy anniversary, and "
"thanks for contributing to MusicBrainz!"
msgstr[0] ""
+"您成为 MusicBrainz 编辑者已经 {num} 年了!周年快乐,感谢您对 MusicBrainz 的贡"
+"献!"
#: ../root/layout/index.js:257
msgid "Happy birthday, and thanks for contributing to MusicBrainz!"
-msgstr ""
+msgstr "生日快乐,感谢您对 MusicBrainz 的贡献!"
#: ../root/main/ConfirmSeed.js:31
msgid "Confirm Form Submission"
-msgstr ""
+msgstr "确认提交"
#: ../root/main/ConfirmSeed.js:48
msgid ""
"You are about to submit a request to {action} originating from {origin}. "
"Continue?"
-msgstr ""
+msgstr "你将要向{action}提交一个来自{origin}的请求。继续吗?"
#: ../root/main/ConfirmSeed.js:57
msgid ""
@@ -10811,14 +10826,16 @@ msgid ""
"your account to modify data without your knowledge. Below this line, you can "
"review the data being sent and make any modifications if desired."
msgstr ""
+"这种确认对于确保任何恶意行为者可以在您不知情的情况下使用您的帐户修改数据非常"
+"重要。在这行代码下面,您可以查看正在发送的数据,并根据需要进行任何修改。"
#: ../root/main/error/Error400.js:26
msgid "Bad Request"
-msgstr ""
+msgstr "请求错误"
#: ../root/main/error/Error400.js:29
msgid "Sorry, there was a problem with your request."
-msgstr ""
+msgstr "抱歉,您的请求存在问题。"
#: ../root/main/error/Error400.js:44
msgid ""
@@ -10828,15 +10845,15 @@ msgstr ""
#: ../root/main/error/Error400.js:52 ../root/main/error/TimeoutError.js:37
msgid "Technical Information"
-msgstr ""
+msgstr "技术信息"
#: ../root/main/error/Error401.js:19
msgid "Unauthorized Request"
-msgstr ""
+msgstr "未授权的请求"
#: ../root/main/error/Error401.js:22 ../root/report/LimitedEditors.js:43
msgid "Sorry, you are not authorized to view this page."
-msgstr ""
+msgstr "抱歉,您无权浏览此页面。"
#: ../root/main/error/Error401.js:29
msgid ""
@@ -10856,7 +10873,7 @@ msgstr ""
#: ../root/main/error/Error403.js:24
msgid "The page you requested is private."
-msgstr ""
+msgstr "您所请求的页面是私有的。"
#: ../root/main/error/Error403.js:35
msgid ""
@@ -10866,12 +10883,12 @@ msgstr ""
#: ../root/main/error/Error404.js:35
msgid "Sorry, the page you're looking for does not exist."
-msgstr ""
+msgstr "抱歉,您要寻找的页面不存在。"
#: ../root/main/error/Error404.js:40
-#: ../root/main/error/components/ErrorInfo.js:26
+#: ../root/main/error/components/ErrorInfo.js:28
msgid "Error message: "
-msgstr ""
+msgstr "错误信息: "
#: ../root/main/error/Error404.js:52
msgid ""
@@ -10881,12 +10898,12 @@ msgstr ""
#: ../root/main/error/Error500.js:37
msgid "Internal Server Error"
-msgstr ""
+msgstr "内部服务器错误"
#: ../root/main/error/Error500.js:40
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:553
msgid "Oops, something went wrong!"
-msgstr ""
+msgstr "糟糕,出现了一些问题!"
#: ../root/main/error/Error500.js:50
msgid "Edits loaded for the page:"
@@ -10894,11 +10911,11 @@ msgstr ""
#: ../root/main/error/Error500.js:60
msgid "raw edit data"
-msgstr ""
+msgstr "原始编辑数据"
#: ../root/main/error/Error500.js:65
msgid "fully loaded"
-msgstr ""
+msgstr "加载完毕"
#: ../root/main/error/Error500.js:78
msgid ""
@@ -10914,47 +10931,49 @@ msgstr ""
#: ../root/main/error/Error503.js:13
msgid "System Busy"
-msgstr ""
+msgstr "系统繁忙"
#: ../root/main/error/Error503.js:16
msgid "The system is overloaded or you are making requests too fast."
-msgstr ""
+msgstr "系统过载或您的请求过于频繁。"
#: ../root/main/error/Error503.js:21
msgid "Please wait a few minutes and repeat your request."
-msgstr ""
+msgstr "请等待几分钟后再试。"
#: ../root/main/error/MirrorError403.js:16
msgid "Sorry, you are unable to perform that action on a mirror server."
-msgstr ""
+msgstr "抱歉,您无法在镜像服务器上执行此操作。"
#: ../root/main/error/MirrorError403.js:23
msgid ""
"In order to log in or make changes to the database you must visit the main "
"server at {mb|https://musicbrainz.org/}."
msgstr ""
+"为了登录或对数据库进行更改,您必须访问位于{mb|https://musicbrainz.org/}的主服"
+"务器。"
#: ../root/main/error/MirrorError404.js:16
msgid "Sorry, the page you're looking for is not available on a mirror server."
-msgstr ""
+msgstr "抱歉,您要寻找的页面在镜像服务器上不存在。"
#: ../root/main/error/MirrorError404.js:23
msgid ""
"In order to view this page, please visit the main server at {mb|https://"
"musicbrainz.org/}."
-msgstr ""
+msgstr "要浏览此页面,请访问 {mb|https://musicbrainz.org/} 的主服务器。"
#: ../root/main/error/TimeoutError.js:25
msgid "Request Timed Out"
-msgstr ""
+msgstr "请求超时"
#: ../root/main/error/TimeoutError.js:28
msgid "Processing your request took too long and timed out."
-msgstr ""
+msgstr "处理您的请求花了太多时间而超时。"
#: ../root/main/error/TimeoutError.js:33
msgid "It may help to try again by reloading the page."
-msgstr ""
+msgstr "重新加载页面可能有用。"
#: ../root/main/error/components/ErrorEnvironment.js:34
msgid "Host:"
@@ -10962,24 +10981,19 @@ msgstr ""
#: ../root/main/error/components/ErrorEnvironment.js:42
msgid "Interface language:"
-msgstr ""
+msgstr "界面语言:"
#: ../root/main/error/components/ErrorEnvironment.js:55
msgid "Request data:"
-msgstr ""
-
-#: ../root/main/error/components/ErrorInfo.js:21
-msgid "Error:"
-msgid_plural "Errors:"
-msgstr[0] ""
+msgstr "请求数据:"
-#: ../root/main/error/components/ErrorInfo.js:30
+#: ../root/main/error/components/ErrorInfo.js:32
msgid "(No details about this error are available)"
-msgstr ""
+msgstr "(没有关于此错误的详情)"
#: ../root/main/index.js:36
msgid "MusicBrainz - The Open Music Encyclopedia"
-msgstr ""
+msgstr "MusicBrainz - 开放的音乐百科全书"
#: ../root/main/index.js:40
msgid "Welcome to MusicBrainz!"
@@ -10989,17 +11003,19 @@ msgstr "欢迎使用 MusicBrainz!"
msgid ""
"MusicBrainz is an open music encyclopedia that collects music metadata and "
"makes it available to the public."
-msgstr ""
+msgstr "MusicBrainz 是公开的音乐百科全书,收集音乐元数据开放给公众。"
#: ../root/main/index.js:50
msgid "MusicBrainz aims to be:"
-msgstr ""
+msgstr "MusicBrainz 的目标是成为:"
#: ../root/main/index.js:56
msgid ""
"The ultimate source of music information by allowing anyone "
"to contribute and releasing the {doc|data} under {doc2|open licenses}."
msgstr ""
+"音乐信息的终极来源,任何人都能贡献且 {doc|数据} 以 {doc2|开"
+"放授权} 发布。"
#: ../root/main/index.js:67
msgid ""
@@ -11007,6 +11023,8 @@ msgid ""
"reliable and unambiguous form of {doc|music identification}, enabling both "
"people and machines to have meaningful conversations about music."
msgstr ""
+"音乐的通用语言通过提供可靠且明确的{doc|音乐识别}形式,使人和"
+"机器都能就音乐进行有意义的对话。"
#: ../root/main/index.js:80
msgid ""
@@ -11014,11 +11032,13 @@ msgid ""
"we want everyone — including you — to {doc|participate and "
"contribute}."
msgstr ""
+"如同维基百科,MusicBrainz 由全球用户社区维护,我们希望所有人 — 包含您 "
+"— 来 {doc|参与和贡献}。"
#: ../root/main/index.js:91
msgid ""
"{about|More Information} — {faq|FAQs} — {contact|Contact Us}"
-msgstr ""
+msgstr "{about|更多信息} — {faq|常见问题} — {contact|联系我们}"
#: ../root/main/index.js:103
msgid ""
@@ -11026,54 +11046,56 @@ msgid ""
"based 501(c)(3) tax-exempt non-profit corporation dedicated to keeping "
"MusicBrainz {free|free and open source}."
msgstr ""
+"MusicBrainz 是由 {uri|MetaBrainz 基金会} 运作的一家加州 501(c)(3) 免税非盈利"
+"公司,致力于保持 MusicBrainz {free|自由与开源}。"
#: ../root/main/index.js:116
msgid "MetaBrainz Blog"
-msgstr ""
+msgstr "MetaBrainz 博客"
#: ../root/main/index.js:121
msgid "Latest posts:"
-msgstr ""
+msgstr "最新文章:"
#: ../root/main/index.js:133
msgid "Read more »"
-msgstr ""
+msgstr "阅读更多 »"
#: ../root/main/index.js:140
msgid "The blog is currently unavailable."
-msgstr ""
+msgstr "博客目前不可用"
#: ../root/main/index.js:149
msgid "Tag Your Music"
-msgstr ""
+msgstr "标记您的音乐"
#: ../root/main/index.js:169
msgid "Quick Start"
-msgstr ""
+msgstr "快速开始"
#: ../root/main/index.js:172
msgid "Beginners guide"
-msgstr ""
+msgstr "新手指南"
#: ../root/main/index.js:176
msgid "Editing introduction"
-msgstr ""
+msgstr "编辑介绍"
#: ../root/main/index.js:187
msgid "How to add artists"
-msgstr ""
+msgstr "如何添加艺术家"
#: ../root/main/index.js:192
msgid "How to add releases"
-msgstr ""
+msgstr "如何添加专辑"
#: ../root/main/index.js:203
msgid "Community"
-msgstr ""
+msgstr "社区"
#: ../root/main/index.js:206
msgid "How to Contribute"
-msgstr ""
+msgstr "如何贡献"
#: ../root/main/index.js:222
msgid ""
@@ -11081,10 +11103,12 @@ msgid ""
"released into the Public Domain and can be downloaded and "
"used for free."
msgstr ""
+"MusicBrainz数据库中的大部分数据被发布到公共域"
+"strong>,可以免费下载和使用 。"
#: ../root/main/index.js:232
msgid "Developers"
-msgstr ""
+msgstr "开发者"
#: ../root/main/index.js:236
msgid ""
@@ -11094,39 +11118,39 @@ msgstr ""
#: ../root/main/index.js:246
msgid "Recent Additions"
-msgstr ""
+msgstr "最近添加"
#: ../root/mbid/NotFound.js:21
msgid "MBID Not Found"
-msgstr ""
+msgstr "未找到 MBID"
#: ../root/mbid/NotFound.js:21
msgid "Invalid MBID"
-msgstr ""
+msgstr "无效的 MBID"
#: ../root/mbid/NotFound.js:25
msgid ""
"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
-"Either it’s incorrect, it was for an entity that has since been deleted, or "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
"it is an ID for something else than an entity (for example, a "
"{rel_type_table|relationship type})."
msgstr ""
#: ../root/mbid/NotFound.js:39
msgid "{mbid} is not a valid {mbid_doc|MBID}."
-msgstr ""
+msgstr "{mbid} 不是有效的 {mbid_doc|MBID}。"
#: ../root/mbid/NotFound.js:47
msgid "No {mbid_doc|MBID} selected."
-msgstr ""
+msgstr "未选择 {mbid_doc|MBID}。"
#: ../root/oauth2/OAuth2Authorize.js:28 ../root/oauth2/OAuth2Oob.js:21
msgid "OAuth Authorization"
-msgstr ""
+msgstr "OAuth 授权"
#: ../root/oauth2/OAuth2Authorize.js:29
msgid "Authorization"
-msgstr ""
+msgstr "授权"
#: ../root/oauth2/OAuth2Authorize.js:33
msgid "{app} is requesting permission to:"
@@ -11138,66 +11162,67 @@ msgstr ""
#: ../root/oauth2/OAuth2Authorize.js:59
msgid "No thanks"
-msgstr ""
+msgstr "不,谢谢"
#: ../root/oauth2/OAuth2Authorize.js:62
msgid "Allow access"
-msgstr ""
+msgstr "允许访问"
#: ../root/oauth2/OAuth2Error.js:21
msgid "OAuth Authorization Error"
-msgstr ""
+msgstr "OAuth 授权错误"
#: ../root/oauth2/OAuth2Error.js:22
msgid "Error: {error}"
-msgstr ""
+msgstr "错误:{error}"
#: ../root/oauth2/OAuth2Error.js:24
msgid "{doc|Learn more}"
-msgstr ""
+msgstr "{doc|了解更多}"
#: ../root/oauth2/OAuth2FormPost.js:21
msgid "Redirecting to {application}"
-msgstr ""
+msgstr "正在重定向至 {application}"
#: ../root/oauth2/OAuth2FormPost.js:33
msgid "If this page doesn’t redirect automatically, press “Submit” below."
-msgstr ""
+msgstr "如果此页面没有自动重定向,请点击下方的“提交”。"
#: ../root/oauth2/OAuth2Oob.js:22
msgid "Success!"
-msgstr ""
+msgstr "成功!"
#: ../root/oauth2/OAuth2Oob.js:25
msgid ""
"You have granted access to {app}. Next, return to {app} and copy this token "
"to complete the authorization process:"
msgstr ""
+"您已授予对{app}的访问权限。接下来,返回{app}并复制此命令以完成授权过程:"
#: ../root/otherlookup/OtherLookupForm.js:82
msgid "Artist IPI:"
-msgstr ""
+msgstr "艺术家 IPI:"
#: ../root/otherlookup/OtherLookupForm.js:87
msgid "Artist ISNI:"
-msgstr ""
+msgstr "艺术家 ISNI:"
#: ../root/otherlookup/OtherLookupForm.js:92
msgid "Label IPI:"
-msgstr ""
+msgstr "厂牌 IPI:"
#: ../root/otherlookup/OtherLookupForm.js:97
msgid "Label ISNI:"
-msgstr ""
+msgstr "厂牌 ISNI:"
#: ../root/otherlookup/OtherLookupForm.js:102
msgid "FreeDB ID:"
-msgstr ""
+msgstr "FreeDB ID:"
#: ../root/otherlookup/OtherLookupIndex.js:22
#: ../root/otherlookup/OtherLookupIndex.js:24
msgid "Other Lookups"
-msgstr ""
+msgstr "其他查询"
#: ../root/otherlookup/OtherLookupReleaseResults.js:22
#: ../root/otherlookup/OtherLookupReleaseResults.js:23
@@ -11208,11 +11233,11 @@ msgstr "搜索结果"
#: ../root/place/PlaceEvents.js:61
msgid "This place is not currently associated with any events."
-msgstr ""
+msgstr "此地点暂未与任何活动关联。"
#: ../root/place/PlaceMap.js:47
msgid "A map cannot be shown because this place has no coordinates."
-msgstr ""
+msgstr "此地点没有坐标,无法显示地图。"
#: ../root/place/PlaceMerge.js:32
msgid ""
@@ -11227,13 +11252,13 @@ msgstr ""
#: ../root/recording/DeleteRecording.js:34
#: ../root/recording/DeleteRecording.js:36
msgid "Remove Recording"
-msgstr ""
+msgstr "移除录音"
#: ../root/recording/DeleteRecording.js:43
msgid ""
"Please make sure you’re not removing a legitimate {doc_standalone|standalone "
"recording}."
-msgstr ""
+msgstr "请确定您不是在移除一个正确的 {doc_standalone|独立录音}。"
#: ../root/recording/DeleteRecording.js:57
msgid "This recording cannot be removed because it is still used on releases."
@@ -11241,31 +11266,31 @@ msgstr ""
#: ../root/recording/RecordingFingerprints.js:27
msgid "Associated AcoustIDs"
-msgstr ""
+msgstr "关联的 AcoustID"
#: ../root/recording/RecordingHeader.js:40
msgid "Video by {artist}"
-msgstr ""
+msgstr "{artist} 的视频"
#: ../root/recording/RecordingHeader.js:41
msgid "Recording by {artist}"
-msgstr ""
+msgstr "{artist} 录制"
#: ../root/recording/RecordingIndex.js:56
msgid "Track Artist"
-msgstr ""
+msgstr "音轨艺术家"
#: ../root/recording/RecordingIndex.js:57
msgid "Release Title"
-msgstr ""
+msgstr "专辑标题"
#: ../root/recording/RecordingIndex.js:58
msgid "Release Artist"
-msgstr ""
+msgstr "专辑艺术家"
#: ../root/recording/RecordingIndex.js:59
msgid "Release Group Type"
-msgstr ""
+msgstr "专辑组类型"
#: ../root/recording/RecordingIndex.js:81
#: ../root/release_group/ReleaseGroupIndex.js:60
@@ -11275,21 +11300,21 @@ msgstr "(未知)"
#: ../root/recording/RecordingIndex.js:94
msgid "Medium {medium_num}, track {track_num}"
-msgstr ""
+msgstr "媒介 {medium_num},音轨 {track_num}"
#: ../root/recording/RecordingIndex.js:176
msgid "Appears on releases"
-msgstr ""
+msgstr "出现于发行版中"
#: ../root/recording/RecordingIndex.js:184
msgid "No releases found which feature this recording."
-msgstr ""
+msgstr "未找到包含此录音的专辑。"
#: ../root/recording/RecordingMerge.js:34
msgid ""
"You are about to merge all these recordings into a single one. Please select "
"the recording all others should be merged into:"
-msgstr ""
+msgstr "你将要把所有的录音合并成同一个。请选择合并完成之后最终留下的那个录音:"
#: ../root/recording/RecordingMerge.js:41
msgid ""
@@ -11297,56 +11322,54 @@ msgid ""
"different ISRCs. Please make sure they are indeed the same recordings and "
"you wish to continue with the merge."
msgstr ""
+"警告:正在合并的某些录音具有不同的isrc。请确保它们确实是相同"
+"的录音,并且您希望继续合并。"
#: ../root/relationship/RelationshipsHeader.js:23
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:87
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:178
msgid "Relationship Attributes"
-msgstr ""
+msgstr "关联属性"
#: ../root/relationship/linkattributetype/DeleteRelationshipAttributeType.js:24
msgid ""
"Are you sure you wish to remove the {link_attr_type} "
"relationship attribute?"
-msgstr ""
+msgstr "确定要移除 {link_attr_type} 关联属性吗?"
#: ../root/relationship/linkattributetype/DeleteRelationshipAttributeType.js:28
msgid "Remove Relationship Attribute"
-msgstr ""
+msgstr "移除关联属性"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:19
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:21
msgid "Relationship attribute in use"
-msgstr ""
+msgstr "使用中的关系属性"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
msgid ""
-"The relationship attribute type “{type}” can’t be deleted because it’s still "
+"The relationship attribute type “{type}” can’t be removed because it’s still "
"in use."
msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:77
msgid "Relationship Attribute"
-msgstr ""
-
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
-#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
-msgid "ID:"
-msgstr ""
+msgstr "关联属性"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
msgid "UUID:"
-msgstr ""
+msgstr "UUID:"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:134
msgid "Parent attribute"
-msgstr ""
+msgstr "母属性"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
msgid "Possible values"
-msgstr ""
+msgstr "可能的值"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:161
msgid ""
@@ -11356,7 +11379,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:182
msgid "Relationship usage"
-msgstr ""
+msgstr "关联用法"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:186
msgid "This attribute is being used by the following relationship types:"
@@ -11364,7 +11387,7 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:200
msgid "{type0} - {type1}"
-msgstr ""
+msgstr "{type0} - {type1}"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:217
msgid "This attribute isn’t directly being used by any relationship types."
@@ -11372,42 +11395,38 @@ msgstr ""
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:45
msgid "none"
-msgstr ""
+msgstr "无"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:62
msgid "Add child"
msgstr "添加子关系"
-#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
-msgid "Possible values:"
-msgstr ""
-
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
msgid "No relationship attributes found."
-msgstr ""
+msgstr "未找到关联属性。"
#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
-msgid "Create a new relationship attribute"
+msgid "Add a new relationship attribute"
msgstr ""
#: ../root/relationship/linktype/DeleteRelationshipType.js:24
msgid ""
"Are you sure you wish to remove the {link_type} "
"relationship type?"
-msgstr ""
+msgstr "确定要移除 {link_attr_type} 关联类型吗?"
#: ../root/relationship/linktype/DeleteRelationshipType.js:28
msgid "Remove Relationship Type"
-msgstr ""
+msgstr "移除关联类型"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:19
#: ../root/relationship/linktype/RelationshipTypeInUse.js:21
msgid "Relationship Type In Use"
-msgstr ""
+msgstr "正在使用的关联类型"
#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
msgid ""
-"The relationship type \"{type}\" can’t be deleted because it’s still in use."
+"The relationship type “{type}” can’t be removed because it’s still in use."
msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
@@ -11420,15 +11439,15 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:73
msgid "start date"
-msgstr ""
+msgstr "开始日期"
#: ../root/relationship/linktype/RelationshipTypeIndex.js:76
msgid "end date"
-msgstr ""
+msgstr "结束日期"
#: ../root/relationship/linktype/RelationshipTypeIndex.js:116
msgid "{entity0}-{entity1}"
-msgstr ""
+msgstr "{entity0}-{entity1}"
#: ../root/relationship/linktype/RelationshipTypeIndex.js:126
#: ../root/static/scripts/edit/externalLinks.js:774
@@ -11438,11 +11457,11 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypeIndex.js:194
msgid "Link phrases"
-msgstr ""
+msgstr "连接词"
#: ../root/relationship/linktype/RelationshipTypeIndex.js:223
msgid "Guidelines"
-msgstr ""
+msgstr "指南"
#: ../root/relationship/linktype/RelationshipTypeIndex.js:227
msgid "See the general {url|guidelines for URLs}."
@@ -11455,7 +11474,7 @@ msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:47
msgid "more"
-msgstr ""
+msgstr "更多"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:69
#: ../root/relationship/linktype/RelationshipTypePairTree.js:76
@@ -11466,41 +11485,41 @@ msgstr "(无)"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:134
msgid "{relationship_documentation_url|Documentation}"
-msgstr ""
+msgstr "{relationship_documentation_url|文档}"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:172
msgid "{type0}-{type1} Relationship Types"
-msgstr ""
+msgstr "{type0}-{type1} 关联类型"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:183
msgid "< Back to all relationship types"
-msgstr ""
+msgstr "< 返回所有关联类型"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:190
msgid "{type0}-{type1} relationship types"
-msgstr ""
+msgstr "{type0}-{type1} 关联类型"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
-msgid "Create a new {type0}-{type1} relationship"
+msgid "Add a new {type0}-{type1} relationship type"
msgstr ""
#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
msgid "Expand all descriptions"
-msgstr ""
+msgstr "展开所有描述"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:213
msgid "Collapse all descriptions"
-msgstr ""
+msgstr "收起所有描述"
#: ../root/relationship/linktype/RelationshipTypePairTree.js:232
msgid "No {type0}-{type1} relationship types found."
-msgstr ""
+msgstr "未找到 {type0}-{type1} 关联类型。"
#: ../root/relationship/linktype/RelationshipTypesList.js:40
msgid "{type0}-{type1}"
-msgstr ""
+msgstr "{type0}-{type1}"
-#: ../root/release/ChangeQuality.js:51
+#: ../root/release/ChangeQuality.js:52
msgid ""
"{data_quality_doc|Data quality} indicates how good the data for a release "
"is. It is not a mark of how good or bad the music itself is — for that, use "
@@ -11517,15 +11536,15 @@ msgstr "500px"
#: ../root/release/CoverArt.js:44
msgid "1200px"
-msgstr ""
+msgstr "1200px"
#: ../root/release/CoverArt.js:48
msgid "original"
-msgstr ""
+msgstr "原始"
#: ../root/release/CoverArt.js:63
msgid "Cannot show cover art"
-msgstr ""
+msgstr "无法显示封面图片"
#: ../root/release/CoverArt.js:100
msgid "All sizes:"
@@ -11536,10 +11555,11 @@ msgid ""
"These images provided by the {caa|Cover Art Archive}. You can also see them "
"at the {ia|Internet Archive}."
msgstr ""
+"这些图片由{caa|封面艺术档案馆}提供。你也可以在{ia|互联网档案}看到它们。"
#: ../root/release/CoverArt.js:137
msgid "We do not currently have any cover art for {release}."
-msgstr ""
+msgstr "目前没有 {release} 的封面图片。"
#: ../root/release/CoverArt.js:147
msgctxt "button/menu"
@@ -11549,47 +11569,47 @@ msgstr "添加封面图片"
#: ../root/release/CoverArt.js:153
msgctxt "button/menu"
msgid "Reorder Cover Art"
-msgstr ""
+msgstr "重排封面"
#: ../root/release/CoverArt.js:161
msgid "Log in to upload cover art"
-msgstr ""
+msgstr "登录以上传封面图片"
#: ../root/release/CoverArtDarkened.js:19
msgid "Cannot Add Cover Art"
-msgstr ""
+msgstr "无法添加封面图片"
#: ../root/release/CoverArtFields.js:78
msgid "Choose one or more cover art types for this image"
-msgstr ""
+msgstr "为此图像选择一个或多个封面类型"
#: ../root/release/DeleteRelease.js:31 ../root/release/DeleteRelease.js:33
msgid "Remove Release"
-msgstr ""
+msgstr "移除专辑"
#: ../root/release/EditRelationships.js:28
msgid "Edit Relationships: {release}"
-msgstr ""
+msgstr "编辑关系: {release}"
#: ../root/release/EditRelationships.js:35
msgid ""
"To use the batch tools, select some recordings or works using the checkboxes."
-msgstr ""
+msgstr "要使用批处理工具,请使用复选框选择一些录音或作品。"
#: ../root/release/EditRelationships.js:42
msgid ""
"Please read {relationships_doc|our guidelines for relationships} if you "
"haven’t already."
-msgstr ""
+msgstr "请阅读 {relationships_doc|我们的关联风格指南}。"
#: ../root/release/ReleaseHeader.js:29
msgid "see all versions of this release, {count} available"
msgid_plural "see all versions of this release, {count} available"
-msgstr[0] ""
+msgstr[0] "查看此专辑的所有版本,共 {count} 个"
#: ../root/release/ReleaseHeader.js:36
msgid "Release by {artist}"
-msgstr ""
+msgstr "{artist} 的专辑"
#: ../root/release/ReleaseMerge.js:41
msgid ""
@@ -11599,19 +11619,19 @@ msgstr ""
#: ../root/release/RemoveCoverArt.js:31
msgid "Remove Cover Art"
-msgstr ""
+msgstr "移除封面图片"
#: ../root/release/RemoveCoverArt.js:38
msgid ""
"Are you sure you wish to remove the below cover art from {release} by "
"{artist}?"
-msgstr ""
+msgstr "确定要从 {artist} 的 {release} 移除以下的封面图片吗?"
#: ../root/release_group/ReleaseGroupHeader.js:28
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:810
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:501
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
msgid "Release group by {artist}"
-msgstr ""
+msgstr "{artist} 的发布组"
#: ../root/release_group/ReleaseGroupMerge.js:32
msgid ""
@@ -11621,11 +11641,11 @@ msgstr ""
#: ../root/report/AnnotationsArtists.js:29
msgid "This report lists artists with annotations."
-msgstr ""
+msgstr "本报告列出附有注释的艺术家。"
#: ../root/report/AnnotationsArtists.js:34
msgid "Artist annotations"
-msgstr ""
+msgstr "艺术家注释"
#: ../root/report/AnnotationsEvents.js:29
msgid "This report lists events with annotations."
@@ -11637,59 +11657,59 @@ msgstr ""
#: ../root/report/AnnotationsLabels.js:29
msgid "This report lists labels with annotations."
-msgstr ""
+msgstr "本报告列出附有注释的厂牌。"
#: ../root/report/AnnotationsLabels.js:34
msgid "Label annotations"
-msgstr ""
+msgstr "厂牌注释"
#: ../root/report/AnnotationsPlaces.js:29
msgid "This report lists places with annotations."
-msgstr ""
+msgstr "本报告列出附有注释的地点。"
#: ../root/report/AnnotationsPlaces.js:34
msgid "Place annotations"
-msgstr ""
+msgstr "地点注释"
#: ../root/report/AnnotationsRecordings.js:30
msgid "This report lists recordings with annotations."
-msgstr ""
+msgstr "本报告列出附有注释的录音。"
#: ../root/report/AnnotationsRecordings.js:35
msgid "Recording annotations"
-msgstr ""
+msgstr "录音注释"
#: ../root/report/AnnotationsReleaseGroups.js:30
msgid "This report lists release groups with annotations."
-msgstr ""
+msgstr "本报告列出附有注释的专辑组。"
#: ../root/report/AnnotationsReleaseGroups.js:35
msgid "Release group annotations"
-msgstr ""
+msgstr "专辑组注释"
#: ../root/report/AnnotationsReleases.js:29
msgid "This report lists releases with annotations."
-msgstr ""
+msgstr "本报告列出附有注释的专辑。"
#: ../root/report/AnnotationsReleases.js:34
msgid "Release annotations"
-msgstr ""
+msgstr "专辑注释"
#: ../root/report/AnnotationsSeries.js:29
msgid "This report lists series with annotations."
-msgstr ""
+msgstr "本报告列出附有注释的系列。"
#: ../root/report/AnnotationsSeries.js:34
msgid "Series annotations"
-msgstr ""
+msgstr "系列注释"
#: ../root/report/AnnotationsWorks.js:29
msgid "This report lists works with annotations."
-msgstr ""
+msgstr "本报告列出附有注释的作品。"
#: ../root/report/AnnotationsWorks.js:34
msgid "Work annotations"
-msgstr ""
+msgstr "作品注释"
#: ../root/report/ArtistCreditsWithDubiousTrailingPhrases.js:24
msgid ""
@@ -11697,22 +11717,26 @@ msgid ""
"like it might have been left behind in error, such as a trailing comma or "
"“feat.”."
msgstr ""
+"此报告列出了可能由于错误而残留有连接短语后缀的艺术家名单,例如后缀的逗号或"
+"者“feat.”。"
#: ../root/report/ArtistCreditsWithDubiousTrailingPhrases.js:31
#: ../root/report/ReportsIndex.js:120
msgid "Artist credits with dubious trailing join phrases"
-msgstr ""
+msgstr "具有可疑的连接短语后缀的艺术家名单"
#: ../root/report/ArtistsContainingDisambiguationComments.js:24
msgid ""
"This report lists artists that may have disambiguation comments in their "
"name, rather than the actual disambiguation comment field."
msgstr ""
+"此报告列出了在其名称中可能有消除歧义注释的歌手,而不是实际的消除歧义注释字"
+"段。"
#: ../root/report/ArtistsContainingDisambiguationComments.js:30
#: ../root/report/ReportsIndex.js:84
msgid "Artists containing disambiguation comments in their name"
-msgstr ""
+msgstr "在消除歧义的评论中包含有歌手的名字"
#: ../root/report/ArtistsDisambiguationSameName.js:24
msgid ""
@@ -11720,11 +11744,13 @@ msgid ""
"as their name. The disambiguation should be removed or, if it is needed, "
"improved."
msgstr ""
+"此报告列出了将消除歧义设置为与其姓名相同的歌手。消除歧义应该被删除,或者如果"
+"需要的话,加以改进。"
#: ../root/report/ArtistsDisambiguationSameName.js:31
#: ../root/report/ReportsIndex.js:111
msgid "Artists with disambiguation the same as the name"
-msgstr ""
+msgstr "歌手的名字与消除歧义相同"
#: ../root/report/ArtistsThatMayBeGroups.js:24
msgid ""
@@ -11738,7 +11764,7 @@ msgstr ""
#: ../root/report/ArtistsThatMayBeGroups.js:34
#: ../root/report/ReportsIndex.js:59
msgid "Artists that may be groups"
-msgstr ""
+msgstr "可能为团体的艺术家"
#: ../root/report/ArtistsThatMayBePersons.js:24
msgid ""
@@ -11752,7 +11778,7 @@ msgstr ""
#: ../root/report/ArtistsThatMayBePersons.js:34
#: ../root/report/ReportsIndex.js:63
msgid "Artists that may be persons"
-msgstr ""
+msgstr "可能为个人的艺术家"
#: ../root/report/ArtistsWithMultipleOccurrencesInArtistCredits.js:24
msgid ""
@@ -11775,7 +11801,7 @@ msgstr ""
#: ../root/report/ArtistsWithNoSubscribers.js:31
#: ../root/report/ReportsIndex.js:67
msgid "Artists with no subscribers"
-msgstr ""
+msgstr "无订阅者的艺术家"
#: ../root/report/AsinsWithMultipleReleases.js:24
msgid ""
@@ -11798,7 +11824,7 @@ msgstr ""
#: ../root/report/WikidataLinksWithMultipleEntities.js:81
#: ../root/report/components/RemovedUrlRow.js:16
msgid "This URL no longer exists."
-msgstr ""
+msgstr "此 URL 已不存在。"
#: ../root/report/BadAmazonUrls.js:47
msgid ""
@@ -11815,8 +11841,8 @@ msgstr ""
msgid ""
"This report shows disc IDs indicating a total duration much longer than what "
"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
-"CD). This usually means a disc ID was created for the wrong format (SACD) or "
-"with a buggy tool."
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
msgstr ""
#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
@@ -11826,16 +11852,16 @@ msgstr ""
#: ../root/report/CDTocNotApplied.js:24
msgid ""
"This report shows disc IDs attached to a release but obviously not applied "
-"because at least one track duration is unknown on the release. The report is "
+"because at least one track length is unknown on the release. The report is "
"also restricted to mediums where only one disc ID is attached, so it is "
"highly likely that the disc ID can be applied without any worries. Do make "
-"sure though that no existing durations clash with the disc ID, or that any "
+"sure though that no existing lengths clash with the disc ID, or that any "
"clashes are clear mistakes."
msgstr ""
#: ../root/report/CDTocNotApplied.js:34 ../root/report/ReportsIndex.js:632
msgid "Disc IDs attached but not applied"
-msgstr ""
+msgstr "唱片ID已附加但未应用"
#: ../root/report/CatNoLooksLikeAsin.js:28
msgid ""
@@ -11858,12 +11884,16 @@ msgid ""
"linked to the appropriate recording instead. That said, do make sure this is "
"not a legitimate catalog number that just happens to look like an ISRC!"
msgstr ""
+"该报告显示的版本目录编号类似于{doc_link|ISRCs}。为发行版分配isrc几乎总是错误"
+"的,但有时仍然会发生,特别是歌手/厂商添加到MusicBrainz的发行版。但是ISRCs是分"
+"配给录音的代码,应该与适当的录音联系起来。也就是说,一定要确保这不是一个碰巧"
+"看起来像ISRC的合法目录编号!"
#: ../root/report/CatNoLooksLikeIsrc.js:40 ../root/report/ReportsIndex.js:327
msgid "Releases with catalog numbers that look like ISRCs"
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:29
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
msgid ""
"This report shows releases which have catalog numbers that look like "
"{doc_link|Label Codes}. This is often wrong, since the two are often "
@@ -11872,7 +11902,7 @@ msgid ""
"example), remove it or, even better, try to find the actual catalog number."
msgstr ""
-#: ../root/report/CatNoLooksLikeLabelCode.js:40
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
#: ../root/report/ReportsIndex.js:332
msgid "Releases with catalog numbers that look like Label Codes"
msgstr ""
@@ -11891,18 +11921,18 @@ msgstr ""
#: ../root/report/CollaborationRelationships.js:49
msgid "Collaboration"
-msgstr ""
+msgstr "合作"
#: ../root/report/CollaborationRelationships.js:50
msgid "Collaborator"
-msgstr ""
+msgstr "合作者"
#: ../root/report/CollaborationRelationships.js:68
#: ../root/report/CollaborationRelationships.js:79
#: ../root/report/DuplicateArtists.js:116
#: ../root/report/components/ArtistUrlList.js:74
msgid "This artist no longer exists."
-msgstr ""
+msgstr "此艺术家已不存在。"
#: ../root/report/DeprecatedRelationshipArtists.js:29
msgid ""
@@ -11913,7 +11943,7 @@ msgstr ""
#: ../root/report/DeprecatedRelationshipArtists.js:35
#: ../root/report/ReportsIndex.js:103
msgid "Artists with deprecated relationships"
-msgstr ""
+msgstr "有已弃用关联的艺术家"
#: ../root/report/DeprecatedRelationshipLabels.js:29
msgid ""
@@ -11924,7 +11954,7 @@ msgstr ""
#: ../root/report/DeprecatedRelationshipLabels.js:35
#: ../root/report/ReportsIndex.js:186
msgid "Labels with deprecated relationships"
-msgstr ""
+msgstr "有已弃用关联的厂牌"
#: ../root/report/DeprecatedRelationshipPlaces.js:29
msgid ""
@@ -11935,7 +11965,7 @@ msgstr ""
#: ../root/report/DeprecatedRelationshipPlaces.js:35
#: ../root/report/ReportsIndex.js:546
msgid "Places with deprecated relationships"
-msgstr ""
+msgstr "有已弃用关联的地点"
#: ../root/report/DeprecatedRelationshipRecordings.js:29
msgid ""
@@ -11946,7 +11976,7 @@ msgstr ""
#: ../root/report/DeprecatedRelationshipRecordings.js:35
#: ../root/report/ReportsIndex.js:492
msgid "Recordings with deprecated relationships"
-msgstr ""
+msgstr "有已弃用关联的录音"
#: ../root/report/DeprecatedRelationshipReleaseGroups.js:29
msgid ""
@@ -11957,7 +11987,7 @@ msgstr ""
#: ../root/report/DeprecatedRelationshipReleaseGroups.js:35
#: ../root/report/ReportsIndex.js:223
msgid "Release groups with deprecated relationships"
-msgstr ""
+msgstr "有已弃用关联的专辑组"
#: ../root/report/DeprecatedRelationshipReleases.js:29
msgid ""
@@ -11968,7 +11998,7 @@ msgstr ""
#: ../root/report/DeprecatedRelationshipReleases.js:35
#: ../root/report/ReportsIndex.js:397
msgid "Releases with deprecated relationships"
-msgstr ""
+msgstr "有已弃用关联的专辑"
#: ../root/report/DeprecatedRelationshipUrls.js:29
msgid ""
@@ -11979,7 +12009,7 @@ msgstr ""
#: ../root/report/DeprecatedRelationshipUrls.js:35
#: ../root/report/ReportsIndex.js:593
msgid "URLs with deprecated relationships"
-msgstr ""
+msgstr "有已弃用关联的 URL"
#: ../root/report/DeprecatedRelationshipWorks.js:29
msgid ""
@@ -11990,7 +12020,7 @@ msgstr ""
#: ../root/report/DeprecatedRelationshipWorks.js:35
#: ../root/report/ReportsIndex.js:576
msgid "Works with deprecated relationships"
-msgstr ""
+msgstr "有已弃用关联的作品"
#: ../root/report/DiscogsLinksWithMultipleArtists.js:25
msgid "This report shows Discogs URLs which are linked to multiple artists."
@@ -11999,7 +12029,7 @@ msgstr ""
#: ../root/report/DiscogsLinksWithMultipleArtists.js:30
#: ../root/report/ReportsIndex.js:89
msgid "Discogs URLs linked to multiple artists"
-msgstr ""
+msgstr "链接到多个艺术家的 Discogs URL"
#: ../root/report/DiscogsLinksWithMultipleLabels.js:25
msgid "This report shows Discogs URLs which are linked to multiple labels."
@@ -12049,6 +12079,10 @@ msgid ""
"them (and once a group of similarly named artists have disambiguation "
"comments, they will stop appearing here)."
msgstr ""
+"这份报告的目的是找出名字非常相似的艺术家。如果两个艺术家实际上是相同的,请合"
+"并他们(记住{how_to_write_edit_notes|写一个编辑笔记}并给出你的证明)。如果他们"
+"是不同的,添加{disambiguation_comment|消除歧义内容}到他们(一旦一组相似的命名"
+"艺术家有消除歧义内容,他们将不再出现在这里)。"
#: ../root/report/DuplicateArtists.js:55 ../root/report/ReportsIndex.js:71
msgid "Possibly duplicate artists"
@@ -12056,7 +12090,7 @@ msgstr ""
#: ../root/report/DuplicateArtists.js:99
msgid "alias:"
-msgstr ""
+msgstr "别名:"
#: ../root/report/DuplicateArtists.js:109
#: ../root/report/DuplicateReleaseGroups.js:93
@@ -12152,7 +12186,7 @@ msgid ""
"This report lists release groups with very similar names and artists. If the "
"releases in the release groups should be grouped together (see the {url|"
"guidelines}), they can be merged. If they shouldn't be grouped together but "
-"they can be distinguished by the release group types, e.g. when an artist "
+"they can be distinguished by the release group types, such as when an artist "
"has an album and single with the same name, then there is usually no need to "
"change anything. In other cases, a disambiguation comment may be helpful."
msgstr ""
@@ -12160,12 +12194,12 @@ msgstr ""
#: ../root/report/DuplicateReleaseGroups.js:52
#: ../root/report/ReportsIndex.js:227
msgid "Possible duplicate release groups"
-msgstr ""
+msgstr "可能重复的专辑组"
#: ../root/report/DuplicateReleaseGroups.js:100
#: ../root/report/components/ReleaseGroupUrlList.js:83
msgid "This release group no longer exists."
-msgstr ""
+msgstr "此专辑组已不存在。"
#: ../root/report/EventSequenceNotInSeries.js:24
msgid ""
@@ -12223,7 +12257,7 @@ msgstr ""
#: ../root/report/FilterLink.js:27
msgid "Show all results."
-msgstr ""
+msgstr "显示所有结果。"
#: ../root/report/FilterLink.js:31
msgid "Show only results that are in my subscribed entities."
@@ -12232,13 +12266,13 @@ msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:24
msgid ""
"This report shows instruments without an image relationship to StaticBrainz "
-"(i.e. without an IROMBOOK image)."
+"(that is, without an IROMBOOK image)."
msgstr ""
#: ../root/report/InstrumentsWithoutAnImage.js:30
#: ../root/report/ReportsIndex.js:163
msgid "Instruments without an image"
-msgstr ""
+msgstr "无图片的乐器"
#: ../root/report/InstrumentsWithoutWikidata.js:24
msgid "This report shows instruments without Wikidata relationships."
@@ -12246,7 +12280,7 @@ msgstr ""
#: ../root/report/InstrumentsWithoutWikidata.js:29
msgid "Instruments without a Wikidata link"
-msgstr ""
+msgstr "没有 Wikidata 链接的乐器"
#: ../root/report/IsrcsWithManyRecordings.js:37
msgid ""
@@ -12262,12 +12296,12 @@ msgstr ""
#: ../root/report/IsrcsWithManyRecordings.js:51
#: ../root/report/ReportsIndex.js:610
msgid "ISRCs with multiple recordings"
-msgstr ""
+msgstr "对应复数录音的 ISRC"
#: ../root/report/IsrcsWithManyRecordings.js:98
#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:82
msgid "This recording no longer exists."
-msgstr ""
+msgstr "此录音已不存在。"
#: ../root/report/IswcsWithManyWorks.js:34
msgid ""
@@ -12277,11 +12311,11 @@ msgstr ""
#: ../root/report/IswcsWithManyWorks.js:42 ../root/report/ReportsIndex.js:619
msgid "ISWCs with multiple works"
-msgstr ""
+msgstr "对应复数作品的 ISWC"
#: ../root/report/IswcsWithManyWorks.js:83
msgid "This work no longer exists."
-msgstr ""
+msgstr "此作品已不存在。"
#: ../root/report/LabelsDisambiguationSameName.js:24
msgid ""
@@ -12289,19 +12323,21 @@ msgid ""
"as their name. The disambiguation should be removed or, if it is needed, "
"improved."
msgstr ""
+"此报告列出了将消除歧义设置为与其名称相同的标签。消除歧义应该被删除,或者如果"
+"需要的话,加以改进。"
#: ../root/report/LabelsDisambiguationSameName.js:31
#: ../root/report/ReportsIndex.js:194
msgid "Labels with disambiguation the same as the name"
-msgstr ""
+msgstr "消除歧义的标签与名称相同"
#: ../root/report/LimitedEditors.js:31
msgid "This report lists {url|beginner/limited editors}."
-msgstr ""
+msgstr "此报告列出 {url|新手/受限制的编辑者}。"
#: ../root/report/LimitedEditors.js:37 ../root/report/ReportsIndex.js:131
msgid "Beginner/limited editors"
-msgstr ""
+msgstr "新手/受限制的编辑者"
#: ../root/report/LinksWithMultipleEntities.js:40
msgid ""
@@ -12313,6 +12349,10 @@ msgid ""
"links, and a link attached to all movements of a classical work might be a "
"better fit for the main parent work only."
msgstr ""
+"此报告显示URL链接到了多个实体。这不包括许可关联(允许重复使用)和亚马逊(关于专"
+"辑),Discogs以及维基数据(具有自己的报告)。这些链接需要审阅以确认它们是不是较"
+"好的匹配;例如,可以用特定的预售链接替代一般的商店页链接,而针对古典作品所有"
+"乐章的链接比只包含主要母作品的链接要好。"
#: ../root/report/LinksWithMultipleEntities.js:53
#: ../root/report/ReportsIndex.js:597
@@ -12323,7 +12363,7 @@ msgstr ""
#: ../root/report/WikidataLinksWithMultipleEntities.js:56
#: ../root/report/components/UrlList.js:52
msgid "URL Entity"
-msgstr ""
+msgstr "URL 实体"
#: ../root/report/LinksWithMultipleEntities.js:62
#: ../root/report/WikidataLinksWithMultipleEntities.js:57
@@ -12359,8 +12399,8 @@ msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:24
msgid ""
-"This report lists all releases with gaps in the medium numbers (e.g. there "
-"is a medium 1 and 3 but no medium 2)."
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
msgstr ""
#: ../root/report/MediumsWithSequenceIssues.js:30
@@ -12391,7 +12431,7 @@ msgstr ""
#: ../root/report/MultipleAsins.js:34
msgid "Releases with multiple ASINs"
-msgstr ""
+msgstr "有多个 ASIN 的专辑"
#: ../root/report/MultipleDiscogsLinks.js:24
msgid ""
@@ -12405,7 +12445,7 @@ msgstr ""
#: ../root/report/MultipleDiscogsLinks.js:36
msgid "Releases with multiple Discogs links"
-msgstr ""
+msgstr "有多个 Discogs 链接的专辑"
#: ../root/report/NoLanguage.js:28
msgid ""
@@ -12416,7 +12456,7 @@ msgstr ""
#: ../root/report/NoLanguage.js:36 ../root/report/ReportsIndex.js:260
msgid "Releases without language"
-msgstr ""
+msgstr "没有设定语言的专辑"
#: ../root/report/NoScript.js:28
msgid ""
@@ -12427,7 +12467,7 @@ msgstr ""
#: ../root/report/NoScript.js:35 ../root/report/ReportsIndex.js:264
msgid "Releases without script"
-msgstr ""
+msgstr "没有设定文字的专辑"
#: ../root/report/NonBootlegsOnBootlegLabels.js:24
msgid ""
@@ -12463,15 +12503,15 @@ msgstr ""
#: ../root/report/PlacesWithoutCoordinates.js:33
#: ../root/report/ReportsIndex.js:554
msgid "Places without coordinates"
-msgstr ""
+msgstr "无坐标的地点"
#: ../root/report/PlacesWithoutCoordinates.js:43
msgid "Search for coordinates"
-msgstr ""
+msgstr "搜索坐标"
#: ../root/report/PlacesWithoutCoordinates.js:123
msgid "This place no longer exists."
-msgstr ""
+msgstr "此地点已不存在。"
#: ../root/report/PossibleCollaborations.js:24
msgid ""
@@ -12531,13 +12571,13 @@ msgstr ""
msgid "Recordings with earliest release relationships"
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:56
+#: ../root/report/RecordingsWithFutureDates.js:55
msgid ""
"This report shows recordings with relationships using dates in the future. "
-"Those are probably typos (e.g. 2109 instead of 2019)."
+"Those are probably typos (such as 2109 instead of 2019)."
msgstr ""
-#: ../root/report/RecordingsWithFutureDates.js:62
+#: ../root/report/RecordingsWithFutureDates.js:61
msgid "Recordings with relationships having dates in the future"
msgstr ""
@@ -12545,12 +12585,12 @@ msgstr ""
msgid ""
"This report shows recordings where the linked tracks have times that vary by "
"more than 30 seconds."
-msgstr ""
+msgstr "此报告显示的音轨中,链接的音轨时间相差超过30秒。"
#: ../root/report/RecordingsWithVaryingTrackLengths.js:30
#: ../root/report/ReportsIndex.js:488
msgid "Recordings with varying track times"
-msgstr ""
+msgstr "各音轨音轨时长不同"
#: ../root/report/RecordingsWithoutVaCredit.js:24
msgid ""
@@ -12627,6 +12667,8 @@ msgid ""
"exist at the time the release was released or where a disc ID is attached to "
"a medium whose format does not have disc IDs."
msgstr ""
+"此报告显示发行时间太早而不应有碟片ID但是实际上有碟片ID,使用了发行时不存在媒"
+"介格式或者媒介格式没有碟片ID但是附加了碟片ID的专辑。"
#: ../root/report/ReleasedTooEarly.js:33 ../root/report/ReportsIndex.js:312
msgid "Releases released too early"
@@ -12691,6 +12733,9 @@ msgid ""
"since the 16th of May 2022, so these releases have no front cover anymore "
"until one is added to the Cover Art Archive."
msgstr ""
+"这份报告显示了亚马逊上有封面艺术的作品,但在封面艺术档案中没有封面。自2022年5"
+"月16日起,亚马逊的艺术作品就不再使用了,所以这些作品在封面艺术档案中添加封面"
+"之前都没有封面。"
#: ../root/report/ReleasesWithAmazonCoverArt.js:33
#: ../root/report/ReportsIndex.js:352
@@ -12715,7 +12760,7 @@ msgid ""
"This report shows releases that have relationships that only apply to "
"digital media releases (download/streaming), but have media whose format is "
"not “Digital Media”. Generally, these should be moved to the appropriate "
-"digital media release. If one doesn’t exist yet, feel free to create it."
+"digital media release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithDownloadRelationships.js:34
@@ -12732,15 +12777,14 @@ msgstr ""
#: ../root/report/ReleasesWithEmptyMediums.js:31
#: ../root/report/ReportsIndex.js:409
msgid "Releases with empty mediums"
-msgstr ""
+msgstr "含有空媒介的专辑"
#: ../root/report/ReleasesWithMailOrderRelationships.js:24
msgid ""
"This report shows releases that have mail order relationships (which by "
"definition only apply to physical media releases), but only have media whose "
"format is “Digital Media”. Generally, these should be moved to the "
-"appropriate physical release. If one doesn’t exist yet, feel free to create "
-"it."
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
msgstr ""
#: ../root/report/ReleasesWithMailOrderRelationships.js:33
@@ -12750,12 +12794,12 @@ msgstr ""
#: ../root/report/ReleasesWithNoMediums.js:24
msgid "This report shows releases without any mediums (no tracklist)."
-msgstr ""
+msgstr "此报告显示了不含任何媒介的专辑(无音轨列表)。"
#: ../root/report/ReleasesWithNoMediums.js:29
#: ../root/report/ReportsIndex.js:405
msgid "Releases with no mediums"
-msgstr ""
+msgstr "没有媒介的专辑"
#: ../root/report/ReleasesWithUnlikelyLanguageScript.js:28
msgid ""
@@ -12766,7 +12810,7 @@ msgstr ""
#: ../root/report/ReleasesWithUnlikelyLanguageScript.js:34
#: ../root/report/ReportsIndex.js:373
msgid "Releases with unlikely language/script pairs"
-msgstr ""
+msgstr "语言和文字配对怪异的专辑"
#: ../root/report/ReleasesWithoutVaCredit.js:24
msgid ""
@@ -12792,7 +12836,7 @@ msgstr ""
#: ../root/report/ReportNotAvailable.js:18
msgid "We are sorry, but data for this report is not available right now."
-msgstr ""
+msgstr "抱歉,此报告的数据现在不可用。"
#: ../root/report/ReportsIndex.js:45
msgid ""
@@ -12805,7 +12849,7 @@ msgstr ""
#: ../root/report/ReportsIndex.js:75
msgid "Artists which have collaboration relationships"
-msgstr ""
+msgstr "有合作关联的艺术家"
#: ../root/report/ReportsIndex.js:79
msgid "Artists which look like collaborations"
@@ -12813,11 +12857,11 @@ msgstr ""
#: ../root/report/ReportsIndex.js:107
msgid "Artists with annotations"
-msgstr ""
+msgstr "有注释的艺术家"
#: ../root/report/ReportsIndex.js:127
msgid "Editors"
-msgstr ""
+msgstr "编者"
#: ../root/report/ReportsIndex.js:142
msgid "Events with annotations"
@@ -12825,27 +12869,27 @@ msgstr ""
#: ../root/report/ReportsIndex.js:146
msgid "Possibly duplicate events"
-msgstr ""
+msgstr "可能重复的事件"
#: ../root/report/ReportsIndex.js:167
msgid "Instruments without a link to Wikidata"
-msgstr ""
+msgstr "没有 Wikidata 链接的乐器"
#: ../root/report/ReportsIndex.js:190
msgid "Labels with annotations"
-msgstr ""
+msgstr "有注释的厂牌"
#: ../root/report/ReportsIndex.js:199
msgid "Release groups"
-msgstr ""
+msgstr "专辑组"
#: ../root/report/ReportsIndex.js:203
msgid "Release groups that might need to be merged"
-msgstr ""
+msgstr "可能需要合并的专辑组"
#: ../root/report/ReportsIndex.js:231
msgid "Release groups with annotations"
-msgstr ""
+msgstr "有注释的专辑组"
#: ../root/report/ReportsIndex.js:268
msgid "Releases which have unexpected Amazon URLs"
@@ -12853,7 +12897,7 @@ msgstr ""
#: ../root/report/ReportsIndex.js:272
msgid "Releases which have multiple ASINs"
-msgstr ""
+msgstr "有多个 ASIN 的专辑"
#: ../root/report/ReportsIndex.js:276
msgid "Releases which have multiple Discogs links"
@@ -12865,15 +12909,15 @@ msgstr ""
#: ../root/report/ReportsIndex.js:292
msgid "Discs entered as separate releases"
-msgstr ""
+msgstr "作为独立专辑的唱片"
#: ../root/report/ReportsIndex.js:296
msgid "Tracks whose names include their sequence numbers"
-msgstr ""
+msgstr "名称包含其序号的音轨"
#: ../root/report/ReportsIndex.js:300
msgid "Releases with non-sequential track numbers"
-msgstr ""
+msgstr "音轨编号乱序的专辑"
#: ../root/report/ReportsIndex.js:304
#: ../root/report/SuperfluousDataTracks.js:39
@@ -12896,20 +12940,20 @@ msgstr ""
#: ../root/report/ReportsIndex.js:369
msgid "Releases with non-sequential mediums"
-msgstr ""
+msgstr "媒介乱序的专辑"
#: ../root/report/ReportsIndex.js:377 ../root/report/TracksWithoutTimes.js:30
msgid "Releases with unknown track times"
-msgstr ""
+msgstr "各音轨发行时间未知"
#: ../root/report/ReportsIndex.js:385
#: ../root/report/SingleMediumReleasesWithMediumTitles.js:31
msgid "Releases with a single medium that has a name"
-msgstr ""
+msgstr "有名称的单媒介专辑"
#: ../root/report/ReportsIndex.js:401
msgid "Releases with annotations"
-msgstr ""
+msgstr "有注释的专辑"
#: ../root/report/ReportsIndex.js:433 ../root/report/ShouldNotHaveDiscIds.js:32
msgid "Releases that have disc IDs, but shouldn’t"
@@ -12922,57 +12966,43 @@ msgstr ""
#: ../root/report/ReportsIndex.js:496
msgid "Recordings with annotations"
-msgstr ""
+msgstr "有注释的录音"
#: ../root/report/ReportsIndex.js:533
msgid "Recordings with dates in the future"
-msgstr ""
+msgstr "有未来日期的录音"
#: ../root/report/ReportsIndex.js:537
#: ../root/report/VideosInNonVideoMediums.js:40
msgid "Video recordings in non-video mediums"
-msgstr ""
+msgstr "非视频媒介的视频记录"
#: ../root/report/ReportsIndex.js:550
msgid "Places with annotations"
-msgstr ""
+msgstr "有注释的地点"
#: ../root/report/ReportsIndex.js:563
msgid "Series with annotations"
-msgstr ""
+msgstr "有注释的系列"
#: ../root/report/ReportsIndex.js:580
msgid "Works with annotations"
-msgstr ""
+msgstr "有注释的作品"
#: ../root/report/ReportsIndex.js:584 ../root/report/WorkSameTypeAsParent.js:35
msgid "Works with the same type as their parent"
-msgstr ""
+msgstr "与母作品类型相同的作品"
#: ../root/report/ReportsIndex.js:589
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:37
msgid "URLs"
-msgstr ""
+msgstr "URL"
#: ../root/report/ReportsIndex.js:601
#: ../root/report/WikidataLinksWithMultipleEntities.js:48
msgid "Wikidata URLs linked to multiple entities"
msgstr ""
-#: ../root/report/ReportsIndex.js:606
-#: ../root/search/components/RecordingResults.js:144
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:717
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:408
-#: ../root/static/scripts/common/components/IsrcList.js:44
-#: ../root/utility/tableColumns.js:689
-msgid "ISRCs"
-msgstr ""
-
-#: ../root/report/ReportsIndex.js:615
-#: ../root/static/scripts/common/components/IswcList.js:44
-msgid "ISWCs"
-msgstr ""
-
#: ../root/report/SeparateDiscs.js:24
msgid ""
"This report shows releases which have (disc n) or (bonus disc) in the title."
@@ -12986,7 +13016,7 @@ msgstr ""
#: ../root/report/SeparateDiscs.js:35
msgid "Discs as separate releases"
-msgstr ""
+msgstr "作为独立专辑的唱片"
#: ../root/report/SetInDifferentRg.js:24
msgid ""
@@ -13000,7 +13030,7 @@ msgstr ""
#: ../root/report/SetInDifferentRg.js:36
msgid "Mismatched release groups"
-msgstr ""
+msgstr "不匹配的专辑组"
#: ../root/report/ShouldNotHaveDiscIds.js:24
msgid ""
@@ -13008,6 +13038,8 @@ msgid ""
"does not support disc IDs, yet have disc IDs attached. Usually this means "
"the disc IDs ended up here because of a bug and should be moved or removed."
msgstr ""
+"此报告显示了至少一个媒介格式上不支持碟片ID,但仍附加了碟片ID的专辑。这通常表"
+"明某个程序缺陷附加了唱片ID,应移动或移除。"
#: ../root/report/ShowNotesButNotBroadcast.js:24
msgid ""
@@ -13026,6 +13058,8 @@ msgid ""
"has a specific name. Usually, this is not necessary and is duplicate "
"information which can be removed."
msgstr ""
+"此报告显示了含有一个媒介,且此媒介也有特定名称的专辑。通常这是不必要的,是可"
+"移除的重复信息。"
#: ../root/report/SomeFormatsUnset.js:24
msgid ""
@@ -13047,35 +13081,39 @@ msgid ""
"of the CD and contains audio or video. Otherwise, it should just be removed. "
"See the {data_track_guidelines|data track guidelines}."
msgstr ""
+"该报告列出了没有任何磁盘id的发行版本,这些版本可能在媒体的末尾包含数据音轨(如"
+"视频),但没有标记为数据音轨。如果数据轨道是CD的最后一个轨道并且包含音频或视"
+"频,则应这样标记。否则,它应该被删除。参见{data_track_guidelines|数据跟踪指"
+"南}。"
#: ../root/report/TracksNamedWithSequence.js:24
msgid ""
"This report aims to identify releases where track names include their own "
-"track number, e.g. \"1) Some Name\" (instead of just \"Some Name\"). Notice "
-"that sometimes this is justified and correct, don't automatically assume it "
-"is a mistake! If you confirm it is a mistake, please correct it."
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
msgstr ""
#: ../root/report/TracksNamedWithSequence.js:33
msgid "Releases where track names start with their track number"
-msgstr ""
+msgstr "音轨名称以编号开头的专辑"
#: ../root/report/TracksWithSequenceIssues.js:24
msgid ""
-"This report lists all releases where the track numbers are not continuous (e."
-"g. there is no \"track 2\"), or with duplicated track numbers (e.g. there "
-"are two \"track 4\"s)."
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
msgstr ""
#: ../root/report/TracksWithSequenceIssues.js:31
msgid "Releases with track number issues"
-msgstr ""
+msgstr "发行专辑的发布音轨编号"
#: ../root/report/TracksWithoutTimes.js:24
msgid ""
"This report lists all releases where some or all tracks have unknown track "
"lengths."
-msgstr ""
+msgstr "此报告列出了所有部分或全部音轨长度未知的专辑。"
#: ../root/report/UnlinkedPseudoReleases.js:24
msgid ""
@@ -13093,7 +13131,7 @@ msgstr ""
msgid ""
"This report shows recordings marked as video, but that appear in at least "
"one medium that does not support videos."
-msgstr ""
+msgstr "此报告显示标记为视频的录音,但出现在至少一种不支持视频的媒体中。"
#: ../root/report/VideosInNonVideoMediums.js:29
msgid ""
@@ -13104,6 +13142,10 @@ msgid ""
"should always be separate. If you split the recordings, consider whether it "
"makes sense to link them with a {doc_link|music video relationship}."
msgstr ""
+"这里主要有两种可能:一种是标记为视频的录音正确,但格式不对(例如,CD应该是"
+"VCD),另一种是同时用于视频和只用于音频的录音,在这种情况下,两者应该分开,因"
+"为视频录音总是分开的。如果你拆分录音,考虑是否有意义的链接它们与{doc_link|音"
+"乐视频关系}。"
#: ../root/report/WikidataLinksWithMultipleEntities.js:40
msgid ""
@@ -13122,90 +13164,94 @@ msgid ""
"guidelines}. Sometimes the parent work type might be the one that needs to "
"be changed."
msgstr ""
+"此报告显示了作品类型与至少一个母作品相同的作品(例如一个标记为奏鸣曲的作品是"
+"另一首奏鸣曲的一部分)。在大多数情况下,根据 {work_style_doc|作品风格指南},"
+"这意味着这些作品应该是不同的类型或(很可能)根本没有类型。有时,可能需要更改"
+"的是母作品的类型。"
#: ../root/report/components/ArtistCreditList.js:46
msgid "This artist credit no longer exists."
-msgstr ""
+msgstr "此艺术家名单已不存在。"
#: ../root/report/components/LabelUrlList.js:75
msgid "This label no longer exists."
-msgstr ""
+msgstr "此厂牌已不存在。"
#: ../root/report/components/ReleaseUrlList.js:83
msgid "This release no longer exists."
-msgstr ""
+msgstr "此专辑已不存在。"
#: ../root/report/components/ReportLayout.js:19
msgid "Total artists found: {count}"
-msgstr ""
+msgstr "找到的艺术家总数:{count}"
#: ../root/report/components/ReportLayout.js:20
msgid "Total artist credits found: {count}"
-msgstr ""
+msgstr "找到的艺术家名单总数:{count}"
#: ../root/report/components/ReportLayout.js:21
msgid "Total discIDs found: {count}"
-msgstr ""
+msgstr "找到的唱片 ID 总数:{count}"
#: ../root/report/components/ReportLayout.js:22
msgid "Total editors found: {count}"
-msgstr ""
+msgstr "找到的编辑者总数:{count}"
#: ../root/report/components/ReportLayout.js:23
msgid "Total events found: {count}"
-msgstr ""
+msgstr "找到的事件总数:{count}"
#: ../root/report/components/ReportLayout.js:24
msgid "Total instruments found: {count}"
-msgstr ""
+msgstr "找到的乐器总数:{count}"
#: ../root/report/components/ReportLayout.js:25
msgid "Total ISRCs found: {count}"
-msgstr ""
+msgstr "找到的 ISRC 总数:{count}"
#: ../root/report/components/ReportLayout.js:26
msgid "Total ISWCs found: {count}"
-msgstr ""
+msgstr "找到的 ISWC 总数:{count}"
#: ../root/report/components/ReportLayout.js:27
msgid "Total labels found: {count}"
-msgstr ""
+msgstr "找到的厂牌总数:{count}"
#: ../root/report/components/ReportLayout.js:28
msgid "Total places found: {count}"
-msgstr ""
+msgstr "找到的地点总数:{count}"
#: ../root/report/components/ReportLayout.js:29
msgid "Total recordings found: {count}"
-msgstr ""
+msgstr "找到的录音总数:{count}"
#: ../root/report/components/ReportLayout.js:30
msgid "Total relationships found: {count}"
-msgstr ""
+msgstr "找到的关联总数:{count}"
#: ../root/report/components/ReportLayout.js:31
msgid "Total releases found: {count}"
-msgstr ""
+msgstr "找到的专辑总数:{count}"
#: ../root/report/components/ReportLayout.js:32
msgid "Total release groups found: {count}"
-msgstr ""
+msgstr "找到的专辑组总数:{count}"
#: ../root/report/components/ReportLayout.js:33
msgid "Total series found: {count}"
-msgstr ""
+msgstr "找到的系列总数:{count}"
#: ../root/report/components/ReportLayout.js:34
msgid "Total URLs found: {count}"
-msgstr ""
+msgstr "找到的 URL 总数:{count}"
#: ../root/report/components/ReportLayout.js:35
msgid "Total works found: {count}"
-msgstr ""
+msgstr "找到的作品总数:{count}"
#: ../root/report/components/ReportLayout.js:85
msgid "Generated on {date}"
-msgstr ""
+msgstr "生成于 {date}"
#: ../root/report/constants.js:11
msgid ""
@@ -13217,18 +13263,22 @@ msgstr ""
#: ../root/report/hooks/useAnnotationColumns.js:34
msgid "Last edited"
-msgstr ""
+msgstr "上次编辑"
+
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr "编号"
#: ../root/search/SearchIndex.js:32
msgid "Tag lookup"
-msgstr ""
+msgstr "标签查询"
#: ../root/search/SearchIndex.js:34
msgid "Other lookups"
-msgstr ""
+msgstr "其他查询"
#: ../root/search/components/AreaResults.js:66
-#: ../root/search/components/ArtistResults.js:57
+#: ../root/search/components/ArtistResults.js:56
#: ../root/search/components/LabelResults.js:70
#: ../root/search/components/PlaceResults.js:67
#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
@@ -13237,35 +13287,36 @@ msgstr "生日"
#: ../root/search/components/AreaResults.js:76
msgid "Alternatively, you may {uri|add a new area}."
-msgstr ""
+msgstr "或者,您可以 {uri|add a new area}。"
-#: ../root/search/components/ArtistResults.js:86
+#: ../root/search/components/ArtistResults.js:85
msgid "Alternatively, you may {uri|add a new artist}."
-msgstr ""
+msgstr "或者,您可以 {uri|添加新艺术家}。"
#: ../root/search/components/DocResults.js:16
#: ../root/search/components/DocResults.js:18
msgid "Documentation Search"
-msgstr ""
+msgstr "文档搜索"
#: ../root/search/components/EventResults.js:78
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1044
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:220
-#: ../root/utility/tableColumns.js:383
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
msgid "Location"
-msgstr "位置"
+msgstr ""
#: ../root/search/components/EventResults.js:87
msgid "Alternatively, you may {uri|add a new event}."
-msgstr ""
+msgstr "或者,您可以 {uri|添加新事件}。"
#: ../root/search/components/InstrumentResults.js:64
msgid "Alternatively, you may {uri|add a new instrument}."
-msgstr ""
+msgstr "或者,您可以 {uri|添加新乐器}。"
#: ../root/search/components/LabelResults.js:80
msgid "Alternatively, you may {uri|add a new label}."
-msgstr ""
+msgstr "或者,您可以 {uri|添加新厂牌}。"
#: ../root/search/components/PaginatedSearchResults.js:54
msgid "The last page of results is page {last_page}."
@@ -13273,31 +13324,31 @@ msgstr ""
#: ../root/search/components/PlaceResults.js:77
msgid "Alternatively, you may {uri|add a new place}."
-msgstr ""
+msgstr "或者,您可以 {uri|添加新地点}。"
#: ../root/search/components/RecordingResults.js:120
msgid "(standalone recording)"
-msgstr ""
+msgstr "(独立录音)"
#: ../root/search/components/RecordingResults.js:178
msgid "Alternatively, you may {uri|add a new recording}."
-msgstr ""
+msgstr "或者,您可以 {uri|添加新录音}。"
#: ../root/search/components/ReleaseGroupResults.js:74
msgid "Alternatively, you may {uri|add a new release group}."
-msgstr ""
+msgstr "或者,您可以 {uri|添加新专辑组}。"
-#: ../root/search/components/ReleaseResults.js:152
+#: ../root/search/components/ReleaseResults.js:151
msgid "Alternatively, you may {uri|add a new release}."
-msgstr ""
+msgstr "或者,您可以 {uri|添加新专辑}。"
#: ../root/search/components/ResultsLayout.js:38
msgid "Last updated: {date}"
-msgstr ""
+msgstr "最后更新时间:{date}"
#: ../root/search/components/SearchError.js:24
msgid "Search Error"
-msgstr ""
+msgstr "搜索错误"
#: ../root/search/components/SearchError.js:28
msgid ""
@@ -13309,27 +13360,27 @@ msgstr ""
#: ../root/search/components/SearchForm.js:29
#: ../root/search/components/SearchForm.js:30
msgid "Up to {n}"
-msgstr ""
+msgstr "最多 {n}"
#: ../root/search/components/SearchForm.js:62
msgid "Indexed search with {doc|advanced query syntax}"
-msgstr ""
+msgstr "使用 {doc|高级检索语法} 搜索索引"
#: ../root/search/components/SearchForm.js:90
msgid "Results per page:"
-msgstr ""
+msgstr "每页显示结果条数:"
#: ../root/search/components/SearchForm.js:96
msgid "Search method:"
-msgstr ""
+msgstr "搜索方式:"
#: ../root/search/components/SeriesResults.js:67
msgid "Alternatively, you may {uri|add a new series}."
-msgstr ""
+msgstr "或者,您可以 {uri|添加新系列}。"
#: ../root/search/components/WorkResults.js:68
msgid "Alternatively, you may {uri|add a new work}."
-msgstr ""
+msgstr "或者,您可以 {uri|添加新作品}。"
#: ../root/search/error/General.js:24
msgid ""
@@ -13371,9 +13422,9 @@ msgstr ""
msgid "Sorry, your query was too large."
msgstr ""
-#: ../root/series/SeriesIndex.js:150
+#: ../root/series/SeriesIndex.js:142
msgid "This series is currently empty."
-msgstr ""
+msgstr "此系列目前为空。"
#: ../root/series/SeriesMerge.js:32
msgid ""
@@ -13383,7 +13434,7 @@ msgstr ""
#: ../root/static/scripts/account/components/ApplicationForm.js:95
msgid "Callback URL"
-msgstr ""
+msgstr "回调 URL"
#: ../root/static/scripts/account/components/ApplicationForm.js:103
msgid ""
@@ -13392,106 +13443,111 @@ msgid ""
"for installed applications."
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:180
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
msgid ""
"This is a development server. Your email address is not private or secure. "
"Proceed with caution!"
msgstr ""
+"这是一台开发用服务器。您的电子邮件地址可能不是私有和安全的。请慎重行事!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:193
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
msgid "If you change your email address, you will be required to verify it."
-msgstr ""
+msgstr "如果您更改了电子邮件地址,您将需要重新验证它。"
-#: ../root/static/scripts/account/components/EditProfileForm.js:215
-#: ../root/user/UserProfile.js:274
-msgid "Location:"
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
msgstr ""
-#: ../root/static/scripts/account/components/EditProfileForm.js:240
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
msgid ""
"You can pick the level you prefer here: your country, region or city. Be as "
"specific as you want to!"
msgstr ""
+"您可以选择您想要的详细程度:您的国家,地区,或城市。您想要多详细就能多详细!"
-#: ../root/static/scripts/account/components/EditProfileForm.js:247
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
msgid "Birth date:"
-msgstr ""
+msgstr "出生日期:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:252
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
msgid ""
"We will use your birth date to display your age in years on your profile "
"page."
-msgstr ""
+msgstr "我们会使用您的出生日期在您的个人资料页面显示年龄。"
-#: ../root/static/scripts/account/components/EditProfileForm.js:263
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
msgid "Languages Known:"
-msgstr ""
+msgstr "了解的语言:"
-#: ../root/static/scripts/account/components/EditProfileForm.js:299
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
msgid "Add a language"
-msgstr ""
+msgstr "添加一个语言"
#: ../root/static/scripts/account/components/PreferencesForm.js:157
msgid "Regional settings"
-msgstr ""
+msgstr "区域设定"
#: ../root/static/scripts/account/components/PreferencesForm.js:166
msgid "Guess timezone"
-msgstr ""
+msgstr "猜测时区"
#: ../root/static/scripts/account/components/PreferencesForm.js:171
msgid "Timezone:"
-msgstr ""
+msgstr "时区:"
#: ../root/static/scripts/account/components/PreferencesForm.js:179
msgid "Date/time format:"
-msgstr ""
+msgstr "日期/时间格式"
#: ../root/static/scripts/account/components/PreferencesForm.js:193
msgid "Allow other users to see my subscriptions"
-msgstr ""
+msgstr "允许其他用户查看我的订阅"
#: ../root/static/scripts/account/components/PreferencesForm.js:198
msgid "Allow other users to see my tags"
-msgstr ""
+msgstr "允许其他用户查看我的标签"
#: ../root/static/scripts/account/components/PreferencesForm.js:203
msgid "Allow other users to see my ratings"
-msgstr ""
+msgstr "允许其他用户查看我的评分"
#: ../root/static/scripts/account/components/PreferencesForm.js:212
msgid ""
"Mail me when one of my edits gets a \"no\" vote. (Note: the email is only "
"sent for the first \"no\" vote, not each one)"
msgstr ""
+"如果我的编辑有人投了反对票就给我发邮件。(注:此邮件仅针对第一次投“反对”票发"
+"送,而非每一次)"
#: ../root/static/scripts/account/components/PreferencesForm.js:221
msgid "When I add a note to an edit, mail me all future notes for that edit."
-msgstr ""
+msgstr "当我对某个编辑添加备注后,将来该编辑有其他备注时发送电子邮件通知。"
#: ../root/static/scripts/account/components/PreferencesForm.js:229
msgid "When I vote on an edit, mail me all future notes for that edit."
-msgstr ""
+msgstr "当我对某个编辑投票后,将来该编辑有其他备注时发送电子邮件通知。"
#: ../root/static/scripts/account/components/PreferencesForm.js:236
msgid "Send me mails with edits to my subscriptions:"
-msgstr ""
+msgstr "当我的订阅被编辑时发送电子邮件通知"
#: ../root/static/scripts/account/components/PreferencesForm.js:245
-msgid "Automatically subscribe me to artists I create."
+msgid "Automatically subscribe me to artists I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:250
-msgid "Automatically subscribe me to labels I create."
+msgid "Automatically subscribe me to labels I add."
msgstr ""
#: ../root/static/scripts/account/components/PreferencesForm.js:255
-msgid "Automatically subscribe me to series I create."
+msgid "Automatically subscribe me to series I add."
msgstr ""
#: ../root/static/scripts/account/components/RegisterForm.js:70
msgid "Your username will be publicly visible."
-msgstr ""
+msgstr "您的用户名将公开可见。"
#: ../root/static/scripts/account/components/RegisterForm.js:81
msgid ""
@@ -13500,6 +13556,8 @@ msgid ""
"email address as your username if you are completely sure you are happy with "
"that."
msgstr ""
+"您输入的用户名看起来像是一个电子邮件地址。尽管这是可行的,但请留意所有人都能"
+"看到它。请仅在您对此完全满意的情况下将电子邮件地址作为您的用户名。"
#: ../root/static/scripts/account/components/RegisterForm.js:92
#: ../root/user/Login.js:107
@@ -13510,17 +13568,17 @@ msgstr "密码:"
msgid ""
"You must provide a working email address if you wish to contribute to the "
"database."
-msgstr ""
+msgstr "如果您想对数据库做出贡献,您必须提供一个可用的电子邮件地址。"
#: ../root/static/scripts/account/components/RegisterForm.js:119
msgid "Captcha"
-msgstr ""
+msgstr "验证码"
#: ../root/static/scripts/account/components/RegisterForm.js:126
msgid ""
"Please review the {coc|MusicBrainz Code of Conduct} before creating an "
"account."
-msgstr ""
+msgstr "请在创建账号前查阅 {coc|MusicBrainz 行为准则}。"
#: ../root/static/scripts/alias/AliasEditForm.js:293
msgid "Alias Details"
@@ -13536,60 +13594,62 @@ msgstr ""
#: ../root/static/scripts/alias/AliasEditForm.js:339
msgid "This alias is no longer current."
-msgstr ""
+msgstr "此别名现在已不使用。"
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
msgid "Old"
msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
msgid "New"
-msgstr "新建"
+msgstr ""
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
msgid "Version History"
-msgstr ""
+msgstr "版本历史"
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:149
msgid "View this version"
-msgstr ""
+msgstr "查看此版本"
#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:154
msgid "no changelog specified"
-msgstr ""
+msgstr "未指定变更日志"
#: ../root/static/scripts/area/places-map.js:95
msgid "… and {place_count} other"
msgid_plural "… and {place_count} others"
-msgstr[0] ""
+msgstr[0] "… 和其他 {place_count} 个"
#: ../root/static/scripts/area/places-map.js:107
msgid "No type"
-msgstr ""
+msgstr "无类型"
#: ../root/static/scripts/area/places-map.js:109
msgid "{place_name} (closed)"
-msgstr ""
+msgstr "{place_name}(已关闭)"
#: ../root/static/scripts/area/places-map.js:125
msgid "{place_type}: {place_link} (closed)"
-msgstr ""
+msgstr "{place_type}:{place_link}(已关闭)"
#: ../root/static/scripts/area/places-map.js:130
msgid "{place_type}: {place_link}"
-msgstr ""
+msgstr "{place_type}:{place_link}"
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:220
msgid ""
"Please select the {doc|artist credits} that you want to rename to follow the "
"new artist name."
-msgstr ""
+msgstr "请选择您想重命名为新艺术家名称的 {doc|艺术家名单}。"
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:226
msgid ""
"This will enter additional edits to change each specific credit to use the "
"new name. Only use this if you are sure the existing credits are incorrect "
-"(e.g. for typos)."
+"(such as for typos)."
msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
@@ -13601,112 +13661,113 @@ msgstr ""
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:255
msgid "Show less artist credits"
-msgstr ""
+msgstr "显示更少艺术家名单"
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:257
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show less..."
-msgstr ""
+msgstr "显示更少..."
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:269
msgid "Show more artist credits"
-msgstr ""
+msgstr "显示更多艺术家名单"
#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:475
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
#: ../root/static/scripts/common/components/Collapsible.js:76
msgid "Show more..."
-msgstr ""
+msgstr "显示更多..."
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:191
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
msgid "Collection details"
-msgstr ""
+msgstr "收藏详情"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:210
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
msgid "Allow other users to see this collection"
-msgstr ""
+msgstr "允许其他用户查看这个歌曲集"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:225
-msgid "Create collection"
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
msgstr ""
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:227
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
msgid "Update collection"
-msgstr ""
+msgstr "更新收藏"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:285
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
msgid "Add collaborator"
-msgstr ""
+msgstr "添加合作编辑者"
-#: ../root/static/scripts/collection/components/CollectionEditForm.js:327
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
msgid "Remove collaborator"
-msgstr ""
+msgstr "移除合作编辑者"
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:88
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:94
msgid "An error occurred while searching. Click here to try again."
-msgstr ""
+msgstr "搜索时发生了错误。点击此处再试一次。"
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:93
msgid "Try with direct search instead."
-msgstr ""
+msgstr "尝试直接搜索。"
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:94
msgid "Try with indexed search instead."
-msgstr ""
+msgstr "尝试搜索索引。"
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
-#: ../root/static/scripts/common/components/Autocomplete2.js:807
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
msgid "Type to search, or paste an MBID"
-msgstr ""
+msgstr "输入关键词来搜索,或粘贴 MBID"
#: ../root/static/scripts/common/MB/Control/Autocomplete.js:217
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:49
msgid "Clear recent items"
-msgstr ""
+msgstr "清除最近的项目"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:482
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
msgid "Not found? Try again with direct search."
-msgstr ""
+msgstr "没找到?使用直接搜索再试一次。"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:483
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
msgid "Slow? Switch back to indexed search."
-msgstr ""
-
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:704
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:400
-msgid "appears on"
-msgstr ""
+msgstr "太慢了?切换回搜索索引。"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:710
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:404
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
msgid "standalone recording"
-msgstr ""
+msgstr "独立录音"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:804
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:496
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
msgid "{release_group_type} by {artist}"
-msgstr ""
+msgstr "{artist} 的 {release_group_type}"
-#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1043
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
msgid "Performers"
-msgstr ""
+msgstr "表演者"
#: ../root/static/scripts/common/MB/Control/EditList.js:45
msgid "Vote on all edits:"
-msgstr ""
+msgstr "所有编辑收到的投票:"
#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
-msgid "Delete Note"
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
msgstr ""
#: ../root/static/scripts/common/artworkViewer.js:76
msgid "Image {current} of {total}"
-msgstr ""
+msgstr "第 {current} 张图片,共 {total} 张"
#: ../root/static/scripts/common/components/AcoustIdCell.js:116
#: ../root/static/scripts/common/components/FingerprintTable.js:114
@@ -13726,7 +13787,7 @@ msgstr "(无变更日志)"
#: ../root/static/scripts/common/components/Annotation.js:83
msgid "Annotation last modified by {user} on {date}."
-msgstr ""
+msgstr "注释最后被 {user} 编辑于 {date}。"
#: ../root/static/scripts/common/components/Annotation.js:102
msgid ""
@@ -13736,19 +13797,19 @@ msgstr ""
#: ../root/static/scripts/common/components/Annotation.js:114
msgid "Annotation last modified on {date}."
-msgstr ""
+msgstr "注释最后被编辑于 {date}。"
#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
-msgid "This artist credit has {edit_search|pending edits}."
+msgid "This artist credit has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
-msgid "This artist credit has pending edits."
+msgid "This artist credit has open edits."
msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:29
msgid "{artist} ({roles})"
-msgstr ""
+msgstr "{artist}({roles})"
#: ../root/static/scripts/common/components/ArtistRoles.js:46
msgid "Artist Roles"
@@ -13757,112 +13818,112 @@ msgstr ""
#: ../root/static/scripts/common/components/ArtistRoles.js:50
#: ../root/static/scripts/common/components/WorkArtists.js:31
msgid "Show all artists"
-msgstr ""
+msgstr "显示所有艺术家"
#: ../root/static/scripts/common/components/ArtistRoles.js:51
#: ../root/static/scripts/common/components/WorkArtists.js:32
msgid "Show less artists"
-msgstr ""
+msgstr "显示更少艺术家"
#: ../root/static/scripts/common/components/AttributeList.js:69
msgid "Show all attributes"
-msgstr ""
+msgstr "显示所有属性"
#: ../root/static/scripts/common/components/AttributeList.js:70
msgid "Show less attributes"
-msgstr ""
+msgstr "显示更少的属性"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:55
msgid "Recent items"
-msgstr ""
+msgstr "最近的项目"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:64
msgid "Try again with direct search."
-msgstr ""
+msgstr "使用直接搜索再试一次。"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:70
msgid "Try again with indexed search."
-msgstr ""
+msgstr "使用搜索索引再试一次。"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:76
msgid "An error occurred while looking up the MBID you entered."
-msgstr ""
+msgstr "查找您输入的 MBID 时发生了错误。"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:82
msgid "The type of entity you pasted isn’t supported here."
-msgstr ""
+msgstr "此处不支持您粘贴的实体"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:127
msgid "Search for an area"
-msgstr ""
+msgstr "搜索地区"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:129
msgid "Search for an editor"
-msgstr ""
+msgstr "搜索编辑者"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:130
msgid "Search for an event"
-msgstr ""
+msgstr "搜索事件"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:131
msgid "Search for a genre"
-msgstr ""
+msgstr "搜索流派"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:132
msgid "Search for an instrument"
-msgstr ""
+msgstr "搜索乐器"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:133
msgid "Search for a label"
-msgstr ""
+msgstr "搜索厂牌"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:135
msgid "Search for a relationship type"
-msgstr ""
+msgstr "搜索关联类型"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:136
msgid "Search for a place"
-msgstr ""
+msgstr "搜索地点"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:137
msgid "Search for a recording"
-msgstr ""
+msgstr "搜索录音"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:138
msgid "Search for a release"
-msgstr ""
+msgstr "搜索专辑"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:139
msgid "Search for a release group"
-msgstr ""
+msgstr "搜索专辑组"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:140
msgid "Search for a series"
-msgstr ""
+msgstr "搜索系列"
#: ../root/static/scripts/common/components/Autocomplete2/constants.js:141
msgid "Search for a work"
-msgstr ""
+msgstr "搜索作品"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:329
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
msgid "{forward_link_phrase} / {backward_link_phrase}"
-msgstr ""
+msgstr "{forward_link_phrase} / {backward_link_phrase}"
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:395
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
msgid "by {artist}"
msgstr ""
-#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:459
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
msgid "{first_list_item} … {last_list_item}"
-msgstr ""
+msgstr "{first_list_item} … {last_list_item}"
#: ../root/static/scripts/common/components/Autocomplete2/reducer.js:159
msgid "Hide descriptions"
-msgstr ""
+msgstr "隐藏描述"
#: ../root/static/scripts/common/components/Autocomplete2/reducer.js:160
msgid "Show descriptions"
-msgstr ""
+msgstr "显示描述"
#: ../root/static/scripts/common/components/Autocomplete2/reducer.js:255
msgid ""
@@ -13871,27 +13932,27 @@ msgid ""
msgid_plural ""
"{n} results found. Press enter to select, or use the up and down arrow keys "
"to navigate."
-msgstr[0] ""
+msgstr[0] "找到 {n} 个结果。使用回车键选择,或使用上下方向键导航。"
#: ../root/static/scripts/common/components/Cardinality.js:20
msgid "Few relationships"
-msgstr ""
+msgstr "很少有关系"
#: ../root/static/scripts/common/components/Cardinality.js:23
msgid "Many relationships"
-msgstr ""
+msgstr "多种关联"
#: ../root/static/scripts/common/components/CollapsibleList.js:87
msgid "show {n} more"
-msgstr ""
+msgstr "多显示 {n} 个"
#: ../root/static/scripts/common/components/CollapsibleList.js:109
msgid "show less"
-msgstr ""
+msgstr "显示更少"
#: ../root/static/scripts/common/components/CommonsImage.js:47
msgid "Image from Wikimedia Commons"
-msgstr ""
+msgstr "图片来自维基共享资源"
#: ../root/static/scripts/common/components/CritiqueBrainzReview.js:37
msgid "{review_link|Review} by {author} on {date}"
@@ -13904,7 +13965,7 @@ msgstr ""
#: ../root/static/scripts/common/components/EditorLink.js:23
msgid "[missing editor]"
-msgstr ""
+msgstr "[缺失编辑者]"
#: ../root/static/scripts/common/components/EntityLink.js:125
#: ../root/url/UrlIndex.js:31
@@ -13935,34 +13996,34 @@ msgstr ""
#: ../root/static/scripts/common/components/Filter.js:64
msgid "Filter"
-msgstr ""
+msgstr "过滤"
#: ../root/static/scripts/common/components/FilterForm.js:44
msgid "Filter events"
-msgstr ""
+msgstr "筛选活动"
#: ../root/static/scripts/common/components/FilterForm.js:46
msgid "Filter recordings"
-msgstr ""
+msgstr "过滤录音"
#: ../root/static/scripts/common/components/FilterForm.js:48
msgid "Filter releases"
-msgstr ""
+msgstr "过滤专辑"
#: ../root/static/scripts/common/components/FilterForm.js:50
msgid "Filter release groups"
-msgstr ""
+msgstr "过滤专辑组"
#: ../root/static/scripts/common/components/FilterForm.js:52
msgid "Filter works"
-msgstr ""
+msgstr "筛选作品"
#: ../root/static/scripts/common/components/FilterForm.js:99
msgid "Secondary type"
-msgstr ""
+msgstr "二级类型"
#: ../root/static/scripts/common/components/FilterForm.js:118
-msgid "Artist credit:"
+msgid "Artist credit"
msgstr ""
#: ../root/static/scripts/common/components/FilterForm.js:242
@@ -13975,59 +14036,59 @@ msgstr ""
#: ../root/static/scripts/common/components/FingerprintTable.js:105
msgid "Unlink"
-msgstr ""
+msgstr "取消链接"
#: ../root/static/scripts/common/components/FingerprintTable.js:113
msgid "This recording does not have any associated AcoustIDs"
-msgstr ""
+msgstr "此录音未与任何AcoustID关联"
#: ../root/static/scripts/common/components/IrombookImage.js:42
msgid "IROMBOOK image/IROMBOOKのイラスト"
-msgstr ""
+msgstr "IROMBOOK 图像/IROMBOOK插图"
#: ../root/static/scripts/common/components/IsrcList.js:48
msgid "Show all ISRCs"
-msgstr ""
+msgstr "显示所有 ISRC"
#: ../root/static/scripts/common/components/IsrcList.js:49
msgid "Show less ISRCs"
-msgstr ""
+msgstr "显示更少的 ISRC"
#: ../root/static/scripts/common/components/IswcList.js:48
msgid "Show all ISWCs"
-msgstr ""
+msgstr "显示所有 ISWC"
#: ../root/static/scripts/common/components/IswcList.js:49
msgid "Show less ISWCs"
-msgstr ""
+msgstr "显示更少的 ISWC"
#: ../root/static/scripts/common/components/MediumDescription.js:19
msgid "{medium_format} {position}"
-msgstr ""
+msgstr "{medium_format} {position}"
#: ../root/static/scripts/common/components/MediumLink.js:21
msgid "{medium} on {release}"
-msgstr ""
+msgstr "{release} 的 {medium}"
#: ../root/static/scripts/common/components/OrderableDirection.js:25
msgid "Forward"
-msgstr ""
+msgstr "发送"
#: ../root/static/scripts/common/components/OrderableDirection.js:28
msgid "Backward"
-msgstr ""
+msgstr "向后"
#: ../root/static/scripts/common/components/PostParameters.js:47
msgid "Data submitted with this request"
-msgstr ""
+msgstr "此请求提交的数据"
#: ../root/static/scripts/common/components/RelatedSeries.js:35
msgid "Related series"
-msgstr ""
+msgstr "相关系列"
#: ../root/static/scripts/common/components/RelatedWorks.js:35
msgid "Related works"
-msgstr ""
+msgstr "相关作品"
#: ../root/static/scripts/common/components/Relationships.js:109
msgid ""
@@ -14036,80 +14097,80 @@ msgstr ""
#: ../root/static/scripts/common/components/Relationships.js:120
msgid "{link} has no relationships."
-msgstr ""
+msgstr "{link} 没有关联。"
#: ../root/static/scripts/common/components/ReleaseEvents.js:52
msgid "Missing country"
-msgstr ""
+msgstr "缺少国家"
#: ../root/static/scripts/common/components/ReleaseEvents.js:69
msgid "Missing date"
-msgstr ""
+msgstr "缺失日期"
#: ../root/static/scripts/common/components/ReleaseEvents.js:94
msgid "Show all release events"
-msgstr ""
+msgstr "显示所有发行事件"
#: ../root/static/scripts/common/components/ReleaseEvents.js:95
msgid "Show less release events"
-msgstr ""
+msgstr "显示更少的发行活动"
#: ../root/static/scripts/common/components/ReleaseGroupAppearances.js:36
msgid "and another {num} release group"
msgid_plural "and another {num} release groups"
-msgstr[0] ""
+msgstr[0] "以及其他 {num} 个专辑组"
#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:27
msgid "{start_track}–{end_track}"
-msgstr ""
+msgstr "{start_track}–{end_track}"
#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:93
#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:276
msgid "{num}. {relationship}"
-msgstr ""
+msgstr "{num}. {relationship}"
#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:98
msgid "{relationship} (order: {num})"
-msgstr ""
+msgstr "{relationship}(编号:{num})"
#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:110
msgid "track {tracks}"
msgid_plural "tracks {tracks}"
-msgstr[0] ""
+msgstr[0] "音轨 {tracks}"
#: ../root/static/scripts/common/components/TagEditor.js:105
msgid "Withdraw vote"
-msgstr ""
+msgstr "撤回投票"
#: ../root/static/scripts/common/components/TagEditor.js:127
msgid "You’ve upvoted this tag"
-msgstr ""
+msgstr "您已赞成此标签"
#: ../root/static/scripts/common/components/TagEditor.js:131
msgid "Upvote"
-msgstr ""
+msgstr "赞成票"
#: ../root/static/scripts/common/components/TagEditor.js:141
msgid "You’ve downvoted this tag"
-msgstr ""
+msgstr "您已否决此标签"
#: ../root/static/scripts/common/components/TagEditor.js:145
msgid "Downvote"
-msgstr ""
+msgstr "否决票"
#: ../root/static/scripts/common/components/TagEditor.js:549
#: ../root/user/UserTagList.js:94
msgid "There are no genres to show."
-msgstr ""
+msgstr "没有可显示的流派。"
#: ../root/static/scripts/common/components/TagEditor.js:559
#: ../root/user/UserTagList.js:115
msgid "There are no other tags to show."
-msgstr ""
+msgstr "没有可显示的其他标签。"
#: ../root/static/scripts/common/components/TagEditor.js:563
msgid "Nobody has tagged this yet."
-msgstr ""
+msgstr "还没有人为此添加标签。"
#: ../root/static/scripts/common/components/TagEditor.js:574
msgid ""
@@ -14123,11 +14184,11 @@ msgstr ""
#: ../root/static/scripts/common/components/TagEditor.js:588
msgid "Show all tags."
-msgstr ""
+msgstr "显示所有标签。"
#: ../root/static/scripts/common/components/TagEditor.js:597
msgid "All tags are being shown."
-msgstr ""
+msgstr "已显示所有标签。"
#: ../root/static/scripts/common/components/TagEditor.js:606
msgid ""
@@ -14140,7 +14201,7 @@ msgstr ""
#: ../root/static/scripts/common/components/TagEditor.js:626
msgid "Add Tags"
-msgstr ""
+msgstr "添加标签"
#: ../root/static/scripts/common/components/TagEditor.js:629
msgid ""
@@ -14150,11 +14211,11 @@ msgstr ""
#: ../root/static/scripts/common/components/TagEditor.js:643
msgid "Submit tags"
-msgstr ""
+msgstr "提交标签"
#: ../root/static/scripts/common/components/TagEditor.js:689
msgid "see all tags"
-msgstr ""
+msgstr "查看所有标签"
#: ../root/static/scripts/common/components/TagEditor.js:705
msgctxt "verb"
@@ -14163,7 +14224,7 @@ msgstr "标签"
#: ../root/static/scripts/common/components/TaggerIcon.js:79
msgid "Open in tagger"
-msgstr ""
+msgstr "在标签工具中打开"
#: ../root/static/scripts/common/components/WikipediaExtract.js:64
msgid "Wikipedia"
@@ -14171,7 +14232,7 @@ msgstr "Wikipedia"
#: ../root/static/scripts/common/components/WikipediaExtract.js:70
msgid "Continue reading at Wikipedia..."
-msgstr ""
+msgstr "前往维基百科继续阅读..."
#: ../root/static/scripts/common/components/WikipediaExtract.js:75
msgid ""
@@ -14181,27 +14242,27 @@ msgstr ""
#: ../root/static/scripts/common/components/WorkArtists.js:27
msgid "Work Artists"
-msgstr ""
+msgstr "作品艺术家:"
#: ../root/static/scripts/common/entity.js:256
msgid "You selected {label}."
-msgstr ""
+msgstr "您已选择 {label}。"
#: ../root/static/scripts/common/entity.js:262
msgid "Label code: {code}"
-msgstr ""
+msgstr "厂牌编码:{code}"
#: ../root/static/scripts/common/entity.js:289
msgid "You selected {area}."
-msgstr ""
+msgstr "您已选择 {area}。"
#: ../root/static/scripts/common/entity.js:382
msgid "You selected {releasegroup}."
-msgstr ""
+msgstr "您已选择 {releasegroup}。"
#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:138
msgid "Failed to load the medium."
-msgstr ""
+msgstr "加载媒介失败。"
#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:209
msgid ""
@@ -14211,43 +14272,43 @@ msgstr ""
#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:226
msgid "Load all tracks..."
-msgstr ""
+msgstr "加载所有音轨..."
#: ../root/static/scripts/common/i18n/hyphenateTitle.js:14
msgid "{title} - {subtitle}"
-msgstr ""
+msgstr "{title} - {subtitle}"
#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:25
msgid "{semicolon_only_list_item}; {rest}"
-msgstr ""
+msgstr "{semicolon_only_list_item};{rest}"
#: ../root/static/scripts/common/utility/bracketed.js:19
msgid "[{text}]"
-msgstr ""
+msgstr "[{text}]"
#: ../root/static/scripts/common/utility/bracketed.js:22
msgid "({text})"
-msgstr ""
+msgstr "({text})"
#: ../root/static/scripts/common/utility/formatDatePeriod.js:22
msgid " – ????"
-msgstr ""
+msgstr " – ????"
#: ../root/static/scripts/common/utility/formatDatePeriod.js:31
msgid "{begin_date} – {end_date}"
-msgstr ""
+msgstr "{begin_date} – {end_date}"
#: ../root/static/scripts/common/utility/formatDatePeriod.js:37
msgid "– {end_date}"
-msgstr ""
+msgstr "– {end_date}"
#: ../root/static/scripts/common/utility/formatDatePeriod.js:42
msgid "{begin_date} – ????"
-msgstr ""
+msgstr "{begin_date} – ????"
#: ../root/static/scripts/common/utility/formatDatePeriod.js:43
msgid "{begin_date} –"
-msgstr ""
+msgstr "{begin_date} –"
#: ../root/static/scripts/common/utility/formatEntityTypeName.js:35
#: ../root/tag/TagLayout.js:33
@@ -14255,37 +14316,37 @@ msgctxt "plural"
msgid "Series"
msgstr "系列"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:24
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
msgid "on {date}"
-msgstr ""
+msgstr "于 {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:26
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
msgid "in {date}"
-msgstr ""
+msgstr "于 {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:28
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
msgid "from {begin_date} until {end_date}"
-msgstr ""
+msgstr "从 {begin_date} 到 {end_date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:33
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
msgid "from {date} to ????"
-msgstr ""
+msgstr "从 {date} 到 ????"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:35
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
msgid "from {date} to present"
-msgstr ""
+msgstr "从 {date} 至今"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:37
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
msgid "until {date}"
-msgstr ""
+msgstr "直到 {date}"
-#: ../root/static/scripts/common/utility/relationshipDateText.js:39
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
msgid "ended"
-msgstr ""
+msgstr "已终止"
#: ../root/static/scripts/common/utility/tableColumns.js:24
msgid "AcoustIDs"
-msgstr ""
+msgstr "AcoustID"
#: ../root/static/scripts/common/utility/yesNo.js:11
msgid "Yes"
@@ -14297,37 +14358,39 @@ msgstr "否"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:51
msgid "Began:"
-msgstr ""
+msgstr "开始于:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
-msgid "Ended:"
+msgctxt "artist end date"
+msgid "Ended"
msgstr ""
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
msgid "This person is deceased."
-msgstr ""
+msgstr "此人已逝世。"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:74
msgid "Dissolved:"
-msgstr ""
+msgstr "解散:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:75
msgid "This group has dissolved."
-msgstr ""
+msgstr "此团体已解散。"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:77
msgid "Founded in:"
-msgstr ""
+msgstr "成立于:"
#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:77
msgid "Dissolved in:"
-msgstr ""
+msgstr "解散于:"
#: ../root/static/scripts/edit/URLCleanup.js:383
msgid ""
"Please link to a channel, not a specific video. Videos should be linked to "
"the appropriate recordings or releases instead."
msgstr ""
+"请链接到某个频道,而不是某个特定的视频。视频应该链接到适当的录音或专辑。"
#: ../root/static/scripts/edit/URLCleanup.js:389
msgid ""
@@ -14339,7 +14402,7 @@ msgstr ""
msgid ""
"Please link to a specific video. Add channel pages to the relevant artist, "
"label, etc. instead."
-msgstr ""
+msgstr "请链接到具体的视频。添加相关的歌手,标签等渠道页面。"
#: ../root/static/scripts/edit/URLCleanup.js:399
msgid ""
@@ -14347,6 +14410,8 @@ msgid ""
"release group level with the “lyrics” relationship, rather than directly to "
"any specific release."
msgstr ""
+"这是一个歌词网站。因此,网站的链接应该在专辑组级别添加“歌词”关系,而不是直接"
+"添加到任何特定的专辑。"
#: ../root/static/scripts/edit/URLCleanup.js:571
msgid ""
@@ -14354,21 +14419,24 @@ msgid ""
"find the appropriate release link for this release, please check the "
"Releases tab from {album_url|your link}."
msgstr ""
+"所有音乐的“{album_url_pattern}”链接都应该添加到专辑组中。要找到这个专辑的适当"
+"发行链接,请从{album_url|您的链接}检查专辑选项卡。"
#: ../root/static/scripts/edit/URLCleanup.js:658
#: ../root/static/scripts/edit/URLCleanup.js:921
-#: ../root/static/scripts/edit/URLCleanup.js:4224
-#: ../root/static/scripts/edit/URLCleanup.js:5228
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
msgid ""
"This is a redirect link. Please follow {redirect_url|your link} and add the "
"link it redirects to instead."
msgstr ""
+"这是一个重定向链接。请关注{redirect_url|您的链接}并添加它重定向后的链接。"
#: ../root/static/scripts/edit/URLCleanup.js:676
msgid ""
"This is a link to a user video and should not be added. Please add the "
"product link instead, if relevant."
-msgstr ""
+msgstr "这是一个用户视频的链接,不应该添加。如果相关,请添加产品链接。"
#: ../root/static/scripts/edit/URLCleanup.js:881
msgid ""
@@ -14380,12 +14448,12 @@ msgstr ""
msgid ""
"Please link to the main page for the artist, not to a specific album or "
"track."
-msgstr ""
+msgstr "请链接到此艺术家的主页,而非特定专辑或音轨。"
#: ../root/static/scripts/edit/URLCleanup.js:1147
msgid ""
"Please link to the main page for the label, not to a specific album or track."
-msgstr ""
+msgstr "请链接到此厂牌的主页,而非特定专辑或音轨。"
#: ../root/static/scripts/edit/URLCleanup.js:1169
msgid ""
@@ -14443,118 +14511,126 @@ msgid ""
"profile page instead. If you want to link to a video, {url|add a standalone "
"recording} for it instead."
msgstr ""
+"请不要直接链接到图片,而是链接到适当的Instagram主页。如果你想链接到一个视频,"
+"{url|添加一个独立的录音}。"
#: ../root/static/scripts/edit/URLCleanup.js:3045
msgid "This is an internal Instagram page and should not be added."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4121
+#: ../root/static/scripts/edit/URLCleanup.js:4087
msgid ""
"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
"release groups, and linking to them is currently disallowed. Please consider "
"adding Musixmatch links to the relevant artists and works instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:4745
+#: ../root/static/scripts/edit/URLCleanup.js:4711
msgid "Only RYM music videos can be linked to recordings."
-msgstr ""
+msgstr "只有RYM的音乐视频可以链接到录音。"
-#: ../root/static/scripts/edit/URLCleanup.js:4807
+#: ../root/static/scripts/edit/URLCleanup.js:4773
msgid ""
"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
"your link}, make sure the link it redirects to is still the correct one and, "
"if so, add that link instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5384
+#: ../root/static/scripts/edit/URLCleanup.js:5350
msgid "Please link to Threads profiles, not threads."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:5771
+#: ../root/static/scripts/edit/URLCleanup.js:5737
msgid "This is not a profile, but a Twitter documentation page."
-msgstr ""
+msgstr "这不是个人资料页,而是一个 Twitter 文档页面。"
-#: ../root/static/scripts/edit/URLCleanup.js:5785
+#: ../root/static/scripts/edit/URLCleanup.js:5751
msgid "Please link to Twitter profiles, not tweets."
-msgstr ""
+msgstr "请链接至 Twitter 个人资料,而非推文。"
-#: ../root/static/scripts/edit/URLCleanup.js:5803
+#: ../root/static/scripts/edit/URLCleanup.js:5769
msgid "This site does not allow direct links to their images."
-msgstr ""
+msgstr "此网站不允许图片直链。"
-#: ../root/static/scripts/edit/URLCleanup.js:6009
+#: ../root/static/scripts/edit/URLCleanup.js:5975
msgid ""
"Please link to the “{allowed_url_pattern}” page rather than this "
"“{current_url_pattern}” link."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6092
+#: ../root/static/scripts/edit/URLCleanup.js:6058
msgid ""
"There is an unencoded “?” or “#” character in this URL. Please check whether "
"it is useless and should be removed, or whether it is an error and the URL "
"is misencoded."
msgstr ""
+"此 URL 中有未编码的 “?” 或 “#” 字符。请检查它们是否是无用的,并且应该被移除,"
+"或是 URL 被错误编码。"
-#: ../root/static/scripts/edit/URLCleanup.js:6112
+#: ../root/static/scripts/edit/URLCleanup.js:6078
msgid ""
"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
"Link to the appropriate WhoSampled artist, track or album page instead."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6133
+#: ../root/static/scripts/edit/URLCleanup.js:6099
msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
-msgstr ""
+msgstr "请将 WhoSampled “{album_url_pattern}” 页面链接至专辑组。"
-#: ../root/static/scripts/edit/URLCleanup.js:6151
+#: ../root/static/scripts/edit/URLCleanup.js:6117
msgid "Please link WhoSampled artist pages to artists."
-msgstr ""
+msgstr "请将 WhoSampled 艺术家页面链接至艺术家。"
-#: ../root/static/scripts/edit/URLCleanup.js:6163
+#: ../root/static/scripts/edit/URLCleanup.js:6129
msgid "Please link WhoSampled track pages to recordings."
-msgstr ""
+msgstr "请将 WhoSampled 音轨页面链接至录音。"
-#: ../root/static/scripts/edit/URLCleanup.js:6230
+#: ../root/static/scripts/edit/URLCleanup.js:6196
msgid ""
"Links to specific sections of Wikipedia articles are not allowed. Please "
"remove “{fragment}” if still appropriate. See the {url|guidelines}."
msgstr ""
+"不允许链接至维基百科文字的特定部分。如果合适,请移除 “{fragment}”。详见 "
+"{url|指南}。"
-#: ../root/static/scripts/edit/URLCleanup.js:6255
+#: ../root/static/scripts/edit/URLCleanup.js:6221
msgid ""
"Links to Wikipedia user pages are not allowed. Please link only to actual "
"Wikipedia articles."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6375
+#: ../root/static/scripts/edit/URLCleanup.js:6341
msgid ""
"This is a playlist link, which isn’t a video channel and is not guaranteed "
"to be officially approved. Please link to the official channel for this "
"entity, if it exists, instead."
msgstr ""
+"这是一个播放列表链接,不是视频频道,也不能保证得到官方批准。如果该实体存在,"
+"请链接到该实体的官方频道。"
-#: ../root/static/scripts/edit/URLCleanup.js:6415
+#: ../root/static/scripts/edit/URLCleanup.js:6381
msgid "Only video and playlist links are allowed on releases."
-msgstr ""
+msgstr "专辑只能有视频或播放列表链接。"
-#: ../root/static/scripts/edit/URLCleanup.js:6447
+#: ../root/static/scripts/edit/URLCleanup.js:6413
msgid ""
"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
"links to a release is currently blocked. Please add this Wikipedia link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6459
+#: ../root/static/scripts/edit/URLCleanup.js:6425
msgid ""
"Wikidata normally has no entries for specific releases, so adding Wikidata "
"links to a release is currently blocked. Please add this Wikidata link to "
"the release group instead, if appropriate."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6670
+#: ../root/static/scripts/edit/URLCleanup.js:6636
msgid "Some relationship types are missing for this URL."
msgstr ""
-#: ../root/static/scripts/edit/URLCleanup.js:6687
+#: ../root/static/scripts/edit/URLCleanup.js:6653
#: ../root/static/scripts/edit/externalLinks.js:1022
msgid "This relationship type combination is invalid."
msgstr ""
@@ -14563,102 +14639,103 @@ msgstr ""
#: ../root/static/scripts/edit/externalLinks.js:703
#: ../root/static/scripts/release/components/EditWorkDialog.js:175
msgid "Required field."
-msgstr ""
+msgstr "必填项。"
#: ../root/static/scripts/edit/components/AddEntityDialog.js:15
msgid "Add a new area"
-msgstr ""
+msgstr "添加新地区"
#: ../root/static/scripts/edit/components/AddEntityDialog.js:16
msgid "Add a new artist"
-msgstr ""
+msgstr "添加新艺术家"
#: ../root/static/scripts/edit/components/AddEntityDialog.js:17
msgid "Add a new event"
-msgstr ""
+msgstr "添加新活动"
#: ../root/static/scripts/edit/components/AddEntityDialog.js:18
msgid "Add a new instrument"
-msgstr ""
+msgstr "添加新乐器"
#: ../root/static/scripts/edit/components/AddEntityDialog.js:19
msgid "Add a new label"
-msgstr ""
+msgstr "添加新厂牌"
#: ../root/static/scripts/edit/components/AddEntityDialog.js:20
msgid "Add a new place"
-msgstr ""
+msgstr "添加新地点"
#: ../root/static/scripts/edit/components/AddEntityDialog.js:22
msgid "Add a new release group"
-msgstr ""
+msgstr "添加新专辑组"
#: ../root/static/scripts/edit/components/AddEntityDialog.js:23
msgid "Add a new series"
-msgstr ""
+msgstr "添加新系列"
#: ../root/static/scripts/edit/components/AddEntityDialog.js:24
msgid "Add a new work"
-msgstr ""
+msgstr "添加新作品"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:61
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
msgid ""
"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
"documentation for more information."
msgstr ""
+"使用以下表单栏来输入合作关系。如需更多信息请参见 {ac|艺术家名单} 文档。"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:76
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
msgid "[missing track name]"
-msgstr ""
+msgstr "[缺失音轨名称]"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
msgid "You haven’t entered a track name yet."
-msgstr ""
+msgstr "您还没有输入音轨名称。"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:80
-msgid "This track hasn’t been created yet."
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
msgid "Artist in MusicBrainz:"
-msgstr ""
+msgstr "MusicBrainz 中的艺术家:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
msgid "Artist as credited:"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:100
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
msgid "Join phrase:"
-msgstr ""
+msgstr "连接词:"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:124
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
msgid "Add Artist Credit"
-msgstr ""
+msgstr "添加艺术家信息"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:136
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
msgid "Change all artists on this release that match “{name}”"
-msgstr ""
+msgstr "修改此专辑内匹配 “{name}” 的所有艺术家"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:140
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
msgid "Change all artists on this release that are currently empty"
msgstr ""
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:151
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
msgid "Copy Credits"
-msgstr ""
+msgstr "复制名单"
-#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:158
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
msgid "Paste Credits"
-msgstr ""
+msgstr "粘贴名单"
#: ../root/static/scripts/edit/components/ArtistCreditNameEditor.js:130
msgid "Remove Artist Credit"
-msgstr ""
+msgstr "移除艺术家信息"
#: ../root/static/scripts/edit/components/DateRangeFieldset.js:201
#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:179
msgid "Copy to end date"
-msgstr ""
+msgstr "复制到结束日期"
#: ../root/static/scripts/edit/components/EnterEditNote.js:53
msgid ""
@@ -14667,52 +14744,55 @@ msgid ""
"and to users who see the edit years later), but it can also encourage other "
"users to vote on the edit — thus making it get applied faster."
msgstr ""
+"强烈建议输入{note|编辑笔记},说明您从哪里获得信息。它不仅使你的来源清晰(无论"
+"是现在还是多年后看到编辑的用户),而且还可以鼓励其他用户对编辑进行投票——从而使"
+"它更快地被应用。"
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
-msgid "This entity has {edits_link|pending edits}."
+msgid "This entity has {edits_link|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
-msgid "This entity has pending edits."
+msgid "This entity has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:202
msgid "This relationship has ended."
-msgstr ""
+msgstr "此关联已终止"
#: ../root/static/scripts/edit/components/NewNotesAlertCheckbox.js:35
msgid "Show me an alert whenever I receive a new edit note."
-msgstr ""
+msgstr "每当我收到新的编辑备注时显示提示。"
#: ../root/static/scripts/edit/components/PartialDateInput.js:56
msgid "The date you've entered is not valid"
-msgstr ""
+msgstr "您输入的日期无效"
#: ../root/static/scripts/edit/components/PossibleDuplicates.js:24
msgid "Possible Duplicates"
-msgstr ""
+msgstr "可能的重复"
#: ../root/static/scripts/edit/components/PossibleDuplicates.js:25
msgid "We found the following entities with very similar names:"
-msgstr ""
+msgstr "我们找到以下名称十分相似的实体:"
#: ../root/static/scripts/edit/components/PossibleDuplicates.js:38
msgid "Yes, I still want to enter “{entity_name}”."
-msgstr ""
+msgstr "是的,我仍然想添加 “{entity_name}”。"
#: ../root/static/scripts/edit/components/PossibleDuplicates.js:45
msgid ""
"Please enter a {doc_disambiguation|disambiguation} to help distinguish this "
"entity from the others."
-msgstr ""
+msgstr "请输入 {doc_disambiguation|消歧义说明} 以帮助区别本实体与其他实体。"
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
-msgid "This relationship has {edit_search|pending edits}."
+msgid "This relationship has {edit_search|open edits}."
msgstr ""
#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
-msgid "This relationship has pending edits."
+msgid "This relationship has open edits."
msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
@@ -14725,19 +14805,19 @@ msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:90
msgid "New position:"
-msgstr ""
+msgstr "新位置:"
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:107
msgid "New disc title:"
-msgstr ""
+msgstr "新唱片标题:"
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:127
msgid "(was medium {position}: {name} on release {release})"
-msgstr ""
+msgstr "(是 {release} 的媒介 {position}: {name})"
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:141
msgid "(was medium {position} on release {release})"
-msgstr ""
+msgstr "(是 {release} 的媒介 {position})"
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:197
msgid ""
@@ -14749,7 +14829,7 @@ msgstr ""
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:203
msgid ""
"This requires that corresponding mediums have the same number of tracks."
-msgstr ""
+msgstr "这要求对应的媒介有相同数量的音轨。"
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:207
msgid ""
@@ -14757,47 +14837,46 @@ msgid ""
"position. For example, to merge a medium into medium 2 of a release, it will "
"need to be set as medium 2 of the release being merged."
msgstr ""
+"请确认所有媒介在合并的专辑中位置正确。例如,要将一个媒介合并为专辑中的媒介2,"
+"需要将其设为待合并专辑的媒介2。"
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:217
msgid ""
"The recording artists do not match! Perhaps you meant to use the \"append "
"mediums\" merge strategy?"
-msgstr ""
+msgstr "录音艺术家不匹配!或许您是想使用“追加媒介”的合并策略?"
#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:222
msgid ""
"The recordings that will be merged if you continue with the current merge "
"strategy include the following, whose artists differ:"
-msgstr ""
+msgstr "如果你继续使用现有的合并策略,下列录音会被合并,尽管艺术家不同:"
#: ../root/static/scripts/edit/components/URLInputPopover.js:97
msgid "Cleaned up to"
-msgstr ""
-
-#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
-msgid "Release events:"
-msgstr ""
+msgstr "清理为"
+#: ../root/static/scripts/edit/components/forms.js:104
#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
#: ../root/static/scripts/release-editor/init.js:271
msgid "All of your changes will be lost if you leave this page."
-msgstr ""
+msgstr "如果离开此网页,您的所有更改将会丢失。"
#: ../root/static/scripts/edit/externalLinks.js:708
msgid "Please enter a valid URL, such as “{example_url}”."
-msgstr ""
+msgstr "请输入一个有效的 URL,例如“{example_url}”。"
#: ../root/static/scripts/edit/externalLinks.js:715
msgid ""
"“{example_url}” is just an example. Please enter the actual link you want to "
"add."
-msgstr ""
+msgstr "“{example_url}”只是一个例子。请输入你想添加的实际链接。"
#: ../root/static/scripts/edit/externalLinks.js:723
msgid ""
"Links to MusicBrainz URLs are not allowed. Did you mean to paste something "
"else?"
-msgstr ""
+msgstr "不允许添加 MusicBrainz 的 URL。您是想要粘贴其他 URL 吗?"
#: ../root/static/scripts/edit/externalLinks.js:730
msgid ""
@@ -14808,19 +14887,20 @@ msgstr ""
#: ../root/static/scripts/edit/externalLinks.js:738
msgid ""
"Links to this website are not allowed because it is known to host malware."
-msgstr ""
+msgstr "不允许添加此网站的链接,因为它是已知的恶意网站。"
#: ../root/static/scripts/edit/externalLinks.js:744
msgid ""
"Please don’t enter bundled/shortened URLs, enter the destination URL(s) "
"instead."
-msgstr ""
+msgstr "请勿输入捆绑链接或短链接,请输入目标网站 URL。"
#: ../root/static/scripts/edit/externalLinks.js:750
msgid ""
"Please don’t enter Google AMP links, since they are effectively an extra "
"redirect. Enter the destination URL instead."
msgstr ""
+"请勿输入 Google AMP 链接,因为它们只是一次额外的重定向。请输入目标 URL。"
#: ../root/static/scripts/edit/externalLinks.js:757
msgid ""
@@ -14830,105 +14910,105 @@ msgstr ""
#: ../root/static/scripts/edit/externalLinks.js:764
msgid "Please select a link type for the URL you’ve entered."
-msgstr ""
+msgstr "请为您输入的 URL 选择一个链接类型。"
#: ../root/static/scripts/edit/externalLinks.js:784
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:987
#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:526
msgid "This relationship already exists."
-msgstr ""
+msgstr "此关联已存在。"
#: ../root/static/scripts/edit/externalLinks.js:796
#: ../root/static/scripts/relationship-editor/components/DialogSourceEntity.js:61
msgid ""
"This URL is not allowed for the selected link type, or is incorrectly "
"formatted."
-msgstr ""
+msgstr "此 URL 不适用于选中的链接类型,或格式错误。"
#: ../root/static/scripts/edit/externalLinks.js:801
msgid "This URL is not allowed for the selected link type."
-msgstr ""
+msgstr "此 URL 不适用于选中的链接类型。"
#: ../root/static/scripts/edit/externalLinks.js:807
msgid "This URL is not allowed for areas."
-msgstr ""
+msgstr "此 URL 不适用于地区。"
#: ../root/static/scripts/edit/externalLinks.js:810
msgid "This URL is not allowed for artists."
-msgstr ""
+msgstr "此 URL 不适用于艺术家。"
#: ../root/static/scripts/edit/externalLinks.js:813
msgid "This URL is not allowed for events."
-msgstr ""
+msgstr "此 URL 不适用于活动。"
#: ../root/static/scripts/edit/externalLinks.js:816
msgid "This URL is not allowed for instruments."
-msgstr ""
+msgstr "此 URL 不适用于乐器。"
#: ../root/static/scripts/edit/externalLinks.js:819
msgid "This URL is not allowed for labels."
-msgstr ""
+msgstr "此 URL 不适用于厂牌。"
#: ../root/static/scripts/edit/externalLinks.js:822
msgid "This URL is not allowed for places."
-msgstr ""
+msgstr "此 URL 不适用于地点。"
#: ../root/static/scripts/edit/externalLinks.js:825
msgid "This URL is not allowed for recordings."
-msgstr ""
+msgstr "此 URL 不适用于录音。"
#: ../root/static/scripts/edit/externalLinks.js:828
msgid "This URL is not allowed for releases."
-msgstr ""
+msgstr "此 URL 不适用于专辑。"
#: ../root/static/scripts/edit/externalLinks.js:831
msgid "This URL is not allowed for release groups."
-msgstr ""
+msgstr "此 URL 不适用于专辑组。"
#: ../root/static/scripts/edit/externalLinks.js:835
msgid "This URL is not allowed for series."
-msgstr ""
+msgstr "此 URL 不适用于系列。"
#: ../root/static/scripts/edit/externalLinks.js:838
msgid "This URL is not allowed for works."
-msgstr ""
+msgstr "此 URL 不适用于作品。"
#: ../root/static/scripts/edit/externalLinks.js:1146
#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:322
msgid "{description} ({url|more documentation})"
-msgstr ""
+msgstr "{description}({url|详细文档})"
#: ../root/static/scripts/edit/externalLinks.js:1195
msgid "Remove Relationship"
-msgstr ""
+msgstr "移除关联"
#: ../root/static/scripts/edit/externalLinks.js:1282
msgid "video"
-msgstr ""
+msgstr "视频"
#: ../root/static/scripts/edit/externalLinks.js:1413
msgid "Remove Link"
-msgstr ""
+msgstr "移除链接"
#: ../root/static/scripts/edit/externalLinks.js:1443
msgid "Add link"
-msgstr ""
+msgstr "添加链接"
#: ../root/static/scripts/edit/externalLinks.js:1446
msgid "Add another link"
-msgstr ""
+msgstr "添加其他链接"
#: ../root/static/scripts/edit/externalLinks.js:1555
msgid "Add another relationship"
-msgstr ""
+msgstr "添加其他关联"
#: ../root/static/scripts/genre/components/GenreEditForm.js:140
msgid "Genre details"
-msgstr ""
+msgstr "流派详情"
#: ../root/static/scripts/guess-case/MB/Control/GuessCase.js:25
msgid "Guess Case Options"
-msgstr ""
+msgstr "猜测大小写选项"
#: ../root/static/scripts/guess-case/modes.js:313
msgid ""
@@ -14961,31 +15041,31 @@ msgstr ""
#: ../root/static/scripts/main/components/ConfirmSeedButtons.js:31
msgid "Continue"
-msgstr ""
+msgstr "继续"
#: ../root/static/scripts/main/components/ConfirmSeedButtons.js:47
msgid "Leave"
-msgstr ""
+msgstr "离开"
#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:40
msgid "Add vocal"
-msgstr ""
+msgstr "添加人声"
#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:164
msgid "This attribute is required."
-msgstr ""
+msgstr "此属性为必填项。"
#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:200
#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:208
#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:212
#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:216
msgid "Credited as"
-msgstr ""
+msgstr "署名为"
#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:236
msgctxt "relationship attribute"
msgid "Add another"
-msgstr ""
+msgstr "添加其他"
#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:217
msgid ""
@@ -14993,6 +15073,8 @@ msgid ""
"set the same end date and start date. You can use the arrow button to copy "
"the begin date to the end date."
msgstr ""
+"如果您需要将关联设定为在特定的一天发生,可以将起始和截止日期设为同一天。你可"
+"以用箭头按钮将起始日期复制到终止日期。"
#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:223
msgid ""
@@ -15000,10 +15082,12 @@ msgid ""
"this seems like useful information to store (for example, if someone is no "
"longer a member of a band), you can indicate it with the checkbox above."
msgstr ""
+"如果您不知道终止日期,但是您知道关联已经终止并且这一信息有记录的意义(例如某人"
+"不再是乐队成员),您可以选中上方的复选框以标记。"
#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:124
msgid "Change credits for other {entity} relationships on the page."
-msgstr ""
+msgstr "更改此页面上的其他 {entity} 关联。"
#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:133
msgid ""
@@ -15027,11 +15111,11 @@ msgstr ""
msgid ""
"A credited name is optional. You can leave this field blank to keep the "
"current name."
-msgstr ""
+msgstr "填写的名称是可选的。您可以将此字段留空以保持当前名称。"
#: ../root/static/scripts/relationship-editor/components/DialogLinkOrder.js:44
msgid "Order"
-msgstr ""
+msgstr "排序"
#: ../root/static/scripts/relationship-editor/components/DialogLinkOrder.js:56
msgid ""
@@ -15052,11 +15136,11 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:126
msgid "Type or click to search"
-msgstr ""
+msgstr "输入或点击来进行搜索"
#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:294
msgid "Relationship type"
-msgstr ""
+msgstr "关联类型"
#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:309
msgid "Please select a relationship type. ({url|more documentation})"
@@ -15064,101 +15148,101 @@ msgstr ""
#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:157
msgid "Old order"
-msgstr ""
+msgstr "旧排序"
#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:161
msgid "New order"
-msgstr ""
+msgstr "新排序"
#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:224
msgid "Please fill out all required fields."
-msgstr ""
+msgstr "请填写所有必填项。"
#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:236
msgid "Change direction"
-msgstr ""
+msgstr "改变方向"
#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:61
msgid "The series you’ve selected is for artists."
-msgstr ""
+msgstr "你选择的系列只适用于艺术家。"
#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:62
msgid "The series you’ve selected is for events."
-msgstr ""
+msgstr "你选择的系列只适用于活动。"
#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:63
msgid "The series you’ve selected is for recordings."
-msgstr ""
+msgstr "您选择的是一个录音系列。"
#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:64
msgid "The series you’ve selected is for releases."
-msgstr ""
+msgstr "您选择的是一个专辑系列。"
#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:65
msgid "The series you’ve selected is for release groups."
-msgstr ""
+msgstr "您选择的是一个专辑组系列。"
#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:66
msgid "The series you’ve selected is for works."
-msgstr ""
+msgstr "您选择的是一个作品系列。"
#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:100
msgid "Entities in a relationship cannot be the same."
-msgstr ""
+msgstr "一个关联关系中的实体不能相同。"
#: ../root/static/scripts/relationship-editor/components/DialogTargetType.js:52
msgid "Related type"
-msgstr ""
+msgstr "相关类型"
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
msgid ""
-"Warning: This relationship has pending edits. {show|Click here} to view "
-"these edits and make sure they do not conflict with your own."
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
msgstr ""
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
msgid "This will add a relationship to all checked recordings."
-msgstr ""
+msgstr "这将为所有选中的录音添加一个关联。"
#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1010
msgid "This will add a relationship to all checked works."
-msgstr ""
+msgstr "这将为所有选中的作品添加一个关联。"
#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:111
msgid "no entity"
-msgstr ""
+msgstr "无实体"
#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:117
msgid "{target} (as {credited_name})"
-msgstr ""
+msgstr "{target}(作为 {credited_name})"
#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:188
msgid "Edit Relationship"
-msgstr ""
+msgstr "编辑关联"
#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:254
msgid "Move entity down"
-msgstr ""
+msgstr "下移实体"
#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:261
msgid "Move entity up"
-msgstr ""
+msgstr "上移实体"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:33
msgid "Add another area"
-msgstr ""
+msgstr "添加其他地区"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:34
msgid "Add another artist"
-msgstr ""
+msgstr "添加其他艺术家"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:35
msgid "Add another event"
-msgstr ""
+msgstr "添加其他事件"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:36
msgid "Add another genre"
-msgstr ""
+msgstr "添加其他流派"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:37
msgid "Add another instrument"
@@ -15166,56 +15250,56 @@ msgstr "添加其他乐器"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:38
msgid "Add another label"
-msgstr ""
+msgstr "添加其他厂牌"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:39
msgid "Add another place"
-msgstr ""
+msgstr "添加其他地点"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:40
msgid "Add another recording"
-msgstr ""
+msgstr "添加其他录音"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:41
msgid "Add another release"
-msgstr ""
+msgstr "添加其他专辑"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:42
msgid "Add another release group"
-msgstr ""
+msgstr "添加其他专辑组"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:43
msgid "Add another series"
-msgstr ""
+msgstr "添加其他系列"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:45
msgid "Add another work"
-msgstr ""
+msgstr "添加其他作品"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:170
#: ../root/static/scripts/relationship-editor/components/RelationshipTargetTypeGroups.js:54
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:70
#: ../root/static/scripts/release/components/TrackRelationshipEditor.js:408
msgid "Add Relationship"
-msgstr ""
+msgstr "添加关联"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:272
msgid "no type"
-msgstr ""
+msgstr "无类型"
#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:311
msgid "These relationships have a specific ordering"
-msgstr ""
+msgstr "这些关联有特定的顺序"
#: ../root/static/scripts/relationship-editor/utility/getBatchSelectionMessage.js:19
msgid "{n} recording selected"
msgid_plural "{n} recordings selected"
-msgstr[0] ""
+msgstr[0] "已选择 {n} 个录音"
#: ../root/static/scripts/relationship-editor/utility/getBatchSelectionMessage.js:27
msgid "{n} work selected"
msgid_plural "{n} works selected"
-msgstr[0] ""
+msgstr[0] "已选择 {n} 个作品"
#: ../root/static/scripts/release-editor/actions.js:279
msgid ""
@@ -15223,28 +15307,30 @@ msgid ""
"swap artist credits with track titles. This cannot be undone. Do you wish to "
"continue?"
msgstr ""
+"如果您将艺术家名单与音轨标题交换,此音轨列表中的艺术家名单将丢失。此操作不可"
+"撤消。您想继续吗?"
#: ../root/static/scripts/release-editor/bindingHandlers.js:31
msgid ""
"This medium has one or more discids which prevent this information from "
"being changed."
-msgstr ""
+msgstr "这一媒介具有一或多个唱片ID,因此无法改变此信息。"
#: ../root/static/scripts/release-editor/dialogs.js:265
msgid "Page {page} of {total}"
-msgstr ""
+msgstr "第 {page} 页,共 {total} 页"
#: ../root/static/scripts/release-editor/fields.js:760
msgid "Medium {position}: {title}"
-msgstr ""
+msgstr "媒介 {position}:{title}"
#: ../root/static/scripts/release-editor/fields.js:766
msgid "Medium {position}"
-msgstr ""
+msgstr "媒介 {position}"
#: ../root/static/scripts/release-editor/fields.js:775
msgid "I confirm this medium is actually titled “{medium_title}”."
-msgstr ""
+msgstr "我确认此媒介的标题确实为“{medium_title}”。"
#: ../root/static/scripts/release-editor/fields.js:790
msgid ""
@@ -15257,21 +15343,21 @@ msgstr ""
#: ../root/static/scripts/release-editor/fields.js:892
msgid "You haven’t selected a label for “{name}”."
-msgstr ""
+msgstr "您还没有为 “{name}” 选择一个厂牌。"
#: ../root/static/scripts/release-editor/init.js:36
msgid "Error loading release: {error}"
-msgstr ""
+msgstr "加载专辑时发生了错误:{error}"
#: ../root/static/scripts/release-editor/init.js:220
#: ../root/static/scripts/release-editor/init.js:221
msgid "Add Release"
-msgstr "添加专辑"
+msgstr "添加发行版"
#: ../root/static/scripts/release-editor/init.js:224
#: ../root/static/scripts/release-editor/init.js:225
msgid "Edit Release"
-msgstr ""
+msgstr "编辑专辑"
#: ../root/static/scripts/release-editor/validation.js:136
msgid ""
@@ -15279,142 +15365,144 @@ msgid ""
"database. Please make sure you are not adding an exact duplicate of any of "
"these:"
msgstr ""
+"在MusicBrainz数据库中已经存在以下带有该条形码的版本。请确保你没有添加这些完全"
+"相同的内容:"
#: ../root/static/scripts/release-editor/validation.js:178
msgid "The check digit is {checkdigit}."
-msgstr ""
+msgstr "校验码为 {checkdigit}。"
#: ../root/static/scripts/release-editor/validation.js:179
msgid "Please double-check the barcode on the release."
-msgstr ""
+msgstr "请再次检查此专辑的条形码。"
#: ../root/static/scripts/release-editor/validation.js:184
msgid ""
"The barcode you entered looks like a UPC code with the check digit missing."
-msgstr ""
+msgstr "您输入的条形码像是缺少校验码的 UPC 代码。"
#: ../root/static/scripts/release-editor/validation.js:194
msgid "The barcode you entered is a valid UPC code."
-msgstr ""
+msgstr "您输入的条形码是有效的 UPC 代码。"
#: ../root/static/scripts/release-editor/validation.js:199
msgid ""
"The barcode you entered is either an invalid UPC code, or an EAN code with "
"the check digit missing."
-msgstr ""
+msgstr "您输入的条形码或是无效的 UPC 代码,或是缺少校验码的 EAN 代码。"
#: ../root/static/scripts/release-editor/validation.js:213
msgid "The barcode you entered is a valid EAN code."
-msgstr ""
+msgstr "您输入的条形码是有效的 EAN 代码。"
#: ../root/static/scripts/release-editor/validation.js:217
msgid "The barcode you entered is not a valid EAN code."
-msgstr ""
+msgstr "您输入的条形码不是有效的 EAN 代码。"
#: ../root/static/scripts/release-editor/validation.js:224
msgid "The barcode you entered is not a valid UPC or EAN code."
-msgstr ""
+msgstr "您输入的条形码不是有效的 UPC 或 EAN 代码。"
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
msgid ""
-"This will create a new work for each checked recording that has no work "
+"This will add a new work for each checked recording that has no work "
"already. The work names will be the same as their respective recording."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
msgid ""
"Only use this option after you’ve tried searching for the work(s) you want "
-"to create, and are certain they do not already exist on MusicBrainz."
+"to add, and are certain they do not already exist on MusicBrainz."
msgstr ""
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:94
msgid "To use this tool, select some recordings using the checkboxes below."
-msgstr ""
+msgstr "要使用此工具,使用下方的复选框选择一些录音。"
#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
-msgid "Batch-create new works"
+msgid "Batch-add new works"
msgstr ""
#: ../root/static/scripts/release/components/EditWorkDialog.js:162
msgid "Edit Work"
-msgstr ""
+msgstr "编辑作品"
#: ../root/static/scripts/release/components/MediumTable.js:101
msgid ""
"This medium has too many tracks to load at once, so it’s been paginated."
-msgstr ""
+msgstr "此媒介包含过多的音轨,因此结果已经过分页。"
#: ../root/static/scripts/release/components/MediumToolbox.js:42
msgid "Expand all mediums"
-msgstr ""
+msgstr "展开所有媒介"
#: ../root/static/scripts/release/components/MediumToolbox.js:57
msgid "Collapse all mediums"
-msgstr ""
+msgstr "收起所有媒介"
#: ../root/static/scripts/release/components/MediumToolbox.js:92
msgid "Display Credits Inline"
-msgstr ""
+msgstr "在行内显示名单"
#: ../root/static/scripts/release/components/MediumToolbox.js:93
msgid "Display Credits at Bottom"
-msgstr ""
+msgstr "在底部显示名单"
#: ../root/static/scripts/release/components/MediumTrackRow.js:64
msgid "Recording artist:"
-msgstr ""
+msgstr "录音艺术家:"
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:101
msgid "To use this tool, select some works using the checkboxes below."
-msgstr ""
+msgstr "要使用此工具,使用下方的复选框选择一些作品。"
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:145
msgid "Batch-add a relationship to recordings"
-msgstr ""
+msgstr "批量添加曲目关系"
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:147
msgid "[selected recording]"
-msgstr ""
+msgstr "[已选择的录音]"
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:173
msgid "Batch-add a relationship to works"
-msgstr ""
+msgstr "批量添加作品关系"
#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:175
msgid "[selected work]"
-msgstr ""
+msgstr "[已选择的作品]"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:278
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
msgid "An error occurred:"
-msgstr ""
+msgstr "发生错误:"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1524
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
msgid "Track Relationships"
-msgstr ""
+msgstr "音轨关系"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1543
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
msgid ""
"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
"operations on these, please fully load them first."
msgstr ""
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1586
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
msgid "Related Works"
-msgstr ""
+msgstr "相关作品"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1610
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
msgid "We have no information about this release’s media and tracklist."
-msgstr ""
+msgstr "没有关于此专辑的媒介和音轨列表的信息。"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1647
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
msgid "Release Relationships"
-msgstr ""
+msgstr "专辑关联"
-#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1690
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
msgid "Release Group Relationships"
-msgstr ""
+msgstr "专辑组关联"
#: ../root/static/scripts/release/components/TrackRelationshipEditor.js:343
msgid "Error loading work relationships: {error}"
@@ -15437,197 +15525,193 @@ msgstr ""
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:81
#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:147
msgid "Add lyrics language"
-msgstr ""
-
-#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
-msgid "Work Type:"
-msgstr ""
+msgstr "添加歌词语言"
-#: ../root/static/scripts/work/edit.js:336
+#: ../root/static/scripts/work/edit.js:340
msgid "Add Language"
-msgstr ""
+msgstr "添加语言"
-#: ../root/static/scripts/work/edit.js:348
+#: ../root/static/scripts/work/edit.js:352
msgid "Remove Language"
-msgstr ""
+msgstr "移除语言"
#: ../root/tag/EntityList.js:26
msgid "Areas tagged as “{tag}”"
-msgstr ""
+msgstr "标记为“{tag}”的地区"
#: ../root/tag/EntityList.js:27
msgid "Artists tagged as “{tag}”"
-msgstr ""
+msgstr "标记为“{tag}”的艺术家"
#: ../root/tag/EntityList.js:28
msgid "Events tagged as “{tag}”"
-msgstr ""
+msgstr "标记为“{tag}”的事件"
#: ../root/tag/EntityList.js:29
msgid "Instruments tagged as “{tag}”"
-msgstr ""
+msgstr "标记为“{tag}”的乐器"
#: ../root/tag/EntityList.js:30
msgid "Labels tagged as “{tag}”"
-msgstr ""
+msgstr "标记为“{tag}”的厂牌"
#: ../root/tag/EntityList.js:31
msgid "Places tagged as “{tag}”"
-msgstr ""
+msgstr "标记为“{tag}”的地点"
#: ../root/tag/EntityList.js:32
msgid "Recordings tagged as “{tag}”"
-msgstr ""
+msgstr "标记为“{tag}”的录音"
#: ../root/tag/EntityList.js:33
msgid "Releases tagged as “{tag}”"
-msgstr ""
+msgstr "标记为“{tag}”的专辑"
#: ../root/tag/EntityList.js:34
msgid "Release groups tagged as “{tag}”"
-msgstr ""
+msgstr "标记为“{tag}”的专辑组"
#: ../root/tag/EntityList.js:35
msgctxt "plural series"
msgid "Series tagged as “{tag}”"
-msgstr ""
+msgstr "标记为“{tag}”的系列"
#: ../root/tag/EntityList.js:36
msgid "Works tagged as “{tag}”"
-msgstr ""
+msgstr "标记为“{tag}”的作品"
#: ../root/tag/EntityList.js:40
msgid "Areas {user} tagged as “{tag}”"
-msgstr ""
+msgstr "{user} 标记为“{tag}”的地区"
#: ../root/tag/EntityList.js:41
msgid "Artists {user} tagged as “{tag}”"
-msgstr ""
+msgstr "{user} 标记为“{tag}”的艺术家"
#: ../root/tag/EntityList.js:42
msgid "Events {user} tagged as “{tag}”"
-msgstr ""
+msgstr "{user} 标记为“{tag}”的事件"
#: ../root/tag/EntityList.js:43
msgid "Instruments {user} tagged as “{tag}”"
-msgstr ""
+msgstr "{user} 标记为“{tag}”的乐器"
#: ../root/tag/EntityList.js:44
msgid "Labels {user} tagged as “{tag}”"
-msgstr ""
+msgstr "{user} 标记为“{tag}”的厂牌"
#: ../root/tag/EntityList.js:45
msgid "Places {user} tagged as “{tag}”"
-msgstr ""
+msgstr "{user} 标记为“{tag}”的地点"
#: ../root/tag/EntityList.js:46
msgid "Recordings {user} tagged as “{tag}”"
-msgstr ""
+msgstr "{user} 标记为“{tag}”的录音"
#: ../root/tag/EntityList.js:47
msgid "Releases {user} tagged as “{tag}”"
-msgstr ""
+msgstr "{user} 标记为“{tag}”的专辑"
#: ../root/tag/EntityList.js:48
msgid "Release groups {user} tagged as “{tag}”"
-msgstr ""
+msgstr "{user} 标记为“{tag}”的专辑组"
#: ../root/tag/EntityList.js:49
msgctxt "plural series"
msgid "Series {user} tagged as “{tag}”"
-msgstr ""
+msgstr "{user} 标记为“{tag}”的系列"
#: ../root/tag/EntityList.js:50
msgid "Works {user} tagged as “{tag}”"
-msgstr ""
+msgstr "{user} 标记为“{tag}”的作品"
#: ../root/tag/EntityList.js:54
msgid "Areas where {user} downvoted “{tag}”"
-msgstr ""
+msgstr "{user} 否决了标签“{tag}”的地区"
#: ../root/tag/EntityList.js:55
msgid "Artists where {user} downvoted “{tag}”"
-msgstr ""
+msgstr "{user} 否决了标签“{tag}”的艺术家"
#: ../root/tag/EntityList.js:56
msgid "Events where {user} downvoted “{tag}”"
-msgstr ""
+msgstr "{user} 否决了标签“{tag}”的事件"
#: ../root/tag/EntityList.js:57
msgid "Instruments where {user} downvoted “{tag}”"
-msgstr ""
+msgstr "{user} 否决了标签“{tag}”的乐器"
#: ../root/tag/EntityList.js:58
msgid "Labels where {user} downvoted “{tag}”"
-msgstr ""
+msgstr "{user} 否决了标签“{tag}”的厂牌"
#: ../root/tag/EntityList.js:59
msgid "Places where {user} downvoted “{tag}”"
-msgstr ""
+msgstr "{user} 否决了标签“{tag}”的地点"
#: ../root/tag/EntityList.js:60
msgid "Recordings where {user} downvoted “{tag}”"
-msgstr ""
+msgstr "{user} 否决了标签“{tag}”的录音"
#: ../root/tag/EntityList.js:61
msgid "Releases where {user} downvoted “{tag}”"
-msgstr ""
+msgstr "{user} 否决了标签“{tag}”的专辑"
#: ../root/tag/EntityList.js:62
msgid "Release groups where {user} downvoted “{tag}”"
-msgstr ""
+msgstr "{user} 否决了标签“{tag}”的专辑组"
#: ../root/tag/EntityList.js:63
msgid "Series where {user} downvoted “{tag}”"
-msgstr ""
+msgstr "{user} 否决了标签“{tag}”的系列"
#: ../root/tag/EntityList.js:64
msgid "Works where {user} downvoted “{tag}”"
-msgstr ""
+msgstr "{user} 否决了标签“{tag}”的作品"
#: ../root/tag/EntityList.js:70
msgid "{num} area found"
msgid_plural "{num} areas found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 个地区"
#: ../root/tag/EntityList.js:71
msgid "{num} artist found"
msgid_plural "{num} artists found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 位艺术家"
#: ../root/tag/EntityList.js:72
msgid "{num} event found"
msgid_plural "{num} events found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 个事件"
#: ../root/tag/EntityList.js:73
msgid "{num} instrument found"
msgid_plural "{num} instruments found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 个乐器"
#: ../root/tag/EntityList.js:74
msgid "{num} label found"
msgid_plural "{num} labels found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 个厂牌"
#: ../root/tag/EntityList.js:75
msgid "{num} place found"
msgid_plural "{num} places found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 个地点"
#: ../root/tag/EntityList.js:82
msgid "{num} series found"
msgid_plural "{num} series found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 个系列"
#: ../root/tag/EntityList.js:83
msgid "{num} work found"
msgid_plural "{num} works found"
-msgstr[0] ""
+msgstr[0] "找到 {num} 个作品"
#: ../root/tag/NotFound.js:17
msgid "Tag Not Used"
-msgstr ""
+msgstr "标签未使用"
#: ../root/tag/NotFound.js:20
msgid "No MusicBrainz entities have yet been tagged with \"{tag}\"."
@@ -15637,11 +15721,11 @@ msgstr ""
msgid ""
"If you wish to use this tag, please {url|search} for the entity first and "
"apply the tag using the sidebar."
-msgstr ""
+msgstr "如果您想要使用该标签,请先 {url|搜索} 该实体,并在侧边栏应用此标签。"
#: ../root/tag/TagCloud.js:62
msgid "'{tag}' has been used {num} times"
-msgstr ""
+msgstr "‘{tag}’ 已经被使用了 {num} 次"
#: ../root/tag/TagCloud.js:107
msgid "These are the most used genres and other tags in the database."
@@ -15649,11 +15733,11 @@ msgstr ""
#: ../root/tag/TagCloud.js:111
msgid "Show as a cloud instead."
-msgstr ""
+msgstr "显示为云图。"
#: ../root/tag/TagCloud.js:113
msgid "Show as a list instead."
-msgstr ""
+msgstr "显示为列表。"
#: ../root/tag/TagCloud.js:123
msgid "No genre tags have been used yet."
@@ -15665,12 +15749,12 @@ msgstr ""
#: ../root/tag/TagIndex.js:38
msgid "This tag is associated with the genre {genre}."
-msgstr ""
+msgstr "此标签与 {genre} 流派相关联。"
#: ../root/tag/TagLayout.js:47 ../root/tag/TagLayout.js:48
#: ../root/tag/TagLayout.js:54
msgid "Tag “{tag}”"
-msgstr ""
+msgstr "标签 “{tag}”"
#: ../root/tag/TagLayout.js:56
msgid "Tag"
@@ -15680,10 +15764,6 @@ msgstr ""
msgid "Duration"
msgstr "时长"
-#: ../root/taglookup/Form.js:50
-msgid "Filename"
-msgstr "文件名"
-
#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
msgid "Tag Lookup"
msgstr "标签查询"
@@ -15713,29 +15793,31 @@ msgstr ""
#: ../root/taglookup/Nag.js:42
msgid "Make a donation now!"
-msgstr ""
+msgstr "现在捐赠!"
#: ../root/taglookup/Nag.js:46
msgid "I just donated! Why am I seeing this?"
-msgstr ""
+msgstr "我刚捐款了!为什么我会看到这个?"
#: ../root/taglookup/NotFound.js:13
msgid "Tag Lookup Error"
-msgstr ""
+msgstr "标签查找错误"
#: ../root/taglookup/NotFound.js:16
msgid ""
"That search can't be performed, because you must provide at least one of "
"'recording', 'track number', 'duration', 'release', or 'artist'."
msgstr ""
+"无法执行该搜索,您必须提供“录制方式”,“音轨号”,“持续时间”,“发行形式”或“艺术"
+"家”中的至少一个。"
#: ../root/taglookup/NotFound.js:22
msgid "Please {search|try again}, providing at least one of these parameters"
-msgstr ""
+msgstr "请提供至少以下一个参数,然后 {search|再试一次}。"
#: ../root/taglookup/Results.js:19 ../root/taglookup/Results.js:21
msgid "Tag Lookup Results"
-msgstr ""
+msgstr "标签查找结果"
#: ../root/url/UrlIndex.js:21
msgid "URL Information"
@@ -15745,54 +15827,54 @@ msgstr "URL 信息"
msgid "URL Details"
msgstr "URL 详细信息"
-#: ../root/user/ContactUser.js:54
+#: ../root/user/ContactUser.js:53
msgid "Subject:"
-msgstr ""
+msgstr "主题:"
-#: ../root/user/ContactUser.js:62 ../root/user/ReportUser.js:147
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
msgid "Message"
-msgstr ""
+msgstr "信息"
-#: ../root/user/ContactUser.js:69
+#: ../root/user/ContactUser.js:68
msgid "Reveal my email address"
-msgstr ""
+msgstr "显示我的电子邮件地址"
-#: ../root/user/ContactUser.js:75 ../root/user/ReportUser.js:173
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
msgid "Send a copy to my own email address"
-msgstr ""
+msgstr "发送副本到我自己的电子邮箱"
-#: ../root/user/ContactUser.js:80 ../root/user/ReportUser.js:178
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
msgid "Send"
-msgstr ""
+msgstr "发送"
#: ../root/user/Login.js:56
msgid "You need to be logged in to view this page."
-msgstr ""
+msgstr "您需要登录才能浏览此页面。"
#: ../root/user/Login.js:62
msgid "Don't have an account? {uri|Create one now}!"
-msgstr ""
+msgstr "还没有账号?{uri|现在创建一个}!"
#: ../root/user/Login.js:73
msgid "Incorrect username or password"
-msgstr ""
+msgstr "用户名或密码不正确"
#: ../root/user/Login.js:83
msgid ""
"You cannot log in because this account has been marked as a spam account."
-msgstr ""
+msgstr "无法登录,因为此账号已被标记为垃圾信息账号。"
#: ../root/user/Login.js:116
msgid "This is a development server; all passwords have been reset to \"mb\"."
-msgstr ""
+msgstr "这是一台开发用服务器;所有的密码都已被重置为“mb”。"
#: ../root/user/Login.js:124
msgid "Keep me logged in"
-msgstr ""
+msgstr "保持登录"
#: ../root/user/Login.js:136
msgid "Forgot your {link1|username} or {link2|password}?"
-msgstr ""
+msgstr "忘记了您的 {link1|用户名} 或 {link2|密码}?"
#: ../root/user/PrivilegedUsers.js:33 ../root/user/PrivilegedUsers.js:35
msgid "Privileged user accounts"
@@ -15800,7 +15882,7 @@ msgstr "特权用户账号"
#: ../root/user/PrivilegedUsers.js:37
msgid "Auto-editors"
-msgstr ""
+msgstr "自动确认编辑者"
#: ../root/user/PrivilegedUsers.js:40
msgid ""
@@ -15812,11 +15894,11 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:50
msgid "The following {count} users have auto-editor privileges:"
-msgstr ""
+msgstr "以下的 {count} 个用户有自动确认编辑者特权:"
#: ../root/user/PrivilegedUsers.js:56
msgid "Relationship editors"
-msgstr ""
+msgstr "关联编辑者"
#: ../root/user/PrivilegedUsers.js:59
msgid ""
@@ -15828,7 +15910,7 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:69
msgid "The following {count} users are relationship editors:"
-msgstr ""
+msgstr "以下的 {count} 个用户是关联编辑者:"
#: ../root/user/PrivilegedUsers.js:75
msgid "Transclusion editors"
@@ -15846,49 +15928,50 @@ msgstr ""
#: ../root/user/PrivilegedUsers.js:91
msgid "Location editors"
-msgstr ""
+msgstr "位置编辑者"
#: ../root/user/PrivilegedUsers.js:94
msgid "Location editors are users who can add or modify {uri|areas}."
-msgstr ""
+msgstr "位置编辑者是能够添加或修改 {uri|地区} 的用户。"
#: ../root/user/PrivilegedUsers.js:100
msgid "The following {count} users are location editors:"
-msgstr ""
+msgstr "以下的 {count} 个用户是位置编辑者:"
#: ../root/user/PrivilegedUsers.js:106
msgid "Banner message editors"
-msgstr ""
+msgstr "横幅信息编辑者"
#: ../root/user/PrivilegedUsers.js:108
msgid ""
"Banner message editors are users who can set a message that is shown in a "
-"banner on all pages, e.g. to warn users about upcoming site maintenance."
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
msgstr ""
#: ../root/user/PrivilegedUsers.js:114
msgid "The following {count} users are banner message editors:"
-msgstr ""
+msgstr "以下的 {count} 个用户是横幅信息编辑者:"
#: ../root/user/PrivilegedUsers.js:120
msgid "Account administrators"
-msgstr ""
+msgstr "帐号管理员"
#: ../root/user/PrivilegedUsers.js:121
msgid "Account administrators can edit and delete user accounts."
-msgstr ""
+msgstr "帐号管理员可以编辑和删除用户帐号"
#: ../root/user/PrivilegedUsers.js:124
msgid "The following {count} users are account administrators:"
-msgstr ""
+msgstr "以下的 {count} 个用户是账号管理员:"
#: ../root/user/PrivilegedUsers.js:130
msgid "Bots"
-msgstr ""
+msgstr "机器人"
#: ../root/user/PrivilegedUsers.js:133
msgid "The following {count} user accounts are bots:"
-msgstr ""
+msgstr "以下的 {count} 个用户账号是机器人:"
#: ../root/user/ReportUser.js:83 ../root/user/ReportUser.js:85
msgid "Report User"
@@ -15903,13 +15986,13 @@ msgstr ""
#: ../root/user/ReportUser.js:101
msgid "Please review our {uri|Code of Conduct} before sending a report."
-msgstr ""
+msgstr "请在发送报告前查阅我们的 {coc|行为准则}。"
#: ../root/user/ReportUser.js:109
msgid ""
"Your report will be sent to our {uri|account administrators}, who will "
"decide what action to take."
-msgstr ""
+msgstr "您的报告将被发送给我们的 {uri|账号管理员},他们将决定如何处理。"
#: ../root/user/ReportUser.js:119
msgid ""
@@ -15930,6 +16013,9 @@ msgid ""
"so that you can be contacted if the report is resolved or the admins need "
"more information."
msgstr ""
+"如果您不希望我们的管理员因此报告进一步联系您,请取消勾选上方的复选框。
"
+"我们建议您保持勾选,这样在报告的问题被解决或管理员需要更多信息时,我们能够能"
+"联系您。"
#: ../root/user/ReportUser.js:167
msgid "Receive email updates about this report"
@@ -15937,52 +16023,52 @@ msgstr ""
#: ../root/user/UserCollections.js:42
msgid "Area Collections"
-msgstr ""
+msgstr "地区收藏"
#: ../root/user/UserCollections.js:43
msgid "Artist Collections"
-msgstr ""
+msgstr "艺术家收藏"
#: ../root/user/UserCollections.js:44
msgid "Event Collections"
-msgstr ""
+msgstr "活动收藏"
#: ../root/user/UserCollections.js:45
msgid "Instrument Collections"
-msgstr ""
+msgstr "乐器收藏"
#: ../root/user/UserCollections.js:46
msgid "Label Collections"
-msgstr ""
+msgstr "厂牌收藏"
#: ../root/user/UserCollections.js:47
msgid "Place Collections"
-msgstr ""
+msgstr "地点收藏"
#: ../root/user/UserCollections.js:48
msgid "Recording Collections"
-msgstr ""
+msgstr "录音收藏"
#: ../root/user/UserCollections.js:49
msgid "Release Collections"
-msgstr ""
+msgstr "专辑收藏"
#: ../root/user/UserCollections.js:50
msgid "Release Group Collections"
-msgstr ""
+msgstr "专辑组收藏"
#: ../root/user/UserCollections.js:51
msgctxt "plural"
msgid "Series Collections"
-msgstr ""
+msgstr "系列收藏"
#: ../root/user/UserCollections.js:52
msgid "Work Collections"
-msgstr ""
+msgstr "作品收藏"
#: ../root/user/UserCollections.js:64
msgid "{collaborator_number} (including you)"
-msgstr ""
+msgstr "{collaborator_number}(包括您)"
#: ../root/user/UserCollections.js:79
msgid "(your collection)"
@@ -15990,15 +16076,15 @@ msgstr "(您的收藏集)"
#: ../root/user/UserCollections.js:197
msgid "You have no collections."
-msgstr ""
+msgstr "您没有收藏。"
#: ../root/user/UserCollections.js:199
msgid "{user} has no public collections."
-msgstr ""
+msgstr "{user} 没有公开的收藏。"
#: ../root/user/UserCollections.js:218
msgid "You aren’t collaborating in any collections."
-msgstr ""
+msgstr "您没有合作编辑任何收藏。"
#: ../root/user/UserCollections.js:220
msgid "{user} isn’t collaborating in any public collections."
@@ -16006,55 +16092,55 @@ msgstr ""
#: ../root/user/UserEdits.js:42 ../root/user/UserEdits.js:43
msgid "Votes by {name}"
-msgstr ""
+msgstr "{name}的投票"
#: ../root/user/UserEdits.js:46 ../root/user/UserEdits.js:47
msgid "Open edits by {name}"
-msgstr ""
+msgstr "{name} 创建的待审核编辑"
#: ../root/user/UserEdits.js:50 ../root/user/UserEdits.js:51
msgid "Cancelled edits by {name}"
-msgstr ""
+msgstr "{name}已取消的编辑"
#: ../root/user/UserEdits.js:54 ../root/user/UserEdits.js:55
msgid "Accepted edits by {name}"
-msgstr "{name} 已接受的编辑"
+msgstr "{name}已批准的编辑"
#: ../root/user/UserEdits.js:58 ../root/user/UserEdits.js:59
msgid "Failed edits by {name}"
-msgstr ""
+msgstr "{name} 失败的编辑"
#: ../root/user/UserEdits.js:62 ../root/user/UserEdits.js:63
msgid "Rejected edits by {name}"
-msgstr ""
+msgstr "{name}已驳回的编辑"
#: ../root/user/UserEdits.js:66 ../root/user/UserEdits.js:67
msgid "Auto-edits by {name}"
-msgstr ""
+msgstr "{name}自动确认的编辑"
#: ../root/user/UserEdits.js:70 ../root/user/UserEdits.js:71
msgid "Applied edits by {name}"
-msgstr ""
+msgstr "{name} 已生效的编辑"
#: ../root/user/UserEdits.js:74 ../root/user/UserEdits.js:75
msgid "Edits by {name}"
-msgstr ""
+msgstr "{name}的编辑"
#: ../root/user/UserProfile.js:68
msgid "Deleted User"
-msgstr ""
+msgstr "已删除的用户"
#: ../root/user/UserProfile.js:72
msgid "{doc|Auto-Editor}"
-msgstr ""
+msgstr "{doc|自动确认编辑者}"
#: ../root/user/UserProfile.js:77
msgid "Internal/Bot"
-msgstr ""
+msgstr "内部使用/机器人"
#: ../root/user/UserProfile.js:81
msgid "{doc|Relationship Editor}"
-msgstr ""
+msgstr "{doc|关联编辑者}"
#: ../root/user/UserProfile.js:87
msgid "{doc|Transclusion Editor}"
@@ -16062,15 +16148,15 @@ msgstr ""
#: ../root/user/UserProfile.js:93
msgid "{doc|Location Editor}"
-msgstr ""
+msgstr "{doc|位置编辑者}"
#: ../root/user/UserProfile.js:103
msgid "Beginner"
-msgstr ""
+msgstr "新手"
#: ../root/user/UserProfile.js:109
msgid "Normal User"
-msgstr ""
+msgstr "普通用户"
#: ../root/user/UserProfile.js:157
msgid "The Dawn of the Project"
@@ -16084,15 +16170,11 @@ msgstr ""
msgid ""
"Your homepage and biography will not show until you have completed the email "
"verification process."
-msgstr ""
+msgstr "在您完成验证电子邮件之前,您的主页和简介将不会显示。"
#: ../root/user/UserProfile.js:186
msgid "General Information"
-msgstr ""
-
-#: ../root/user/UserProfile.js:189
-msgid "Email:"
-msgstr ""
+msgstr "一般信息"
#: ../root/user/UserProfile.js:192
msgid "(hidden)"
@@ -16104,19 +16186,19 @@ msgstr "(验证时间:{date})"
#: ../root/user/UserProfile.js:200
msgid "(unverified!)"
-msgstr ""
+msgstr "(未验证!)"
#: ../root/user/UserProfile.js:209
msgid "resend verification email"
-msgstr ""
+msgstr "重新发送验证电子邮件"
#: ../root/user/UserProfile.js:217
msgid "send email"
-msgstr ""
+msgstr "发送电子邮件"
#: ../root/user/UserProfile.js:232
msgid "find all users of this email"
-msgstr ""
+msgstr "查找此电子邮件的所有用户"
#: ../root/user/UserProfile.js:242
msgctxt "email"
@@ -16125,330 +16207,324 @@ msgstr "(无)"
#: ../root/user/UserProfile.js:249
msgid "User type:"
-msgstr ""
+msgstr "用户类型:"
#: ../root/user/UserProfile.js:255
msgid "nominate for auto-editor"
-msgstr ""
+msgstr "提名为自动确认编辑者"
#: ../root/user/UserProfile.js:262
msgid "Age:"
msgstr "年龄:"
-#: ../root/user/UserProfile.js:279
-msgid "Member since:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:292
-msgid "Last login:"
-msgstr ""
+#: ../root/user/UserProfile.js:287
+#, fuzzy
+#| msgid "Description"
+msgid "Restrictions"
+msgstr "描述"
-#: ../root/user/UserProfile.js:295
+#: ../root/user/UserProfile.js:297
msgid "Hasn't logged in yet"
-msgstr ""
+msgstr "尚未登录"
-#: ../root/user/UserProfile.js:300
+#: ../root/user/UserProfile.js:302
msgid "Authorized applications"
-msgstr ""
+msgstr "已授权的应用程序"
-#: ../root/user/UserProfile.js:307 ../root/user/UserProfile.js:323
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
msgid "see list"
msgstr ""
-#: ../root/user/UserProfile.js:316
+#: ../root/user/UserProfile.js:318
msgid "Developer applications"
-msgstr ""
+msgstr "开发者应用程序"
-#: ../root/user/UserProfile.js:333
+#: ../root/user/UserProfile.js:335
msgid "Homepage:"
-msgstr ""
-
-#: ../root/user/UserProfile.js:351
-msgid "Subscribers:"
-msgstr ""
+msgstr "主页:"
-#: ../root/user/UserProfile.js:354
+#: ../root/user/UserProfile.js:356
msgid "{count} ({url|view list})"
-msgstr ""
+msgstr "{count}({url|浏览列表})"
-#: ../root/user/UserProfile.js:361
+#: ../root/user/UserProfile.js:363
msgid "0"
msgstr "0"
-#: ../root/user/UserProfile.js:374
+#: ../root/user/UserProfile.js:376
msgid "unsubscribe"
-msgstr ""
+msgstr "取消订阅"
-#: ../root/user/UserProfile.js:383
+#: ../root/user/UserProfile.js:385
msgid "subscribe"
-msgstr ""
+msgstr "订阅"
-#: ../root/user/UserProfile.js:409
-msgid "Languages:"
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
msgstr ""
-#: ../root/user/UserProfile.js:484 ../root/user/UserProfile.js:584
-#: ../root/user/UserProfile.js:594 ../root/user/UserProfile.js:604
-#: ../root/user/UserProfile.js:614 ../root/user/UserProfile.js:624
-#: ../root/user/UserProfile.js:634 ../root/user/UserProfile.js:644
-#: ../root/user/UserProfile.js:654 ../root/user/UserProfile.js:663
-#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
-#: ../root/user/UserProfile.js:850
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
msgid "{count} ({view_url|view})"
-msgstr ""
+msgstr "{count}({view_url|浏览})"
-#: ../root/user/UserProfile.js:576
+#: ../root/user/UserProfile.js:581
msgid "Edits"
-msgstr ""
+msgstr "修改"
-#: ../root/user/UserProfile.js:582
+#: ../root/user/UserProfile.js:587
msgctxt "edit descriptor"
msgid "Total"
msgstr "总计"
-#: ../root/user/UserProfile.js:592
+#: ../root/user/UserProfile.js:597
msgctxt "edit descriptor"
msgid "Accepted"
msgstr "已接受"
-#: ../root/user/UserProfile.js:602
+#: ../root/user/UserProfile.js:607
msgid "Auto-edits"
-msgstr ""
+msgstr "自动确认编辑"
-#: ../root/user/UserProfile.js:612
+#: ../root/user/UserProfile.js:617
msgid "Total applied"
-msgstr ""
+msgstr "生效总数"
-#: ../root/user/UserProfile.js:622
+#: ../root/user/UserProfile.js:627
msgid "Voted down"
-msgstr ""
+msgstr "被否决"
-#: ../root/user/UserProfile.js:632
+#: ../root/user/UserProfile.js:637
msgid "Failed"
-msgstr ""
+msgstr "失败"
-#: ../root/user/UserProfile.js:662
+#: ../root/user/UserProfile.js:667
msgid "Last 24 hours"
-msgstr ""
+msgstr "过去 24 小时"
-#: ../root/user/UserProfile.js:686
+#: ../root/user/UserProfile.js:691
msgid "This table shows a summary of votes cast by this editor."
-msgstr ""
+msgstr "此表格显示了此编辑者投票的概要信息"
-#: ../root/user/UserProfile.js:691
+#: ../root/user/UserProfile.js:696
msgid "Votes ({view_url|view})"
-msgstr ""
+msgstr "投票({view_url|浏览})"
-#: ../root/user/UserProfile.js:699
+#: ../root/user/UserProfile.js:704
msgid "Last 28 days"
-msgstr ""
+msgstr "过去 28 天"
-#: ../root/user/UserProfile.js:702
+#: ../root/user/UserProfile.js:707
msgid "Overall"
-msgstr ""
+msgstr "合计"
-#: ../root/user/UserProfile.js:750
+#: ../root/user/UserProfile.js:755
msgid "This table shows a summary of entities added by this editor."
-msgstr ""
+msgstr "此表格显示了此编辑者添加的实体的概要信息"
-#: ../root/user/UserProfile.js:756
+#: ../root/user/UserProfile.js:761
msgid "Newly applied edits may need 24 hours to appear"
-msgstr ""
+msgstr "新生效的编辑可能需要 24 个小时才会显示"
-#: ../root/user/UserProfile.js:759
+#: ../root/user/UserProfile.js:764
msgid "Added entities"
-msgstr ""
+msgstr "添加的实体"
-#: ../root/user/UserProfile.js:782
-msgid "This user has not created any entities."
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
msgstr ""
-#: ../root/user/UserProfile.js:792
+#: ../root/user/UserProfile.js:797
msgid "This table shows a summary of secondary data added by this editor."
msgstr ""
-#: ../root/user/UserProfile.js:798
+#: ../root/user/UserProfile.js:803
msgid "Tags and ratings"
-msgstr ""
+msgstr "标签和评分"
-#: ../root/user/UserProfile.js:805
+#: ../root/user/UserProfile.js:810
msgid "Tags upvoted"
-msgstr ""
+msgstr "已赞成的标签"
-#: ../root/user/UserProfile.js:808 ../root/user/UserProfile.js:824
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
msgid "Tags are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:810 ../root/user/UserProfile.js:826
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
msgctxt "tags"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:821
+#: ../root/user/UserProfile.js:826
msgid "Tags downvoted"
-msgstr ""
+msgstr "已否决的标签"
-#: ../root/user/UserProfile.js:843
+#: ../root/user/UserProfile.js:848
msgid "Ratings are removed when an editor is deleted."
msgstr ""
-#: ../root/user/UserProfile.js:846
+#: ../root/user/UserProfile.js:851
msgctxt "ratings"
-msgid "Deleted"
+msgid "Removed"
msgstr ""
-#: ../root/user/UserProfile.js:913
+#: ../root/user/UserProfile.js:918
msgid "Blocked Spam Account"
-msgstr ""
+msgstr "被封禁的垃圾信息账号"
-#: ../root/user/UserProfile.js:915
+#: ../root/user/UserProfile.js:920
msgid ""
"This user was blocked and their profile is hidden because they were deemed "
"to be spamming. If you see spam in MusicBrainz, please do let us know by "
"reporting the spammer from their user page."
msgstr ""
-#: ../root/user/UserProfile.js:926
+#: ../root/user/UserProfile.js:931
msgid ""
"This user is marked as a spammer and is blocked for all non-admin users."
msgstr ""
-#: ../root/user/UserProfile.js:937
+#: ../root/user/UserProfile.js:942
msgid ""
"This user’s editing rights have been restricted. Active restrictions: "
"{restrictions}."
-msgstr ""
+msgstr "此用户的编辑权限受限。目前生效的限制:{restrictions}。"
-#: ../root/user/UserProfile.js:969
+#: ../root/user/UserProfile.js:974
msgid "Report this user for bad behavior"
-msgstr ""
+msgstr "报告此用户的不良行为"
#: ../root/user/UserRatingEntity.js:58
msgid "No ratings."
-msgstr ""
+msgstr "没有评分。"
#: ../root/user/UserRatingList.js:28
msgid "Artist ratings"
-msgstr ""
+msgstr "艺术家评分"
#: ../root/user/UserRatingList.js:29
msgid "Event ratings"
-msgstr ""
+msgstr "活动评分"
#: ../root/user/UserRatingList.js:30
msgid "Label ratings"
-msgstr ""
+msgstr "厂牌评分:"
#: ../root/user/UserRatingList.js:31
msgid "Place ratings"
-msgstr ""
+msgstr "地点评分"
#: ../root/user/UserRatingList.js:32
msgid "Recording ratings"
-msgstr ""
+msgstr "录音评分"
#: ../root/user/UserRatingList.js:33
msgid "Release group ratings"
-msgstr ""
+msgstr "专辑组评分"
#: ../root/user/UserRatingList.js:34
msgid "Work ratings"
-msgstr ""
+msgstr "作品评分"
#: ../root/user/UserRatingList.js:72
msgid "View all ratings"
-msgstr ""
+msgstr "查看所有评分"
#: ../root/user/UserRatingList.js:83
msgid "{user} has not rated anything."
-msgstr ""
+msgstr "{user} 没有任何评分。"
#: ../root/user/UserSubscriptions.js:24
msgid "Artist Subscriptions"
-msgstr ""
+msgstr "订阅的艺术家"
#: ../root/user/UserSubscriptions.js:25
msgid "Collection Subscriptions"
-msgstr ""
+msgstr "订阅的收藏"
#: ../root/user/UserSubscriptions.js:26
msgid "Editor Subscriptions"
-msgstr ""
+msgstr "订阅的编辑者"
#: ../root/user/UserSubscriptions.js:27
msgid "Label Subscriptions"
-msgstr ""
+msgstr "订阅的厂牌"
#: ../root/user/UserSubscriptions.js:28
msgid "Series Subscriptions"
-msgstr ""
+msgstr "订阅的系列"
#: ../root/user/UserSubscriptions.js:183
msgid "{editor} is subscribed to:"
-msgstr ""
+msgstr "{editor} 订阅了:"
#: ../root/user/UserSubscriptions.js:191
msgid "{num} artist"
msgid_plural "{num} artists"
-msgstr[0] ""
+msgstr[0] "{num} 位艺术家"
#: ../root/user/UserSubscriptions.js:202
msgid "{num} collection"
msgid_plural "{num} collections"
-msgstr[0] ""
+msgstr[0] "{num} 个收藏"
#: ../root/user/UserSubscriptions.js:213
msgid "{num} editor"
msgid_plural "{num} editors"
-msgstr[0] ""
+msgstr[0] "{num} 个编辑者"
#: ../root/user/UserSubscriptions.js:224
msgid "{num} label"
msgid_plural "{num} labels"
-msgstr[0] ""
+msgstr[0] "{num} 个厂牌"
#: ../root/user/UserSubscriptions.js:235
msgid "{num} series"
msgid_plural "{num} series"
-msgstr[0] ""
+msgstr[0] "{num} 个系列"
#: ../root/user/UserSubscriptions.js:256
msgid "No public subscriptions."
-msgstr ""
+msgstr "没有公开的订阅。"
#: ../root/user/UserSubscriptions.js:257
msgid "No subscriptions."
-msgstr ""
+msgstr "没有订阅。"
#: ../root/user/UserSubscriptions.js:261
msgid "Private collections"
-msgstr ""
+msgstr "私有收藏"
#: ../root/user/UserSubscriptions.js:275
msgid "{editor} is also subscribed to {n} other private collection."
msgid_plural "{editor} is also subscribed to {n} other private collections."
-msgstr[0] ""
+msgstr[0] "{editor} 也订阅了其他 {n} 个私有收藏。"
#: ../root/user/UserSubscriptions.js:285
msgid "{editor} is subscribed to {n} private collection."
msgid_plural "{editor} is subscribed to {n} private collections."
-msgstr[0] ""
+msgstr[0] "{editor} 订阅了 {n} 个私有收藏。"
#: ../root/user/UserTagList.js:21
msgid "Tags {user} downvoted"
-msgstr ""
+msgstr "{user} 否决的标签"
#: ../root/user/UserTagList.js:22
msgid "Tags {user} upvoted"
-msgstr ""
+msgstr "{user} 赞成的标签"
#: ../root/user/UserTagList.js:122
msgid "{user} has not downvoted any tags."
-msgstr ""
+msgstr "{user} 没有否决任何标签。"
#: ../root/user/UserTagList.js:129
msgid "{user} has not upvoted any tags."
-msgstr ""
+msgstr "{user} 没有赞成任何标签。"
#: ../root/user/components/UserInlineList.js:24
msgid "No users found"
@@ -16457,12 +16533,12 @@ msgstr "未找到用户"
#: ../root/user/components/UserTagFilters.js:32
msgctxt "tag upvotes or downvotes"
msgid "Show votes"
-msgstr ""
+msgstr "显示投票"
#: ../root/user/components/UserTagFilters.js:38
msgctxt "tag"
msgid "upvotes"
-msgstr ""
+msgstr "赞成票"
#: ../root/user/components/UserTagFilters.js:39
msgctxt "tag"
@@ -16471,19 +16547,19 @@ msgstr "否决票"
#: ../root/user/components/UserTagFilters.js:48
msgid "Sort by"
-msgstr ""
+msgstr "排序"
#: ../root/user/components/UserTagFilters.js:51
msgid "name"
-msgstr ""
+msgstr "名称"
#: ../root/user/components/UserTagFilters.js:52
msgid "count (more first)"
-msgstr ""
+msgstr "计数(降序)"
#: ../root/user/components/UserTagFilters.js:53
msgid "count (less first)"
-msgstr ""
+msgstr "计数(升序)"
#: ../root/utility/age.js:148
msgid "aged {num}"
@@ -16507,17 +16583,17 @@ msgstr[0] "{num} 天"
#: ../root/utility/age.js:161
msgid "{num} year ago"
msgid_plural "{num} years ago"
-msgstr[0] ""
+msgstr[0] "{num}年前"
#: ../root/utility/age.js:164
msgid "{num} month ago"
msgid_plural "{num} months ago"
-msgstr[0] ""
+msgstr[0] "{num}月前"
#: ../root/utility/age.js:170
msgid "{num} day ago"
msgid_plural "{num} days ago"
-msgstr[0] ""
+msgstr[0] "{num}天前"
#: ../root/utility/edit.js:35
msgid "Accept upon closing"
@@ -16529,7 +16605,7 @@ msgstr "关闭时自动拒绝"
#: ../root/utility/edit.js:61
msgid "This edit is open for voting."
-msgstr ""
+msgstr "此编辑开启投票。"
#: ../root/utility/edit.js:63
msgid "This edit has been successfully applied."
@@ -16555,11 +16631,9 @@ msgstr "此次编辑由于内部错误已经失败,可能需要再次输入。
#: ../root/utility/edit.js:80
msgid ""
"This edit failed because the data it was changing was modified after this "
-"edit was created. This may happen when the same edit is entered in twice; "
+"edit was entered. This may happen when the same edit is entered in twice; "
"one will pass but the other will fail."
msgstr ""
-"此次编辑已失败,因为它尝试修改的数据在此编辑创建之后有所变化。常见的原因为同"
-"一编辑被输入两次;其中一次会成功,另一次会失败。"
#: ../root/utility/edit.js:86
msgid ""
@@ -16571,13 +16645,13 @@ msgstr "此次编辑已失败,因为它影响高质量数据,且未收到任
msgid "This edit was cancelled."
msgstr "此次编辑已取消。"
-#: ../root/utility/tableColumns.js:768
+#: ../root/utility/tableColumns.js:773
msgid "Subscribed"
-msgstr ""
+msgstr "已订阅"
#: ../root/vote/VotingIndex.js:34
msgid "…related to artists in my subscriptions"
-msgstr ""
+msgstr "...有关我订阅的艺术家"
#: ../root/vote/VotingIndex.js:50
msgid ""
@@ -16609,7 +16683,7 @@ msgstr ""
#: ../root/vote/VotingIndex.js:81
msgid "Destructive edits"
-msgstr ""
+msgstr "破坏性编辑"
#: ../root/vote/VotingIndex.js:84
msgid ""
@@ -16627,19 +16701,19 @@ msgstr ""
#: ../root/vote/VotingIndex.js:101
msgid "All open destructive edits"
-msgstr ""
+msgstr "所有待审核的破坏性编辑"
#: ../root/vote/VotingIndex.js:110
msgid "All open entity merges and removals"
-msgstr ""
+msgstr "所有待审核的实体合并和移除"
#: ../root/vote/VotingIndex.js:119
msgid "All open relationship removals"
-msgstr ""
+msgstr "所有待审核的关联移除"
#: ../root/vote/VotingIndex.js:128
msgid "All open destructive changes to releases"
-msgstr ""
+msgstr "所有待审核的专辑破坏性更改"
#: ../root/vote/VotingIndex.js:139
msgid "Unreviewed and potentially problematic edits"
@@ -16656,21 +16730,21 @@ msgstr ""
#: ../root/vote/VotingIndex.js:153
msgid "Unreviewed edits (0 votes) that will close in less than a day"
-msgstr ""
+msgstr "未确认的编辑(0 票),且将在不到一天之后关闭"
#: ../root/vote/VotingIndex.js:164
msgid "All open unreviewed edits (0 votes)"
-msgstr ""
+msgstr "所有未复核的待审核编辑(0 票)"
#: ../root/vote/VotingIndex.js:174
msgid ""
"All open unconfirmed edits (“Abstain” votes only) that will close in less "
"than a day"
-msgstr ""
+msgstr "所有待审核的未确认编辑(仅有弃权票),且将在不到一天之后关闭"
#: ../root/vote/VotingIndex.js:184
msgid "All open unconfirmed edits (“Abstain” votes only)"
-msgstr ""
+msgstr "所有待审核的未确认编辑(仅有弃权票)"
#: ../root/vote/VotingIndex.js:196
msgid ""
@@ -16684,15 +16758,15 @@ msgstr ""
#: ../root/vote/VotingIndex.js:208
msgid "Open edits with at least 1 “No” vote"
-msgstr ""
+msgstr "待审核的编辑,且至少有 1 张否决票"
#: ../root/vote/VotingIndex.js:217
msgid "Open edits with both “Yes” and “No” votes (controversial edits)"
-msgstr ""
+msgstr "待审核的编辑,且同时有赞成和否决票(有争议的编辑)"
#: ../root/vote/VotingIndex.js:229
msgid "Edits by beginners"
-msgstr ""
+msgstr "新手的编辑"
#: ../root/vote/VotingIndex.js:232
msgid ""
@@ -16715,6 +16789,17 @@ msgid ""
"especially good edits, you might want to let them know so they’ll feel good "
"about it!"
msgstr ""
+"初学编辑的人最可能需要友好的眼光来看待他们的编辑。在审查这些内容时,请查看编"
+"辑者是否进行了违背MusicBrainz的编辑指南,或者似乎有其他错误的情况,并留下指导"
+"编辑者的笔记,以便他们在未来做得更好。一定要链接到适当的指南,或相关的正确输"
+"入数据的示例,最重要的是记住要友好。如果这些用户搞得一团糟,他们可能不是故意"
+"的,而是出于困惑:MusicBrainz可能会让新手望而生畏!如果可能的话,修复错误(并让"
+"编辑者知道你已经这样做了,并且他们可以检查你所做的编辑,看看它应该是什么样"
+"子),而不是对编辑投“反对”票,因为“反对”票是相当令人沮丧的,特别是作为一个新编"
+"辑者。如果某些内容糟糕到无法修复,并且会使现有数据变得更糟,请投票反对编辑,"
+"但请确保清楚地解释为什么需要这样做,而不是默默地投“反对”票。关于我们所希望的"
+"态度的更长的概述,请参阅{voting_blog|关于投票的博客文章}。此外,如果一个初学"
+"者做出了特别好的编辑,你可能想让他们知道,这样他们会感觉很好!"
#: ../root/vote/VotingIndex.js:259
msgid ""
@@ -16734,41 +16819,41 @@ msgstr ""
#: ../root/vote/VotingIndex.js:279
msgid "All edits from beginner editors"
-msgstr ""
+msgstr "来自新手编辑者的所有编辑"
#: ../root/vote/VotingIndex.js:287
msgid "All edits from beginner editors made less than 2 weeks ago"
-msgstr ""
+msgstr "来自新手编辑者的所有编辑,并且创建于两周以内"
#: ../root/vote/VotingIndex.js:296
msgid "All \"Add release/medium\" edits by beginner editors"
-msgstr ""
+msgstr "所有新手编辑者创建的“添加专辑/媒介”编辑"
#: ../root/vote/VotingIndex.js:303
msgid ""
"All \"Add release/medium\" edits by beginner editors made less than 2 weeks "
"ago"
-msgstr ""
+msgstr "所有新手编辑者的“添加专辑/媒介”编辑,并且并且创建于两周以内"
#: ../root/vote/VotingIndex.js:311
msgid "All \"Add artist\" edits by beginner editors"
-msgstr ""
+msgstr "所有新手编辑者创建的“添加艺术家”编辑"
#: ../root/vote/VotingIndex.js:317
msgid "All \"Add artist\" edits by beginner editors made less than 2 weeks ago"
-msgstr ""
+msgstr "所有新手编辑者的“添加艺术家”编辑,并且并且创建于两周以内"
#: ../root/vote/VotingIndex.js:324
msgid "All open destructive edits by beginner editors"
-msgstr ""
+msgstr "所有由新手编辑者创建的待审核破坏性编辑"
#: ../root/vote/VotingIndex.js:333
msgid "All open unreviewed edits (0 votes) by beginner editors"
-msgstr ""
+msgstr "所有待审核的未复核编辑(0 票),并且由新手编辑者创建"
#: ../root/vote/VotingIndex.js:345 ../root/vote/VotingIndex.js:367
msgid "All edits"
-msgstr ""
+msgstr "所有编辑"
#: ../root/vote/VotingIndex.js:348
msgid ""
@@ -16781,13 +16866,13 @@ msgstr ""
#: ../root/vote/VotingIndex.js:360
msgid "All open edits"
-msgstr ""
+msgstr "所有待审核编辑"
#: ../root/work/WorkMerge.js:34
msgid ""
"You are about to merge all these works into a single one. Please select the "
"work all others should be merged into:"
-msgstr ""
+msgstr "你将要把所有的作品合并成同一个。请选择合并完成之后最终留下的那个作品:"
#: ../root/work/WorkMerge.js:41
msgid ""
@@ -16795,6 +16880,557 @@ msgid ""
"ISWCs. Please make sure they are indeed the same works and you wish to "
"continue with the merge."
msgstr ""
+"警告: 你正在合并的作品中有一些拥有不同的ISWC编号。请先确保"
+"这些作品确实为相同作品,然后再继续进行合并。"
+
+#~ msgid "Address:"
+#~ msgstr "地址:"
+
+#~ msgid "Annotation:"
+#~ msgstr "注释:"
+
+#~ msgid "Area:"
+#~ msgstr "区域:"
+
+#~ msgid "Artist:"
+#~ msgstr "艺术家:"
+
+#~ msgid "Attributes:"
+#~ msgstr "属性:"
+
+#~ msgid "Barcode:"
+#~ msgstr "条形码:"
+
+#~ msgid "Begin Area:"
+#~ msgstr "开始区域:"
+
+#~ msgid "Begin date:"
+#~ msgstr "开始日期:"
+
+#~ msgid "Catalog#:"
+#~ msgstr "目录#:"
+
+#~ msgid "Child order:"
+#~ msgstr "子订单:"
+
+#~ msgid "Country:"
+#~ msgstr "国家和地区:"
+
+#~ msgid "Created"
+#~ msgstr "已创建"
+
+#~ msgid "Date:"
+#~ msgstr "日期:"
+
+#~ msgid "Delete"
+#~ msgstr "删除"
+
+#~ msgid "Description:"
+#~ msgstr "描述:"
+
+#~ msgid "Documentation:"
+#~ msgstr "文档:"
+
+#~ msgid "End Area:"
+#~ msgstr "结束区域:"
+
+#~ msgid "End date:"
+#~ msgstr "结束日期:"
+
+#~ msgid "Format:"
+#~ msgstr "格式:"
+
+#~ msgid "Gender:"
+#~ msgstr "性别:"
+
+#~ msgid "IPI codes:"
+#~ msgstr "知识产权署代码:"
+
+#~ msgid "ISNI codes:"
+#~ msgstr "ISNI代码:"
+
+#~ msgid "ISO 3166-1:"
+#~ msgstr "ISO 3166-1:"
+
+#~ msgid "ISO 3166-2:"
+#~ msgstr "ISO 3166-2:"
+
+#~ msgid "ISO 3166-3:"
+#~ msgstr "ISO 3166-3:"
+
+#~ msgid "ISRCs:"
+#~ msgstr "ISRCs:"
+
+#~ msgid "ISWCs:"
+#~ msgstr "ISWCs:"
+
+#~ msgid ""
+#~ "If you don’t select an existing release group, a new one will be created "
+#~ "with the types selected below."
+#~ msgstr ""
+#~ "如果您没有选择一个现有的专辑组,将会根据下方选择的类型创建一个新专辑组。"
+
+#~ msgid ""
+#~ "Keep in mind that recording durations are {doc_link|recalculated from "
+#~ "tracks} once the duration of a track changes. As such, if you correct the "
+#~ "duration of a track whose recording is only used in this release, just "
+#~ "reuse the old recording, don’t create a new one. If the recording is also "
+#~ "used elsewhere and the durations are significantly different, consider "
+#~ "creating a new recording instead."
+#~ msgstr ""
+#~ "请留意当音轨时长发生变更时,录音时长将 {doc_link|根据音轨重新计算}。因此,"
+#~ "如果您要修正一个的音轨时长,而对应的录音仅在此专辑使用,请直接复用原有录"
+#~ "音,而非创建一个新录音。如果录音也在其他地方使用,并且二者的时长有很大区"
+#~ "别,请考虑创建一个新录音。"
+
+#~ msgid ""
+#~ "Keep in mind that unselecting this will delete the track if the medium "
+#~ "has a disc ID! If you unselect it by mistake, please readd the pregap "
+#~ "track before submitting."
+#~ msgstr ""
+#~ "请留意,如果媒介有关联的唱片 ID,取消选中将删除音轨!如果您错误地取消了选"
+#~ "中,请在提交之前重新添加前间隙音轨。"
+
+#~ msgid ""
+#~ "Keep in mind that unselecting this will delete the tracks if the medium "
+#~ "has a disc ID! If you unselect it by mistake, please readd the data "
+#~ "tracks before submitting."
+#~ msgstr ""
+#~ "请留意,如果媒介有关联的唱片 ID,取消选中将删除音轨!如果您错误地取消了选"
+#~ "中,请在提交之前重新添加数据音轨。"
+
+#~ msgid "Label code:"
+#~ msgstr "厂牌编码:"
+
+#~ msgid "Label:"
+#~ msgstr "唱片公司:"
+
+#~ msgid "Language:"
+#~ msgstr "语言:"
+
+#~ msgid "Length:"
+#~ msgstr "长度:"
+
+#~ msgid "Merge"
+#~ msgstr "合并"
+
+#~ msgid "Name:"
+#~ msgstr "名称:"
+
+#~ msgid "Note:"
+#~ msgstr "备注:"
+
+#~ msgid ""
+#~ "Note: only searches edits that: add or edit relationships, created after "
+#~ "2011-05-16; or which remove relationships, created after 2013-07-08; or "
+#~ "which reorder relationships."
+#~ msgstr ""
+#~ "备注:只能搜索下列编辑:2011年5月16日以后的关系增加和编辑操作;2013年7月8"
+#~ "日以后的关系移除操作;关系排序变更操作。"
+
+#~ msgid "Ordering Type:"
+#~ msgstr "订购类型:"
+
+#~ msgid "Packaging:"
+#~ msgstr "包装:"
+
+#~ msgid "Parent:"
+#~ msgstr "母属性:"
+
+#~ msgid "Position:"
+#~ msgstr "位置:"
+
+#~ msgid "Release Group:"
+#~ msgstr "专辑组:"
+
+#~ msgid "Release:"
+#~ msgstr "专辑:"
+
+#~ msgid "Script:"
+#~ msgstr "文字:"
+
+#~ msgid "Search:"
+#~ msgstr "搜索:"
+
+#~ msgid "Set track durations"
+#~ msgstr "设置音轨时长"
+
+#~ msgid "Setlist:"
+#~ msgstr "歌单:"
+
+#~ msgid "Sort name:"
+#~ msgstr "排序名称:"
+
+#~ msgid "Status:"
+#~ msgstr "状态:"
+
+#~ msgid "This entity will be created by this edit."
+#~ msgstr "此实体将由此编辑创建。"
+
+#~ msgid "Time:"
+#~ msgstr "时间:"
+
+#~ msgid "Title:"
+#~ msgstr "标题:"
+
+#~ msgid ""
+#~ "To create a new tracklist, use an existing medium or import a disc from a "
+#~ "CD stub, select the appropriate tab."
+#~ msgstr ""
+#~ "要创建新的音轨列表,使用已有的媒介或从 CD 存根导入一张唱片,选择合适的选项"
+#~ "卡。"
+
+#~ msgid "Tracks:"
+#~ msgstr "曲目:"
+
+#~ msgid "URL:"
+#~ msgstr "URL:"
+
+#~ msgid "Warning:"
+#~ msgstr "警告:"
+
+#~ msgid ""
+#~ "You must select an artist for every track (the background color of every "
+#~ "artist field should be green). If you’ve entered an artist but the "
+#~ "background remains uncolored, click the magnifying glass to match the "
+#~ "name to a MusicBrainz artist. If the artist doesn’t exist yet, you can "
+#~ "create it by selecting “{add_a_new_artist}” from the bottom of the search "
+#~ "results drop-down."
+#~ msgstr ""
+#~ "您必须为每个轨道选择一个艺术家(每个艺术家字段的背景颜色应为绿色)。如果您输"
+#~ "入了艺术家,但背景仍未着色,请单击放大镜将名称与MusicBrainz艺术家进行匹"
+#~ "配。如果该艺术家还不存在,您可以通过从搜索结果下拉框底部选"
+#~ "择“{add_a_new_artist}”来创建它。"
+
+#~ msgid ""
+#~ "You must select an artist for the release (the background color of the "
+#~ "artist field should be green). If you’ve entered an artist but the "
+#~ "background remains uncolored, click the magnifying glass to match the "
+#~ "name to a MusicBrainz artist. If the artist doesn’t exist yet, you can "
+#~ "create it by selecting “{add_a_new_artist}” from the bottom of the search "
+#~ "results drop-down."
+#~ msgstr ""
+#~ "您必须为专辑选择一位艺术家(艺术家字段的背景色应为绿色)。如果您输入了艺术"
+#~ "家,但背景仍未着色,请单击放大镜将名称与MusicBrainz艺术家进行匹配。如果该"
+#~ "艺术家还不存在,您可以通过从搜索结果下拉框底部选择“{add_a_new_artist}”来创"
+#~ "建它。"
+
+#~ msgid "appears on:"
+#~ msgstr "出现于:"
+
+#, perl-brace-format
+#~ msgid ""
+#~ "“{id}” is not a valid row ID; the entity might have been merged or "
+#~ "deleted."
+#~ msgstr "“{id}” 不是一个有效的行 ID;该实体可能已被合并或删除。"
+
+#~ msgid "Cancelled"
+#~ msgstr "已取消"
+
+#~ msgid "Enter a valid url e.g. \"http://google.com/\""
+#~ msgstr "输入有效URL 例如:\"http://google.com/\""
+
+#~ msgid "Bio:"
+#~ msgstr "简介:"
+
+#~ msgid "Create"
+#~ msgstr "创建"
+
+#~ msgid "Preview:"
+#~ msgstr "预览:"
+
+#~ msgid "Preview"
+#~ msgstr "预览"
+
+#~ msgid "You should only use the checkbox above to fix errors (e.g. typos)."
+#~ msgstr "您应该只使用以上复选框来修正错误(例如输入错误)。"
+
+#~ msgid "Please search for the artist you wish to create a new release for:"
+#~ msgstr "请搜索要为其创建专辑的艺术家:"
+
+#~ msgid "Track duration comparison"
+#~ msgstr "音轨时长比较"
+
+#~ msgid "Disc ID:"
+#~ msgstr "唱片 ID:"
+
+#~ msgid ""
+#~ "If you don't see the artist you are looking for, you can still add a new "
+#~ "release. This will allow you to create this artist and a release at the "
+#~ "same time"
+#~ msgstr ""
+#~ "如果没有找到所需的艺术家,您依然可以添加一张新专辑。这样您就能够同时创建此"
+#~ "艺术家和一张新专辑。"
+
+#~ msgid "Create a new collection"
+#~ msgstr "创建新收藏"
+
+#~ msgid "Status"
+#~ msgstr "状态"
+
+#~ msgid "Only the editor who created an edit can cancel it."
+#~ msgstr "只有创建该编辑的编辑者才能取消编辑。"
+
+#~ msgctxt "edit status"
+#~ msgid "Status:"
+#~ msgstr "状态:"
+
+#~ msgid "Closed:"
+#~ msgstr "关闭于:"
+
+#~ msgid "Releases:"
+#~ msgstr "发行版:"
+
+#~ msgid "Ended"
+#~ msgstr "已结束"
+
+#~ msgid "Filename:"
+#~ msgstr "文件名:"
+
+#~ msgid "Medium:"
+#~ msgstr "媒介:"
+
+#~ msgid "Artist Credits:"
+#~ msgstr "艺术家名单:"
+
+#~ msgid "Relationship:"
+#~ msgstr "关联:"
+
+#~ msgctxt "release status"
+#~ msgid "Status:"
+#~ msgstr "状态:"
+
+#~ msgid "Catalog number:"
+#~ msgstr "目录号码:"
+
+#~ msgid "Merge:"
+#~ msgstr "合并:"
+
+#~ msgid "Mediums:"
+#~ msgstr "媒介:"
+
+#~ msgid "Relationships:"
+#~ msgstr "关联:"
+
+#~ msgid "Release Events:"
+#~ msgstr "发行事件:"
+
+#~ msgid "Release group:"
+#~ msgstr "专辑组:"
+
+#~ msgid "Old:"
+#~ msgstr "旧:"
+
+#~ msgid "Added"
+#~ msgstr "已添加"
+
+#~ msgid "Removed"
+#~ msgstr "已移除"
+
+#~ msgid "Edited"
+#~ msgstr "已编辑"
+
+#~ msgid "Alias:"
+#~ msgstr "别名:"
+
+#~ msgid "Track:"
+#~ msgstr "音轨:"
+
+#~ msgid "Candidate:"
+#~ msgstr "候选人:"
+
+#~ msgid "Proposer:"
+#~ msgstr "提案人:"
+
+#~ msgid "1st seconder:"
+#~ msgstr "第 1 位附议者:"
+
+#~ msgid "2nd seconder:"
+#~ msgstr "第 2 位附议者:"
+
+#~ msgctxt "election status"
+#~ msgid "Status:"
+#~ msgstr "状态:"
+
+#~ msgid "Seconder 1"
+#~ msgstr "附议者 1"
+
+#~ msgid "Seconder 2"
+#~ msgstr "附议者 2"
+
+#~ msgid "Added:"
+#~ msgstr "已添加:"
+
+#~ msgid "Last modified:"
+#~ msgstr "上次修改:"
+
+#~ msgid "Lookup count:"
+#~ msgstr "查找计数:"
+
+#~ msgid "Modify count:"
+#~ msgstr "修改计数:"
+
+#~ msgid "Coordinates:"
+#~ msgstr "坐标:"
+
+#~ msgid "IPI code:"
+#~ msgstr "IPI 代码:"
+
+#~ msgid "ISNI code:"
+#~ msgstr "ISNI 代码:"
+
+#~ msgid "Error:"
+#~ msgid_plural "Errors:"
+#~ msgstr[0] "错误:"
+
+#~ msgid "ID:"
+#~ msgstr "ID:"
+
+#~ msgid "Possible values:"
+#~ msgstr "可能的值:"
+
+#~ msgid "Create a new relationship attribute"
+#~ msgstr "创建新关联属性"
+
+#~ msgid "Create a new {type0}-{type1} relationship"
+#~ msgstr "创建新 {type0}-{type1} 关联"
+
+#~ msgid ""
+#~ "This report shows disc IDs attached to a release but obviously not "
+#~ "applied because at least one track duration is unknown on the release. "
+#~ "The report is also restricted to mediums where only one disc ID is "
+#~ "attached, so it is highly likely that the disc ID can be applied without "
+#~ "any worries. Do make sure though that no existing durations clash with "
+#~ "the disc ID, or that any clashes are clear mistakes."
+#~ msgstr ""
+#~ "此报告显示唱片ID附加到了一个专辑但明显无法应用,因为专辑中至少一个音轨时长"
+#~ "未知。此报告限定于只附加了一个唱片 ID的媒介,所以更有可能没有忧虑地附加唱"
+#~ "片 ID。尽管如此,务必确认唱片 ID不涉及任何已有的时长冲突或明显错误的冲突。"
+
+#~ msgid ""
+#~ "This report lists release groups with very similar names and artists. If "
+#~ "the releases in the release groups should be grouped together (see the "
+#~ "{url|guidelines}), they can be merged. If they shouldn't be grouped "
+#~ "together but they can be distinguished by the release group types, e.g. "
+#~ "when an artist has an album and single with the same name, then there is "
+#~ "usually no need to change anything. In other cases, a disambiguation "
+#~ "comment may be helpful."
+#~ msgstr ""
+#~ "这份报告列出了名字和歌手非常相似的专辑组。如果专辑组组中的专辑应该分组在一"
+#~ "起(参见{url|指南}),则可以合并它们。如果它们不应该被组合在一起,但可以通过"
+#~ "专辑组合类型来区分,例如当一个歌手有一张同名专辑和一首单曲时,那么通常不需"
+#~ "要更改任何内容。在其他情况下,消除歧义的注释可能会有所帮助。"
+
+#~ msgid ""
+#~ "This report shows instruments without an image relationship to "
+#~ "StaticBrainz (i.e. without an IROMBOOK image)."
+#~ msgstr "本报告显示了与StaticBrainz没有图像关系的乐器(即没有IROMBOOK图像)。"
+
+#~ msgid ""
+#~ "This report lists all releases where the track numbers are not continuous "
+#~ "(e.g. there is no \"track 2\"), or with duplicated track numbers (e.g. "
+#~ "there are two \"track 4\"s)."
+#~ msgstr ""
+#~ "此报告列出了所有音轨编号不连续的专辑(例如没有“音轨 2”),或含有重复的音轨"
+#~ "编号(例如有两个“音轨 4”)。"
+
+#~ msgid "Location"
+#~ msgstr "位置"
+
+#~ msgid "Location:"
+#~ msgstr "位置:"
+
+#~ msgid "Automatically subscribe me to artists I create."
+#~ msgstr "自动订阅我创建的艺术家。"
+
+#~ msgid "Automatically subscribe me to labels I create."
+#~ msgstr "自动订阅我创建的厂牌。"
+
+#~ msgid "Automatically subscribe me to series I create."
+#~ msgstr "自动订阅我创建的系列。"
+
+#~ msgid "Old"
+#~ msgstr "旧"
+
+#~ msgid "New"
+#~ msgstr "新"
+
+#~ msgid "Create collection"
+#~ msgstr "创建收藏"
+
+#~ msgid "Delete Note"
+#~ msgstr "删除备注"
+
+#~ msgid "This artist credit has {edit_search|pending edits}."
+#~ msgstr "此艺术家名单有 {edit_search|待定的编辑}。"
+
+#~ msgid "This artist credit has pending edits."
+#~ msgstr "此艺术家名单有待定的编辑。"
+
+#~ msgid "Artist credit:"
+#~ msgstr "艺术家名单:"
+
+#~ msgid "Ended:"
+#~ msgstr "结束于:"
+
+#~ msgid "This track hasn’t been created yet."
+#~ msgstr "此音轨还未被创建。"
+
+#~ msgid "Release events:"
+#~ msgstr "发行事件"
+
+#~ msgid ""
+#~ "Warning: This relationship has pending edits. {show|Click here} to view "
+#~ "these edits and make sure they do not conflict with your own."
+#~ msgstr ""
+#~ "警告:此关联有待定编辑。{show|点击此处} 查看,并确保它们不会与你的编辑产生"
+#~ "冲突。"
+
+#~ msgid ""
+#~ "This will create a new work for each checked recording that has no work "
+#~ "already. The work names will be the same as their respective recording."
+#~ msgstr ""
+#~ "这将为每个没有关联作品的录音创建一个新的作品。作品的名称将与对应的录音相"
+#~ "同。"
+
+#~ msgid ""
+#~ "Only use this option after you’ve tried searching for the work(s) you "
+#~ "want to create, and are certain they do not already exist on MusicBrainz."
+#~ msgstr ""
+#~ "仅在您已尝试搜索您希望创建的作品,确认MusicBrainz中尚未录入时再使用此选"
+#~ "项。"
+
+#~ msgid "Batch-create new works"
+#~ msgstr "批量创建新作品"
+
+#~ msgid "Work Type:"
+#~ msgstr "作品类型:"
+
+#~ msgid "Email:"
+#~ msgstr "电子邮件:"
+
+#~ msgid "Member since:"
+#~ msgstr "注册于:"
+
+#~ msgid "Last login:"
+#~ msgstr "上次登录:"
+
+#~ msgid "Subscribers:"
+#~ msgstr "订阅者"
+
+#~ msgid "Languages:"
+#~ msgstr "语言:"
+
+#~ msgid "This user has not created any entities."
+#~ msgstr "此用户没有创建任何实体。"
+
+#~ msgid ""
+#~ "This edit failed because the data it was changing was modified after this "
+#~ "edit was created. This may happen when the same edit is entered in twice; "
+#~ "one will pass but the other will fail."
+#~ msgstr ""
+#~ "此次编辑已失败,因为它尝试修改的数据在此编辑创建之后有所变化。常见的原因为"
+#~ "同一编辑被输入两次;其中一次会成功,另一次会失败。"
#~ msgid "Username:"
#~ msgstr "用户名:"
diff --git a/po/mb_server.zh_Hant.po b/po/mb_server.zh_Hant.po
new file mode 100644
index 00000000000..abd81f05d8f
--- /dev/null
+++ b/po/mb_server.zh_Hant.po
@@ -0,0 +1,16643 @@
+# #-#-#-#-# mb_server.pot (PACKAGE VERSION) #-#-#-#-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-11-08 17:34+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: zh_Hant\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../root/components/common-macros.tt:12
+msgid " ({text})"
+msgstr ""
+
+#: ../root/components/forms.tt:313
+msgid "\"C\" is a single check digit."
+msgstr ""
+
+#: ../root/components/forms.tt:323
+msgid ""
+"\"CC\" is the appropriate for the registrant two-character country code."
+msgstr ""
+
+#: ../root/components/forms.tt:312
+msgid "\"DDD\" is a nine digit work identifier."
+msgstr ""
+
+#: ../root/components/forms.tt:326
+msgid ""
+"\"NNNNN\" is a unique 5-digit number identifying the particular sound "
+"recording."
+msgstr ""
+
+#: ../root/components/forms.tt:324
+msgid ""
+"\"XXX\" is a three character alphanumeric registrant code, uniquely "
+"identifying the organisation which registered the code."
+msgstr ""
+
+#: ../root/components/forms.tt:325
+msgid "\"YY\" is the last two digits of the year of registration."
+msgstr ""
+
+#: ../root/cdstub/cdstub.tt:4 ../root/release/edit/tracklist.tt:161
+#: ../root/release/edit/tracklist.tt:451 ../root/cdstub/CDStubInfo.js:26
+#: ../root/cdtoc/AttachCDTocConfirmation.js:69
+#: ../root/edit/details/AddMedium.js:167 ../root/edit/details/EditMedium.js:314
+#: ../root/edit/details/EditMedium.js:318
+#: ../root/edit/details/EditMedium.js:519
+#: ../root/edit/details/EditMedium.js:577
+#: ../root/edit/details/historic/AddRelease.js:88
+#: ../root/recording/RecordingIndex.js:53
+#: ../root/static/scripts/release/components/MediumTable.js:83
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1564
+#: ../root/utility/tableColumns.js:572
+msgid "#"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:43
+msgid "✔"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:43
+msgid "✕"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:104
+msgid "⚠ Error creating edit"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:88
+msgid "⚠ Error requesting signature"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:102
+msgid "⚠ Error uploading image"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:103
+msgid "⚠ Server busy, try again later"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:87
+msgid "⚠ Unrecognized file"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:86
+msgid "✓ Success"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:63
+msgid "(add a new recording)"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:129
+msgid "(no other cover art)"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:16
+#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
+#: ../root/edit/details/MergeReleases.js:239
+#: ../root/recording/RecordingIndex.js:60
+#: ../root/release_group/ReleaseGroupIndex.js:171
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/utility/tableColumns.js:513 ../root/utility/tableColumns.js:521
+msgctxt "and"
+msgid "/"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:137
+msgid ""
+"Note: In classical music, {csg_recording_artist|recording "
+"artists} should almost always be different from {csg_track_artist|track "
+"artists}, so don’t use the “copy artist credits” option while editing a "
+"classical release unless you’re very sure it’s a good idea!"
+msgstr ""
+
+#: ../root/components/common-macros.tt:480 ../root/recording/edit_form.tt:6
+msgid "Warning:"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:22
+msgid ""
+"A CD Stub was found that matches the disc ID you provided. If the below "
+"tracklist appears correct, you may use it as a starting point as a new "
+"MusicBrainz release"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:323
+msgid ""
+"A format is required. If you don’t know it, tick the “I don’t know” checkbox "
+"next to the format dropdown."
+msgstr ""
+
+#: ../root/release/edit/information.tt:23
+msgid "A release title is required."
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:40
+msgid ""
+"A value of 1 or 2 indicates that either entity1 or entity0 are orderable, "
+"respectively."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
+#: ../lib/MusicBrainz/Server/Data/Vote.pm:175
+#: ../root/edit/components/Vote.js:100
+msgctxt "vote"
+msgid "Abstain"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:8
+msgid "Accept"
+msgstr ""
+
+#: ../root/event/edit_form.tt:22
+msgid ""
+"Add \"@ \" at line start to indicate artists, \"* \" for a work/song, \"# \" "
+"for additional info (such as \"Encore\"). [mbid|name] allows linking to "
+"artists and works."
+msgstr ""
+
+#: ../root/area/create.tt:1 ../root/area/create.tt:3
+msgid "Add Area"
+msgstr ""
+
+#: ../root/artist/create.tt:1 ../root/artist/create.tt:3
+msgid "Add Artist"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:1 ../root/release/add_cover_art.tt:8
+msgctxt "header"
+msgid "Add Cover Art"
+msgstr ""
+
+#: ../root/event/create.tt:1 ../root/event/create.tt:3
+msgid "Add Event"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:154
+msgid "Add Example"
+msgstr ""
+
+#: ../root/instrument/create.tt:1 ../root/instrument/create.tt:3
+msgid "Add Instrument"
+msgstr ""
+
+#: ../root/label/create.tt:1 ../root/label/create.tt:3
+msgid "Add Label"
+msgstr ""
+
+#: ../root/release/edit/information.tt:215
+#: ../root/release/edit/information.tt:216
+#: ../root/layout/components/BottomMenu.js:248
+msgctxt "button/menu"
+msgid "Add Label"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:67 ../root/release/edit/tracklist.tt:267
+#: ../root/static/scripts/release-editor/dialogs.js:309
+msgid "Add Medium"
+msgstr ""
+
+#: ../root/place/create.tt:1 ../root/place/create.tt:3
+msgid "Add Place"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:7
+msgctxt "header"
+msgid "Add Release"
+msgstr ""
+
+#: ../root/release/edit/information.tt:171
+#: ../root/release/edit/information.tt:172
+msgctxt "button/menu"
+msgid "Add Release Event"
+msgstr ""
+
+#: ../root/release_group/create.tt:1
+msgid "Add Release Group"
+msgstr ""
+
+#: ../root/release_group/create.tt:3
+msgctxt "header"
+msgid "Add Release Group"
+msgstr ""
+
+#: ../root/series/create.tt:1 ../root/series/create.tt:3
+msgid "Add Series"
+msgstr ""
+
+#: ../root/recording/create.tt:1 ../root/recording/create.tt:3
+msgctxt "header"
+msgid "Add Standalone Recording"
+msgstr ""
+
+#: ../root/work/create.tt:1 ../root/work/create.tt:2
+msgctxt "header"
+msgid "Add Work"
+msgstr ""
+
+#: ../root/work/edit_form.tt:77
+msgctxt "button/menu"
+msgid "Add Work Attribute"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:105
+msgid "Add a New Example"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:273
+msgid ""
+"Add a medium by clicking “Add Medium” below, or tick the box confirming the "
+"tracklist is unknown."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:178
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:21
+msgid "Add a new recording"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:54
+#: ../root/cdtoc/attach_filter_release.tt:74
+#: ../root/cdtoc/attach_filter_release.tt:81
+#: ../root/cdtoc/SelectArtistForCDToc.js:110
+#: ../root/cdtoc/SelectArtistForCDToc.js:130
+msgid "Add a new release"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:533
+msgid "Add track(s)"
+msgstr ""
+
+#: ../root/components/forms.tt:173
+msgid "Add {item}"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:532
+msgid "Add {num} track(s)"
+msgstr ""
+
+#: ../root/release/edit/information.tt:247
+msgid "Additional information"
+msgstr ""
+
+#: ../root/place/edit_form.tt:16 ../root/components/list/PlaceList.js:66
+#: ../root/edit/details/AddPlace.js:55 ../root/edit/details/EditPlace.js:68
+#: ../root/layout/components/sidebar/PlaceSidebar.js:84
+#: ../root/report/PlacesWithoutCoordinates.js:41
+#: ../root/search/components/PlaceResults.js:65
+msgid "Address"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:3
+msgid ""
+"All tracks require an associated recording. Click “Edit” to select a "
+"recording for each track. Choose “Add a new recording” if an appropriate one "
+"doesn’t exist yet."
+msgstr ""
+
+#: ../root/components/common-macros.tt:577
+msgid ""
+"An entity with that name and disambiguation already exists. You must enter a "
+"unique disambiguation comment."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:144
+msgid "An error occurred: "
+msgstr ""
+
+#: ../root/release/edit/information.tt:251
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:46
+#: ../root/annotation/AnnotationRevision.js:32
+#: ../root/annotation/EditAnnotation.js:74
+#: ../root/layout/components/Search.js:41
+#: ../root/report/hooks/useAnnotationColumns.js:28
+#: ../root/search/components/AnnotationResults.js:56
+#: ../root/search/components/SearchForm.js:45
+#: ../root/static/scripts/common/components/Annotation.js:51
+msgid "Annotation"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Applied Edit Count of Editor"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
+#: ../lib/MusicBrainz/Server/Data/Vote.pm:178
+msgctxt "vote"
+msgid "Approve"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:20 ../root/edit/search_macros.tt:423
+#: ../root/label/edit_form.tt:18 ../root/place/edit_form.tt:19
+#: ../lib/MusicBrainz/Server/Edit/Area.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:44
+#: ../root/components/list/AreaList.js:46
+#: ../root/components/list/ArtistList.js:92
+#: ../root/components/list/LabelList.js:75
+#: ../root/components/list/PlaceList.js:71 ../root/edit/details/AddArea.js:30
+#: ../root/edit/details/AddArtist.js:83 ../root/edit/details/AddLabel.js:80
+#: ../root/edit/details/AddPlace.js:61 ../root/edit/details/EditArea.js:43
+#: ../root/edit/details/EditArtist.js:108 ../root/edit/details/EditLabel.js:119
+#: ../root/edit/details/EditPlace.js:75 ../root/layout/components/Search.js:35
+#: ../root/layout/components/sidebar/ArtistSidebar.js:126
+#: ../root/layout/components/sidebar/LabelSidebar.js:90
+#: ../root/layout/components/sidebar/PlaceSidebar.js:91
+#: ../root/report/PlacesWithoutCoordinates.js:42
+#: ../root/search/components/ArtistResults.js:55
+#: ../root/search/components/LabelResults.js:69
+#: ../root/search/components/PlaceResults.js:66
+#: ../root/search/components/SearchForm.js:43
+#: ../root/static/scripts/common/constants.js:35
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:48
+#: ../root/user/UserProfile.js:49
+msgid "Area"
+msgstr ""
+
+#: ../root/area/edit_form.tt:8
+msgid "Area Details"
+msgstr ""
+
+#: ../root/cdstub/cdstub.tt:7 ../root/cdtoc/attach_filter_release.tt:29
+#: ../root/cdtoc/list.tt:8 ../root/cdtoc/lookup.tt:42
+#: ../root/cdtoc/lookup.tt:75 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/information.tt:26 ../root/release/edit/tracklist.tt:110
+#: ../root/release/edit/tracklist.tt:163 ../root/release/edit/tracklist.tt:453
+#: ../root/release_group/set_cover_art.tt:32
+#: ../lib/MusicBrainz/Server/Edit/Artist.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:38
+#: ../root/cdstub/BrowseCDStubs.js:37 ../root/cdstub/CDStubInfo.js:28
+#: ../root/cdstub/ImportCDStub.js:45
+#: ../root/cdtoc/AttachCDTocConfirmation.js:71
+#: ../root/cdtoc/SelectArtistForCDToc.js:43
+#: ../root/components/RelationshipsTable.js:337
+#: ../root/components/list/ArtistList.js:68
+#: ../root/components/list/RecordingList.js:106
+#: ../root/components/list/ReleaseGroupList.js:98
+#: ../root/components/list/ReleaseList.js:88
+#: ../root/edit/details/AddArtist.js:40 ../root/edit/details/AddMedium.js:168
+#: ../root/edit/details/AddRelease.js:56
+#: ../root/edit/details/AddReleaseGroup.js:47
+#: ../root/edit/details/AddStandaloneRecording.js:46
+#: ../root/edit/details/EditArtist.js:56 ../root/edit/details/EditMedium.js:316
+#: ../root/edit/details/EditMedium.js:320
+#: ../root/edit/details/EditRecording.js:84
+#: ../root/edit/details/EditRelease.js:65
+#: ../root/edit/details/EditReleaseGroup.js:87
+#: ../root/edit/details/MergeReleases.js:236
+#: ../root/edit/details/historic/AddRelease.js:38
+#: ../root/edit/details/historic/AddRelease.js:90
+#: ../root/edit/details/historic/AddTrackKV.js:41
+#: ../root/edit/details/historic/ChangeArtistQuality.js:24
+#: ../root/edit/details/historic/ChangeReleaseArtist.js:25
+#: ../root/edit/details/historic/EditTrack.js:35
+#: ../root/edit/details/historic/MoveRelease.js:30
+#: ../root/edit/details/historic/RemoveRelease.js:26 ../root/isrc/Index.js:67
+#: ../root/layout/components/Search.js:24
+#: ../root/layout/components/sidebar/RecordingSidebar.js:49
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:60
+#: ../root/release_group/ReleaseGroupIndex.js:168
+#: ../root/report/DuplicateArtists.js:67
+#: ../root/report/DuplicateReleaseGroups.js:59
+#: ../root/report/IsrcsWithManyRecordings.js:59
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:53
+#: ../root/report/components/ArtistList.js:51
+#: ../root/report/components/ArtistUrlList.js:35
+#: ../root/report/components/CDTocReleaseList.js:56
+#: ../root/report/components/RecordingList.js:55
+#: ../root/report/components/ReleaseGroupList.js:57
+#: ../root/report/components/ReleaseGroupUrlList.js:38
+#: ../root/report/components/ReleaseList.js:58
+#: ../root/report/components/ReleaseUrlList.js:38
+#: ../root/search/components/CDStubResults.js:45
+#: ../root/search/components/RecordingResults.js:143
+#: ../root/search/components/ReleaseGroupResults.js:64
+#: ../root/search/components/ReleaseResults.js:112
+#: ../root/search/components/SearchForm.js:37
+#: ../root/static/scripts/common/constants.js:36
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:50
+#: ../root/static/scripts/common/utility/formatSetlist.js:52
+#: ../root/static/scripts/edit/components/forms.js:29
+#: ../root/static/scripts/release/components/MediumTable.js:86
+#: ../root/taglookup/Form.js:25 ../root/user/UserProfile.js:50
+msgid "Artist"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Artist Area"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:10
+msgid "Artist Details"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:40
+#: ../root/cdtoc/attach_filter_release.tt:54
+msgctxt "button/menu"
+msgid "Attach CD TOC"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:3
+#: ../root/cdtoc/attach_artist_releases.tt:4
+#: ../root/cdtoc/attach_filter_release.tt:3
+#: ../root/cdtoc/attach_filter_release.tt:4
+#: ../root/cdtoc/AttachCDTocConfirmation.js:48
+#: ../root/cdtoc/AttachCDTocConfirmation.js:49
+#: ../root/cdtoc/SelectArtistForCDToc.js:32
+msgctxt "header"
+msgid "Attach CD TOC"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:66 ../root/release/edit/tracklist.tt:478
+msgid "Attach Disc ID"
+msgstr ""
+
+#: ../root/cdtoc/index.tt:8
+msgid "Attached to releases"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:52
+#: ../root/admin/attributes/Attribute.js:72
+#: ../root/admin/attributes/Index.js:18 ../root/admin/attributes/Index.js:19
+#: ../root/admin/attributes/Language.js:33
+#: ../root/admin/attributes/Script.js:33
+#: ../root/components/RelationshipsTable.js:336
+#: ../root/edit/details/AddRelationshipType.js:169
+#: ../root/edit/details/EditRelationshipType.js:297
+#: ../root/edit/details/RemoveRelationshipType.js:117
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:46
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:532
+#: ../root/utility/tableColumns.js:671
+msgid "Attributes"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397
+msgid "Auto-Editor"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:19
+#: ../root/cdtoc/attach_filter_release.tt:33 ../root/cdtoc/list.tt:13
+#: ../root/cdtoc/lookup.tt:47 ../root/release/edit/duplicates.tt:17
+#: ../root/release/edit/information.tt:222
+#: ../root/release_group/set_cover_art.tt:62
+#: ../root/components/list/ReleaseList.js:139
+#: ../root/edit/details/AddRelease.js:112
+#: ../root/edit/details/EditBarcodes.js:45
+#: ../root/edit/details/EditBarcodes.js:51
+#: ../root/edit/details/EditRelease.js:149
+#: ../root/edit/details/EditReleaseLabel.js:124
+#: ../root/edit/details/MergeReleases.js:242
+#: ../root/edit/details/historic/AddRelease.js:125
+#: ../root/edit/details/historic/EditReleaseEvents.js:113
+#: ../root/layout/components/sidebar/CDStubSidebar.js:71
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:128
+#: ../root/otherlookup/OtherLookupForm.js:62
+#: ../root/release_group/ReleaseGroupIndex.js:174
+#: ../root/report/ReleasesSameBarcode.js:40
+#: ../root/search/components/ReleaseResults.js:118
+msgid "Barcode"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:33
+msgid ""
+"Based on the above CD stub, we also found the following releases in "
+"MusicBrainz that may be related:"
+msgstr ""
+
+#: ../root/release/edit/duplicates.tt:4
+msgid ""
+"Based on the information you have provided, we have found the following "
+"similar release to already exist in MusicBrainz. If you wish to base your "
+"release on an existing release, select it below."
+msgstr ""
+
+#: ../root/artist/edit_form.tt:42 ../root/components/list/ArtistList.js:102
+#: ../root/search/components/ArtistResults.js:57
+msgid "Begin Area"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:38 ../root/components/forms.tt:212
+#: ../root/event/edit_form.tt:36 ../root/artist/utils.js:34
+#: ../root/edit/details/AddArea.js:89 ../root/edit/details/AddEvent.js:63
+#: ../root/edit/details/AddLabel.js:61 ../root/edit/details/AddPlace.js:73
+#: ../root/edit/details/AddRemoveAlias.js:90
+#: ../root/edit/details/EditAlias.js:111 ../root/edit/details/EditArea.js:103
+#: ../root/edit/details/EditEvent.js:72 ../root/edit/details/EditLabel.js:93
+#: ../root/edit/details/EditPlace.js:93
+#: ../root/layout/components/sidebar/AreaSidebar.js:58
+#: ../root/report/RecordingsWithFutureDates.js:34
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:194
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:167
+msgid "Begin date"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:95 ../root/search/error/InternalError.js:29
+msgid ""
+"Below is the error information. If you wish to file a bug report, you may do "
+"so at {bugs|our bug tracker}. The information below will help, so please be "
+"sure to include it!"
+msgstr ""
+
+#: ../root/layout.tt:117 ../root/layout/components/ExternalLinks.js:132
+#: ../root/layout/components/Footer.js:33
+msgid "Blog"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:128
+#: ../root/admin/PrivilegeSearch.js:121
+msgid "Bot"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:30
+msgid ""
+"Both Other and Uncommon are shown in the \"other\" section, but Uncommon "
+"should be used for scripts in Unicode which are unlikely to be used."
+msgstr ""
+
+#: ../root/layout.tt:125 ../root/layout/components/Footer.js:52
+msgid ""
+"Brought to you by {MeB|MetaBrainz Foundation} and our {spon|sponsors} and "
+"{supp|supporters}. Cover Art provided by the {caa|Cover Art Archive}."
+msgstr ""
+
+#: ../root/layout.tt:116 ../root/layout/components/Footer.js:32
+#: ../root/main/index.js:209
+msgid "Bug Tracker"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:6
+msgid "By default, the parser expects the following format:"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:21
+msgid "CD Stub found"
+msgstr ""
+
+#: ../root/cdstub/header.tt:5 ../root/cdstub/CDStubHeader.js:21
+msgid "CD stub by {artist}"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:248
+msgid "CD stub import"
+msgstr ""
+
+#: ../root/cdstub/layout.tt:2 ../root/cdstub/CDStubLayout.js:27
+msgid "CD stub “{title}” by {artist}"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:42
+msgid "Can be approved"
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:34 ../root/release/edit/layout.tt:59
+#: ../root/release/edit/tracklist.tt:117 ../root/area/AreaMerge.js:51
+#: ../root/artist/ArtistMerge.js:79 ../root/collection/CollectionMerge.js:193
+#: ../root/components/ConfirmLayout.js:46 ../root/edit/DeleteNote.js:72
+#: ../root/edit/ModifyNote.js:89 ../root/event/EventMerge.js:54
+#: ../root/instrument/InstrumentMerge.js:51 ../root/label/LabelMerge.js:51
+#: ../root/layout/components/MergeHelper.js:83 ../root/place/PlaceMerge.js:51
+#: ../root/recording/RecordingMerge.js:67 ../root/release/ReleaseMerge.js:68
+#: ../root/release_group/ReleaseGroupMerge.js:52
+#: ../root/series/SeriesMerge.js:51
+#: ../root/static/scripts/common/components/FilterForm.js:269
+#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:210
+#: ../root/static/scripts/edit/components/URLInputPopover.js:126
+#: ../root/static/scripts/relationship-editor/components/DialogButtons.js:28
+#: ../root/work/WorkMerge.js:65
+msgid "Cancel"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:26
+#: ../root/relationship/linktype/form.tt:31
+#: ../root/edit/details/AddRelationshipType.js:135
+#: ../root/edit/details/AddRelationshipType.js:148
+#: ../root/edit/details/EditRelationshipType.js:265
+#: ../root/edit/details/EditRelationshipType.js:275
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:169
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:177
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:94
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:103
+msgid "Cardinality of {entity_placeholder}"
+msgstr ""
+
+#: ../root/release/edit/information.tt:194
+msgid "Cat. No:"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:18
+#: ../root/cdtoc/attach_filter_release.tt:32 ../root/cdtoc/list.tt:12
+#: ../root/cdtoc/lookup.tt:46 ../root/release/edit/duplicates.tt:16
+#: ../root/release_group/set_cover_art.tt:56
+#: ../root/edit/details/MergeReleases.js:241
+#: ../root/recording/RecordingIndex.js:62
+#: ../root/release_group/ReleaseGroupIndex.js:173
+#: ../root/search/components/ReleaseResults.js:117
+#: ../root/utility/tableColumns.js:487 ../root/utility/tableColumns.js:492
+msgid "Catalog#"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:53
+#: ../root/relationship/linkattributetype/form.tt:7
+#: ../root/relationship/linktype/form.tt:7
+#: ../root/admin/attributes/Attribute.js:82
+#: ../root/edit/details/AddRelationshipAttribute.js:50
+#: ../root/edit/details/EditRelationshipAttribute.js:93
+#: ../root/edit/details/EditRelationshipType.js:241
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:122
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:162
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:58
+msgid "Child order"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:114
+msgid "Click Edit to edit the recording associations for this disc."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:237 ../root/release/edit/tracklist.tt:266
+msgid "Close"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditHeader.js:155
+#: ../root/edit/components/EditSidebar.js:59
+msgid "Closed"
+msgstr ""
+
+#: ../root/artist/split.tt:36
+msgid "Collaborators on this artist"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:301
+msgid "Collapse medium"
+msgstr ""
+
+#: ../root/cdstub/index.tt:3 ../root/release/add_cover_art.tt:69
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:71 ../root/cdstub/CDStubIndex.js:36
+msgid "Comment"
+msgstr ""
+
+#: ../root/place/edit_form.tt:28 ../root/edit/details/AddPlace.js:67
+#: ../root/edit/details/EditPlace.js:86
+#: ../root/layout/components/sidebar/PlaceSidebar.js:99
+msgid "Coordinates"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:149
+msgid "Copy all track artist credits to associated recordings."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:143
+msgid "Copy all track titles to associated recordings."
+msgstr ""
+
+#: ../root/components/forms.tt:242
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:122
+msgid "Copy name"
+msgstr ""
+
+#: ../root/release/edit/information.tt:83
+msgid "Copy the release artist credit to the release group"
+msgstr ""
+
+#: ../root/release/edit/information.tt:68
+msgid "Copy the release title to the release group"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:16
+#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
+#: ../root/cdtoc/lookup.tt:44 ../root/release/edit/duplicates.tt:14
+#: ../root/release/edit/information.tt:156
+#: ../root/release_group/set_cover_art.tt:41
+#: ../root/edit/details/EditReleaseLabel.js:113
+#: ../root/edit/details/MergeReleases.js:239
+#: ../root/edit/details/historic/AddRelease.js:122
+#: ../root/edit/details/historic/EditReleaseEvents.js:110
+#: ../root/recording/RecordingIndex.js:60
+#: ../root/release_group/ReleaseGroupIndex.js:171
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/static/scripts/common/components/FilterForm.js:187
+#: ../root/utility/tableColumns.js:509 ../root/utility/tableColumns.js:521
+msgid "Country"
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:67
+#: ../root/components/EntityTabs.js:114 ../root/release/CoverArt.js:57
+#: ../root/user/UserProfile.js:51
+msgid "Cover Art"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:85
+msgid "Creating edit..."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:81
+msgid "Custom delimiter"
+msgstr ""
+
+#: ../root/release/edit/information.tt:148
+#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:253
+#: ../root/static/scripts/edit/components/PartialDateInput.js:186
+msgid "DD"
+msgstr ""
+
+#: ../root/medium/tracklist.tt:37 ../root/release/edit/tracklist.tt:466
+#: ../root/medium/MediumTracklist.js:53
+#: ../root/static/scripts/release/components/MediumTable.js:128
+msgid "Data Tracks"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:16
+#: ../root/cdtoc/attach_filter_release.tt:30 ../root/cdtoc/list.tt:10
+#: ../root/cdtoc/lookup.tt:43 ../root/release/edit/duplicates.tt:13
+#: ../root/release/edit/information.tt:130
+#: ../root/release_group/set_cover_art.tt:37
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:25
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:30
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:26
+#: ../root/components/RelationshipsTable.js:333
+#: ../root/edit/details/EditReleaseLabel.js:105
+#: ../root/edit/details/MergeReleases.js:239
+#: ../root/edit/details/historic/AddRelease.js:121
+#: ../root/edit/details/historic/EditReleaseEvents.js:109
+#: ../root/elections/ElectionVotes.js:28
+#: ../root/layout/components/sidebar/EventSidebar.js:61
+#: ../root/recording/RecordingIndex.js:60
+#: ../root/release_group/ReleaseGroupIndex.js:171
+#: ../root/search/components/EventResults.js:74
+#: ../root/search/components/ReleaseResults.js:115
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:106
+#: ../root/static/scripts/common/components/FilterForm.js:225
+#: ../root/utility/tableColumns.js:284 ../root/utility/tableColumns.js:289
+#: ../root/utility/tableColumns.js:515 ../root/utility/tableColumns.js:521
+msgid "Date"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:34 ../root/components/forms.tt:208
+#: ../root/event/edit_form.tt:32
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:184
+msgid "Date Period"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:36 ../root/components/forms.tt:210
+#: ../root/event/edit_form.tt:34
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:186
+msgid ""
+"Dates are in the format YYYY-MM-DD. Partial dates such as YYYY-MM or just "
+"YYYY are OK, or you can omit the date entirely."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:61 ../root/doc/edit_type.tt:23
+#: ../root/instrument/edit_form.tt:13
+#: ../root/relationship/linkattributetype/form.tt:15
+#: ../root/relationship/linktype/form.tt:20
+#: ../root/admin/attributes/Attribute.js:80
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:33
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:42
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:28
+#: ../root/collection/CollectionIndex.js:189
+#: ../root/edit/details/AddInstrument.js:65
+#: ../root/edit/details/AddRelationshipAttribute.js:42
+#: ../root/edit/details/AddRelationshipType.js:74
+#: ../root/edit/details/EditInstrument.js:71
+#: ../root/edit/details/EditRelationshipAttribute.js:70
+#: ../root/edit/details/EditRelationshipAttribute.js:76
+#: ../root/edit/details/EditRelationshipType.js:196
+#: ../root/edit/details/EditRelationshipType.js:202
+#: ../root/edit/details/EditUrl.js:62
+#: ../root/edit/details/RemoveRelationshipAttribute.js:39
+#: ../root/edit/details/RemoveRelationshipType.js:49
+#: ../root/instrument/InstrumentIndex.js:34
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:110
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:146
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:86
+#: ../root/search/components/InstrumentResults.js:55
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:209
+#: ../root/utility/tableColumns.js:681
+msgid "Description"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:28 ../root/components/EntityTabs.js:146
+#: ../root/elections/ElectionDetails.js:29 ../root/entity/Details.js:91
+#: ../root/entity/Details.js:93
+msgid "Details"
+msgstr ""
+
+#: ../root/area/edit_form.tt:10 ../root/artist/edit_form.tt:14
+#: ../root/event/edit_form.tt:13 ../root/instrument/edit_form.tt:10
+#: ../root/label/edit_form.tt:13 ../root/place/edit_form.tt:13
+#: ../root/recording/edit_form.tt:33 ../root/release/edit/information.tt:258
+#: ../root/release_group/edit_form.tt:15 ../root/series/edit_form.tt:13
+#: ../root/work/edit_form.tt:13 ../root/edit/details/AddArea.js:54
+#: ../root/edit/details/AddArtist.js:62 ../root/edit/details/AddEvent.js:44
+#: ../root/edit/details/AddGenre.js:41 ../root/edit/details/AddInstrument.js:51
+#: ../root/edit/details/AddLabel.js:54 ../root/edit/details/AddPlace.js:43
+#: ../root/edit/details/AddRelease.js:75
+#: ../root/edit/details/AddReleaseGroup.js:57
+#: ../root/edit/details/AddSeries.js:38
+#: ../root/edit/details/AddStandaloneRecording.js:53
+#: ../root/edit/details/AddWork.js:41 ../root/edit/details/EditArea.js:66
+#: ../root/edit/details/EditArtist.js:79 ../root/edit/details/EditEvent.js:47
+#: ../root/edit/details/EditGenre.js:44
+#: ../root/edit/details/EditInstrument.js:51
+#: ../root/edit/details/EditLabel.js:65 ../root/edit/details/EditPlace.js:52
+#: ../root/edit/details/EditRecording.js:53
+#: ../root/edit/details/EditRelease.js:93
+#: ../root/edit/details/EditReleaseGroup.js:50
+#: ../root/edit/details/EditSeries.js:48 ../root/edit/details/EditWork.js:59
+#: ../root/static/scripts/genre/components/GenreEditForm.js:151
+msgid "Disambiguation"
+msgstr ""
+
+#: ../root/release/discids.tt:8 ../root/cdtoc/CDTocInfo.js:32
+#: ../root/edit/details/AddDiscId.js:34 ../root/edit/details/MoveDiscId.js:26
+#: ../root/edit/details/RemoveDiscId.js:31
+#: ../root/edit/details/SetTrackLengths.js:54
+#: ../root/edit/details/historic/AddDiscId.js:27
+#: ../root/edit/details/historic/MoveDiscId.js:21
+#: ../root/edit/details/historic/RemoveDiscId.js:23
+#: ../root/otherlookup/OtherLookupForm.js:112
+#: ../root/utility/tableColumns.js:199 ../root/utility/tableColumns.js:204
+msgid "Disc ID"
+msgstr ""
+
+#: ../root/cdstub/index.tt:10 ../root/cdstub/CDStubIndex.js:44
+msgid "Disc ID information"
+msgstr ""
+
+#: ../root/cdtoc/index.tt:3
+msgid "Disc ID “{discid}
”"
+msgstr ""
+
+#: ../root/cdtoc/index.tt:1
+msgid "Disc ID “{discid}”"
+msgstr ""
+
+#: ../root/release/discids.tt:1 ../root/release/discids.tt:3
+#: ../root/components/EntityTabs.js:104 ../root/report/ReportsIndex.js:624
+msgid "Disc IDs"
+msgstr ""
+
+#: ../root/release/edit/duplicates.tt:40
+msgid "Do not use any of the above releases as a starting point"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:65
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:55
+#: ../root/edit/details/AddRelationshipType.js:187
+#: ../root/edit/details/EditRelationshipType.js:327
+#: ../root/layout/components/BottomMenu.js:293
+#: ../root/layout/components/Search.js:51
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:80
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:92
+#: ../root/search/components/SearchForm.js:56
+msgid "Documentation"
+msgstr ""
+
+#: ../root/layout.tt:112 ../root/layout/components/Footer.js:26
+msgid "Donate"
+msgstr ""
+
+#: ../root/release/edit/macros.tt:54
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:165
+#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:219
+#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:64
+#: ../root/static/scripts/edit/components/URLInputPopover.js:134
+#: ../root/static/scripts/relationship-editor/components/DialogButtons.js:37
+msgid "Done"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:158
+msgid ""
+"Each track in the MusicBrainz database has to be linked to a recording, "
+"choose the appropriate recording or look for it in the database."
+msgstr ""
+
+#: ../root/cdtoc/list.tt:18 ../root/entity/edit.tt:1
+#: ../root/release/discids.tt:12 ../root/release/edit/recordings.tt:73
+#: ../root/release/edit/recordings.tt:109
+#: ../root/account/applications/ApplicationList.js:41
+#: ../root/admin/attributes/Attribute.js:102
+#: ../root/admin/attributes/Language.js:64
+#: ../root/admin/attributes/Script.js:61
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:45
+#: ../root/collection/CollectionHeader.js:86
+#: ../root/collection/EditCollection.js:32
+#: ../root/components/Aliases/AliasTableRow.js:61
+#: ../root/components/Aliases/ArtistCreditList.js:78
+#: ../root/components/Aliases/ArtistCreditList.js:79
+#: ../root/components/EntityTabs.js:153
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:96
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:68
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:133
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:119
+#: ../root/release/CoverArt.js:110
+#: ../root/static/scripts/edit/components/ArtistCreditEditor.js:444
+#: ../root/user/UserCollections.js:134
+msgid "Edit"
+msgstr ""
+
+#: ../root/artist/edit_credit.tt:1 ../root/artist/edit_credit.tt:6
+msgid "Edit Artist Credit"
+msgstr ""
+
+#: ../root/admin/attributes/edit.tt:1 ../root/admin/attributes/edit.tt:3
+msgid "Edit Attribute"
+msgstr ""
+
+#: ../root/release/edit_cover_art.tt:1 ../root/release/edit_cover_art.tt:4
+msgid "Edit Cover Art"
+msgstr ""
+
+#: ../root/forms/edit-note.tt:2 ../root/release/edit/editnote.tt:27
+#: ../root/release/edit/layout.tt:18
+#: ../root/static/scripts/edit/components/EnterEditNote.js:48
+msgid "Edit Note"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Edit Note Authors"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Edit Note Content"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/edit.tt:1
+#: ../root/relationship/linkattributetype/edit.tt:3
+msgid "Edit Relationship Attribute"
+msgstr ""
+
+#: ../root/relationship/linktype/edit.tt:1
+#: ../root/relationship/linktype/edit.tt:3
+msgid "Edit Relationship Type"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:18 ../root/doc/edit_types.tt:1
+#: ../root/doc/edit_types.tt:3 ../root/edit/components/EditSidebar.js:99
+#: ../root/layout/components/BottomMenu.js:315
+msgid "Edit Types"
+msgstr ""
+
+#: ../root/url/edit_form.tt:3 ../lib/MusicBrainz/Server/Edit/URL/Edit.pm:26
+#: ../root/static/scripts/edit/components/URLInputPopover.js:146
+msgid "Edit URL"
+msgstr ""
+
+#: ../root/components/forms.tt:36 ../root/components/forms.tt:40
+#: ../root/static/scripts/edit/components/EnterEditNote.js:77
+msgid "Edit note:"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Edited entity"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:48
+#: ../root/admin/components/UserList.js:29
+#: ../root/layout/components/Search.js:48
+#: ../root/report/components/EditorList.js:63
+#: ../root/search/components/SearchForm.js:47
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:105
+msgid "Editor"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Editor Flag"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:45
+msgid "Enable vinyl track numbers"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:56 ../root/components/list/ArtistList.js:112
+#: ../root/search/components/ArtistResults.js:59
+msgid "End Area"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:51 ../root/components/forms.tt:214
+#: ../root/event/edit_form.tt:38 ../root/artist/utils.js:65
+#: ../root/edit/details/AddArea.js:96 ../root/edit/details/AddEvent.js:70
+#: ../root/edit/details/AddLabel.js:68 ../root/edit/details/AddPlace.js:79
+#: ../root/edit/details/AddRemoveAlias.js:97
+#: ../root/edit/details/EditAlias.js:118 ../root/edit/details/EditArea.js:111
+#: ../root/edit/details/EditEvent.js:80 ../root/edit/details/EditLabel.js:102
+#: ../root/edit/details/EditPlace.js:101
+#: ../root/elections/ElectionTable/index.js:25
+#: ../root/layout/components/sidebar/AreaSidebar.js:64
+#: ../root/report/RecordingsWithFutureDates.js:39
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:209
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:188
+msgid "End date"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:112
+msgid "Endpoint:"
+msgstr ""
+
+#: ../root/components/forms.tt:258 ../root/components/forms.tt:283
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:113
+msgid "English"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:3
+msgid "Enter a tracklist below:"
+msgstr ""
+
+#: ../root/place/edit_form.tt:50
+msgid ""
+"Enter coordinates manually or click the map to get coordinates from the "
+"marker. If you’re too far out, clicking will zoom instead."
+msgstr ""
+
+#: ../root/components/forms.tt:51 ../root/release/add_cover_art.tt:170
+#: ../root/release/edit/layout.tt:58
+#: ../root/static/scripts/edit/components/EnterEdit.js:74
+msgid "Enter edit"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:86
+msgid ""
+"Enter the delimiter that separates the track name from the artist name "
+"(valid {url|regular expressions} are accepted)."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Entered"
+msgstr ""
+
+#: ../root/components/forms.tt:30
+msgid ""
+"Entering an {note|edit note} that describes where you got your information "
+"is highly recommended. Not only does it make it clear where you got your "
+"information, but it can also encourage other users to vote on your edit "
+"— thus making your edit get applied faster."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:37 ../root/admin/attributes/Attribute.js:36
+msgid "Entity type"
+msgstr ""
+
+#: ../root/components/forms.tt:32
+#: ../root/static/scripts/edit/components/EnterEditNote.js:63
+msgid ""
+"Even just providing a URL or two is helpful! For more suggestions, see "
+"{doc_how_to|our guide for writing good edit notes}."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Event.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:52
+#: ../root/components/list/EventList.js:75 ../root/edit/details/AddEvent.js:27
+#: ../root/edit/details/EditEvent.js:35 ../root/layout/components/Search.js:27
+#: ../root/report/components/EventList.js:53
+#: ../root/search/components/SearchForm.js:51
+#: ../root/static/scripts/common/constants.js:37
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:54
+#: ../root/user/UserProfile.js:52
+msgid "Event"
+msgstr ""
+
+#: ../root/event/edit_form.tt:11
+msgid "Event Details"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:71
+#: ../root/edit/details/EditRelationshipType.js:335
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:240
+msgid "Examples"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:247
+msgid "Existing medium"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:151
+msgid "Expand"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:301
+msgid "Expand medium"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:38
+msgid "Expire action"
+msgstr ""
+
+#: ../root/area/edit_form.tt:22 ../root/artist/edit_form.tt:70
+#: ../root/event/edit_form.tt:46 ../root/instrument/edit_form.tt:32
+#: ../root/label/edit_form.tt:41 ../root/place/edit_form.tt:37
+#: ../root/recording/edit_form.tt:51 ../root/release/edit/information.tt:268
+#: ../root/release_group/edit_form.tt:23 ../root/series/edit_form.tt:26
+#: ../root/work/edit_form.tt:90
+#: ../root/static/scripts/genre/components/GenreEditForm.js:160
+msgid "External Links"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:48
+msgid "File:"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:126
+msgid "Find Relationships"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:64
+msgid "Finish"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:17
+msgid ""
+"First enter all track information, including titles and artist credits, in "
+"order to edit their recordings."
+msgstr ""
+
+#: ../root/artist/edit_form.tt:3 ../root/recording/edit_form.tt:17
+#: ../root/release_group/edit_form.tt:5 ../root/series/edit_form.tt:3
+msgid ""
+"For more information, check the {doc_doc|documentation} and {doc_styleguide|"
+"style guidelines}."
+msgstr ""
+
+#: ../root/event/edit_form.tt:3 ../root/label/edit_form.tt:3
+#: ../root/place/edit_form.tt:3 ../root/work/edit_form.tt:4
+#: ../root/search/components/SearchForm.js:106
+msgid "For more information, check the {doc_doc|documentation}."
+msgstr ""
+
+#: ../root/cdtoc/list.tt:9 ../root/release/edit/duplicates.tt:11
+#: ../root/release/edit/tracklist.tt:305
+#: ../root/release_group/set_cover_art.tt:46
+#: ../root/components/list/ReleaseList.js:98
+#: ../root/edit/details/AddMedium.js:136 ../root/edit/details/EditMedium.js:485
+#: ../root/edit/details/EditReleaseLabel.js:131
+#: ../root/edit/details/MergeReleases.js:237
+#: ../root/edit/details/historic/AddRelease.js:126
+#: ../root/edit/details/historic/EditReleaseEvents.js:114
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:137
+#: ../root/release_group/ReleaseGroupIndex.js:169
+#: ../root/report/components/CDTocList.js:49
+#: ../root/search/components/ReleaseResults.js:113
+msgid "Format"
+msgstr ""
+
+#: ../root/layout.tt:114 ../root/layout/components/Footer.js:28
+#: ../root/main/index.js:212
+msgid "Forums"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:13
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:198
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:65
+msgid "Forward link phrase:"
+msgstr ""
+
+#: ../root/components/with-pager.tt:5 ../root/components/PaginatedResults.js:52
+msgid "Found {n} result"
+msgid_plural "Found {n} results"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/with-pager.tt:7 ../root/components/PaginatedResults.js:58
+msgid "Found {n} result for \"{q}\""
+msgid_plural "Found {n} results for \"{q}\""
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/forms.tt:260 ../root/components/forms.tt:285
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:115
+msgid "French"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:12 ../root/admin/attributes/form.tt:26
+#: ../root/admin/attributes/Language.js:45
+#: ../root/admin/attributes/Script.js:44
+msgid "Frequency"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:14 ../root/admin/attributes/form.tt:28
+msgid "Frequency notes:"
+msgstr ""
+
+#: ../root/cdstub/index.tt:30 ../root/cdstub/CDStubIndex.js:59
+#: ../root/cdtoc/CDTocInfo.js:27
+msgid "Full TOC:"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:17 ../root/components/list/ArtistList.js:87
+#: ../root/edit/details/AddArtist.js:76 ../root/edit/details/EditArtist.js:95
+#: ../root/layout/components/sidebar/ArtistSidebar.js:89
+#: ../root/search/components/ArtistResults.js:54
+#: ../root/static/scripts/account/components/EditProfileForm.js:237
+#: ../root/user/UserProfile.js:268
+msgid "Gender"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Genre.pm:7
+#: ../root/edit/details/AddGenre.js:24 ../root/edit/details/EditGenre.js:28
+#: ../root/genre/GenreHeader.js:29 ../root/search/components/TagResults.js:52
+#: ../root/static/scripts/common/constants.js:38
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:56
+#: ../root/tag/TagIndex.js:36
+msgid "Genre"
+msgstr ""
+
+#: ../root/components/forms.tt:228 ../root/release/edit/information.tt:14
+#: ../root/release/edit/tracklist.tt:527
+#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:153
+msgid "Guess case"
+msgstr ""
+
+#: ../root/components/forms.tt:254
+msgctxt "button/menu"
+msgid "Guess case"
+msgstr ""
+
+#: ../root/components/forms.tt:249
+msgctxt "header"
+msgid "Guess case"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:320
+msgid "Guess case medium title"
+msgstr ""
+
+#: ../root/components/forms.tt:232 ../root/release/edit/information.tt:16
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:111
+#: ../root/static/scripts/edit/components/GuessCaseOptionsPopover.js:26
+msgid "Guess case options"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:224
+msgid "Guess case track"
+msgstr ""
+
+#: ../root/components/forms.tt:230 ../root/release/edit/information.tt:15
+#: ../root/release/edit/tracklist.tt:225
+#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:159
+msgid "Guess feat. artists"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:528
+msgid "Guess feat. artists from track titles"
+msgstr ""
+
+#: ../root/components/forms.tt:241
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:115
+msgid "Guess sort name"
+msgstr ""
+
+#: ../root/components/forms.tt:124
+msgid "HH:MM"
+msgstr ""
+
+#: ../root/instrument/edit_form.tt:20
+msgid "HTML tags allowed in the description: {tag_list}."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:17
+msgid ""
+"Hidden is used by default for ancient languages and languages only in ISO "
+"639-3 (until requested by a user)."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:31
+msgid "Hidden should be used for scripts not in Unicode."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:16
+msgid ""
+"Hidden should be used for sign languages and languages with no ISO 639-3 "
+"code."
+msgstr ""
+
+#: ../root/doc/edit_types.tt:5 ../root/doc/edit_types.tt:19
+#: ../root/doc/edit_types.tt:21 ../lib/MusicBrainz/Server/Edit/Historic.pm:10
+msgid "Historic"
+msgstr ""
+
+#: ../root/release/edit/information.tt:339
+msgid "I confirm that this is the barcode as it appears on the release."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:390
+msgid "I confirm this is a correct medium format/packaging combination."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:413
+msgid "I confirm this is an intentional use of Various Artists on tracks."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:314
+msgid "I don’t know"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:426
+msgid "I don’t know the tracklist for this medium."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:280
+msgid "I have no information about this release’s media and tracklist."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/admin/attributes/Attribute.js:78
+#: ../root/admin/attributes/Language.js:39
+#: ../root/admin/attributes/Script.js:40
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:118
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:156
+msgid "ID"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/AddArtist.js:136 ../root/edit/details/AddLabel.js:102
+#: ../root/layout/components/sidebar/SidebarIpis.js:18
+msgid "IPI code"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:29 ../root/label/edit_form.tt:32
+#: ../root/edit/details/EditArtist.js:162 ../root/edit/details/EditLabel.js:131
+msgid "IPI codes"
+msgstr ""
+
+#: ../root/components/forms.tt:333
+msgid ""
+"IPI codes are assigned by CISAC to “interested parties” in musical rights "
+"management. Check {ipi_doc|the documentation} for more info."
+msgstr ""
+
+#: ../root/layout.tt:115
+msgid "IRC"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/AddArtist.js:145 ../root/edit/details/AddLabel.js:111
+#: ../root/layout/components/sidebar/SidebarIsnis.js:22
+msgid "ISNI code"
+msgstr ""
+
+#: ../root/artist/edit_form.tt:30 ../root/label/edit_form.tt:33
+#: ../root/edit/details/EditArtist.js:170 ../root/edit/details/EditLabel.js:140
+msgid "ISNI codes"
+msgstr ""
+
+#: ../root/components/forms.tt:342
+msgid ""
+"ISNI codes are an ISO standard used to uniquely identify persons and "
+"organizations. Check {isni_doc|the documentation} for more info."
+msgstr ""
+
+#: ../root/area/edit_form.tt:12 ../root/edit/details/AddArea.js:68
+#: ../root/edit/details/EditArea.js:82
+#: ../root/layout/components/sidebar/AreaSidebar.js:71
+msgid "ISO 3166-1"
+msgstr ""
+
+#: ../root/area/edit_form.tt:13 ../root/edit/details/AddArea.js:75
+#: ../root/edit/details/EditArea.js:89
+#: ../root/layout/components/sidebar/AreaSidebar.js:81
+msgid "ISO 3166-2"
+msgstr ""
+
+#: ../root/area/edit_form.tt:14 ../root/edit/details/AddArea.js:82
+#: ../root/edit/details/EditArea.js:96
+#: ../root/layout/components/sidebar/AreaSidebar.js:91
+msgid "ISO 3166-3"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:8 ../root/admin/attributes/Language.js:41
+msgid "ISO 639-1"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:9 ../root/admin/attributes/Language.js:42
+msgid "ISO 639-2/B"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:10 ../root/admin/attributes/Language.js:43
+msgid "ISO 639-2/T"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:11 ../root/admin/attributes/Language.js:44
+msgid "ISO 639-3"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:24 ../root/admin/attributes/Script.js:42
+msgid "ISO code"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:25 ../root/admin/attributes/Script.js:43
+msgid "ISO number"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:45 ../root/edit/details/RemoveIsrc.js:27
+#: ../root/otherlookup/OtherLookupForm.js:72
+#: ../root/report/IsrcsWithManyRecordings.js:58
+#: ../root/static/scripts/common/components/IsrcList.js:26
+msgid "ISRC"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:45 ../root/report/ReportsIndex.js:606
+#: ../root/search/components/RecordingResults.js:144
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:721
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:411
+#: ../root/static/scripts/common/components/IsrcList.js:44
+#: ../root/utility/tableColumns.js:694
+msgid "ISRCs"
+msgstr ""
+
+#: ../root/work/edit_form.tt:16 ../root/edit/details/AddWork.js:47
+#: ../root/edit/details/EditWork.js:66 ../root/edit/details/RemoveIswc.js:27
+#: ../root/otherlookup/OtherLookupForm.js:77
+#: ../root/report/IswcsWithManyWorks.js:49
+#: ../root/search/components/WorkResults.js:57
+#: ../root/static/scripts/common/components/IswcList.js:26
+#: ../root/utility/tableColumns.js:708
+msgid "ISWC"
+msgstr ""
+
+#: ../root/work/edit_form.tt:16 ../root/report/ReportsIndex.js:615
+#: ../root/static/scripts/common/components/IswcList.js:44
+msgid "ISWCs"
+msgstr ""
+
+#: ../root/event/edit_form.tt:26
+msgid ""
+"If needed, the characters \"[\", \"]\", and \"&\" can be escaped using the "
+"HTML entities \"[\", \"]\", and \"&\" respectively."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:134
+msgid ""
+"If the {recording_doc|recording titles/artists} listed above are incorrect, "
+"you can check the boxes below to replace them with the track titles/artists "
+"for this release."
+msgstr ""
+
+#: ../root/release/edit/information.tt:300
+msgid ""
+"If this is an Amazon ASIN, please do not enter it in the catalog number "
+"field, but add it as a URL relationship later."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:160
+msgid ""
+"If we do not have a recording for this track in the database yet, please "
+"select \"Add a new recording\" below."
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:49
+msgid "If you can't find what you're looking for, you can add a new release:"
+msgstr ""
+
+#: ../root/release/edit/information.tt:330
+msgid ""
+"If you do not know whether the release has a barcode or not, just leave this "
+"blank."
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:75
+msgid ""
+"If you don't see the release you are looking for, you can still add a new "
+"one, using this CD TOC:"
+msgstr ""
+
+#: ../root/components/forms.tt:336 ../root/components/forms.tt:345
+msgid "If you don’t know the code for this entity, just leave the field blank."
+msgstr ""
+
+#: ../root/release/edit/information.tt:54
+msgid ""
+"If you don’t select an existing release group, a new one will be added with "
+"the types selected below."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:5
+msgid "If you have a tracklist you can copy and paste, you can input it here."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:15
+msgid ""
+"If you select “{enable_vinyl_numbers}”, the parser will also accept strings "
+"such as “A1” as track numbers."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:10
+msgid ""
+"If you want to save an edit search for future use, you can just bookmark it!"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:393
+msgid ""
+"If you’re sure the combination of “Digital Media” and the selected packaging "
+"is correct, confirm it above. Otherwise, please fix the data."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:353
+msgid ""
+"If you’re sure the entered medium title is correct, confirm it above. "
+"Otherwise, please fix the data."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:416
+msgid ""
+"If you’re sure the use of Various Artists is correct, confirm it above. "
+"Otherwise, please fix the data."
+msgstr ""
+
+#: ../root/components/common-macros.tt:60 ../root/components/Artwork.js:50
+msgid "Image not available, please try again later."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:28 ../root/cdstub/ImportCDStub.js:36
+msgid "Import CD Stub"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../lib/MusicBrainz/Server/Edit/Instrument.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:50
+#: ../root/components/list/InstrumentList.js:47
+#: ../root/edit/details/AddInstrument.js:29
+#: ../root/edit/details/EditInstrument.js:37
+#: ../root/instrument/InstrumentLayout.js:37
+#: ../root/layout/components/Search.js:36
+#: ../root/report/components/InstrumentList.js:47
+#: ../root/search/components/SearchForm.js:49
+#: ../root/static/scripts/common/constants.js:39
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:58
+#: ../root/user/UserProfile.js:53
+msgid "Instrument"
+msgstr ""
+
+#: ../root/instrument/edit_form.tt:8
+msgid "Instrument Details"
+msgstr ""
+
+#: ../root/components/common-macros.tt:486
+msgid "Javascript is required for this page to work properly."
+msgstr ""
+
+#: ../root/components/forms.tt:267 ../root/components/forms.tt:292
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:133
+msgid "Keep all-uppercase words uppercased"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:7
+msgid ""
+"Keep in mind that recording durations are {doc_link|recalculated from "
+"tracks} once the duration of a track changes. As such, if you correct the "
+"duration of a track whose recording is only used in this release, just reuse "
+"the old recording, don’t add a new one. If the recording is also used "
+"elsewhere and the durations are significantly different, consider adding a "
+"new recording instead."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:502
+msgid ""
+"Keep in mind that unselecting this will remove the track if the medium has a "
+"disc ID! If you unselect it by mistake, please readd the pregap track before "
+"submitting."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:517
+msgid ""
+"Keep in mind that unselecting this will remove the tracks if the medium has "
+"a disc ID! If you unselect it by mistake, please readd the data tracks "
+"before submitting."
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:17
+#: ../root/cdtoc/attach_filter_release.tt:31 ../root/cdtoc/list.tt:11
+#: ../root/cdtoc/lookup.tt:45 ../root/edit/search_macros.tt:423
+#: ../root/release/edit/duplicates.tt:15
+#: ../root/release/edit/information.tt:179
+#: ../root/release_group/set_cover_art.tt:52
+#: ../lib/MusicBrainz/Server/Edit/Label.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:43
+#: ../root/components/list/LabelList.js:54 ../root/edit/details/AddLabel.js:31
+#: ../root/edit/details/AddReleaseLabel.js:35
+#: ../root/edit/details/EditLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:51
+#: ../root/edit/details/MergeReleases.js:240
+#: ../root/edit/details/RemoveReleaseLabel.js:31
+#: ../root/edit/details/historic/AddRelease.js:123
+#: ../root/edit/details/historic/EditReleaseEvents.js:111
+#: ../root/label/LabelHeader.js:25 ../root/layout/components/Search.js:37
+#: ../root/recording/RecordingIndex.js:61
+#: ../root/release_group/ReleaseGroupIndex.js:172
+#: ../root/report/ReleaseLabelSameArtist.js:31
+#: ../root/report/components/LabelList.js:47
+#: ../root/report/components/LabelUrlList.js:35
+#: ../root/search/components/ReleaseResults.js:116
+#: ../root/search/components/SearchForm.js:42
+#: ../root/static/scripts/common/components/FilterForm.js:168
+#: ../root/static/scripts/common/constants.js:40
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:60
+#: ../root/user/UserProfile.js:54 ../root/utility/tableColumns.js:538
+#: ../root/utility/tableColumns.js:543
+msgid "Label"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Label Area"
+msgstr ""
+
+#: ../root/label/edit_form.tt:10
+msgid "Label Details"
+msgstr ""
+
+#: ../root/label/edit_form.tt:28 ../root/edit/details/AddLabel.js:94
+#: ../root/edit/details/EditLabel.js:85
+#: ../root/layout/components/sidebar/LabelSidebar.js:83
+msgid "Label code"
+msgstr ""
+
+#: ../root/release/edit/information.tt:114
+#: ../root/admin/attributes/Language.js:31
+#: ../root/admin/attributes/Language.js:34
+#: ../root/edit/details/AddRelease.js:91 ../root/edit/details/AddWork.js:59
+#: ../root/edit/details/EditRelease.js:113
+#: ../root/edit/details/historic/AddRelease.js:74 ../root/iswc/Index.js:61
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:191
+#: ../root/report/IswcsWithManyWorks.js:54
+#: ../root/search/components/ReleaseResults.js:119
+#: ../root/utility/tableColumns.js:559
+msgid "Language"
+msgstr ""
+
+#: ../root/layout.tt:139 ../root/layout/components/Footer.js:85
+msgid "Last replication packet received at {datetime}"
+msgstr ""
+
+#: ../root/cdstub/cdstub.tt:9 ../root/recording/edit_form.tt:35
+#: ../root/recording/edit_form.tt:38 ../root/release/discids.tt:10
+#: ../root/release/edit/tracklist.tt:164 ../root/release/edit/tracklist.tt:454
+#: ../root/cdstub/CDStubInfo.js:29 ../root/cdtoc/AttachCDTocConfirmation.js:72
+#: ../root/cdtoc/CDTocInfo.js:54 ../root/components/RelationshipsTable.js:338
+#: ../root/components/list/RecordingList.js:115
+#: ../root/edit/details/AddStandaloneRecording.js:59
+#: ../root/edit/details/EditMedium.js:317
+#: ../root/edit/details/EditMedium.js:321
+#: ../root/edit/details/EditRecording.js:61
+#: ../root/edit/details/EditRecording.js:69
+#: ../root/edit/details/historic/AddRelease.js:91
+#: ../root/edit/details/historic/AddTrackKV.js:54 ../root/isrc/Index.js:68
+#: ../root/layout/components/sidebar/RecordingSidebar.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:146
+#: ../root/recording/RecordingIndex.js:55
+#: ../root/report/IsrcsWithManyRecordings.js:61
+#: ../root/report/components/CDTocList.js:54
+#: ../root/search/components/RecordingResults.js:142
+#: ../root/static/scripts/release/components/MediumTable.js:89
+msgid "Length"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:54
+msgid "Lines contain track artists"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:31
+msgid "Lines start with a track number"
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:15
+msgid "Loading edit previews..."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397
+msgid "Location Editor"
+msgstr ""
+
+#: ../root/components/common-macros.tt:421
+#: ../root/components/RequestLogin.js:23
+msgid "Log in"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:15
+#: ../root/edit/details/AddRelationshipType.js:121
+#: ../root/edit/details/EditRelationshipType.js:233
+#: ../root/edit/details/RemoveRelationshipType.js:104
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:208
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:79
+msgid "Long link phrase:"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:186
+msgid "Looking for suggested recordings..."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:3 ../root/cdtoc/lookup.tt:4
+msgid "Lookup CD"
+msgstr ""
+
+#: ../root/release/edit/information.tt:141
+#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:252
+#: ../root/static/scripts/edit/components/PartialDateInput.js:174
+msgid "MM"
+msgstr ""
+
+#: ../root/components/forms.tt:15 ../root/components/forms.tt:20
+#: ../root/static/scripts/edit/components/EnterEdit.js:63
+msgid "Make all edits votable."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:246
+msgid "Manual entry"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:5
+msgid "Matching CDs"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:41 ../root/components/common-macros.tt:503
+#: ../lib/MusicBrainz/Server/Edit/Medium.pm:8
+#: ../root/cdtoc/AttachCDTocConfirmation.js:65
+#: ../root/cdtoc/SetTracklistDurations.js:56
+#: ../root/edit/details/AddDiscId.js:27 ../root/edit/details/EditMedium.js:460
+#: ../root/edit/details/RemoveDiscId.js:25
+#: ../root/edit/details/RemoveMedium.js:71
+#: ../root/edit/details/SetTrackLengths.js:40
+#: ../root/search/components/RecordingResults.js:148
+#: ../root/static/scripts/common/utility/mediumFormatName.js:14
+msgid "Medium"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:318
+msgid "Medium title:"
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:30
+#: ../root/layout/components/MergeHelper.js:71
+#: ../root/layout/components/sidebar/MergeLink.js:34
+msgctxt "button/link"
+msgid "Merge"
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:3 ../root/layout/components/MergeHelper.js:30
+msgid "Merge Process"
+msgstr ""
+
+#: ../root/cdtoc/list.tt:63 ../root/release/discids.tt:45
+msgid "Move"
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:1 ../root/cdtoc/move_search.tt:2
+msgid "Move Disc ID"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:44
+msgid "Move file down"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:42
+msgid "Move file up"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:328
+msgid "Move medium down"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:329
+msgid "Move medium up"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:197
+msgid "Move track down"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:201
+msgid "Move track up"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:7 ../root/admin/attributes/form.tt:23
+#: ../root/admin/attributes/form.tt:58 ../root/components/forms.tt:226
+#: ../root/relationship/linkattributetype/form.tt:12
+#: ../root/relationship/linktype/form.tt:12
+#: ../root/relationship/linktype/form.tt:77
+#: ../root/relationship/linktype/form.tt:107
+#: ../root/admin/attributes/Attribute.js:79
+#: ../root/admin/attributes/Language.js:40
+#: ../root/admin/attributes/Script.js:41
+#: ../root/components/Aliases/ArtistCreditList.js:50
+#: ../root/components/list/RecordingList.js:97
+#: ../root/edit/details/AddArea.js:41 ../root/edit/details/AddArtist.js:51
+#: ../root/edit/details/AddEvent.js:38 ../root/edit/details/AddGenre.js:35
+#: ../root/edit/details/AddInstrument.js:41 ../root/edit/details/AddLabel.js:41
+#: ../root/edit/details/AddMedium.js:129 ../root/edit/details/AddPlace.js:38
+#: ../root/edit/details/AddRelationshipAttribute.js:34
+#: ../root/edit/details/AddRelationshipType.js:66
+#: ../root/edit/details/AddRelease.js:51
+#: ../root/edit/details/AddReleaseGroup.js:42
+#: ../root/edit/details/AddSeries.js:33
+#: ../root/edit/details/AddStandaloneRecording.js:42
+#: ../root/edit/details/AddWork.js:36 ../root/edit/details/EditArea.js:52
+#: ../root/edit/details/EditArtist.js:65 ../root/edit/details/EditEvent.js:40
+#: ../root/edit/details/EditGenre.js:37
+#: ../root/edit/details/EditInstrument.js:44
+#: ../root/edit/details/EditLabel.js:49 ../root/edit/details/EditMedium.js:477
+#: ../root/edit/details/EditPlace.js:45
+#: ../root/edit/details/EditRecording.js:46
+#: ../root/edit/details/EditRelationshipAttribute.js:51
+#: ../root/edit/details/EditRelationshipAttribute.js:60
+#: ../root/edit/details/EditRelationshipType.js:186
+#: ../root/edit/details/EditRelease.js:57
+#: ../root/edit/details/EditReleaseGroup.js:43
+#: ../root/edit/details/EditSeries.js:41 ../root/edit/details/EditWork.js:52
+#: ../root/edit/details/RemoveRelationshipAttribute.js:31
+#: ../root/edit/details/RemoveRelationshipType.js:41
+#: ../root/edit/details/historic/AddRelease.js:33
+#: ../root/edit/details/historic/AddRelease.js:89
+#: ../root/edit/details/historic/AddTrackKV.js:30
+#: ../root/edit/details/historic/AddTrackOld.js:22
+#: ../root/edit/details/historic/EditReleaseName.js:22
+#: ../root/entity/Details.js:96
+#: ../root/search/components/AnnotationResults.js:55
+#: ../root/search/components/AreaResults.js:63
+#: ../root/search/components/ArtistResults.js:51
+#: ../root/search/components/EditorResults.js:42
+#: ../root/search/components/EventResults.js:73
+#: ../root/search/components/InstrumentResults.js:53
+#: ../root/search/components/LabelResults.js:66
+#: ../root/search/components/PlaceResults.js:63
+#: ../root/search/components/RecordingResults.js:141
+#: ../root/search/components/ReleaseResults.js:111
+#: ../root/search/components/SeriesResults.js:57
+#: ../root/search/components/TagResults.js:51
+#: ../root/search/components/WorkResults.js:54
+#: ../root/static/scripts/account/components/ApplicationForm.js:81
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:197
+#: ../root/static/scripts/common/components/FilterForm.js:135
+#: ../root/static/scripts/edit/components/FormRowNameWithGuessCase.js:112
+#: ../root/static/scripts/genre/components/GenreEditForm.js:147
+#: ../root/static/scripts/release/components/EditWorkDialog.js:166
+#: ../root/user/UserSubscriptions.js:48
+msgid "Name"
+msgstr ""
+
+#: ../root/artist/edit_credit.tt:18 ../root/artist/split.tt:45
+msgid "New Artist Credit"
+msgstr ""
+
+#: ../root/admin/attributes/create.tt:1 ../root/admin/attributes/create.tt:3
+msgid "New Attribute"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:148
+msgid "New Image Goes Here"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/create.tt:1
+#: ../root/relationship/linkattributetype/create.tt:3
+msgid "New Relationship Attribute"
+msgstr ""
+
+#: ../root/relationship/linktype/create.tt:1
+#: ../root/relationship/linktype/create.tt:3
+msgid "New Relationship Type"
+msgstr ""
+
+#: ../root/components/paginator.tt:44 ../root/components/paginator.tt:46
+#: ../root/release/edit/macros.tt:53 ../root/components/Paginator.js:140
+#: ../root/components/Paginator.js:145
+#: ../root/static/scripts/common/artworkViewer.js:42
+#: ../root/static/scripts/release-editor/bindingHandlers.js:41
+msgid "Next"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:62
+msgid "Next »"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
+#: ../lib/MusicBrainz/Server/Data/Vote.pm:176
+#: ../root/edit/components/Vote.js:93
+msgctxt "vote"
+msgid "No"
+msgstr ""
+
+#: ../root/components/forms.tt:369
+msgid "No description available."
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:96
+msgid "No releases have cover art marked as \"Front\", cannot set cover art."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:140 ../root/admin/IpLookup.js:38
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:472
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:88
+msgid "No results"
+msgstr ""
+
+#: ../root/components/search.tt:43 ../root/admin/EmailSearch.js:87
+#: ../root/otherlookup/OtherLookupReleaseResults.js:32
+msgid "No results found."
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:61
+#: ../root/cdtoc/SelectArtistForCDToc.js:102
+#: ../root/search/components/PaginatedSearchResults.js:58
+msgid "No results found. Try refining your search query."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291
+msgid "No vote"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:444
+#: ../root/static/scripts/release-editor/fields.js:211
+msgid ""
+"None of the attached disc IDs can fit a pregap track of the given length."
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:78
+msgid ""
+"None of the mediums on this release can have the given CD TOC attached, "
+"because they have the wrong number of tracks."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:3 ../root/edit/details/EditRelease.js:164
+#: ../root/edit/details/MergeReleases.js:347
+#: ../root/edit/details/SetTrackLengths.js:74
+#: ../root/edit/details/historic/MergeReleases.js:55
+#: ../root/user/ReportUser.js:116
+msgid "Note"
+msgstr ""
+
+#: ../root/release/edit/information.tt:285
+msgid ""
+"Note! If you do not know the month or day of release, please leave them "
+"empty. January 1st is not often the actual release date, please double "
+"check that you have entered the release date correctly."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:243
+msgid ""
+"Note: only searches edits that: add or edit relationships, entered after "
+"2011-05-16; or which remove relationships, entered after 2013-07-08; or "
+"which reorder relationships."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:120
+msgid "Now loading recording associations..."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:180 ../root/release/edit/tracklist.tt:400
+msgid "Now loading tracklist..."
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:13
+msgid ""
+"Only releases with a front cover on the {caa|Cover Art Archive} can be "
+"selected."
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:7
+msgid ""
+"Only releases with the same amount of tracks ({n}) as the release the disc "
+"ID is currently attached to are shown."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:101
+msgid ""
+"Oops! It seems your search parameters are not correct, please double check "
+"your input!"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:139 ../root/release/edit/tracklist.tt:24
+msgid "Options"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:37
+#: ../root/edit/details/AddRelationshipType.js:160
+#: ../root/edit/details/EditRelationshipType.js:285
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:184
+msgid "Orderable direction:"
+msgstr ""
+
+#: ../root/series/edit_form.tt:17 ../root/edit/details/AddSeries.js:52
+#: ../root/edit/details/EditSeries.js:66
+#: ../root/layout/components/sidebar/SeriesSidebar.js:53
+#: ../root/utility/tableColumns.js:765
+msgid "Ordering Type"
+msgstr ""
+
+#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:77
+msgid "PDF file"
+msgstr ""
+
+#: ../root/release/edit/information.tt:240
+#: ../root/edit/details/AddRelease.js:105
+#: ../root/edit/details/EditRelease.js:137
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:167
+msgid "Packaging"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:50
+#: ../root/relationship/linkattributetype/form.tt:4
+#: ../root/relationship/linktype/form.tt:4
+#: ../root/edit/details/AddRelationshipAttribute.js:55
+#: ../root/edit/details/EditRelationshipAttribute.js:85
+#: ../root/edit/details/EditRelationshipType.js:317
+msgid "Parent"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:238
+msgid "Parse Tracks"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Place.pm:8
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:45
+#: ../root/components/list/PlaceList.js:54 ../root/edit/details/AddPlace.js:30
+#: ../root/edit/details/EditPlace.js:40 ../root/layout/components/Search.js:38
+#: ../root/report/PlacesWithoutCoordinates.js:40
+#: ../root/report/components/PlaceList.js:47
+#: ../root/search/components/SearchForm.js:44
+#: ../root/static/scripts/common/constants.js:41
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:62
+#: ../root/user/UserProfile.js:55
+msgid "Place"
+msgstr ""
+
+#: ../root/place/edit_form.tt:10
+msgid "Place Details"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:421
+msgid "Please choose a condition"
+msgstr ""
+
+#: ../root/release/edit/information.tt:326
+msgid ""
+"Please enter the barcode of the release you are entering, see Barcode for more information."
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:24
+#: ../root/layout/components/MergeHelper.js:58
+msgid ""
+"Please navigate to the pages of other entities you wish to merge and select "
+"the \"merge\" link."
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:66 ../root/release/CoverArtFields.js:84
+msgid ""
+"Please see the {doc|Cover Art Types} documentation for a description of "
+"these types."
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:7
+msgid "Please select the medium you wish to attach this CD TOC to."
+msgstr ""
+
+#: ../root/cdtoc/list.tt:6 ../root/release/add_cover_art.tt:125
+#: ../root/release/reorder_cover_art.tt:10
+#: ../root/edit/details/AddMedium.js:123 ../root/edit/details/EditMedium.js:469
+msgid "Position"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:32
+msgid "Possible Mediums"
+msgstr ""
+
+#: ../root/components/paginator.tt:6 ../root/components/paginator.tt:8
+#: ../root/release/edit/macros.tt:52 ../root/components/Paginator.js:72
+#: ../root/components/Paginator.js:77
+#: ../root/static/scripts/common/artworkViewer.js:38
+#: ../root/static/scripts/release-editor/bindingHandlers.js:44
+msgid "Previous"
+msgstr ""
+
+#: ../root/release/edit/information.tt:95 ../root/release_group/edit_form.tt:16
+#: ../root/edit/details/AddReleaseGroup.js:67
+#: ../root/edit/details/EditReleaseGroup.js:60
+msgid "Primary Type:"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:46
+msgid "Priority:"
+msgstr ""
+
+#: ../root/components/search.tt:9 ../root/search/components/SearchForm.js:78
+msgid "Query:"
+msgstr ""
+
+#: ../root/components/rating-macros.tt:1
+#: ../root/static/scripts/common/utility/ratingTooltip.js:13
+msgid "Rate: {rating} star"
+msgid_plural "Rate: {rating} stars"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../lib/MusicBrainz/Server/Edit/Recording.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:41
+#: ../root/edit/details/AddStandaloneRecording.js:32
+#: ../root/edit/details/EditRecording.js:39
+#: ../root/edit/details/MergeReleases.js:305
+#: ../root/edit/details/RemoveIsrc.js:31
+#: ../root/edit/details/historic/EditTrack.js:27
+#: ../root/layout/components/Search.js:28
+#: ../root/report/IsrcsWithManyRecordings.js:60
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:54
+#: ../root/report/components/RecordingList.js:49
+#: ../root/search/components/SearchForm.js:40
+#: ../root/static/scripts/common/constants.js:42
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:64
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1574
+#: ../root/user/UserProfile.js:56
+msgid "Recording"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:24
+msgid "Recording Details"
+msgstr ""
+
+#: ../root/recording/layout.tt:3 ../root/recording/RecordingLayout.js:40
+msgid "Recording “{name}” by {artist}"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:17 ../root/area/AreaRecordings.js:25
+#: ../root/artist/ArtistRecordings.js:144
+#: ../root/artist/ArtistRecordings.js:146
+#: ../root/artist_credit/ArtistCreditIndex.js:145
+#: ../root/artist_credit/ArtistCreditLayout.js:28
+#: ../root/components/EntityTabs.js:30
+#: ../root/components/TagEntitiesList.js:190
+#: ../root/edit/details/EditMedium.js:514
+#: ../root/instrument/InstrumentRecordings.js:37
+#: ../root/instrument/InstrumentRecordings.js:39
+#: ../root/report/ReportsIndex.js:472
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:29
+#: ../root/tag/TagLayout.js:27 ../root/work/WorkIndex.js:55
+msgid "Recordings"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:8
+msgid "Reject"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397
+msgid "Relationship Editor"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../root/edit/details/AddRelationshipType.js:56
+#: ../root/edit/details/EditRelationshipType.js:156
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:91
+#: ../root/utility/tableColumns.js:750
+msgid "Relationship Type"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:15
+#: ../root/cdtoc/attach_filter_release.tt:28 ../root/cdtoc/lookup.tt:40
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/duplicates.tt:10
+#: ../root/release/edit/tracklist.tt:105
+#: ../lib/MusicBrainz/Server/Edit/Release.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:40
+#: ../root/components/list/ReleaseList.js:81
+#: ../root/edit/details/AddCoverArt.js:26 ../root/edit/details/AddMedium.js:113
+#: ../root/edit/details/AddRelease.js:37
+#: ../root/edit/details/AddReleaseLabel.js:26
+#: ../root/edit/details/ChangeReleaseQuality.js:24
+#: ../root/edit/details/EditBarcodes.js:38
+#: ../root/edit/details/EditCoverArt.js:39
+#: ../root/edit/details/EditRelease.js:46
+#: ../root/edit/details/EditReleaseLabel.js:42
+#: ../root/edit/details/MergeReleases.js:235
+#: ../root/edit/details/RemoveCoverArt.js:26
+#: ../root/edit/details/RemoveReleaseLabel.js:26
+#: ../root/edit/details/ReorderCoverArt.js:34
+#: ../root/edit/details/ReorderMediums.js:25
+#: ../root/edit/details/historic/EditReleaseEvents.js:108
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:22
+#: ../root/layout/components/Search.js:29
+#: ../root/release_group/ReleaseGroupIndex.js:167
+#: ../root/report/components/CDTocReleaseList.js:50
+#: ../root/report/components/ReleaseList.js:52
+#: ../root/report/components/ReleaseUrlList.js:37
+#: ../root/search/components/RecordingResults.js:145
+#: ../root/search/components/SearchForm.js:39
+#: ../root/static/scripts/common/constants.js:43
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:66
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:397
+#: ../root/taglookup/Form.js:30 ../root/user/UserProfile.js:57
+msgid "Release"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Release Country"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:14
+msgid "Release Duplicates"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/release/edit/information.tt:37
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:39
+#: ../root/layout/components/Search.js:30
+#: ../root/report/DuplicateReleaseGroups.js:60
+#: ../root/report/ReleaseRgDifferentName.js:30
+#: ../root/report/ReleasesSameBarcode.js:46
+#: ../root/report/components/ReleaseGroupList.js:50
+#: ../root/report/components/ReleaseGroupUrlList.js:37
+#: ../root/search/components/ReleaseGroupResults.js:63
+#: ../root/search/components/SearchForm.js:38
+#: ../root/static/scripts/common/i18n/localizeTypeNameForEntity.js:36
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:68
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:404
+msgid "Release Group"
+msgstr ""
+
+#: ../root/release_group/edit_form.tt:12
+msgid "Release Group Details"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:31
+#: ../root/cdtoc/attach_filter_release.tt:46
+msgid "Release Group: {release_group_link}"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:12
+msgid "Release Information"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Release Language"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Release Quality"
+msgstr ""
+
+#: ../root/release/edit/information.tt:124
+#: ../root/static/scripts/common/components/ReleaseEvents.js:34
+msgid "Release event"
+msgstr ""
+
+#: ../root/release_group/layout.tt:1
+#: ../root/release_group/ReleaseGroupLayout.js:35
+msgid "Release group “{name}” by {artist}"
+msgstr ""
+
+#: ../root/release/edit/information.tt:3
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:121
+msgid "Release information"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:9 ../root/cdtoc/lookup.tt:85
+#: ../root/cdtoc/move_search.tt:15
+msgid "Release title or MBID"
+msgstr ""
+
+#: ../root/release/layout.tt:1 ../root/release/ReleaseLayout.js:32
+msgid "Release “{name}” by {artist}"
+msgstr ""
+
+#: ../root/cdtoc/list.tt:60 ../root/edit/search_macros.tt:120
+#: ../root/release/add_cover_art.tt:110 ../root/release/discids.tt:42
+#: ../root/account/applications/ApplicationList.js:45
+#: ../root/admin/attributes/Attribute.js:106
+#: ../root/admin/attributes/Language.js:68
+#: ../root/admin/attributes/Script.js:65
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:49
+#: ../root/admin/wikidoc/WikiDocIndex.js:108
+#: ../root/collection/CollectionHeader.js:93
+#: ../root/collection/DeleteCollection.js:26
+#: ../root/components/Aliases/AliasTableRow.js:65
+#: ../root/layout/components/sidebar/RemoveLink.js:34
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:102
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:74
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:136
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:124
+#: ../root/release/CoverArt.js:116
+#: ../root/static/scripts/account/components/EditProfileForm.js:315
+#: ../root/static/scripts/edit/components/Multiselect.js:210
+#: ../root/user/UserCollections.js:135
+msgid "Remove"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:81
+msgid "Remove Example"
+msgstr ""
+
+#: ../root/release/edit/information.tt:199
+msgid "Remove Label"
+msgstr ""
+
+#: ../root/release/edit/information.tt:159
+msgid "Remove Release Event"
+msgstr ""
+
+#: ../root/work/edit_form.tt:60
+msgid "Remove attribute"
+msgstr ""
+
+#: ../root/components/common-macros.tt:584
+#: ../root/components/common-macros.tt:592
+#: ../root/components/RemoveFromMergeTableCell.js:39
+#: ../root/utility/tableColumns.js:727 ../root/utility/tableColumns.js:737
+msgid "Remove from merge"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:330
+#: ../lib/MusicBrainz/Server/Edit/Medium/Delete.pm:23
+msgid "Remove medium"
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:33
+#: ../root/layout/components/MergeHelper.js:75
+msgid "Remove selected entities"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:227
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveTrack.pm:11
+msgid "Remove track"
+msgstr ""
+
+#: ../root/components/rating-macros.tt:1
+#: ../root/static/scripts/common/utility/ratingTooltip.js:12
+msgid "Remove your rating"
+msgstr ""
+
+#: ../root/components/forms.tt:163 ../root/components/forms.tt:168
+msgid "Remove {item}"
+msgstr ""
+
+#: ../root/release/reorder_cover_art.tt:1
+#: ../root/release/reorder_cover_art.tt:4
+msgctxt "header"
+msgid "Reorder Cover Art"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:83
+msgid "Request signature..."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:525
+msgid "Reset track numbers"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:58 ../root/cdtoc/move_search.tt:25
+#: ../root/components/search.tt:19 ../root/cdtoc/SelectArtistForCDToc.js:63
+#: ../root/cdtoc/SelectArtistForCDToc.js:99
+msgid "Results:"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:14
+msgid "Reuse previous recordings"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:14
+#: ../root/edit/details/AddRelationshipType.js:113
+#: ../root/edit/details/EditRelationshipType.js:223
+#: ../root/edit/details/RemoveRelationshipType.js:92
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:203
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:72
+msgid "Reverse link phrase:"
+msgstr ""
+
+#: ../root/release/edit/information.tt:307
+msgid "Review the {packaging|list of packaging types} for help."
+msgstr ""
+
+#: ../root/release/edit/layout.tt:27
+msgid ""
+"Review the {url|documentation} on release editor seeding and make sure your "
+"data is formatted correctly."
+msgstr ""
+
+#: ../root/layout.tt:132
+msgid ""
+"Running: {branch} ({sha})"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:82
+#: ../root/relationship/linkattributetype/form.tt:24
+#: ../root/relationship/linktype/form.tt:200
+#: ../root/static/scripts/account/components/EditProfileForm.js:337
+#: ../root/static/scripts/account/components/PreferencesForm.js:260
+msgid "Save"
+msgstr ""
+
+#: ../root/release/edit/information.tt:117
+#: ../root/admin/attributes/Script.js:31 ../root/admin/attributes/Script.js:34
+#: ../root/edit/details/AddRelease.js:98
+#: ../root/edit/details/EditRelease.js:125
+#: ../root/edit/details/historic/AddRelease.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:203
+msgid "Script"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:11 ../root/cdtoc/lookup.tt:77
+#: ../root/cdtoc/lookup.tt:87 ../root/cdtoc/move_search.tt:17
+#: ../root/components/search.tt:11 ../root/edit/search_macros.tt:114
+#: ../root/release/edit/recordings.tt:163 ../root/release/edit/tracklist.tt:117
+#: ../root/admin/EmailSearch.js:75 ../root/admin/PrivilegeSearch.js:146
+#: ../root/cdstub/ImportCDStub.js:49 ../root/cdtoc/SelectArtistForCDToc.js:47
+#: ../root/doc/components/DocSearchBox.js:22
+#: ../root/layout/components/BottomMenu.js:217
+#: ../root/layout/components/Search.js:94
+#: ../root/otherlookup/OtherLookupForm.js:44 ../root/search/SearchIndex.js:28
+#: ../root/search/SearchIndex.js:30 ../root/search/components/SearchForm.js:100
+#: ../root/static/scripts/common/components/Autocomplete2.js:810
+#: ../root/static/scripts/common/components/Autocomplete2.js:830
+#: ../root/static/scripts/common/components/SearchIcon.js:14
+#: ../root/taglookup/Form.js:54
+msgid "Search"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:71
+msgid "Search by artist"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:81
+msgid "Search by release"
+msgstr ""
+
+#: ../root/edit/search.tt:2 ../root/edit/search_macros.tt:8
+#: ../root/edit/search_results.tt:3
+msgid "Search for Edits"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:136
+msgid "Searching..."
+msgstr ""
+
+#: ../root/release/edit/information.tt:98 ../root/release_group/edit_form.tt:17
+#: ../root/edit/details/AddReleaseGroup.js:80
+#: ../root/edit/details/EditReleaseGroup.js:79
+msgid "Secondary Types:"
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:42 ../root/cdtoc/SelectArtistForCDToc.js:94
+msgid "Select"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:123
+msgid ""
+"Select a medium from the search results below and then click \"Add Medium\"."
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:4
+msgid ""
+"Select a release to which the disc ID {discid}
. should be moved "
+"to."
+msgstr ""
+
+#: ../root/components/forms.tt:360
+msgid ""
+"Select any type from the list to see its description. If the work doesn’t "
+"seem to match any type, just leave this blank."
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:31
+msgid "Select images..."
+msgstr ""
+
+#: ../root/components/forms.tt:259 ../root/components/forms.tt:284
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:114
+msgid "Sentence"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Series.pm:7
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:51
+#: ../root/components/list/SeriesList.js:47
+#: ../root/layout/components/Search.js:31
+#: ../root/search/components/SearchForm.js:50
+#: ../root/static/scripts/common/constants.js:45
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:70
+#: ../root/user/UserProfile.js:59
+msgctxt "singular"
+msgid "Series"
+msgstr ""
+
+#: ../root/series/edit_form.tt:10
+msgid "Series Details"
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:1
+msgid "Set Release Group Cover Art"
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:4
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/SetCoverArt.pm:20
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:88
+msgid "Set cover art"
+msgstr ""
+
+#: ../root/cdtoc/list.tt:54 ../root/release/discids.tt:36
+#: ../lib/MusicBrainz/Server/Edit/Historic/SetTrackLengthsFromCDTOC.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:23
+msgid "Set track lengths"
+msgstr ""
+
+#: ../root/event/edit_form.tt:17 ../root/edit/details/AddEvent.js:84
+#: ../root/edit/details/EditEvent.js:95 ../root/event/EventIndex.js:54
+msgid "Setlist"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:43
+msgid ""
+"Show me {autoedit_select_block} sorted {sort_select_block} that "
+"{match_or_negation_block} {and_vs_or_block} of the following conditions:"
+msgstr ""
+
+#: ../root/release/edit/duplicates.tt:2
+msgid "Similar releases"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:499
+msgid ""
+"Some discs contain a hidden track in the pregap section that precedes track "
+"1. Use this to add (or remove) the special pregap track section."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:514
+msgid ""
+"Some discs contain one or more data tracks after all audio tracks. Use this "
+"to add (or remove) the special data tracks section. You should only add data "
+"tracks that contain audio or video ({info|more info})"
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:4
+msgid ""
+"Some errors were detected in the data you’ve entered. Click on the "
+"highlighted tabs and correct any visible errors."
+msgstr ""
+
+#: ../root/components/forms.tt:239 ../root/components/Aliases/AliasTable.js:23
+#: ../root/edit/details/AddArea.js:47 ../root/edit/details/AddArtist.js:56
+#: ../root/edit/details/AddLabel.js:47
+#: ../root/edit/details/AddRemoveAlias.js:63
+#: ../root/edit/details/EditAlias.js:87 ../root/edit/details/EditArea.js:59
+#: ../root/edit/details/EditArtist.js:72 ../root/edit/details/EditLabel.js:57
+#: ../root/layout/components/sidebar/ArtistSidebar.js:78
+#: ../root/report/DuplicateArtists.js:68
+#: ../root/static/scripts/edit/components/FormRowSortNameWithGuessCase.js:82
+msgid "Sort name"
+msgstr ""
+
+#: ../root/artist/split.tt:1
+msgid "Split Artist"
+msgstr ""
+
+#: ../root/artist/split.tt:6 ../root/artist/CannotSplit.js:22
+msgid "Split Into Separate Artists"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/edit/components/EditSidebar.js:39
+msgctxt "edit status"
+msgid "Status"
+msgstr ""
+
+#: ../root/release/edit/information.tt:111
+#: ../root/components/list/ReleaseList.js:164
+#: ../root/edit/details/AddRelease.js:82
+#: ../root/edit/details/EditRelease.js:101
+#: ../root/edit/details/historic/AddRelease.js:56
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:179
+#: ../root/search/components/ReleaseResults.js:121
+#: ../root/static/scripts/common/components/FilterForm.js:206
+msgctxt "release status"
+msgid "Status"
+msgstr ""
+
+#: ../root/layout.tt:120 ../root/layout/components/Footer.js:44
+msgid "Stop using beta site"
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:44
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1871
+msgid "Submitting edits..."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:193
+msgid "Suggested recordings:"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:526
+msgid "Swap track titles with artist credits"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:21
+#: ../root/cdtoc/attach_filter_release.tt:35 ../root/cdtoc/list.tt:15
+#: ../root/recording/RecordingIndex.js:65
+#: ../root/release_group/ReleaseGroupIndex.js:177
+#: ../root/search/components/RecordingResults.js:146
+#: ../root/search/components/ReleaseResults.js:124
+#: ../root/static/scripts/common/components/TaggerIcon.js:82
+#: ../root/utility/tableColumns.js:782
+msgid "Tagger"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:12
+msgid ""
+"The Cover Art Archive is currently experiencing difficulties. Adding images "
+"for this release is unlikely to work at the moment."
+msgstr ""
+
+#: ../root/release/edit/information.tt:348
+msgid "The annotation field functions like a miniature wiki."
+msgstr ""
+
+#: ../root/release/edit/information.tt:297
+msgid "The catalog number you have entered looks like an Amazon ASIN."
+msgstr ""
+
+#: ../root/layout.tt:91 ../root/layout/index.js:285
+msgid ""
+"The data you have submitted does not make any changes to the data already "
+"present."
+msgstr ""
+
+#: ../root/release/edit/layout.tt:23
+msgid "The data you’ve seeded contained the following errors:"
+msgstr ""
+
+#: ../root/release/edit/information.tt:163
+msgid "The date you've entered is not valid."
+msgstr ""
+
+#: ../root/release/edit/information.tt:361
+msgid ""
+"The disambiguation field is used to help users distinguish between "
+"identically named releases."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:9
+msgid ""
+"The filters below allow you to find only edits fulfilling specific criteria. "
+"See the {doc_link|documentation} for more info about using the filters."
+msgstr ""
+
+#: ../root/release/edit/information.tt:314
+msgid ""
+"The language attribute should be set to the language used for the release "
+"title and track titles. It should not be set to the language the lyrics are "
+"written in, nor to the language used for other extra information on the "
+"cover."
+msgstr ""
+
+#: ../root/release/edit/information.tt:351
+msgid ""
+"The purpose of this field is to add information that usually doesn't fit "
+"into the strict structural data schema of MusicBrainz (be it due to "
+"technical limitations that may be addressed later, or because the "
+"information in itself has to be free-text)."
+msgstr ""
+
+#: ../root/release/edit/information.tt:320
+msgid ""
+"The script attribute should be set to the script used for the release title "
+"and track titles."
+msgstr ""
+
+#: ../root/layout.tt:71 ../root/layout/index.js:245
+msgid "The server is temporarily in read-only mode for database maintenance."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:124
+msgid ""
+"The tracklist for the medium (including the track/recording associations, "
+"but not other data such as medium format) will be loaded as a medium on this "
+"release."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:30 ../root/edit/details/AddMedium.js:154
+#: ../root/edit/details/RemoveMedium.js:91
+#: ../root/edit/details/RemoveMedium.js:108
+#: ../root/static/scripts/release/components/MediumRelationshipEditor.js:193
+msgid "The tracklist for this medium is unknown."
+msgstr ""
+
+#: ../root/components/forms.tt:201 ../root/release/edit/information.tt:164
+#: ../root/static/scripts/edit/components/PartialDateInput.js:52
+msgid ""
+"The year should have four digits. If you want to enter a year earlier than "
+"1000 CE, please pad with zeros, such as “0123”."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:14
+msgid ""
+"There are currently no discs in MusicBrainz associated with the information "
+"you provided. You can search using the form below in order to attach this "
+"disc to another MusicBrainz release, or to add a new one if the search shows "
+"it is missing from the database."
+msgstr ""
+
+#: ../root/release/discids.tt:56
+msgid ""
+"There are no disc IDs attached to this release; to find out more about how "
+"to add one, see {doc|How to Add Disc IDs}."
+msgstr ""
+
+#: ../root/artist/split.tt:10
+msgid ""
+"There are no recordings, release groups, releases or tracks credited to only "
+"{name}. If you are trying to remove {name}, please edit all artist credits "
+"at the bottom of the {alias_uri|aliases} tab and remove all existing "
+"{rel_uri|relationships} instead, which will allow ModBot to automatically "
+"remove this artist in the upcoming days."
+msgstr ""
+
+#: ../root/place/edit_form.tt:29
+msgid "These coordinates could not be parsed."
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:54 ../root/cdtoc/attach_list.tt:67
+msgid "This CDTOC is already attached to this medium."
+msgstr ""
+
+#: ../root/release/edit/information.tt:354
+msgid ""
+"This annotation will be published under an open license (CC BY-NC-SA 3.0) and as such, it should not contain "
+"text that you don't have the right to release under that license. While you "
+"can quote a source to support a point you're making, you should never enter "
+"promotional texts or other artist or label-owned texts into the annotation."
+msgstr ""
+
+#: ../root/area/edit_form.tt:17
+msgid "This area has ended."
+msgstr ""
+
+#: ../root/artist/edit_form.tt:53
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:53
+msgid "This artist has ended."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/form.tt:20
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:145
+msgid "This attribute supports free text credits"
+msgstr ""
+
+#: ../root/work/edit_form.tt:56
+msgid "This attribute type is only used for grouping, please select a subtype"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/form.tt:21
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:151
+msgid "This attribute uses free text values"
+msgstr ""
+
+#: ../root/layout.tt:37 ../root/layout/index.js:111
+msgid ""
+"This beta test server allows testing of new features with the live database."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:509
+msgid "This disc contains data tracks at the end"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:494
+msgid "This disc has a hidden pregap track before track 1"
+msgstr ""
+
+#: ../root/components/common-macros.tt:186
+#: ../root/static/scripts/common/components/EntityLink.js:37
+msgid "This entity has been removed, and cannot be displayed correctly."
+msgstr ""
+
+#: ../root/components/common-macros.tt:186
+#: ../root/static/scripts/common/components/EntityLink.js:36
+msgid "This entity will be added by this edit."
+msgstr ""
+
+#: ../root/event/edit_form.tt:15
+msgid "This event was cancelled."
+msgstr ""
+
+#: ../root/release/edit/information.tt:364
+msgid ""
+"This field is not a place to store general background information about the "
+"release: that kind of information should go in the annotation field."
+msgstr ""
+
+#: ../root/artist/edit_credit.tt:12
+msgid ""
+"This form allows you to edit the artist credit \"{ac}\". When the edit is "
+"accepted, all tracks, recordings, releases and release groups using this "
+"artist credit will be update to use the new one."
+msgstr ""
+
+#: ../root/artist/split.tt:29
+msgid ""
+"This form allows you to split {artist} into separate artists. When the edit "
+"is accepted, existing artist credits will be updated, and collaboration "
+"relationships will be removed"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:73
+msgid "This format can have disc IDs"
+msgstr ""
+
+#: ../root/layout.tt:37 ../root/layout/index.js:115
+msgid "This is a MusicBrainz development server."
+msgstr ""
+
+#: ../root/layout.tt:54 ../root/layout/index.js:143
+msgid ""
+"This is a MusicBrainz mirror server. To edit or make changes to the data, "
+"please {uri|return to musicbrainz.org}."
+msgstr ""
+
+#: ../root/components/common-macros.tt:67 ../root/components/Artwork.js:73
+msgid ""
+"This is a PDF file, the thumbnail may not show the entire contents of the "
+"file."
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:77
+msgid "This is a free text work attribute"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:386
+msgid ""
+"This is almost always incorrect. Please make sure whether you actually "
+"wanted a different format (such as “USB Flash Drive” or “Music Card”) or "
+"packaging type."
+msgstr ""
+
+#: ../root/release_group/set_cover_art.tt:76
+msgid "This is the current release group image"
+msgstr ""
+
+#: ../root/label/edit_form.tt:36
+msgid "This label has ended."
+msgstr ""
+
+#: ../root/release/edit/information.tt:209
+msgid "This label/catalog number pair already exists."
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:56
+msgid "This medium format cannot have a disc ID attached."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:383
+msgid ""
+"This medium format is set to “Digital Media”, but the packaging type for "
+"this release is not “None”."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:334
+msgid ""
+"This medium has a disc ID, pregap track, or data track, so you can only "
+"change the format to one that can have disc IDs."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:363 ../root/release/edit/tracklist.tt:373
+msgid ""
+"This medium is set to a format that did not exist on the selected release "
+"date."
+msgstr ""
+
+#: ../root/place/edit_form.tt:32
+msgid "This place has ended."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:369
+msgid ""
+"This problem already existed before you opened the release editor, so you "
+"don’t need to do anything about it. But if you have some time, consider "
+"trying to find out what the real format should be or if the release should "
+"be split!"
+msgstr ""
+
+#: ../root/components/common-macros.tt:229
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:689
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:386
+#: ../root/static/scripts/common/components/EntityLink.js:323
+msgid "This recording is a video"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:17
+msgid "This relationship allows setting dates"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:16
+msgid "This relationship is deprecated"
+msgstr ""
+
+#: ../root/relationship/linktype/form.tt:100
+msgid "This relationship type does not have any examples."
+msgstr ""
+
+#: ../root/release/edit/information.tt:235
+msgid "This release does not have a barcode"
+msgstr ""
+
+#: ../root/release/discids.tt:58
+msgid "This release has no mediums that can have disc IDs."
+msgstr ""
+
+#: ../root/release/edit/information.tt:370
+msgid ""
+"This release status should be used for unofficial translations and "
+"transliterations of tracklists and release titles, and does not denote a "
+"separate real release. It should not be used to denote bootlegs, mixtape/"
+"street albums, demos, or digital albums. Be sure to link to the "
+"corresponding real release with the {url|transl(iter)ation relationship}."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:366
+msgid ""
+"This should never be correct. Make sure that, say, your release set to CD "
+"isn’t meant to be a vinyl, or your vinyl isn’t actually a shellac disc."
+msgstr ""
+
+#: ../root/components/common-macros.tt:559
+#: ../root/static/scripts/common/components/DataTrackIcon.js:13
+msgid "This track is a data track."
+msgstr ""
+
+#: ../root/components/common-macros.tt:555
+#: ../root/static/scripts/common/components/PregapTrackIcon.js:13
+msgid "This track is hidden in the pregap."
+msgstr ""
+
+#: ../root/event/edit_form.tt:40 ../root/cdtoc/CDTocInfo.js:58
+#: ../root/cdtoc/CDTocInfo.js:60 ../root/cdtoc/CDTocInfo.js:62
+#: ../root/components/list/EventList.js:93 ../root/edit/details/AddEvent.js:77
+#: ../root/edit/details/EditEvent.js:88
+#: ../root/layout/components/sidebar/EventSidebar.js:72
+#: ../root/main/error/components/ErrorEnvironment.js:27
+#: ../root/report/components/EventList.js:77
+#: ../root/search/components/EventResults.js:75
+msgid "Time"
+msgstr ""
+
+#: ../root/cdstub/cdstub.tt:5 ../root/cdtoc/list.tt:7
+#: ../root/release/edit/information.tt:8 ../root/release/edit/tracklist.tt:162
+#: ../root/release/edit/tracklist.tt:452
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:29
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:36
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:27
+#: ../root/cdstub/BrowseCDStubs.js:36 ../root/cdstub/CDStubInfo.js:27
+#: ../root/cdtoc/AttachCDTocConfirmation.js:70
+#: ../root/components/RelationshipsTable.js:334
+#: ../root/components/list/ReleaseGroupList.js:91
+#: ../root/edit/details/EditMedium.js:315
+#: ../root/edit/details/EditMedium.js:319 ../root/isrc/Index.js:66
+#: ../root/iswc/Index.js:57 ../root/recording/RecordingIndex.js:54
+#: ../root/static/scripts/release/components/MediumTable.js:84
+msgid "Title"
+msgstr ""
+
+#: ../root/release/edit/information.tt:105
+msgid "To edit types, please {edit_page|edit the release group}."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:243
+msgid ""
+"To enter a new tracklist, use an existing medium or import a disc from a CD "
+"stub, select the appropriate tab."
+msgstr ""
+
+#: ../root/cdstub/index.tt:21 ../root/cdstub/CDStubIndex.js:55
+#: ../root/cdtoc/CDTocInfo.js:44
+msgid "Total length:"
+msgstr ""
+
+#: ../root/cdstub/index.tt:17 ../root/cdstub/CDStubIndex.js:51
+#: ../root/cdtoc/CDTocInfo.js:40
+msgid "Total tracks:"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:524
+#: ../root/static/scripts/release-editor/dialogs.js:40
+msgid "Track Parser"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:114
+msgid "Track count:"
+msgstr ""
+
+#: ../root/cdstub/index.tt:7 ../root/release/edit/layout.tt:16
+#: ../root/cdstub/CDStubIndex.js:41 ../root/edit/details/AddMedium.js:144
+#: ../root/edit/details/EditMedium.js:497
+#: ../root/edit/details/RemoveMedium.js:81
+#: ../root/static/scripts/release-editor/fields.js:768
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:359
+msgid "Tracklist"
+msgstr ""
+
+#: ../root/release/discids.tt:9 ../root/release/edit/duplicates.tt:12
+#: ../root/release_group/set_cover_art.tt:47
+#: ../root/artist_credit/ArtistCreditIndex.js:156
+#: ../root/artist_credit/ArtistCreditLayout.js:29
+#: ../root/components/list/ReleaseList.js:108
+#: ../root/edit/details/MergeReleases.js:238
+#: ../root/edit/details/historic/AddRelease.js:83
+#: ../root/release_group/ReleaseGroupIndex.js:170
+#: ../root/search/components/CDStubResults.js:46
+#: ../root/search/components/ReleaseResults.js:114
+msgid "Tracks"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:432
+msgid ""
+"Tracks are required. If you don’t know them, but do know some info (such as "
+"the format or number of media), tick the “I don’t know the tracklist for "
+"this medium” checkbox above and enter the available info. If you have no "
+"information about this release’s media, remove all media."
+msgstr ""
+
+#: ../root/components/forms.tt:261 ../root/components/forms.tt:286
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:116
+msgid "Turkish"
+msgstr ""
+
+#: ../root/layout.tt:118 ../root/layout/components/Footer.js:34
+msgid "Twitter"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+#: ../root/account/applications/ApplicationList.js:155
+#: ../root/components/Aliases/AliasTable.js:26
+#: ../root/components/list/ReleaseGroupList.js:105
+#: ../root/components/list/ReleaseList.js:155
+#: ../root/edit/details/AddArea.js:61 ../root/edit/details/AddArtist.js:69
+#: ../root/edit/details/AddEvent.js:56 ../root/edit/details/AddInstrument.js:58
+#: ../root/edit/details/AddLabel.js:87 ../root/edit/details/AddPlace.js:49
+#: ../root/edit/details/AddReleaseGroup.js:66
+#: ../root/edit/details/AddRemoveAlias.js:83
+#: ../root/edit/details/AddSeries.js:44 ../root/edit/details/AddWork.js:53
+#: ../root/edit/details/EditAlias.js:105 ../root/edit/details/EditArea.js:73
+#: ../root/edit/details/EditArtist.js:86 ../root/edit/details/EditEvent.js:61
+#: ../root/edit/details/EditInstrument.js:58
+#: ../root/edit/details/EditLabel.js:73 ../root/edit/details/EditPlace.js:59
+#: ../root/edit/details/EditReleaseGroup.js:59
+#: ../root/edit/details/EditSeries.js:55
+#: ../root/edit/details/historic/AddRelease.js:45 ../root/iswc/Index.js:60
+#: ../root/release/CoverArtFields.js:56 ../root/report/DuplicateArtists.js:69
+#: ../root/report/DuplicateReleaseGroups.js:61
+#: ../root/report/IswcsWithManyWorks.js:53
+#: ../root/report/components/ArtistList.js:62
+#: ../root/report/components/EventList.js:64
+#: ../root/report/components/InstrumentList.js:58
+#: ../root/report/components/ReleaseGroupList.js:65
+#: ../root/report/components/WorkList.js:66
+#: ../root/search/components/AnnotationResults.js:54
+#: ../root/search/components/AreaResults.js:64
+#: ../root/search/components/ArtistResults.js:53
+#: ../root/search/components/EventResults.js:76
+#: ../root/search/components/InstrumentResults.js:54
+#: ../root/search/components/LabelResults.js:67
+#: ../root/search/components/PlaceResults.js:64
+#: ../root/search/components/RecordingResults.js:149
+#: ../root/search/components/ReleaseGroupResults.js:65
+#: ../root/search/components/ReleaseResults.js:120
+#: ../root/search/components/SeriesResults.js:58
+#: ../root/search/components/WorkResults.js:58
+#: ../root/static/scripts/account/components/ApplicationForm.js:88
+#: ../root/static/scripts/alias/AliasEditForm.js:331
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:203
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:875
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:547
+#: ../root/static/scripts/common/components/FilterForm.js:83
+#: ../root/static/scripts/edit/externalLinks.js:1207
+#: ../root/static/scripts/edit/externalLinks.js:1529
+#: ../root/utility/tableColumns.js:654 ../root/utility/tableColumns.js:659
+msgid "Type"
+msgstr ""
+
+#: ../root/area/edit_form.tt:11 ../root/artist/edit_form.tt:16
+#: ../root/event/edit_form.tt:14 ../root/instrument/edit_form.tt:11
+#: ../root/label/edit_form.tt:15 ../root/place/edit_form.tt:15
+#: ../root/release/add_cover_art.tt:54 ../root/release/edit/information.tt:103
+#: ../root/series/edit_form.tt:16 ../root/work/edit_form.tt:14
+#: ../root/layout/components/sidebar/CollectionSidebar.js:59
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:65
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:159
+#: ../root/layout/components/sidebar/SidebarType.js:25
+#: ../root/search/components/SearchForm.js:84
+msgid "Type:"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:137 ../root/release/reorder_cover_art.tt:19
+#: ../root/release_group/set_cover_art.tt:69
+#: ../root/edit/details/AddCoverArt.js:33
+#: ../root/edit/details/EditCoverArt.js:58
+#: ../root/edit/details/RemoveCoverArt.js:33 ../root/release/CoverArt.js:86
+msgid "Types:"
+msgstr ""
+
+#: ../root/url/edit_form.tt:6 ../lib/MusicBrainz/Server/Edit/URL.pm:7
+#: ../root/edit/details/EditUrl.js:34 ../root/edit/details/EditUrl.js:39
+#: ../root/main/error/components/ErrorEnvironment.js:49
+#: ../root/otherlookup/OtherLookupForm.js:67 ../root/report/BadAmazonUrls.js:39
+#: ../root/report/LinksWithMultipleEntities.js:60
+#: ../root/report/WikidataLinksWithMultipleEntities.js:55
+#: ../root/report/components/ArtistUrlList.js:34
+#: ../root/report/components/LabelUrlList.js:34
+#: ../root/report/components/ReleaseGroupUrlList.js:36
+#: ../root/report/components/ReleaseUrlList.js:36
+#: ../root/report/components/UrlList.js:46
+#: ../root/static/scripts/common/constants.js:46
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:72
+#: ../root/static/scripts/edit/components/URLInputPopover.js:75
+#: ../root/url/UrlHeader.js:29 ../root/url/UrlIndex.js:25
+msgid "URL"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:21
+msgid "Unable to parse the tracklist you entered."
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397 ../root/admin/EditUser.js:121
+#: ../root/admin/PrivilegeSearch.js:112 ../root/user/UserProfile.js:908
+msgid "Untrusted"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:98
+msgid "Update the recording artist credit to match the track artist credit."
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:93
+msgid "Update the recording title to match the track title."
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:84
+msgid "Uploading image..."
+msgstr ""
+
+#: ../root/components/forms.tt:272 ../root/components/forms.tt:297
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:142
+msgid "Uppercase Roman numerals"
+msgstr ""
+
+#: ../root/layout.tt:120 ../root/layout/components/Footer.js:45
+msgid "Use beta site"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:68
+msgid "Use custom artist delimiter"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:261
+msgid "Use the following fields to search for a CD stub."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:256
+msgid "Use the following fields to search for an existing medium."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:60
+msgid "Use track artists"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:95
+msgid "Use track lengths"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:37
+msgid "Use track numbers"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:74
+msgid "Use track titles"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:81
+msgid "Validating file..."
+msgstr ""
+
+#: ../root/recording/edit_form.tt:44
+#: ../root/edit/details/AddStandaloneRecording.js:64
+#: ../root/edit/details/EditRecording.js:77
+msgid "Video"
+msgstr ""
+
+#: ../root/recording/layout.tt:3 ../root/recording/RecordingLayout.js:39
+msgid "Video “{name}” by {artist}"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/edit/EditIndex.js:76
+#: ../root/edit/components/EditHeader.js:128
+msgid "Vote tally"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../root/elections/ElectionVotes.js:26
+msgid "Voter"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:35 ../root/edit/EditIndex.js:65
+#: ../root/user/UserProfile.js:698
+msgid "Votes"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423
+msgid "Voting closed"
+msgstr ""
+
+#: ../root/doc/edit_type.tt:32
+msgid "Voting period (days)"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:345 ../root/release/edit/tracklist.tt:362
+#: ../root/release/edit/tracklist.tt:382 ../root/release/edit/tracklist.tt:408
+#: ../root/static/scripts/common/components/Warning.js:28
+#: ../root/static/scripts/common/components/WarningIcon.js:14
+msgid "Warning"
+msgstr ""
+
+#: ../root/release/edit/information.tt:282
+msgid ""
+"Warning! \"1990-10-25\" is the bogus date that Amazon gives to all releases "
+"for which they don't know the actual date. Please use this date only "
+"if you're certain this date is correct!"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:61
+msgid "We couldn’t find a release matching that MBID."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:7
+msgid ""
+"We found discs matching the information you requested, listed below. If none "
+"of these are the release you are looking for, you can search using the form "
+"below in order to attach this disc to another MusicBrainz release, or to add "
+"a new one if the search shows it is missing from the database."
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:12
+msgid "We used DiscID {discid}
to look up this information."
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:18
+#: ../root/layout/components/MergeHelper.js:53
+msgid ""
+"When you are ready to merge these, just click the Merge button. You may "
+"still add more to this merge queue by simply browsing to the entities page "
+"and following the merge link."
+msgstr ""
+
+#: ../root/layout.tt:113 ../root/layout/components/Footer.js:27
+msgid "Wiki"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:397
+msgid "Wiki Transcluder"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:423 ../lib/MusicBrainz/Server/Edit/Work.pm:9
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:42
+#: ../root/components/list/WorkList.js:61 ../root/edit/details/AddWork.js:30
+#: ../root/edit/details/EditWork.js:45 ../root/edit/details/RemoveIswc.js:31
+#: ../root/layout/components/Search.js:32
+#: ../root/report/IswcsWithManyWorks.js:50
+#: ../root/report/components/WorkList.js:50
+#: ../root/search/components/SearchForm.js:41
+#: ../root/static/scripts/common/constants.js:47
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:74
+#: ../root/user/UserProfile.js:60 ../root/work/WorkLayout.js:33
+msgid "Work"
+msgstr ""
+
+#: ../root/work/edit_form.tt:20
+#: ../root/static/scripts/common/components/AttributeList.js:65
+msgid "Work Attributes"
+msgstr ""
+
+#: ../root/work/edit_form.tt:11
+msgid "Work Details"
+msgstr ""
+
+#: ../root/release/edit/information.tt:133
+#: ../lib/MusicBrainz/Server/Plugin/FormRenderer.pm:251
+#: ../root/static/scripts/edit/components/PartialDateInput.js:161
+msgid "YYYY"
+msgstr ""
+
+#: ../root/admin/attributes/form.tt:68 ../root/admin/attributes/Attribute.js:29
+#: ../root/components/list/ReleaseGroupList.js:84
+msgid "Year"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:291 ../root/edit/search_macros.tt:307
+#: ../lib/MusicBrainz/Server/Data/Vote.pm:177
+#: ../root/edit/components/Vote.js:86
+msgctxt "vote"
+msgid "Yes"
+msgstr ""
+
+#: ../root/components/forms.tt:320
+msgid ""
+"You are about to add an ISRC to this recording. The ISRC must be entered in "
+"standard CCXXXYYNNNNN
format:"
+msgstr ""
+
+#: ../root/components/forms.tt:309
+msgid ""
+"You are about to add an ISWC to this work. The ISWC must be entered in "
+"standard T-DDD.DDD.DDD-C
format:"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:5
+msgid "You are viewing releases by {artist}."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:12
+msgid ""
+"You can use the checkboxes under the parser to deactivate some sections. For "
+"example, you can deactivate “{lines_have_artists}” if your data has no track "
+"artists, or “{use_track_lengths}” if you have track lengths but want the "
+"parser to ignore them."
+msgstr ""
+
+#: ../root/release/edit/information.tt:165
+msgid "You cannot use the same country more than once."
+msgstr ""
+
+#: ../root/layout/merge-helper.tt:4 ../root/layout/components/MergeHelper.js:32
+msgid "You currently have the following entities selected for merging:"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:7
+msgid ""
+"You have used the {valink|Various Artists} special purpose artist on this "
+"recording."
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:10
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:195
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:779
+msgid "You haven’t made any changes!"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:414
+msgid "You must be logged in to use this option."
+msgstr ""
+
+#: ../root/components/common-macros.tt:576
+msgid "You must enter a disambiguation comment for this entity."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:436
+msgid ""
+"You must enter a title for every track (if the track is untitled, enter "
+"“{untitled_track}”)."
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:32
+msgid "You must provide an edit note when adding a release."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:440
+msgid ""
+"You must select an artist for every track (the background color of every "
+"artist field should be green). If you’ve entered an artist but the "
+"background remains uncolored, click the magnifying glass to match the name "
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"down."
+msgstr ""
+
+#: ../root/release/edit/information.tt:30
+msgid ""
+"You must select an artist for the release (the background color of the "
+"artist field should be green). If you’ve entered an artist but the "
+"background remains uncolored, click the magnifying glass to match the name "
+"to a MusicBrainz artist. If the artist doesn’t exist yet, you can add it by "
+"selecting “{add_a_new_artist}” from the bottom of the search results drop-"
+"down."
+msgstr ""
+
+#: ../root/release/edit/information.tt:56
+msgid "You must select an existing release group."
+msgstr ""
+
+#: ../root/release/edit/editnote.tt:36
+#: ../lib/MusicBrainz/Server/Form/EditNoteModify.pm:32
+#: ../lib/MusicBrainz/Server/Form/Role/EditNote.pm:30
+msgid ""
+"Your edit note seems to have no actual content. Please provide a note that "
+"will be helpful to your fellow editors!"
+msgstr ""
+
+#: ../root/edit/search.tt:7
+msgid ""
+"Your search took too long and was cancelled. It may help to be more "
+"specific, or to try again."
+msgstr ""
+
+#: ../root/layout.tt:21 ../root/layout/index.js:210
+msgid ""
+"You’re currently not allowed to edit or vote because an admin has revoked "
+"your privileges. If you haven’t already been contacted about why, please "
+"{uri|send us a message}."
+msgstr ""
+
+#: ../root/layout.tt:17 ../root/layout/index.js:202
+msgid ""
+"You’re currently not allowed to edit, vote or leave edit notes because an "
+"admin has revoked your privileges. If you haven’t already been contacted "
+"about why, please {uri|send us a message}."
+msgstr ""
+
+#: ../root/layout.tt:25 ../lib/MusicBrainz/Server/Controller/EditNote.pm:63
+#: ../root/layout/index.js:219
+msgid ""
+"You’re currently not allowed to leave or change edit notes because an admin "
+"has revoked your privileges. If you haven’t already been contacted about "
+"why, please {uri|send us a message}."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:289
+msgid ""
+"You’ve seeded some Disc IDs that aren’t matched to any medium. If this is "
+"wrong, use the “Attach Disc ID” options below."
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:409
+msgid ""
+"You’ve used the {valink|Various Artists} special purpose artist on some "
+"tracks below. {valink|Various Artists} should very rarely be used on tracks; "
+"please make sure the artists have been entered correctly."
+msgstr ""
+
+#: ../root/components/common-macros.tt:186
+#: ../lib/MusicBrainz/Server/Edit/Relationship/RemoveLinkType.pm:86
+#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:112
+#: ../root/edit/details/EditAlias.js:76
+#: ../root/edit/details/SetTrackLengths.js:58
+#: ../root/static/scripts/common/components/EntityLink.js:48
+#: ../root/static/scripts/common/i18n/localizeLanguageName.js:15
+#: ../root/static/scripts/edit/components/Multiselect.js:197
+msgid "[removed]"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:172
+msgid "after"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:39
+msgid "all"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:287
+msgid "and voted"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:39
+msgid "any"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:210
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:708
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:403
+msgid "appears on"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:20
+msgid "auto-edits"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:172
+msgid "before"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:172
+msgid "between"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:79 ../root/release/edit/recordings.tt:83
+msgid "by"
+msgstr ""
+
+#: ../root/components/common-macros.tt:107
+#: ../root/static/scripts/common/components/EntityLink.js:96
+msgid "cancelled"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "do not include"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "do not include editors in my subscriptions"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "do not include me"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:35
+msgid "do not match"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:378
+msgid "does not include"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "earliest closed first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:20
+msgid "edits"
+msgstr ""
+
+#: ../root/components/forms.tt:263 ../root/components/forms.tt:288
+#: ../root/edit/search_macros.tt:188 ../root/release/edit/tracklist.tt:3
+#: ../root/release/edit/tracklist.tt:83 ../root/release/edit/tracklist.tt:316
+#: ../root/release/edit/tracklist.tt:495 ../root/release/edit/tracklist.tt:510
+#: ../root/static/scripts/edit/components/GuessCaseOptions.js:121
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:886
+msgid "help"
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:94 ../root/cdtoc/list.tt:84
+msgid "hide tracklist"
+msgstr ""
+
+#: ../root/components/common-macros.tt:98
+#: ../root/static/scripts/common/components/EntityLink.js:117
+msgid "historical"
+msgstr ""
+
+#: ../root/components/common-macros.tt:96
+#: ../root/static/scripts/common/components/EntityLink.js:119
+msgid "historical, until {end}"
+msgstr ""
+
+#: ../root/components/common-macros.tt:94
+#: ../root/static/scripts/common/components/EntityLink.js:113
+msgid "historical, {begin}-{end}"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "in an unspecified order (possibly faster)"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include a beginner editor"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include an editor in my subscriptions"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include me"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:350
+msgid "include someone other than the edit author"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:378
+msgid "includes"
+msgstr ""
+
+#: ../root/components/common-macros.tt:153
+#: ../root/components/common-macros.tt:229
+#: ../root/static/scripts/common/components/EntityLink.js:141
+#: ../root/static/scripts/common/components/EntityLink.js:426
+msgid "info"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134 ../root/edit/search_macros.tt:151
+#: ../root/edit/search_macros.tt:193 ../root/edit/search_macros.tt:208
+#: ../root/edit/search_macros.tt:230 ../root/edit/search_macros.tt:248
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:321
+#: ../root/edit/search_macros.tt:336 ../root/edit/search_macros.tt:360
+#: ../root/edit/search_macros.tt:393
+msgid "is"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:360
+msgid "is a beginner"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134
+msgid "is after"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134
+msgid "is before"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134 ../root/edit/search_macros.tt:151
+msgid "is between"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:321
+#: ../root/edit/search_macros.tt:360 ../root/edit/search_macros.tt:387
+msgid "is in my subscriptions"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:151
+msgid "is less than"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:360
+msgid "is me"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:151
+msgid "is more than"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:134 ../root/edit/search_macros.tt:151
+#: ../root/edit/search_macros.tt:172 ../root/edit/search_macros.tt:193
+#: ../root/edit/search_macros.tt:208 ../root/edit/search_macros.tt:230
+#: ../root/edit/search_macros.tt:248 ../root/edit/search_macros.tt:271
+#: ../root/edit/search_macros.tt:321 ../root/edit/search_macros.tt:336
+#: ../root/edit/search_macros.tt:360 ../root/edit/search_macros.tt:393
+msgid "is not"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:321
+#: ../root/edit/search_macros.tt:360 ../root/edit/search_macros.tt:387
+msgid "is not in my subscriptions"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:271 ../root/edit/search_macros.tt:360
+msgid "is not me"
+msgstr ""
+
+#: ../root/release/edit/tracklist.tt:484
+msgid "link"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:35
+msgid "match"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "newest first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:20
+msgid "non-auto-edits"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "oldest first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:172
+msgid "on"
+msgstr ""
+
+#: ../root/release/add_cover_art.tt:33
+msgid "or drop files here"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "recently closed first"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:38
+msgid "recording"
+msgstr ""
+
+#: ../root/cdtoc/attach_list.tt:18 ../root/cdtoc/attach_list.tt:92
+#: ../root/cdtoc/list.tt:82
+msgid "show tracklist"
+msgstr ""
+
+#: ../root/release/edit/recordings.tt:37
+msgid "track"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "voting closing later first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "voting closing sooner first"
+msgstr ""
+
+#: ../root/edit/search_macros.tt:25
+msgid "with recent edit notes first"
+msgstr ""
+
+#: ../root/cdtoc/lookup.tt:24
+msgid "{artist} - {name}"
+msgstr ""
+
+#: ../root/components/common-macros.tt:131
+#: ../root/static/scripts/common/components/ExpandedArtistCredit.js:34
+msgid "{artist} as {name}"
+msgstr ""
+
+#: ../root/cdtoc/attach_artist_releases.tt:45
+msgid "{artist} has no releases which have only {n} track."
+msgid_plural "{artist} has no releases which have {n} tracks."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/cdstub/index.tt:13 ../root/cdstub/CDStubIndex.js:47
+msgid "{doc|Disc ID}:"
+msgstr ""
+
+#: ../root/components/common-macros.tt:199 ../root/main/index.js:268
+#: ../root/static/scripts/common/components/DescriptiveLink.js:74
+#: ../root/static/scripts/release-editor/dialogs.js:150
+msgid "{entity} by {artist}"
+msgstr ""
+
+#: ../root/layout.tt:82 ../root/layout/index.js:272
+msgid ""
+"{link|New notes} have been left on some of your edits. Please make sure to "
+"read them and respond if necessary."
+msgstr ""
+
+#: ../root/components/common-macros.tt:260
+#: ../root/static/scripts/common/components/EntityLink.js:262
+msgid "{name} – {additional_info}"
+msgstr ""
+
+#: ../root/cdtoc/attach_filter_release.tt:20
+msgid "{num} release found matching your query."
+msgid_plural "{num} releases found matching your query."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/common-macros.tt:199
+#: ../root/static/scripts/common/components/DescriptiveLink.js:87
+msgid "{place} in {area}"
+msgstr ""
+
+#: ../root/recording/edit_form.tt:39
+msgid ""
+"{recording_length} ({length_info|derived} from the associated track lengths)"
+msgstr ""
+
+#: ../root/cdtoc/move_search.tt:33
+msgid "{release} by {artist}"
+msgstr ""
+
+#: ../root/instrument/layout.tt:1 ../root/instrument/InstrumentLayout.js:33
+msgid "{type} “{instrument}”"
+msgstr ""
+
+#: ../root/work/layout.tt:1 ../root/work/WorkLayout.js:30
+msgid "{type} “{work}”"
+msgstr ""
+
+#: ../root/layout.tt:45 ../root/layout/index.js:124
+msgid "{uri|Return to musicbrainz.org}."
+msgstr ""
+
+#: ../root/recording/edit_form.tt:10
+msgid ""
+"{valink|Various Artists} should very rarely be used on recordings, make sure "
+"that the artist has been entered correctly."
+msgstr ""
+
+#: ../root/components/common-macros.tt:550
+#: ../root/static/scripts/common/i18n/addColon.js:13
+#: ../root/static/scripts/common/i18n/addColon.js:17
+msgid "{variable}:"
+msgstr ""
+
+#: ../root/release/edit/layout.tt:61
+msgid "« Previous"
+msgstr ""
+
+#: ../root/components/paginator.tt:19 ../root/components/paginator.tt:31
+#: ../root/components/paginator.tt:39 ../root/components/Paginator.js:94
+#: ../root/components/Paginator.js:119 ../root/components/Paginator.js:133
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:162
+msgid "…"
+msgstr ""
+
+#: ../lib/MusicBrainz/Script/RemoveEmpty.pm:139
+msgid ""
+"This entity was automatically removed because it was empty: it had no "
+"relationships associated with it, nor (if relevant for the type of entity in "
+"question) any recordings, releases nor release groups. If you consider this "
+"was a valid, non-duplicate entry that does belong in MusicBrainz, feel free "
+"to add it again, but please ensure enough data is added to it this time to "
+"avoid another automatic removal."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller.pm:34
+#, perl-brace-format
+msgid "'{id}' is not a valid MusicBrainz ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller.pm:122
+#, perl-brace-format
+msgid ""
+"Thank you, your {edit_url|edit} ({edit_ids}) has been automatically accepted "
+"and applied."
+msgid_plural ""
+"Thank you, your {num_edits} {edit_url|edits} ({edit_ids}) have been "
+"automatically accepted and applied."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Controller.pm:128
+#, perl-brace-format
+msgid ""
+"Thank you, your {edit_url|edit} ({edit_ids}) has been entered into the edit "
+"queue for peer review."
+msgid_plural ""
+"Thank you, your {num_edits} {edit_url|edits} ({edit_ids}) have been entered "
+"into the edit queue for peer review."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Controller.pm:136
+#, perl-brace-format
+msgid ""
+"Thank you, your {edit_url|edit} ({edit_ids}) has been entered, with "
+"{num_open_edits} in the edit queue for peer review, and the rest "
+"automatically accepted and applied."
+msgid_plural ""
+"Thank you, your {num_edits} {edit_url|edits} ({edit_ids}) have been entered, "
+"with {num_open_edits} in the edit queue for peer review, and the rest "
+"automatically accepted and applied."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:57
+msgid "The user ID is missing or is in an invalid format."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:67
+msgid "The email address is missing."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:77
+msgid "The time is missing or is in an invalid format."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:88
+msgid "The verification key is missing."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:99
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:274
+msgid "The checksum is invalid, please double check your email."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:110
+msgid "Sorry, this email verification link has expired."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:122
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:286
+#, perl-brace-format
+msgid "The user with ID '{user_id}' could not be found."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:173
+msgid ""
+"We were unable to send login information to your email address. Please try "
+"again, however if you continue to experience difficulty contact us at "
+"support@musicbrainz.org."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:199
+msgid "There is no user with this username"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:204
+msgid "There is no user with this username and email"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:207
+msgid ""
+"We can't send a password reset email, because we have no email on record for "
+"this user."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:237
+msgid "Your password has been reset."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:252
+msgid "Missing one or more required parameters."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:263
+msgid "Sorry, this password reset link has expired."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:337
+msgid "There is no user with this email"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:420
+msgid "Your profile has been updated."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:424
+#, perl-brace-format
+msgid ""
+"We have sent you a verification email to {email}
. Please check "
+"your mailbox and click on the link in the email to verify the new email "
+"address."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:463
+msgid "Your password has been changed."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:701
+msgid ""
+"We were unable to send a verification email to you.
Please confirm that you have entered a valid address by editing your "
+"{settings|account settings}. If the problem still persists, please contact "
+"us at {mail|support@musicbrainz.org}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account.pm:785
+msgid "There is no OAuth token with these parameters."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Account/Subscriptions/Collection.pm:22
+msgid "The provided collection ID doesn’t exist."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Admin.pm:91
+msgid "User successfully edited."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Admin.pm:164
+msgid ""
+"Banner updated. Remember that each server has its own, independent banner."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Admin.pm:200
+#: ../lib/MusicBrainz/Server/Controller/Admin.pm:266
+#: ../root/static/scripts/release-editor/trackParser.js:497
+msgid "Invalid regular expression."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:130
+#, perl-brace-format
+msgid "You cannot remove the attribute \"{name}\" because it is still in use."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Admin/Attributes.pm:142
+#, perl-brace-format
+msgid ""
+"You cannot remove the attribute “{name}” because it is the parent of other "
+"attributes."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Artist.pm:738
+msgid "You cannot merge a special purpose artist into another artist"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Artist.pm:743
+msgid "You cannot merge into Deleted Artist"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/AutoEditorElections.pm:86
+#, perl-brace-format
+msgid "'{id}' is not a valid election ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:78
+msgid "Please provide a CD TOC ID."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:82
+msgid "The provided CD TOC ID is not valid."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:88
+msgid "Please provide a medium ID."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:92
+msgid "The provided medium id is not valid."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:98
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:226
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:441
+msgid "The provided medium ID doesn’t exist."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:104
+msgid ""
+"The provided CD TOC ID doesn’t exist or is not connected to the provided "
+"medium."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:153
+msgid "Please provide a medium ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:158
+msgid "Could not find medium"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:206
+msgid ""
+"The provided CD TOC is not valid. This is probably an issue with the "
+"software you used to generate it. Try again and please report the error to "
+"your software maker if it persists, including the technical information "
+"below."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:213
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:435
+msgid "The provided medium id is not valid"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:234
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:448
+msgid "The selected medium cannot have disc IDs"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:279
+msgid "The provided artist id is not valid"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/CDTOC.pm:421
+msgid "The provided CD TOC ID doesn’t exist."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Collection.pm:77
+#, perl-brace-format
+msgid ""
+"“{id}” is not a valid row ID; the entity might have been merged or removed."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
+#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:24
+#: ../root/static/scripts/common/constants.js:355
+msgid "Low"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
+#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:25
+#: ../root/static/scripts/common/constants.js:356
+#: ../root/static/scripts/common/constants.js:357
+msgid "Normal"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
+#: ../lib/MusicBrainz/Server/Form/ChangeReleaseQuality.pm:26
+#: ../root/static/scripts/common/constants.js:358
+msgid "High"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Edit.pm:294
+msgid "Default"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:49
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:61
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:79
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:105
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:123
+msgid "Can’t change edit note"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:50
+msgid "You can’t change other users’ edit notes."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:80
+msgid "This note has already been removed."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:107
+msgid ""
+"You can’t change this note, since somebody else has already replied to it. "
+"If there’s an important reason why it should be changed (for example, it "
+"contains private data), please {contact_url|contact us}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/EditNote.pm:125
+msgid ""
+"You can’t change this note, since it was entered too long ago. If there’s an "
+"important reason why it should be changed (for example, it contains private "
+"data), please {contact_url|contact us}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Label.pm:256
+msgid "You cannot merge a special purpose label into another label."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Label.pm:261
+msgid "You cannot merge into Deleted Label."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Rating.pm:41
+msgid "The rating should be an integer between 0 and 100."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Relationship/LinkType.pm:71
+#, perl-brace-format
+msgid "'{types}' is not a valid pair of types for relationships."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Release.pm:600
+msgid ""
+"This merge strategy is not applicable to the releases you have selected."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Release.pm:629
+msgid "This release has no artwork."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Release.pm:635
+#, perl-brace-format
+msgid "Found no artwork with ID “{id}”."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Role/Annotation.pm:68
+msgid "The annotation revision ID must be a positive integer"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Role/Annotation.pm:76
+#, perl-brace-format
+msgid "Found no annotation with ID “{id}”."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Role/Annotation.pm:91
+#, perl-brace-format
+msgid "The annotation with ID “{id}” is not associated with this entity."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Role/Annotation.pm:230
+msgid "The old and new annotation ids must be unique, positive integers."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Role/EditRelationships.pm:222
+#: ../root/layout/components/sidebar/SidebarEndDate.js:38
+#: ../root/static/scripts/common/utility/formatEndDate.js:18
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:108
+#: ../root/static/scripts/relationship-editor/components/DialogSourceEntity.js:117
+msgid "[unknown]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Root.pm:88
+#, perl-brace-format
+msgid ""
+"Language set. If it was not intended, just {url|set “{prev_lang_name}” back}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Root.pm:96
+msgid ""
+"If you find any problems with the translation, please {url|help us improve "
+"it}!"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Root.pm:317
+msgid ""
+"Our Redis server appears to be down; some features may not work as intended "
+"or expected."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/Series.pm:156
+msgid "Series that have different entity types cannot be merged."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:304
+#: ../lib/MusicBrainz/Server/Controller/User.pm:330
+#: ../lib/MusicBrainz/Server/Controller/User.pm:345
+#: ../root/account/LostUsername.js:42 ../root/user/ContactUser.js:44
+#: ../root/user/ContactUser.js:46
+msgid "Send Email"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:305
+msgid ""
+"You cannot contact other users because you have not {url|verified your email "
+"address}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:332
+msgid "You are not allowed to send messages to editors."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:346
+#, perl-brace-format
+msgid "The editor {name} has no email address attached to their account."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:360
+msgid "Email Sent"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:361
+#, perl-brace-format
+msgid ""
+"Your email has been successfully sent! Click {link|here} to continue to "
+"{user}'s profile."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:389
+msgid "Your message could not be sent"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:552
+#, perl-brace-format
+msgid "'{type}' is not an entity type that can have ratings."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:807
+msgid "An error occurred while trying to send your report."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/User.pm:811
+msgid "Your report has been sent."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/WS/2/DiscID.pm:101
+msgid "Invalid TOC"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/WS/js.pm:285
+msgid ""
+"An error occurred trying to communicate with the Internet Archive servers. "
+"Please wait a few moments and try again."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/WS/js.pm:298
+msgid ""
+"We’ve hit a temporary delay while trying to fetch metadata from the Internet "
+"Archive. Please wait a minute and try again."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/WS/js.pm:414
+#: ../root/release/CoverArtDarkened.js:25
+msgid ""
+"The Cover Art Archive has had a takedown request in the past for this "
+"release, so we are unable to allow any more uploads."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/WS/js.pm:451
+#, perl-brace-format
+msgid ""
+"Cover art can’t be uploaded to this release because we don’t own the "
+"associated item at the Internet Archive. Please contact us at {contact_url} "
+"so we can resolve this."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Controller/WS/js/Edit.pm:705
+msgid ""
+"You must be logged in to submit edits. {url|Log in} first, and then try "
+"submitting your edits again."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/ControllerUtils/Delete.pm:25
+msgid ""
+"Since your edit adding this object was still open, that edit has been "
+"cancelled instead of opening a new edit."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/LinkType.pm:214
+#, perl-brace-format
+msgid "{t0}-{t1} relationships"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:51
+#, perl-brace-format
+msgid ""
+"Unable to determine which recording {source_recording} should be merged "
+"into. There are multiple valid options: {target_recordings}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:52
+msgid ""
+"Some mediums being merged don’t have an equivalent on the target release: "
+"either the target release has less mediums, or the positions don’t match."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:53
+msgid "The medium positions conflict."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:54
+msgid ""
+"The track counts on at least one set of corresponding mediums do not match."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:55
+msgid ""
+"Merging a medium with tracks into one without them is not currently "
+"supported. You can always merge in the other direction!"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:56
+msgid ""
+"Mediums with a pregap track can only be merged with other mediums with a "
+"pregap track."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Release.pm:57
+#, perl-brace-format
+msgid ""
+"A merge cycle exists whereby two recordings ({recording1} and {recording2}) "
+"each want to merge into the other. This is likely because the tracks or "
+"recordings are in an inconsistent order on the releases."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Data/Vote.pm:160
+msgid "Total"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/AddAlias.pm:11
+msgid "Add area alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/AddAnnotation.pm:11
+msgid "Add area annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/Create.pm:23
+msgid "Add area"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/Delete.pm:10
+msgid "Remove area"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/DeleteAlias.pm:15
+msgid "Remove area alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/Edit.pm:31
+msgid "Edit area"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/EditAlias.pm:12
+msgid "Edit area alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Area/Merge.pm:11 ../root/area/AreaMerge.js:28
+#: ../root/area/AreaMerge.js:30
+msgid "Merge areas"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/AddAlias.pm:11
+msgid "Add artist alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/AddAnnotation.pm:11
+msgid "Add artist annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/Create.pm:29
+msgid "Add artist"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/Delete.pm:11
+msgid "Remove artist"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/DeleteAlias.pm:15
+msgid "Remove artist alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/Edit.pm:42
+msgid "Edit artist"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/EditAlias.pm:12
+msgid "Edit artist alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/EditArtistCredit.pm:26
+msgid "Edit artist credit"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/Merge.pm:16
+#: ../root/artist/ArtistMerge.js:30 ../root/artist/ArtistMerge.js:32
+msgid "Merge artists"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/Merge.pm:72
+#, perl-brace-format
+msgid ""
+"The “{artist_type}” type has not been added to the destination artist "
+"because it conflicted with the gender setting of one of the artists here. "
+"Group artists cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Artist/Merge.pm:97
+#, perl-brace-format
+msgid ""
+"The “{gender}” gender has not been added to the destination artist because "
+"it conflicted with the group type of one of the artists here. Group artists "
+"cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/AddAlias.pm:11
+msgid "Add event alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/AddAnnotation.pm:11
+msgid "Add event annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/Create.pm:23
+#: ../root/layout/components/sidebar/ArtistSidebar.js:167
+#: ../root/layout/components/sidebar/PlaceSidebar.js:121
+msgid "Add event"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/Delete.pm:11
+msgid "Remove event"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/DeleteAlias.pm:16
+msgid "Remove event alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/Edit.pm:40
+msgid "Edit event"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/EditAlias.pm:12
+msgid "Edit event alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Event/Merge.pm:11
+#: ../root/event/EventMerge.js:28 ../root/event/EventMerge.js:30
+msgid "Merge events"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/AddAlias.pm:11
+msgid "Add genre alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/AddAnnotation.pm:11
+msgid "Add genre annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/Create.pm:21
+msgid "Add genre"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/Delete.pm:10
+#: ../root/genre/DeleteGenre.js:31 ../root/genre/DeleteGenre.js:33
+msgid "Remove genre"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/DeleteAlias.pm:16
+msgid "Remove genre alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/Edit.pm:22
+#: ../root/genre/EditGenre.js:30
+msgid "Edit genre"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Genre/EditAlias.pm:12
+msgid "Edit genre alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddDiscID.pm:12
+#: ../lib/MusicBrainz/Server/Edit/Medium/AddDiscID.pm:11
+msgid "Add disc ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddLink.pm:11
+#: ../lib/MusicBrainz/Server/Edit/Relationship/Create.pm:32
+#: ../root/static/scripts/relationship-editor/components/RelationshipTargetTypeGroups.js:109
+msgid "Add relationship"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddRelease.pm:22
+#: ../lib/MusicBrainz/Server/Edit/Release/Create.pm:31
+#: ../root/layout/components/sidebar/ArtistSidebar.js:152
+#: ../root/layout/components/sidebar/LabelSidebar.js:105
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:80
+msgid "Add release"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddReleaseAnnotation.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Release/AddAnnotation.pm:12
+msgid "Add release annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddReleaseEvents.pm:12
+msgid "Add release events (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddTrack.pm:12
+#: ../lib/MusicBrainz/Server/Edit/Historic/AddTrackKV.pm:11
+msgid "Add track (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeArtistQuality.pm:13
+msgid "Change artist quality (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseGroup.pm:13
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseAttrs.pm:17
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseLanguage.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseName.pm:11
+#: ../lib/MusicBrainz/Server/Edit/Historic/MoveRelease.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Historic/MoveReleaseToRG.pm:18
+#: ../lib/MusicBrainz/Server/Edit/Release/Edit.pm:47
+#: ../lib/MusicBrainz/Server/Edit/Release/EditArtist.pm:31
+msgid "Edit release"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeReleaseQuality.pm:13
+#: ../lib/MusicBrainz/Server/Edit/Release/ChangeQuality.pm:26
+#: ../root/release/ChangeQuality.js:37
+msgid "Change release data quality"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/ChangeTrackArtist.pm:14
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackNum.pm:14
+msgid "Edit track (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditLink.pm:16
+#: ../lib/MusicBrainz/Server/Edit/Relationship/Edit.pm:40
+msgid "Edit relationship"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseEvents.pm:12
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditReleaseEventsOld.pm:18
+msgid "Edit release events (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackLength.pm:13
+#: ../lib/MusicBrainz/Server/Edit/Historic/EditTrackName.pm:23
+#: ../lib/MusicBrainz/Server/Edit/Recording/Edit.pm:43
+msgid "Edit recording"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/MACToSAC.pm:13
+msgid "Convert release to single artist (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/MergeRelease.pm:13
+#: ../lib/MusicBrainz/Server/Edit/Historic/MergeReleaseMAC.pm:10
+#: ../lib/MusicBrainz/Server/Edit/Release/Merge.pm:139
+#: ../root/release/ReleaseMerge.js:37 ../root/release/ReleaseMerge.js:39
+msgid "Merge releases"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/MoveDiscID.pm:12
+#: ../lib/MusicBrainz/Server/Edit/Medium/MoveDiscID.pm:21
+msgid "Move disc ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveDiscID.pm:12
+#: ../lib/MusicBrainz/Server/Edit/Medium/RemoveDiscID.pm:10
+msgid "Remove disc ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveLabelAlias.pm:12
+#: ../lib/MusicBrainz/Server/Edit/Label/DeleteAlias.pm:16
+msgid "Remove label alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveLink.pm:11
+#: ../lib/MusicBrainz/Server/Edit/Relationship/Delete.pm:36
+msgid "Remove relationship"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveRelease.pm:15
+#: ../lib/MusicBrainz/Server/Edit/Release/Delete.pm:12
+msgid "Remove release"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveReleaseEvents.pm:12
+msgid "Remove release events (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/RemoveReleases.pm:12
+msgid "Remove releases (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Historic/SACToMAC.pm:16
+msgid "Convert release to multiple artists (historic)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAlias.pm:11
+msgid "Add instrument alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/AddAnnotation.pm:11
+msgid "Add instrument annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/Create.pm:20
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:39
+msgid "Add instrument"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/Delete.pm:10
+msgid "Remove instrument"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/DeleteAlias.pm:16
+msgid "Remove instrument alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/Edit.pm:26
+msgid "Edit instrument"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/EditAlias.pm:12
+msgid "Edit instrument alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Instrument/Merge.pm:11
+#: ../root/instrument/InstrumentMerge.js:28
+#: ../root/instrument/InstrumentMerge.js:30
+msgid "Merge instruments"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/AddAlias.pm:11
+msgid "Add label alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/AddAnnotation.pm:11
+msgid "Add label annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/Create.pm:28
+msgid "Add label"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/Delete.pm:12
+msgid "Remove label"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/Edit.pm:42
+msgid "Edit label"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/EditAlias.pm:12
+msgid "Edit label alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Label/Merge.pm:12
+#: ../root/label/LabelMerge.js:28 ../root/label/LabelMerge.js:30
+msgid "Merge labels"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Medium/Create.pm:31
+msgid "Add medium"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Medium/Edit.pm:51
+msgid "Edit medium"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Medium/SetTrackLengths.pm:169
+msgid ""
+"The CD TOC the track times were being set from has been removed since this "
+"edit was entered."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/AddAlias.pm:11
+msgid "Add place alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/AddAnnotation.pm:11
+msgid "Add place annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/Create.pm:26
+msgid "Add place"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/Delete.pm:10
+msgid "Remove place"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/DeleteAlias.pm:15
+msgid "Remove place alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/Edit.pm:43
+msgid "Edit place"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/EditAlias.pm:12
+msgid "Edit place alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Place/Merge.pm:11
+#: ../root/place/PlaceMerge.js:28 ../root/place/PlaceMerge.js:30
+msgid "Merge places"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/AddAlias.pm:11
+msgid "Add recording alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/AddAnnotation.pm:12
+msgid "Add recording annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/AddISRCs.pm:23
+msgid "Add ISRCs"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/Create.pm:26
+msgid "Add standalone recording"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/Delete.pm:12
+msgid "Remove recording"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/DeleteAlias.pm:15
+msgid "Remove recording alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/EditAlias.pm:12
+msgid "Edit recording alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/Merge.pm:15
+#: ../root/recording/RecordingMerge.js:30
+#: ../root/recording/RecordingMerge.js:32
+msgid "Merge recordings"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Recording/RemoveISRC.pm:21
+msgid "Remove ISRC"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship.pm:16
+#: ../root/edit/details/AddRelationship.js:22
+#: ../root/edit/details/RemoveRelationship.js:20
+#: ../root/edit/details/ReorderRelationships.js:20
+#: ../root/static/scripts/edit/components/edit/RelationshipDiff.js:199
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:133
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:937
+msgid "Relationship"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/AddLinkAttribute.pm:16
+msgid "Add relationship attribute"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/AddLinkType.pm:15
+msgid "Add relationship type"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/Delete.pm:295
+msgid ""
+"This edit would remove a relationship that is set as an example of its "
+"relationship type in the documentation. If you still think this should be "
+"removed, please {contact_url|contact us}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/Edit.pm:423
+#, perl-brace-format
+msgid ""
+"The “{relationship_type}” relationship between “{entity0}” and “{entity1}” "
+"already exists."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/EditLinkAttribute.pm:17
+msgid "Edit relationship attribute"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/EditLinkType.pm:23
+msgid "Edit relationship type"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/RemoveLinkAttribute.pm:13
+msgid "Remove relationship attribute"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/RemoveLinkType.pm:14
+msgid "Remove relationship type"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Relationship/Reorder.pm:23
+msgid "Reorder relationships"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/AddAlias.pm:11
+msgid "Add release alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/AddCoverArt.pm:21
+msgid "Add cover art"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/AddReleaseLabel.pm:19
+msgid "Add release label"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/DeleteAlias.pm:15
+msgid "Remove release alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/DeleteReleaseLabel.pm:21
+msgid "Remove release label"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/EditAlias.pm:12
+msgid "Edit release alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/EditBarcodes.pm:20
+msgid "Edit barcodes"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/EditCoverArt.pm:23
+msgid "Edit cover art"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:27
+msgid "Edit release label"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/EditReleaseLabel.pm:98
+#: ../lib/MusicBrainz/Server/Entity/Release.pm:183
+#: ../root/static/scripts/release-editor/duplicates.js:192
+msgctxt "medium format"
+msgid "(unknown)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/Merge.pm:337
+#, perl-brace-format
+msgid "These releases could not be merged: {reason}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/RemoveCoverArt.pm:21
+msgid "Remove cover art"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/ReorderCoverArt.pm:24
+msgid "Reorder cover art"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Release/ReorderMediums.pm:14
+msgid "Reorder mediums"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup.pm:7
+#: ../root/edit/details/AddRelease.js:65
+#: ../root/edit/details/AddReleaseGroup.js:29
+#: ../root/edit/details/EditRelease.js:81
+#: ../root/edit/details/EditReleaseGroup.js:36
+#: ../root/edit/details/SetCoverArt.js:30
+#: ../root/edit/details/historic/ChangeReleaseGroup.js:25
+#: ../root/edit/details/historic/MoveReleaseToReleaseGroup.js:28
+#: ../root/static/scripts/common/constants.js:44 ../root/user/UserProfile.js:58
+msgid "Release group"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/AddAlias.pm:11
+msgid "Add release group alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/AddAnnotation.pm:12
+msgid "Add release group annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Create.pm:28
+#: ../root/layout/components/sidebar/ArtistSidebar.js:147
+msgid "Add release group"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Delete.pm:12
+msgid "Remove release group"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/DeleteAlias.pm:15
+msgid "Remove release group alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Edit.pm:42
+msgid "Edit release group"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/EditAlias.pm:12
+msgid "Edit release group alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/ReleaseGroup/Merge.pm:13
+#: ../root/artist/ArtistIndex.js:303
+#: ../root/release_group/ReleaseGroupMerge.js:28
+#: ../root/release_group/ReleaseGroupMerge.js:30
+msgid "Merge release groups"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Role/IPI.pm:40
+#, perl-brace-format
+msgid ""
+"The IPI {ipi} is already in use on {artist_count} artist. Please check "
+"{artist_search|all uses of this IPI}."
+msgid_plural ""
+"The IPI {ipi} is already in use on {artist_count} artists. Please check "
+"{artist_search|all uses of this IPI}."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Edit/Role/IPI.pm:46
+#, perl-brace-format
+msgid ""
+"The IPI {ipi} is already in use on {label_count} label. Please check "
+"{label_search|all uses of this IPI}."
+msgid_plural ""
+"The IPI {ipi} is already in use on {label_count} labels. Please check "
+"{label_search|all uses of this IPI}."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Edit/Role/ISNI.pm:40
+#, perl-brace-format
+msgid ""
+"The ISNI {isni} is already in use on {artist_count} artist. Please check "
+"{artist_search|all uses of this ISNI}."
+msgid_plural ""
+"The ISNI {isni} is already in use on {artist_count} artists. Please check "
+"{artist_search|all uses of this ISNI}."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Edit/Role/ISNI.pm:46
+#, perl-brace-format
+msgid ""
+"The ISNI {isni} is already in use on {label_count} label. Please check "
+"{label_search|all uses of this ISNI}."
+msgid_plural ""
+"The ISNI {isni} is already in use on {label_count} labels. Please check "
+"{label_search|all uses of this ISNI}."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/AddAlias.pm:11
+msgid "Add series alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/AddAnnotation.pm:11
+msgid "Add series annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/Create.pm:22
+msgid "Add series"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/Delete.pm:12
+msgid "Remove series"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/DeleteAlias.pm:16
+msgid "Remove series alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/Edit.pm:30
+msgid "Edit series"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/EditAlias.pm:12
+msgid "Edit series alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Series/Merge.pm:11
+#: ../root/series/SeriesMerge.js:28 ../root/series/SeriesMerge.js:30
+msgid "Merge series"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:271 ../root/user/UserProfile.js:657
+#: ../root/utility/edit.js:47
+msgid "Open"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:272 ../root/utility/edit.js:40
+msgid "Applied"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:273 ../root/utility/edit.js:45
+msgid "Failed vote"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:274 ../root/utility/edit.js:43
+msgid "Failed dependency"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:275
+#: ../root/main/error/components/ErrorInfo.js:22
+#: ../root/report/ReportNotAvailable.js:13
+#: ../root/report/ReportNotAvailable.js:15 ../root/utility/edit.js:42
+msgid "Error"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:276 ../root/utility/edit.js:44
+msgid "Failed prerequisite"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:277 ../root/utility/edit.js:46
+msgid "No votes"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Utils.pm:278 ../root/user/UserProfile.js:647
+#: ../root/utility/edit.js:41
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/WikiDoc.pm:7
+msgid "Wiki documentation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/WikiDoc/Change.pm:16
+msgid "Change WikiDoc"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/AddAlias.pm:12
+msgid "Add work alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/AddAnnotation.pm:12
+msgid "Add work annotation"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/AddISWCs.pm:21
+msgid "Add ISWCs"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/Create.pm:18
+#: ../root/layout/components/sidebar/ArtistSidebar.js:162
+msgid "Add work"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/Delete.pm:11
+msgid "Remove work"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/DeleteAlias.pm:16
+msgid "Remove work alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/Edit.pm:88
+msgid "Edit work"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/EditAlias.pm:13
+msgid "Edit work alias"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/Merge.pm:12 ../root/work/WorkMerge.js:30
+#: ../root/work/WorkMerge.js:32
+msgid "Merge works"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Edit/Work/RemoveISWC.pm:23
+msgid "Remove ISWC"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/EditSearch/Predicate.pm:67
+msgid "This operator is not supported"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:91
+msgctxt "autoeditor election status"
+msgid "Awaiting 1st seconder"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:92
+msgctxt "autoeditor election status"
+msgid "Awaiting 2nd seconder"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:93
+#, perl-brace-format
+msgctxt "autoeditor election status"
+msgid "Voting open since {date}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:94
+#, perl-brace-format
+msgctxt "autoeditor election status"
+msgid "Accepted at {date}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:95
+#, perl-brace-format
+msgctxt "autoeditor election status"
+msgid "Declined at {date}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:96
+#, perl-brace-format
+msgctxt "autoeditor election status"
+msgid "Cancelled at {date}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:100
+msgctxt "autoeditor election status (short)"
+msgid "Awaiting 1st seconder"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:101
+msgctxt "autoeditor election status (short)"
+msgid "Awaiting 2nd seconder"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:102
+msgctxt "autoeditor election status (short)"
+msgid "Voting open"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:103
+msgctxt "autoeditor election status (short)"
+msgid "Accepted"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:104
+msgctxt "autoeditor election status (short)"
+msgid "Declined"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/AutoEditorElection.pm:105
+msgctxt "autoeditor election status (short)"
+msgid "Cancelled"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Barcode.pm:25
+#: ../root/static/scripts/common/utility/formatBarcode.js:15
+msgid "[none]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/LinkAttribute.pm:33
+#: ../root/static/scripts/common/utility/displayLinkAttribute.js:39
+#, perl-brace-format
+msgid "{attribute} [{credited_as}]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/LinkAttribute.pm:37
+#: ../root/static/scripts/common/utility/displayLinkAttribute.js:29
+#, perl-brace-format
+msgid "{attribute}: {value}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:50
+msgid " – ????"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:56
+#, perl-brace-format
+msgid "{begindate} – {enddate}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:60
+#, perl-brace-format
+msgid "– {enddate}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:64
+#, perl-brace-format
+msgid "{begindate} – ????"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Role/DatePeriod.pm:66
+#, perl-brace-format
+msgid "{begindate} –"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/Role/Relatable.pm:59
+#: ../root/static/scripts/common/utility/groupRelationships.js:460
+#: ../root/static/scripts/common/utility/groupRelationships.js:466
+#, perl-brace-format
+msgid "{role} (as {credited_name})"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Anghami.pm:10
+msgid "Stream at Anghami"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Audiomack.pm:10
+msgid "Stream at Audiomack"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Boomplay.pm:10
+msgid "Stream at Boomplay"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/CPDL.pm:9
+msgid "Score(s) at CPDL"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Deezer.pm:10
+msgid "Stream at Deezer"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Dogmazic.pm:10
+msgid "Stream at Dogmazic"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Gutenberg.pm:9
+msgid "Project Gutenberg"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/IMSLP.pm:31
+msgid "Score at IMSLP"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/MiguMusic.pm:9
+msgid "Stream at Migu Music"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/NicoNicoVideo.pm:9
+msgid "Niconico"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/RateYourMusic.pm:13
+msgid "Interview at Rate Your Music"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Runeberg.pm:9
+msgid "Project Runeberg"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Spotify.pm:14
+msgid "Playlists at Spotify"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Spotify.pm:16
+msgid "Stream at Spotify"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Tidal.pm:14
+msgid "Purchase at Tidal"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Tidal.pm:16
+msgid "Stream at Tidal"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Weibo.pm:9
+msgid "Weibo"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/Wikisource.pm:9
+msgid "Wikisource"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Entity/URL/YouTubeMusic.pm:10
+msgid "Stream at YouTube Music"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Language.pm:51
+#: ../root/admin/attributes/Language.js:16
+msgctxt "language optgroup"
+msgid "Hidden"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Language.pm:52
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:58
+#: ../root/admin/attributes/Language.js:17
+msgctxt "language optgroup"
+msgid "Other"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Language.pm:53
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:58
+#: ../root/admin/attributes/Language.js:18
+msgctxt "language optgroup"
+msgid "Frequently used"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Script.pm:42
+#: ../root/admin/attributes/Script.js:16
+msgctxt "script frequency"
+msgid "Hidden"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Script.pm:43
+#: ../root/admin/attributes/Script.js:17
+msgctxt "script frequency"
+msgid "Other (Uncommon)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Script.pm:44
+#: ../root/admin/attributes/Script.js:18
+msgctxt "script frequency"
+msgid "Other"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/Attributes/Script.pm:45
+#: ../root/admin/attributes/Script.js:19
+msgctxt "script frequency"
+msgid "Frequently used"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Admin/LinkAttributeType.pm:59
+msgid ""
+"Cannot add or edit instruments here; use the instrument editing forms "
+"instead."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Alias.pm:114
+msgid "This alias can only be a primary alias if a locale is selected"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Alias.pm:126
+msgid "This alias already exists."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Application.pm:47
+msgid "Redirect URL must be entered for web applications."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Application.pm:51
+msgid ""
+"Redirect URL scheme must be either http
or https
"
+"for web applications."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Application.pm:58
+msgid ""
+"Redirect URL scheme must be a reverse-DNS string, as in org.example."
+"app://auth
, for installed applications."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Area.pm:88
+msgid "An area already exists with this ISO code"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Artist.pm:75
+msgid "Group artists cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Artist.pm:82
+msgid "Orchestras cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Artist.pm:89
+msgid "Choirs cannot have a gender."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Collection.pm:92
+msgid "The collection type must match the type of entities it contains."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Collection.pm:110
+#, perl-brace-format
+msgid ""
+"To add “{editor}” as a collaborator, please select them from the dropdown."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Collection.pm:115
+#, perl-brace-format
+msgid "Editor “{editor}” does not exist."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/EditNoteModify.pm:30
+msgid ""
+"You must provide an edit note. If you want to blank the note, please remove "
+"it instead."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:50
+#, perl-brace-format
+msgid "Please add an artist name for {credit}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:57
+#, perl-brace-format
+msgid ""
+"Artist \"{artist}\" is unlinked, please select an existing artist. You may "
+"need to add a new artist to MusicBrainz first."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:63
+msgid "Please add an artist name for each credit."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ArtistCredit.pm:78
+msgid "Artist credit field is required"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Coordinates.pm:58
+msgid "These coordinates could not be parsed"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/DatePeriod.pm:42
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:68
+msgid "The end date cannot precede the begin date."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/DiscID.pm:15
+msgid "This is not a valid disc ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/FreeDBID.pm:15
+msgid "This is not a valid FreeDB ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/GID.pm:15
+msgid "This is not a valid MBID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ID.pm:15
+msgid "This is not a valid database ID"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/IPI.pm:15
+#: ../lib/MusicBrainz/Server/Form/Field/IPI.pm:19
+msgid "This is not a valid IPI."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISNI.pm:15
+#: ../lib/MusicBrainz/Server/Form/Field/ISNI.pm:19
+msgid "This is not a valid ISNI."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISO_3166_1.pm:15
+msgid "This is not a valid ISO 3166-1 code"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISO_3166_2.pm:15
+msgid "This is not a valid ISO 3166-2 code"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISO_3166_3.pm:15
+msgid "This is not a valid ISO 3166-3 code"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISRC.pm:17
+msgid "This is not a valid ISRC"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISRC.pm:21
+msgid "This is not a valid ISRC."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/ISWC.pm:15
+#: ../lib/MusicBrainz/Server/Form/Field/ISWC.pm:19
+msgid "This is not a valid ISWC"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/LabelCode.pm:17
+msgid "Label codes must be greater than 0 and 5 digits at most"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Length.pm:31
+msgid "Not a valid time. Must be in the format MM:SS"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/PartialDate.pm:68
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:103
+msgid "invalid date"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Relationship.pm:95
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:290
+msgid ""
+"You must select a relationship type and target entity for every relationship."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Setlist.pm:15
+msgid "Please ensure all lines start with @, * or #, followed by a space."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Text.pm:21
+msgid "The characters you’ve entered are invalid or not allowed."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/Time.pm:19
+msgid "This is not a valid time."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:27
+msgid "Enter a valid URL, such as “http://google.com/”"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Field/URL.pm:30
+msgid "URL protocol must be HTTP, HTTPS or FTP"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Event.pm:31
+msgctxt "event type"
+msgid "[none]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Release.pm:95
+msgid ""
+"Must be a valid date or partial date. Examples: 2006-05-25, "
+"1990-01, ????-01, ..."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/ReleaseGroup.pm:54
+#: ../lib/MusicBrainz/Server/Form/Filter/ReleaseGroup.pm:63
+msgctxt "release group type"
+msgid "[none]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Work.pm:29
+msgid "As performer"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Work.pm:30
+msgid "As writer"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Filter/Work.pm:37
+msgctxt "work type"
+msgid "[none]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge.pm:21
+msgid "Please pick the entity you want the others merged into."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:54
+#: ../root/edit/details/MergeReleases.js:35
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:38
+msgid "Append mediums to target release"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:55
+#: ../root/edit/details/MergeReleases.js:36
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:39
+msgid "Merge mediums and recordings"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:66
+msgid "Another medium is already in this position"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Merge/Release.pm:69
+msgid "Positions must be greater than 0"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Recording.pm:68
+msgid ""
+"This recording’s duration is determined by the tracks that are linked to it, "
+"and cannot be changed directly."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Recording/Standalone.pm:11
+msgid "You must provide an edit note when adding a standalone recording"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Release/AddCoverArt.pm:59
+#: ../lib/MusicBrainz/Server/Form/Role/CSRFToken.pm:10
+#: ../lib/MusicBrainz/Server/Form/Role/CSRFToken.pm:81
+msgid "The form you’ve submitted has expired. Please resubmit your request."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/EditNote.pm:26
+msgid "You must provide an edit note"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:34
+msgid "Invalid URL format"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:65
+msgid "A language is required."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:71
+msgid "A fluency level is required."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:79
+#: ../root/static/scripts/common/constants.js:366
+msgid "Basic"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:80
+#: ../root/static/scripts/common/constants.js:367
+msgid "Intermediate"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:81
+#: ../root/static/scripts/common/constants.js:365
+msgid "Advanced"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:82
+#: ../root/static/scripts/common/constants.js:368
+msgid "Native"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:96
+msgid "You must supply a complete birth date for us to display your age."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Role/UserProfile.pm:100
+msgid "Birth year must be after 1900"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:47
+#: ../root/layout/components/Search.js:45
+#: ../root/search/components/CDStubResults.js:44
+#: ../root/search/components/SearchForm.js:46
+msgid "CD Stub"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:49
+#: ../root/layout/components/Search.js:42
+#: ../root/search/components/SearchForm.js:48
+msgctxt "noun"
+msgid "Tag"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:63
+#: ../root/search/components/SearchForm.js:60
+msgid "Indexed search"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:64
+msgid "Indexed search with advanced query syntax"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Search/Search.pm:65
+#: ../root/search/components/SearchForm.js:67
+msgid "Direct database search"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Series.pm:29
+msgid "A type is required."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/ChangePassword.pm:53
+msgid "The old password is incorrect"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/ChangePassword.pm:58
+msgid "An account with this name could not be found"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Login.pm:15
+msgid "Username field is required"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Login.pm:23
+msgid "Password field is required"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Preferences.pm:84
+#: ../root/static/scripts/account/components/PreferencesForm.js:80
+msgid "Daily"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Preferences.pm:85
+#: ../root/static/scripts/account/components/PreferencesForm.js:81
+msgid "Weekly"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Preferences.pm:86
+#: ../root/static/scripts/account/components/PreferencesForm.js:82
+msgid "Never"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Register.pm:15
+#, perl-brace-format
+msgid ""
+"The value of this field cannot be longer than {max} characters, but you "
+"entered {actual}."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Register.pm:44
+msgid "Please enter a password in this field"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Register.pm:55
+msgid "The password confirmation does not match the password"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:35
+#: ../root/user/ReportUser.js:48
+msgid "Editor is spamming"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:36
+#: ../root/user/ReportUser.js:52
+msgid "Editor is unresponsive to edit notes"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:37
+#: ../root/user/ReportUser.js:56
+msgid "Editor intentionally ignores accepted guidelines"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:38
+#: ../root/user/ReportUser.js:60
+msgid "Editor is overzealous in enforcing guidelines as rules"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:39
+#: ../root/user/ReportUser.js:64
+msgid "Editor engages in overzealous or abusive yes/no voting"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/User/Report.pm:40
+#: ../root/user/ReportUser.js:69
+msgid "Editor has violated some other part of our Code of Conduct"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:46
+#: ../root/static/scripts/common/i18n/localizeLanguageName.js:19
+msgid "[No lyrics]"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:82
+msgctxt "script optgroup"
+msgid "Frequently used"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:82
+msgctxt "script optgroup"
+msgid "Other"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:214
+msgid ""
+"This username contains invalid characters. (Check for consecutive spaces.)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:217
+msgid "This username is reserved for internal use."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Utils.pm:220
+msgid "Please choose another username, this one is already taken."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:60
+msgid "Please select a work attribute type."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:67
+msgid "Please enter a work attribute value."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:94
+msgid ""
+"You cannot select “[Multiple languages]” and specific languages at the same "
+"time."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:99
+msgid "You cannot select “[No lyrics]” and a lyrics language at the same time."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:104
+msgid "You cannot select the same language more than once."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:146
+msgid "Unknown work attribute type."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:155
+msgid "You cannot enter the same attribute and value more than once."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Form/Work.pm:162
+msgid "This value is not allowed for this work attribute type."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:30
+msgid "(Special case)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:31
+msgid ""
+"An album release primarily consists of previously unreleased material. This "
+"includes album re-issues, with or without bonus tracks."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:32
+msgid ""
+"A single typically has one main song and possibly a handful of additional "
+"tracks or remixes of the main track. A single is usually named after its "
+"main song."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:33
+msgid ""
+"An EP is an Extended Play release and often contains the letters EP in the "
+"title."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:34
+msgid ""
+"A compilation is a collection of previously released tracks by one or more "
+"artists."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:35
+msgid ""
+"A soundtrack is the musical score to a movie, TV series, stage show, "
+"computer game etc."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:36
+msgid "Non-music spoken word releases."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:37
+msgid "An interview release contains an interview with the Artist."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:38
+msgid "An audiobook is a book read by a narrator without music."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:39
+msgid "A release that was recorded live."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:40
+msgid "A release that was (re)mixed from previously released material."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:41
+msgid "Any release that does not fit any of the categories above."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:43
+msgid ""
+"Any release officially sanctioned by the artist and/or their record company. "
+"(Most releases will fit into this category.)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:44
+msgid ""
+"A giveaway release or a release intended to promote an upcoming official "
+"release. (e.g. prerelease albums or releases included with a magazine)"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:45
+msgid ""
+"An unofficial/underground release that was not sanctioned by the artist and/"
+"or the record company."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Release.pm:46
+msgid ""
+"A pseudo-release is a duplicate release for translation/transliteration "
+"purposes."
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Translation.pm:254
+#: ../root/static/scripts/common/i18n/commaList.js:24
+#, perl-brace-format
+msgid "{almost_last_list_item} and {last_list_item}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Translation.pm:260
+#: ../root/static/scripts/common/i18n/commaList.js:30
+#, perl-brace-format
+msgid "{list_item}, {rest}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Translation.pm:271
+#: ../root/static/scripts/common/i18n/commaList.js:21
+#: ../root/static/scripts/common/i18n/commaOnlyList.js:20
+#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:20
+#, perl-brace-format
+msgid "{last_list_item}"
+msgstr ""
+
+#: ../lib/MusicBrainz/Server/Translation.pm:274
+#: ../root/static/scripts/common/i18n/commaOnlyList.js:25
+#, perl-brace-format
+msgid "{commas_only_list_item}, {rest}"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:45
+msgid ""
+"Please change your password. Unfortunately we've discovered that secure "
+"hashes user's passwords were temporarily available for download on our FTP "
+"site. While it is extremely unlikely that anyone will be able to derive the "
+"original passwords from this mishap, we are requiring all of our users to "
+"change their passwords. Sorry for the inconvenience. For more information "
+"see {blog|the recent blog post}."
+msgstr ""
+
+#: ../root/account/ChangePassword.js:58
+msgid "Please enter your old password below, and then your new password."
+msgstr ""
+
+#: ../root/account/ChangePassword.js:69 ../root/account/LostPassword.js:44
+#: ../root/admin/EditUser.js:155
+#: ../root/static/scripts/account/components/RegisterForm.js:64
+#: ../root/user/Login.js:100
+msgid "Username"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:77
+msgid "Old password:"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:85 ../root/account/ResetPassword.js:41
+msgid "New password:"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:93 ../root/account/ResetPassword.js:49
+#: ../root/static/scripts/account/components/RegisterForm.js:100
+msgid "Confirm password:"
+msgstr ""
+
+#: ../root/account/ChangePassword.js:99 ../root/account/ChangePassword.js:117
+#: ../root/account/ChangePassword.js:119 ../root/account/ChangePassword.js:130
+#: ../root/account/ChangePassword.js:131
+#: ../root/components/UserAccountTabs.js:86
+msgid "Change Password"
+msgstr ""
+
+#: ../root/account/Donation.js:32 ../root/account/Donation.js:34
+#: ../root/components/UserAccountTabs.js:92
+msgid "Donation Check"
+msgstr ""
+
+#: ../root/account/Donation.js:38
+msgid ""
+"We were not able to check your donation status right now. Please try again "
+"later."
+msgstr ""
+
+#: ../root/account/Donation.js:45
+msgid ""
+"We have not received a donation from you recently. If you have just made a "
+"PayPal donation, then we have not received a notification from PayPal yet. "
+"Please wait a few minutes and reload this page to check again."
+msgstr ""
+
+#: ../root/account/Donation.js:52
+msgid ""
+"If you would like to make a donation, {donate|you can do that here}. If you "
+"have donated, but you are still being nagged, please {contact|contact us}."
+msgstr ""
+
+#: ../root/account/Donation.js:62
+msgid "Thank you for contributing to MusicBrainz."
+msgstr ""
+
+#: ../root/account/Donation.js:68
+msgid "You will not be nagged for another {days} days."
+msgstr ""
+
+#: ../root/account/Donation.js:74
+msgid "You will never be nagged again!"
+msgstr ""
+
+#: ../root/account/EditProfile.js:34 ../root/account/EditProfile.js:36
+#: ../root/components/UserAccountTabs.js:74
+msgid "Edit Profile"
+msgstr ""
+
+#: ../root/account/EditProfile.js:39
+msgid ""
+"See also your {uri|user preferences}, which include your privacy settings."
+msgstr ""
+
+#: ../root/account/EmailVerificationStatus.js:19
+msgid "Email Verification"
+msgstr ""
+
+#: ../root/account/EmailVerificationStatus.js:23
+msgid ""
+"Thank you, your email address has now been verified! If you still can't "
+"edit, please try to log out and log in again."
+msgstr ""
+
+#: ../root/account/LostPassword.js:29 ../root/account/LostPassword.js:30
+#: ../root/account/LostPasswordSent.js:14
+msgid "Lost Password"
+msgstr ""
+
+#: ../root/account/LostPassword.js:33
+msgid ""
+"Enter your username and email below. We will send you an email with a link "
+"to reset your password. If you have forgotten your username, {link|retrieve "
+"it} first and then reset your password."
+msgstr ""
+
+#: ../root/account/LostPassword.js:50 ../root/account/LostUsername.js:37
+#: ../root/admin/EditUser.js:161 ../root/admin/EmailSearch.js:68
+#: ../root/admin/components/UserList.js:32
+#: ../root/report/components/EditorList.js:79
+#: ../root/static/scripts/account/components/EditProfileForm.js:218
+#: ../root/static/scripts/account/components/PreferencesForm.js:208
+#: ../root/static/scripts/account/components/RegisterForm.js:107
+#: ../root/user/UserProfile.js:189
+msgid "Email"
+msgstr ""
+
+#: ../root/account/LostPassword.js:55 ../root/account/ResetPassword.js:29
+#: ../root/account/ResetPassword.js:30 ../root/account/ResetPassword.js:55
+#: ../root/account/ResetPasswordStatus.js:19
+msgid "Reset Password"
+msgstr ""
+
+#: ../root/account/LostPasswordSent.js:14
+#: ../root/account/LostUsernameSent.js:14
+msgid "Email Sent!"
+msgstr ""
+
+#: ../root/account/LostPasswordSent.js:17
+msgid ""
+"We've sent you instructions on how to reset your password. If you don't "
+"receive this email or still have problems logging in, please {link|contact "
+"us}."
+msgstr ""
+
+#: ../root/account/LostUsername.js:27 ../root/account/LostUsername.js:28
+#: ../root/account/LostUsernameSent.js:14
+msgid "Lost Username"
+msgstr ""
+
+#: ../root/account/LostUsername.js:30
+msgid ""
+"Enter your email address below and we will send you an email with your "
+"MusicBrainz account information."
+msgstr ""
+
+#: ../root/account/LostUsernameSent.js:17
+msgid ""
+"We've sent you information about your MusicBrainz account. If you don't "
+"receive this email or still have problems logging in, please {link|contact "
+"us}."
+msgstr ""
+
+#: ../root/account/Preferences.js:34 ../root/account/PreferencesSaved.js:18
+#: ../root/components/UserAccountTabs.js:80
+msgid "Preferences"
+msgstr ""
+
+#: ../root/account/PreferencesSaved.js:21
+msgid ""
+"Your preferences have been saved. Click {link|here} to continue to your user "
+"page."
+msgstr ""
+
+#: ../root/account/Register.js:28 ../root/account/Register.js:35
+msgid "Create an Account"
+msgstr ""
+
+#: ../root/account/Register.js:31
+msgid "Captcha incorrect. Try again."
+msgstr ""
+
+#: ../root/account/Register.js:39
+msgid ""
+"Note that any contributions you make to MusicBrainz will be released "
+"into the Public Domain and/or licensed under a Creative Commons by-nc-sa "
+"license. Furthermore, you give the MetaBrainz Foundation the right to "
+"license this data for commercial use. Please read our {doc|license page} for "
+"more details."
+msgstr ""
+
+#: ../root/account/Register.js:51
+msgid ""
+"MusicBrainz believes strongly in the privacy of its users! Any personal "
+"information you choose to provide will not be sold or shared with anyone "
+"else. For full details, please read our {doc|Privacy Policy}."
+msgstr ""
+
+#: ../root/account/Register.js:61
+msgid ""
+"You may remove your personal information from our services anytime by "
+"deleting your account. For more details, see our {doc|GDPR compliance "
+"statement}."
+msgstr ""
+
+#: ../root/account/Register.js:73
+msgid ""
+"If you have any questions, please review the {faq|FAQs} or {doc|"
+"documentation} before {con|contacting us}. "
+msgstr ""
+
+#: ../root/account/Register.js:85
+msgid ""
+"Follow our {bl|blog} or {tw|twitter account}! To talk to other users, try "
+"the {fo|forums} or {irc|IRC}."
+msgstr ""
+
+#: ../root/account/Register.js:98
+msgid ""
+"MusicBrainz has one account type for all users. If you represent an artist "
+"or label, please use the above form to create an account."
+msgstr ""
+
+#: ../root/account/ResetPassword.js:33
+msgid "Set a new password for your MusicBrainz account."
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:34
+#: ../root/static/scripts/account/components/ApplicationForm.js:40
+msgid "Web Application"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:35
+#: ../root/static/scripts/account/components/ApplicationForm.js:41
+msgid "Installed Application"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:65
+msgid "Revoke Access"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:77
+msgid "Offline Access"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:94
+#: ../root/account/applications/ApplicationList.js:95
+#: ../root/layout/components/TopMenu.js:51
+msgid "Applications"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:97
+msgid "Authorized Applications"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:101
+msgid ""
+"Some applications and websites support accessing private data from or "
+"submitting data to MusicBrainz but require your permission to access your "
+"account. These are the applications that you have authorized to access your "
+"MusicBrainz account. If you no longer use some of the applications, you can "
+"revoke their access."
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:115
+#: ../root/account/applications/ApplicationList.js:154
+msgid "Application"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:116
+msgid "Access"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:117
+msgid "Last granted token"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:118
+#: ../root/account/applications/ApplicationList.js:158
+#: ../root/admin/attributes/Attribute.js:85
+#: ../root/admin/attributes/Language.js:46
+#: ../root/admin/attributes/Script.js:45
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:30
+#: ../root/admin/wikidoc/WikiDocIndex.js:118
+#: ../root/components/Aliases/AliasTable.js:29
+#: ../root/components/Aliases/ArtistCreditList.js:54
+#: ../root/static/scripts/common/components/FingerprintTable.js:80
+#: ../root/utility/tableColumns.js:82
+msgid "Actions"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:129
+msgid "You have not authorized any applications."
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:132
+msgid "Developer Applications"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:136
+msgid ""
+"Do you want to develop an application that uses the {mb_api_doc_url|"
+"MusicBrainz API}? {register_url|Register an application} to generate OAuth "
+"tokens. See our {oauth2_doc_url|OAuth documentation} for more details."
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:156
+msgid "OAuth Client ID"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:157
+msgid "OAuth Client Secret"
+msgstr ""
+
+#: ../root/account/applications/ApplicationList.js:167
+msgid "You do not have any registered applications."
+msgstr ""
+
+#: ../root/account/applications/EditApplication.js:21
+#: ../root/account/applications/EditApplication.js:22
+msgid "Edit Application"
+msgstr ""
+
+#: ../root/account/applications/EditApplication.js:26
+#: ../root/admin/EditBanner.js:39 ../root/admin/wikidoc/EditWikiDoc.js:51
+#: ../root/admin/wikidoc/WikiDocIndex.js:102
+msgid "Update"
+msgstr ""
+
+#: ../root/account/applications/RegisterApplication.js:22
+#: ../root/account/applications/RegisterApplication.js:23
+msgid "Register Application"
+msgstr ""
+
+#: ../root/account/applications/RegisterApplication.js:27
+msgid "Register"
+msgstr ""
+
+#: ../root/account/applications/RemoveApplication.js:21
+msgid "Are you sure you want to remove this application?"
+msgstr ""
+
+#: ../root/account/applications/RemoveApplication.js:22
+msgid "Remove Application"
+msgstr ""
+
+#: ../root/account/applications/RevokeApplicationAccess.js:30
+msgid "You’re about to revoke {app}’s permissions to:"
+msgstr ""
+
+#: ../root/account/applications/RevokeApplicationAccess.js:42
+msgid "Are you sure you want to revoke this application’s access?"
+msgstr ""
+
+#: ../root/account/applications/RevokeApplicationAccess.js:46
+msgid "Revoke Application Access"
+msgstr ""
+
+#: ../root/account/sso/DiscourseRegistered.js:19
+#: ../root/account/sso/DiscourseRegistered.js:20
+msgid "Account Created"
+msgstr ""
+
+#: ../root/account/sso/DiscourseRegistered.js:23
+#: ../root/account/sso/DiscourseUnconfirmedEmailAddress.js:17
+msgid ""
+"You must verify your email address before you can log in to {discourse|"
+"MetaBrainz Community Discourse}."
+msgstr ""
+
+#: ../root/account/sso/DiscourseRegistered.js:30
+msgid ""
+"An email has been sent to {addr}. Please check your mailbox and click on the "
+"link in the email to verify your email address."
+msgstr ""
+
+#: ../root/account/sso/DiscourseUnconfirmedEmailAddress.js:13
+#: ../root/account/sso/DiscourseUnconfirmedEmailAddress.js:14
+msgid "Unverified Email Address"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:47 ../root/admin/DeleteUser.js:49
+#: ../root/components/UserAccountTabs.js:111
+msgid "Delete Account"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:54
+msgid ""
+"Are you sure you want to delete all information about {e}? This cannot be "
+"undone!"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:66
+msgid "Allow the name “{editor_name}” to be reused."
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:75
+msgid "Delete {e}"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:84
+msgid ""
+"For information about the account deletion process, please read the {uri|"
+"account FAQ}."
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:92
+msgid ""
+"This will also cancel all your open edits and change all of your votes on "
+"any edits currently open to Abstain."
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:100
+msgid ""
+"Keep in mind this process might take a fairly long time if you have entered "
+"a lot of tags. If the process times out, please {contact_url|contact us}."
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:109
+msgid "Are you sure you want to delete your account? This cannot be undone!"
+msgstr ""
+
+#: ../root/admin/DeleteUser.js:120
+msgid "Delete my account"
+msgstr ""
+
+#: ../root/admin/EditBanner.js:25 ../root/layout/components/TopMenu.js:156
+msgid "Edit Banner Message"
+msgstr ""
+
+#: ../root/admin/EditBanner.js:27
+msgid "Edit banner message"
+msgstr ""
+
+#: ../root/admin/EditBanner.js:29
+msgid ""
+"This will set the banner message that is shown at the top of each page. An "
+"empty string removes the banner."
+msgstr ""
+
+#: ../root/admin/EditBanner.js:36
+msgid "Banner message"
+msgstr ""
+
+#: ../root/admin/EditUser.js:69
+msgid "Adjust User Account Flags"
+msgstr ""
+
+#: ../root/admin/EditUser.js:76 ../root/admin/PrivilegeSearch.js:63
+msgid "User permissions"
+msgstr ""
+
+#: ../root/admin/EditUser.js:79 ../root/admin/PrivilegeSearch.js:67
+msgid "Auto-editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:84 ../root/admin/PrivilegeSearch.js:72
+msgid "Transclusion editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:89 ../root/admin/PrivilegeSearch.js:77
+msgid "Relationship editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:94 ../root/admin/PrivilegeSearch.js:82
+msgid "Location editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:99 ../root/admin/PrivilegeSearch.js:87
+msgid "Banner message editor"
+msgstr ""
+
+#: ../root/admin/EditUser.js:103 ../root/admin/PrivilegeSearch.js:92
+msgid "User sanctions"
+msgstr ""
+
+#: ../root/admin/EditUser.js:106 ../root/admin/PrivilegeSearch.js:96
+msgid "Spammer"
+msgstr ""
+
+#: ../root/admin/EditUser.js:111 ../root/admin/PrivilegeSearch.js:102
+#: ../root/user/UserProfile.js:901
+msgid "Editing/voting disabled"
+msgstr ""
+
+#: ../root/admin/EditUser.js:116 ../root/admin/PrivilegeSearch.js:107
+#: ../root/user/UserProfile.js:904
+msgid "Edit notes disabled"
+msgstr ""
+
+#: ../root/admin/EditUser.js:125 ../root/admin/PrivilegeSearch.js:117
+msgid "Technical flags"
+msgstr ""
+
+#: ../root/admin/EditUser.js:133 ../root/admin/PrivilegeSearch.js:126
+msgid "No nag"
+msgstr ""
+
+#: ../root/admin/EditUser.js:137 ../root/admin/PrivilegeSearch.js:131
+msgid "Administration flags"
+msgstr ""
+
+#: ../root/admin/EditUser.js:141
+msgid "MBID submitter"
+msgstr ""
+
+#: ../root/admin/EditUser.js:148 ../root/admin/PrivilegeSearch.js:140
+msgid "Account admin"
+msgstr ""
+
+#: ../root/admin/EditUser.js:152
+msgid "Edit profile"
+msgstr ""
+
+#: ../root/admin/EditUser.js:166
+msgid "Skip verification"
+msgstr ""
+
+#: ../root/admin/EditUser.js:171 ../root/admin/components/UserList.js:31
+#: ../root/report/components/EditorList.js:74
+#: ../root/static/scripts/account/components/EditProfileForm.js:230
+msgid "Website"
+msgstr ""
+
+#: ../root/admin/EditUser.js:177 ../root/admin/components/UserList.js:35
+#: ../root/report/components/EditorList.js:84
+#: ../root/static/scripts/account/components/EditProfileForm.js:289
+#: ../root/user/UserProfile.js:397
+msgid "Bio"
+msgstr ""
+
+#: ../root/admin/EditUser.js:182
+msgid "Edit user"
+msgstr ""
+
+#: ../root/admin/EmailSearch.js:31 ../root/admin/EmailSearch.js:33
+msgid "Search users by email"
+msgstr ""
+
+#: ../root/admin/EmailSearch.js:38
+msgid "Enter a {link|POSIX regular expression}."
+msgstr ""
+
+#: ../root/admin/IpLookup.js:26 ../root/admin/IpLookup.js:28
+#: ../root/user/UserProfile.js:428
+msgid "IP lookup"
+msgstr ""
+
+#: ../root/admin/IpLookup.js:30
+msgid "IP hash:"
+msgstr ""
+
+#: ../root/admin/PrivilegeSearch.js:44 ../root/admin/PrivilegeSearch.js:46
+msgid "Search users by privileges"
+msgstr ""
+
+#: ../root/admin/PrivilegeSearch.js:50
+msgid ""
+"Select the flags you want to match. Editors which have other flags in "
+"addition to the selected ones will also be shown, unless you select “Exact "
+"match only” below."
+msgstr ""
+
+#: ../root/admin/PrivilegeSearch.js:58
+msgid "Exact match only"
+msgstr ""
+
+#: ../root/admin/PrivilegeSearch.js:135
+msgid "MBID submitter"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:30
+msgid "Disc IDs allowed"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:39
+#: ../root/edit/details/AddRelationshipAttribute.js:64
+#: ../root/edit/details/EditRelationshipAttribute.js:109
+msgid "Free text"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:81
+#: ../root/otherlookup/OtherLookupForm.js:107
+msgid "MBID"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:83
+msgid "Parent ID"
+msgstr ""
+
+#: ../root/admin/attributes/Attribute.js:116
+#: ../root/admin/attributes/Language.js:77
+#: ../root/admin/attributes/Script.js:75
+msgid "Add new attribute"
+msgstr ""
+
+#: ../root/admin/attributes/CannotRemoveAttribute.js:19
+#: ../root/admin/attributes/CannotRemoveAttribute.js:20
+msgid "Cannot Remove Attribute"
+msgstr ""
+
+#: ../root/admin/attributes/DeleteAttribute.js:26
+msgid "Are you sure you wish to remove the {name} attribute?"
+msgstr ""
+
+#: ../root/admin/attributes/DeleteAttribute.js:30
+msgid "Remove Attribute"
+msgstr ""
+
+#: ../root/admin/components/UserList.js:30
+#: ../root/report/components/EditorList.js:69 ../root/user/UserProfile.js:281
+msgid "Member since"
+msgstr ""
+
+#: ../root/admin/components/UserList.js:33
+msgid "Verified on"
+msgstr ""
+
+#: ../root/admin/components/UserList.js:34 ../root/user/UserProfile.js:294
+msgid "Last login"
+msgstr ""
+
+#: ../root/admin/components/UserList.js:52
+#: ../root/report/components/EditorList.js:57
+msgid "delete"
+msgstr ""
+
+#: ../root/admin/statistics-events/CreateStatisticsEvent.js:21
+#: ../root/admin/statistics-events/CreateStatisticsEvent.js:23
+msgid "Add a new statistics event"
+msgstr ""
+
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:21
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:22
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:45
+msgid "Remove statistics event"
+msgstr ""
+
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:37
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:47
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:29
+#: ../root/static/scripts/common/components/FingerprintTable.js:105
+msgid "Link"
+msgstr ""
+
+#: ../root/admin/statistics-events/DeleteStatisticsEvent.js:42
+msgid "Are you sure you want to remove this statistics event?"
+msgstr ""
+
+#: ../root/admin/statistics-events/EditStatisticsEvent.js:21
+msgid "Edit statistics event"
+msgstr ""
+
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:27
+msgid "Statistics event details"
+msgstr ""
+
+#: ../root/admin/statistics-events/StatisticsEventEditForm.js:53
+#: ../root/edit/ModifyNote.js:81 ../root/oauth2/OAuth2FormPost.js:44
+#: ../root/static/scripts/edit/components/InlineSubmitButton.js:23
+#: ../root/user/components/UserTagFilters.js:61
+msgid "Submit"
+msgstr ""
+
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:21
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:22
+msgid "Statistics Events"
+msgstr ""
+
+#: ../root/admin/statistics-events/StatisticsEventIndex.js:59
+msgctxt "statistics event"
+msgid "Add new event"
+msgstr ""
+
+#: ../root/admin/wikidoc/CreateWikiDoc.js:29
+#: ../root/admin/wikidoc/CreateWikiDoc.js:31
+#: ../root/admin/wikidoc/CreateWikiDoc.js:48
+msgid "Add Page"
+msgstr ""
+
+#: ../root/admin/wikidoc/CreateWikiDoc.js:36
+#: ../root/admin/wikidoc/EditWikiDoc.js:36
+msgid "Page:"
+msgstr ""
+
+#: ../root/admin/wikidoc/CreateWikiDoc.js:42
+msgid "Version:"
+msgstr ""
+
+#: ../root/admin/wikidoc/DeleteWikiDoc.js:24
+#: ../root/admin/wikidoc/DeleteWikiDoc.js:26
+msgid "Remove Page"
+msgstr ""
+
+#: ../root/admin/wikidoc/DeleteWikiDoc.js:28
+msgid ""
+"Are you sure you wish to remove the page “{page_uri|{page_name}}” from the "
+"transclusion table?"
+msgstr ""
+
+#: ../root/admin/wikidoc/DeleteWikiDoc.js:38
+#: ../root/components/ConfirmLayout.js:38 ../root/edit/DeleteNote.js:64
+msgid "Yes, I am sure"
+msgstr ""
+
+#: ../root/admin/wikidoc/EditWikiDoc.js:30
+#: ../root/admin/wikidoc/EditWikiDoc.js:32
+msgid "Update Page"
+msgstr ""
+
+#: ../root/admin/wikidoc/EditWikiDoc.js:40
+msgid "Current version:"
+msgstr ""
+
+#: ../root/admin/wikidoc/EditWikiDoc.js:45
+#: ../root/edit/details/ChangeWikiDoc.js:61
+msgid "New version:"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:41
+msgid "Page name"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:47
+msgid "Transcluded version"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:68
+msgid "Error!"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:81
+msgid "diff"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:90
+msgid "Wiki version"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:114
+msgid "View on wiki"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:149
+#: ../root/admin/wikidoc/WikiDocIndex.js:151
+msgid "Transclusion Table"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:154
+msgid ""
+"Read the {doc|WikiDocs} documentation for an overview of how transclusion "
+"works."
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:164
+msgid "Add a new entry"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:169
+msgid "View transclusion history"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:174
+msgid ""
+"Note: MediaWiki does not check to see if the version number "
+"matches the page name, it will take the version number and provide whatever "
+"page is associated with it. Make sure to double check your work when "
+"updating a page!"
+msgstr ""
+
+#: ../root/admin/wikidoc/WikiDocIndex.js:185
+msgid "There was a problem accessing the wiki API."
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:43
+#: ../root/annotation/AnnotationComparison.js:45
+#: ../root/edit/details/AddAnnotation.js:64
+msgid "Annotation comparison"
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:49
+msgid "Old annotation"
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:58
+msgid "New annotation"
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:71
+msgid ""
+"Comparing revision by {user_old} on {date_old} with revision by {user_new} "
+"on {date_new}."
+msgstr ""
+
+#: ../root/annotation/AnnotationComparison.js:87
+msgid "View annotation history."
+msgstr ""
+
+#: ../root/annotation/AnnotationHistory.js:40
+#: ../root/annotation/AnnotationHistory.js:42
+msgid "Annotation history"
+msgstr ""
+
+#: ../root/annotation/AnnotationHistory.js:54
+msgid "Compare versions"
+msgstr ""
+
+#: ../root/annotation/AnnotationHistory.js:62
+msgid "This entity has no annotation history."
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:47
+#: ../root/annotation/EditAnnotation.js:49
+#: ../root/layout/components/sidebar/AnnotationLinks.js:37
+#: ../root/static/scripts/common/components/Annotation.js:97
+msgid "Edit annotation"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:53
+msgid ""
+"Please note that any content submitted to MusicBrainz will be made available "
+"to the public under {open|open licenses}, do not submit any copyrighted text "
+"here!"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:62
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:278
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:69
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:172
+msgctxt "header"
+msgid "Preview"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:80
+#: ../root/static/scripts/common/components/Annotation.js:71
+msgid "Changelog:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:93
+msgctxt "button"
+msgid "Preview"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:98
+msgid "Annotation Formatting"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:100
+msgid "Annotations support a limited set of wiki formatting options:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:105
+msgid "Emphasis:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:107
+msgid "''italics''; '''bold'''; '''''bold italics'''''; ---- horizontal rule"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:112
+msgid "Headings:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:114
+msgid "= Title 1 =; == Title 2 ==; === Title 3 ==="
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:118
+msgid "Lists:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:120
+msgid ""
+"tab or 4 spaces and: * bullets or 1., a., A., i., I. numbered items "
+"(rendered with 1.)"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:125
+msgid "Links:"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:127
+msgid "URL; [URL]; [URL|label]; [entity-type:MBID|label]"
+msgstr ""
+
+#: ../root/annotation/EditAnnotation.js:135
+msgid ""
+"Because square brackets [] are used to create hyperlinks, you have to use "
+"the encoded html equivalents ([
for [) and (&"
+"#93;
for ]) if you want them not be converted into hyperlinks. "
+"Example: If you want to use [unknown] in the annotation, you'll have to "
+"write [unknown]
then it will appear the way you "
+"intended it to show."
+msgstr ""
+
+#: ../root/area/AreaArtists.js:32 ../root/area/AreaArtists.js:33
+#: ../root/components/EntityTabs.js:23
+#: ../root/components/TagEntitiesList.js:162
+#: ../root/components/list/EventList.js:85
+#: ../root/instrument/InstrumentArtists.js:37
+#: ../root/instrument/InstrumentArtists.js:39 ../root/iswc/Index.js:59
+#: ../root/report/IswcsWithManyWorks.js:52 ../root/report/ReportsIndex.js:55
+#: ../root/report/components/EventList.js:69
+#: ../root/search/components/EventResults.js:77
+#: ../root/search/components/WorkResults.js:56
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:896
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:555
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:15
+#: ../root/tag/TagLayout.js:24 ../root/utility/tableColumns.js:802
+msgid "Artists"
+msgstr ""
+
+#: ../root/area/AreaArtists.js:52 ../root/instrument/InstrumentArtists.js:59
+#: ../root/report/DuplicateArtists.js:127
+msgid "Add selected artists for merging"
+msgstr ""
+
+#: ../root/area/AreaArtists.js:60
+msgid "This area is not currently associated with any artists."
+msgstr ""
+
+#: ../root/area/AreaEvents.js:32 ../root/area/AreaEvents.js:33
+#: ../root/artist/ArtistEvents.js:41 ../root/artist/ArtistEvents.js:42
+#: ../root/components/EntityTabs.js:24
+#: ../root/components/TagEntitiesList.js:166 ../root/place/PlaceEvents.js:32
+#: ../root/place/PlaceEvents.js:33 ../root/report/ReportsIndex.js:138
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:19
+#: ../root/tag/TagLayout.js:34
+msgid "Events"
+msgstr ""
+
+#: ../root/area/AreaEvents.js:54 ../root/artist/ArtistEvents.js:69
+#: ../root/place/PlaceEvents.js:53
+msgid "Add selected events for merging"
+msgstr ""
+
+#: ../root/area/AreaEvents.js:62
+msgid "This area is not currently associated with any events."
+msgstr ""
+
+#: ../root/area/AreaHeader.js:29
+msgid "{area_type} in {parent_areas}"
+msgstr ""
+
+#: ../root/area/AreaLabels.js:32 ../root/area/AreaLabels.js:33
+#: ../root/components/EntityTabs.js:26
+#: ../root/components/TagEntitiesList.js:174
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:221
+#: ../root/report/ReportsIndex.js:174
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:25
+#: ../root/tag/TagLayout.js:29
+msgid "Labels"
+msgstr ""
+
+#: ../root/area/AreaLabels.js:51
+msgid "Add selected labels for merging"
+msgstr ""
+
+#: ../root/area/AreaLabels.js:59
+msgid "This area is not currently associated with any labels."
+msgstr ""
+
+#: ../root/area/AreaMerge.js:32
+msgid ""
+"You are about to merge all these areas into a single one. Please select the "
+"area all others should be merged into:"
+msgstr ""
+
+#: ../root/area/AreaPlaces.js:36 ../root/area/AreaPlaces.js:37
+#: ../root/components/EntityTabs.js:29
+#: ../root/components/TagEntitiesList.js:178 ../root/report/ReportsIndex.js:542
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:27
+#: ../root/tag/TagLayout.js:30
+msgid "Places"
+msgstr ""
+
+#: ../root/area/AreaPlaces.js:49 ../root/place/PlaceMap.js:40
+msgid ""
+"A map cannot be shown because no maps service access token has been set for "
+"this server."
+msgstr ""
+
+#: ../root/area/AreaPlaces.js:69
+msgid "Add selected places for merging"
+msgstr ""
+
+#: ../root/area/AreaPlaces.js:78
+msgid "This area is not currently associated with any places."
+msgstr ""
+
+#: ../root/area/AreaRecordings.js:29
+msgid "This area has no relationships to any recordings."
+msgstr ""
+
+#: ../root/area/AreaRecordings.js:31 ../root/area/AreaReleases.js:70
+#: ../root/area/AreaWorks.js:31 ../root/artist/ArtistRelationships.js:30
+#: ../root/components/EntityTabs.js:91
+#: ../root/edit/details/historic/AddRelationship.js:20
+#: ../root/edit/details/historic/RemoveRelationship.js:22
+#: ../root/label/LabelRelationships.js:30
+#: ../root/relationship/RelationshipsHeader.js:37
+#: ../root/static/scripts/common/components/Relationships.js:92
+#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:631
+msgid "Relationships"
+msgstr ""
+
+#: ../root/area/AreaReleases.js:35 ../root/area/AreaReleases.js:38
+#: ../root/artist/ArtistReleases.js:46 ../root/artist/ArtistReleases.js:47
+#: ../root/artist_credit/ArtistCreditIndex.js:135
+#: ../root/artist_credit/ArtistCreditLayout.js:27
+#: ../root/components/EntityTabs.js:31
+#: ../root/components/TagEntitiesList.js:186
+#: ../root/components/list/ReleaseGroupList.js:110
+#: ../root/edit/components/HistoricReleaseList.js:49
+#: ../root/edit/details/SetTrackLengths.js:47
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:28
+#: ../root/edit/details/historic/RemoveReleases.js:20
+#: ../root/instrument/InstrumentReleases.js:37
+#: ../root/instrument/InstrumentReleases.js:39 ../root/label/LabelIndex.js:81
+#: ../root/report/ReportsIndex.js:250
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:31
+#: ../root/tag/TagLayout.js:26
+msgid "Releases"
+msgstr ""
+
+#: ../root/area/AreaReleases.js:52 ../root/artist/ArtistReleases.js:64
+#: ../root/instrument/InstrumentReleases.js:58 ../root/label/LabelIndex.js:96
+#: ../root/release_group/ReleaseGroupIndex.js:191
+msgid "Add selected releases for merging"
+msgstr ""
+
+#: ../root/area/AreaReleases.js:60
+msgid "This area is not currently associated with any releases."
+msgstr ""
+
+#: ../root/area/AreaReleases.js:68
+msgid "This area has no relationships to any releases."
+msgstr ""
+
+#: ../root/area/AreaUsers.js:26 ../root/area/AreaUsers.js:27
+#: ../root/components/EntityTabs.js:32
+msgid "Users"
+msgstr ""
+
+#: ../root/area/AreaUsers.js:31
+msgid "There is currently {num} user in this area."
+msgid_plural "There are currently {num} users in this area."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/area/AreaUsers.js:37
+msgid "There are currently no users in this area."
+msgstr ""
+
+#: ../root/area/AreaWorks.js:25 ../root/artist/ArtistWorks.js:41
+#: ../root/artist/ArtistWorks.js:42 ../root/components/EntityTabs.js:33
+#: ../root/components/TagEntitiesList.js:198 ../root/report/ReportsIndex.js:568
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:39
+#: ../root/tag/TagLayout.js:28
+msgid "Works"
+msgstr ""
+
+#: ../root/area/AreaWorks.js:29
+msgid "This area has no relationships to any works."
+msgstr ""
+
+#: ../root/area/DeleteArea.js:35 ../root/area/DeleteArea.js:37
+msgid "Remove Area"
+msgstr ""
+
+#: ../root/area/DeleteArea.js:41
+msgid ""
+"This area cannot be removed because it is one of the areas that can be used "
+"as a release country."
+msgstr ""
+
+#: ../root/area/DeleteArea.js:55
+msgid ""
+"This area cannot be removed because it is still in use (in artists, labels, "
+"places, relationships or open edits)."
+msgstr ""
+
+#: ../root/artist/ArtistEvents.js:78
+msgid "No events found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistEvents.js:79
+msgid "This artist is not currently associated with any events."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:92
+msgid "Show official release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:99
+msgid "Show all release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:106
+msgid "Show official various artist release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:113
+msgid "Show all various artist release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:142
+msgid "This artist only has unofficial release groups by various artists."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:148
+msgid "Showing all release groups for various artists"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:149
+msgid "This artist does not have any various artists release groups"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:158
+msgid "This artist only has release groups by various artists."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:162
+msgid "Showing official release groups for various artists"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:170
+msgid "This artist only has unofficial release groups."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:174
+msgid "Showing all release groups by this artist"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:185
+msgid "Showing official release groups by this artist"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:239
+msgid "Performance name of"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:247
+msgid "Legal name"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:253 ../root/label/LabelIndex.js:64
+msgid "Previously known as"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:260 ../root/label/LabelIndex.js:71
+msgid "Renamed to"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:268
+msgid "Also performs as"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:282
+msgid "Discography"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:323 ../root/artist/ArtistRecordings.js:169
+#: ../root/instrument/InstrumentRecordings.js:59 ../root/isrc/Index.js:99
+msgid "Add selected recordings for merging"
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:332
+msgid "This artist has no release groups, only standalone recordings."
+msgstr ""
+
+#: ../root/artist/ArtistIndex.js:336
+msgid "No results found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistMerge.js:34
+msgid ""
+"You are about to merge all these artists into a single one. Please select "
+"the artist all others should be merged into:"
+msgstr ""
+
+#: ../root/artist/ArtistMerge.js:50
+msgid "You should only use the checkbox above to fix errors (such as typos)."
+msgstr ""
+
+#: ../root/artist/ArtistMerge.js:56
+msgid ""
+"If a name appears on the cover of a release, don’t check the box: the "
+"artists will still be combined if you don’t, but the {doc_acs|artist "
+"credits} will be kept as they are now."
+msgstr ""
+
+#: ../root/artist/ArtistMerge.js:65
+msgid ""
+"Update matching artist and relationship credits to use the target artist’s "
+"name"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:55
+msgid "Show all recordings"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:60
+msgid "Show only standalone recordings"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:65
+msgid "Show only videos"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:73
+msgid "Showing only standalone recordings"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:89
+msgid "Showing only videos"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:105
+msgid "Showing all recordings"
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:176
+msgid "No recordings found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistRecordings.js:177
+#: ../root/instrument/InstrumentRecordings.js:67
+msgid "No recordings found."
+msgstr ""
+
+#: ../root/artist/ArtistRelationships.js:37
+#: ../root/label/LabelRelationships.js:37
+msgid "Appearances"
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:73
+msgid "No releases found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:74
+#: ../root/instrument/InstrumentReleases.js:66
+#: ../root/release_group/ReleaseGroupIndex.js:197
+msgid "No releases found."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:80
+msgid ""
+"Showing Various Artist releases. {show_subset|Show releases by this artist "
+"instead}."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:91
+msgid "This search only found releases by various artists."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:93
+msgid "This artist only has releases by various artists."
+msgstr ""
+
+#: ../root/artist/ArtistReleases.js:98
+msgid ""
+"Showing releases by this artist. {show_all|Show Various Artist releases "
+"instead}."
+msgstr ""
+
+#: ../root/artist/ArtistWorks.js:65 ../root/iswc/Index.js:79
+msgid "Add selected works for merging"
+msgstr ""
+
+#: ../root/artist/ArtistWorks.js:74
+msgid "No works found that match this search."
+msgstr ""
+
+#: ../root/artist/ArtistWorks.js:75
+msgid "This artist is not currently associated with any works."
+msgstr ""
+
+#: ../root/artist/CannotSplit.js:25
+msgid "This artist is already empty and is awaiting automatic deletion."
+msgstr ""
+
+#: ../root/artist/CannotSplit.js:28
+msgid ""
+"This artist has relationships other than collaboration relationships, and "
+"cannot be split until these are removed. {relationships|View all "
+"relationships}."
+msgstr ""
+
+#: ../root/artist/SpecialPurpose.js:23 ../root/label/SpecialPurpose.js:23
+msgid "Cannot edit"
+msgstr ""
+
+#: ../root/artist/SpecialPurpose.js:25
+msgid "You may not edit special purpose artists"
+msgstr ""
+
+#: ../root/artist/SpecialPurpose.js:27
+msgid ""
+"The artist you are trying to edit is a special purpose artist, and you may "
+"not make direct changes to this data."
+msgstr ""
+
+#: ../root/artist/utils.js:13
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:65
+msgid "Born in:"
+msgstr ""
+
+#: ../root/artist/utils.js:17
+msgctxt "group artist"
+msgid "Founded in"
+msgstr ""
+
+#: ../root/artist/utils.js:19
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:55
+msgid "Begin area:"
+msgstr ""
+
+#: ../root/artist/utils.js:26
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:61
+msgid "Born:"
+msgstr ""
+
+#: ../root/artist/utils.js:30
+msgctxt "group artist"
+msgid "Founded"
+msgstr ""
+
+#: ../root/artist/utils.js:32
+msgctxt "character artist"
+msgid "Created"
+msgstr ""
+
+#: ../root/artist/utils.js:41
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:65
+msgid "Died in:"
+msgstr ""
+
+#: ../root/artist/utils.js:45
+msgctxt "group artist"
+msgid "Dissolved in"
+msgstr ""
+
+#: ../root/artist/utils.js:47
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:55
+msgid "End area:"
+msgstr ""
+
+#: ../root/artist/utils.js:57
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:62
+msgid "Died:"
+msgstr ""
+
+#: ../root/artist/utils.js:62
+msgctxt "group artist"
+msgid "Dissolving"
+msgstr ""
+
+#: ../root/artist/utils.js:63
+msgctxt "group artist"
+msgid "Dissolved"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:93
+msgid "This artist credit is composed of the following artists:"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:103
+msgid "credited as “{credit}”"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:111
+msgid "Uses"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:124
+#: ../root/artist_credit/ArtistCreditLayout.js:26
+#: ../root/components/TagEntitiesList.js:182
+#: ../root/components/list/RecordingList.js:62
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:33
+#: ../root/tag/TagLayout.js:25
+msgid "Release Groups"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:126
+#: ../root/components/TagEntitiesList.js:183
+msgid "See all {num} release groups"
+msgid_plural "See all {num} release groups"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:136
+#: ../root/components/TagEntitiesList.js:187
+msgid "See all {num} releases"
+msgid_plural "See all {num} releases"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:147
+#: ../root/components/TagEntitiesList.js:191
+msgid "See all {num} recordings"
+msgid_plural "See all {num} recordings"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/ArtistCreditIndex.js:158
+msgid "See all {num} tracks"
+msgid_plural "See all {num} tracks"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/ArtistCreditLayout.js:25
+#: ../root/collection/CollectionHeader.js:77
+#: ../root/components/EntityTabs.js:79 ../root/tag/TagLayout.js:23
+msgid "Overview"
+msgstr ""
+
+#: ../root/artist_credit/ArtistCreditLayout.js:43
+#: ../root/artist_credit/ArtistCreditLayout.js:47
+#: ../root/artist_credit/ArtistCreditLayout.js:57
+msgid "Artist credit “{artist_credit}”"
+msgstr ""
+
+#: ../root/artist_credit/EntityList.js:22 ../root/tag/EntityList.js:76
+msgid "{num} recording found"
+msgid_plural "{num} recordings found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/EntityList.js:23 ../root/tag/EntityList.js:77
+msgid "{num} release found"
+msgid_plural "{num} releases found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/EntityList.js:25 ../root/tag/EntityList.js:79
+msgid "{num} release group found"
+msgid_plural "{num} release groups found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/EntityList.js:28
+msgid "{num} track found"
+msgid_plural "{num} tracks found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/artist_credit/EntityList.js:32
+msgid "No recordings with this artist credit were found."
+msgstr ""
+
+#: ../root/artist_credit/EntityList.js:33
+msgid "No releases with this artist credit were found."
+msgstr ""
+
+#: ../root/artist_credit/EntityList.js:34
+msgid "No release groups with this artist credit were found."
+msgstr ""
+
+#: ../root/artist_credit/EntityList.js:35
+msgid "No tracks with this artist credit were found."
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:30 ../root/cdstub/BrowseCDStubs.js:31
+#: ../root/layout/components/BottomMenu.js:231
+msgid "Top CD Stubs"
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:38
+#: ../root/layout/components/sidebar/CDStubSidebar.js:62
+msgid "Lookup count"
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:39
+#: ../root/layout/components/sidebar/CDStubSidebar.js:66
+msgid "Modify count"
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:49 ../root/cdstub/CDStubHeader.js:22
+#: ../root/cdstub/CDStubLayout.js:29
+#: ../root/layout/components/sidebar/CDStubSidebar.js:27
+msgid "Various Artists"
+msgstr ""
+
+#: ../root/cdstub/BrowseCDStubs.js:56
+msgid "Added {add}, last modified {lastmod}"
+msgstr ""
+
+#: ../root/cdstub/CDStubNotFound.js:19
+msgid "CD Stub Not Found"
+msgstr ""
+
+#: ../root/cdstub/CDStubNotFound.js:22
+msgid ""
+"Sorry, {discid}
does not match a CD stub. You can try "
+"{search_url|searching for it} instead."
+msgstr ""
+
+#: ../root/cdstub/DiscIdNotValid.js:19
+msgid "Invalid Disc ID"
+msgstr ""
+
+#: ../root/cdstub/DiscIdNotValid.js:22
+msgid "Sorry, {discid}
is not a valid disc ID."
+msgstr ""
+
+#: ../root/cdstub/ImportCDStub.js:38
+msgid "Please search for the artist you wish to add a new release for:"
+msgstr ""
+
+#: ../root/cdstub/ImportCDStub.js:100
+msgid "Import CD stub"
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:53
+msgid ""
+"Are you sure that you wish to attach the disc ID {discid}
to "
+"{format} {pos} of {release} by {artist}?"
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:80
+msgid "Track length comparison"
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:84
+#: ../root/cdtoc/SetTracklistDurations.js:67
+msgid "This edit would only make subsecond changes to track lengths."
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:88
+msgid "CD TOC track lengths"
+msgstr ""
+
+#: ../root/cdtoc/AttachCDTocConfirmation.js:90
+msgid "Medium track lengths"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:23
+msgid "CD TOC details"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:36
+msgid "FreeDB:"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:48
+msgid "Track details:"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:52
+#: ../root/edit/details/historic/RemoveTrack.js:23
+#: ../root/search/components/RecordingResults.js:147
+#: ../root/taglookup/Form.js:40 ../root/utility/tableColumns.js:794
+msgid "Track"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:53
+msgid "Start"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:55 ../root/search/components/AreaResults.js:67
+#: ../root/search/components/ArtistResults.js:58
+#: ../root/search/components/LabelResults.js:71
+#: ../root/search/components/PlaceResults.js:68
+#: ../root/utility/tableColumns.js:304 ../root/utility/tableColumns.js:309
+msgid "End"
+msgstr ""
+
+#: ../root/cdtoc/CDTocInfo.js:59 ../root/cdtoc/CDTocInfo.js:61
+#: ../root/cdtoc/CDTocInfo.js:63
+msgid "Sectors"
+msgstr ""
+
+#: ../root/cdtoc/RemoveDiscId.js:32 ../root/cdtoc/RemoveDiscId.js:33
+msgid "Remove Disc ID"
+msgstr ""
+
+#: ../root/cdtoc/RemoveDiscId.js:38
+msgid ""
+"Are you sure you want to remove the disc ID {discid}
from the "
+"release {release} by {artist}?"
+msgstr ""
+
+#: ../root/cdtoc/RemoveDiscId.js:49
+msgid ""
+"You need to be certain that this disc ID was added to this release "
+"erroneously, since a release can have multiple valid disc IDs, and each disc "
+"ID can belong to more than one release. For more in-depth information about "
+"this topic, please see our {doc|CD submission guide}."
+msgstr ""
+
+#: ../root/cdtoc/SelectArtistForCDToc.js:37
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:128
+msgid "Search for an artist"
+msgstr ""
+
+#: ../root/cdtoc/SelectArtistForCDToc.js:67
+msgid ""
+"Click the radio button to select the appropriate artist, or click the "
+"artist’s name to get more info."
+msgstr ""
+
+#: ../root/cdtoc/SelectArtistForCDToc.js:113
+msgid ""
+"If you don't see the artist you are looking for, you can still add a new "
+"release. This will allow you to add this artist and a release at the same "
+"time"
+msgstr ""
+
+#: ../root/cdtoc/SetTracklistDurations.js:46
+#: ../root/cdtoc/SetTracklistDurations.js:47
+msgid "Set Tracklist Durations"
+msgstr ""
+
+#: ../root/cdtoc/SetTracklistDurations.js:50
+msgid ""
+"You are about to enter an edit that will change the durations of tracks to "
+"match that of the below disc ID."
+msgstr ""
+
+#: ../root/cdtoc/SetTracklistDurations.js:63 ../root/edit/EditIndex.js:53
+msgid "Changes"
+msgstr ""
+
+#: ../root/cdtoc/SetTracklistDurations.js:78
+msgid "The medium you are altering is part of the following release: {release}"
+msgstr ""
+
+#: ../root/collection/CollectionHeader.js:37
+msgid "Public collection by {owner}"
+msgstr ""
+
+#: ../root/collection/CollectionHeader.js:40
+msgid "Private collection by {owner}"
+msgstr ""
+
+#: ../root/collection/CollectionHeader.js:55
+msgid "See all of your collections"
+msgstr ""
+
+#: ../root/collection/CollectionHeader.js:57
+msgid "See all of {editor}'s public collections"
+msgstr ""
+
+#: ../root/collection/CollectionIndex.js:194 ../root/user/UserProfile.js:343
+#: ../root/user/UserProfile.js:404
+msgid ""
+"This content is hidden to prevent spam. To view it, please {url|log in}."
+msgstr ""
+
+#: ../root/collection/CollectionIndex.js:205
+#: ../root/collection/CollectionMerge.js:70
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:220
+#: ../root/user/UserCollections.js:117
+msgid "Collaborators"
+msgstr ""
+
+#: ../root/collection/CollectionIndex.js:219
+msgid "Remove selected items from collection"
+msgstr ""
+
+#: ../root/collection/CollectionIndex.js:224
+msgid "This collection is empty."
+msgstr ""
+
+#: ../root/collection/CollectionLayout.js:34
+msgid "Collection “{collection}”"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:50
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:52
+#: ../root/user/UserCollections.js:103
+msgid "Collection"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:58
+msgid "Entity Type"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:63
+msgid "Entities"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:77 ../root/user/UserCollections.js:76
+msgid "Public"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:78 ../root/user/UserCollections.js:76
+msgid "Private"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:79
+#: ../root/static/scripts/account/components/PreferencesForm.js:190
+#: ../root/user/UserCollections.js:128
+msgid "Privacy"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:116
+#: ../root/collection/CollectionMerge.js:118
+msgid "Merge collections"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:120
+msgid ""
+"You are about to merge all these collections into a single one. Please "
+"select the collection all others should be merged into:"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:129
+msgid ""
+"Warning: These collections are for different entity types. "
+"Please remove some collections from the merge queue until you only have "
+"collections for the same entity type."
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:136
+msgid ""
+"Warning: These collections are for different entity types. "
+"Only collections for the same entity type can be merged."
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:148
+msgid ""
+"Warning: Some of these collections are public and some are "
+"private. Keep in mind the privacy setting of the destination collection will "
+"apply. If you merge your private collections into a public one, the final "
+"result will be visible to other users."
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:163
+msgid "The merged collection will have the following collaborators:"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:174
+msgid ""
+"This process cannot be reverted. Are you sure you want to enter a merge?"
+msgstr ""
+
+#: ../root/collection/CollectionMerge.js:184
+msgid "Confirm"
+msgstr ""
+
+#: ../root/collection/CreateCollection.js:28
+#: ../root/collection/CreateCollection.js:31
+#: ../root/user/UserCollections.js:226
+msgid "Add a new collection"
+msgstr ""
+
+#: ../root/collection/DeleteCollection.js:28
+#: ../root/collection/DeleteCollection.js:34
+msgid "Remove collection"
+msgstr ""
+
+#: ../root/collection/DeleteCollection.js:30
+msgid "Are you sure you want to remove the collection {collection}?"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTable.js:22
+#: ../root/edit/details/AddRemoveAlias.js:57
+#: ../root/edit/details/EditAlias.js:63 ../root/edit/details/EditAlias.js:81
+#: ../root/edit/details/historic/RemoveLabelAlias.js:17
+msgid "Alias"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTable.js:24
+msgid "Begin Date"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTable.js:25
+msgid "End Date"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTable.js:27
+#: ../root/edit/details/AddRemoveAlias.js:71
+#: ../root/edit/details/EditAlias.js:93
+#: ../root/static/scripts/alias/AliasEditForm.js:312
+msgid "Locale"
+msgstr ""
+
+#: ../root/components/Aliases/AliasTableRow.js:51
+msgid "primary"
+msgstr ""
+
+#: ../root/components/Aliases/ArtistCreditList.js:33
+#: ../root/report/ReportsIndex.js:116
+msgid "Artist credits"
+msgstr ""
+
+#: ../root/components/Aliases/ArtistCreditList.js:36
+msgid ""
+"This is a list of all the different ways {artist} is credited in the "
+"database. View the {doc|artist credit documentation} for more details."
+msgstr ""
+
+#: ../root/components/Aliases/ArtistCreditList.js:69
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:139
+msgid "see uses"
+msgstr ""
+
+#: ../root/components/Aliases/index.js:49 ../root/components/EntityTabs.js:127
+#: ../root/entity/Aliases.js:32
+msgid "Aliases"
+msgstr ""
+
+#: ../root/components/Aliases/index.js:52
+#: ../root/static/scripts/alias/AliasEditForm.js:277
+msgid ""
+"An alias is an alternate name for an entity. They typically contain common "
+"misspellings or variations of the name and are also used to improve search "
+"results. View the {doc|alias documentation} for more details."
+msgstr ""
+
+#: ../root/components/Aliases/index.js:67
+msgid "{entity} has no aliases."
+msgstr ""
+
+#: ../root/components/Aliases/index.js:75
+msgid "Add a new alias"
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:12
+msgid ""
+"This artist has no relationships, recordings, releases or release groups, "
+"and will be removed automatically in the next few days. If this is not "
+"intended, please add more data to this artist."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:18
+msgid ""
+"This event has no relationships and will be removed automatically in the "
+"next few days. If this is not intended, please add more data to this event."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:23
+msgid ""
+"This label has no relationships or releases and will be removed "
+"automatically in the next few days. If this is not intended, please add more "
+"data to this label."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:28
+msgid ""
+"This place has no relationships and will be removed automatically in the "
+"next few days. If this is not intended, please add more data to this place."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:33
+msgid ""
+"This release group has no relationships or releases associated, and will be "
+"removed automatically in the next few days. If this is not intended, please "
+"add more data to this release group."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:38
+msgid ""
+"This series has no relationships and will be removed automatically in the "
+"next few days. If this is not intended, please add more data to this series."
+msgstr ""
+
+#: ../root/components/CleanupBanner.js:43
+msgid ""
+"This work has no relationships and will be removed automatically in the next "
+"few days. If this is not intended, please add relationships to this work."
+msgstr ""
+
+#: ../root/components/CritiqueBrainzLinks.js:43
+msgid "An error occurred when loading reviews."
+msgstr ""
+
+#: ../root/components/CritiqueBrainzLinks.js:47
+msgid ""
+"No one has reviewed {entity} yet. Be the first to {write_link|write a "
+"review}."
+msgstr ""
+
+#: ../root/components/CritiqueBrainzLinks.js:56
+msgid ""
+"There’s {reviews_link|{review_count} review} on CritiqueBrainz. You can also "
+"{write_link|write your own}."
+msgid_plural ""
+"There are {reviews_link|{review_count} reviews} on CritiqueBrainz. You can "
+"also {write_link|write your own}."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/EntityDeletionHelp.js:24
+msgid "Are you sure you wish to remove {entity} from MusicBrainz?"
+msgstr ""
+
+#: ../root/components/EntityDeletionHelp.js:30
+msgid ""
+"If it’s a duplicate, {doc_merge|you should probably merge it instead}. If it "
+"just has some small errors, it’s usually better to just fix those."
+msgstr ""
+
+#: ../root/components/EntityTabs.js:25
+#: ../root/recording/RecordingFingerprints.js:25
+msgid "Fingerprints"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:27 ../root/place/PlaceMap.js:30
+msgid "Map"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:28 ../root/place/PlacePerformances.js:28
+#: ../root/place/PlacePerformances.js:35
+msgid "Performances"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:101
+msgid "Disc IDs ({num})"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:116
+msgid "Cover Art ({num})"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:131
+#: ../root/components/UserAccountTabs.js:64 ../root/entity/Tags.js:35
+#: ../root/layout/components/sidebar/SidebarTags.js:78
+#: ../root/static/scripts/common/components/TagEditor.js:665
+#: ../root/tag/TagCloud.js:102 ../root/tag/TagCloud.js:104
+#: ../root/user/UserTagList.js:61
+msgid "Tags"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:140 ../root/entity/Ratings.js:46
+#: ../root/entity/Ratings.js:90
+#: ../root/static/scripts/edit/externalLinks.js:732
+msgid "Reviews"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:141
+#: ../root/components/UserAccountTabs.js:68 ../root/entity/Ratings.js:50
+#: ../root/user/UserProfile.js:844 ../root/user/UserRatingList.js:48
+#: ../root/user/UserRatingList.js:82
+msgid "Ratings"
+msgstr ""
+
+#: ../root/components/EntityTabs.js:159
+msgid "Edit Relationships"
+msgstr ""
+
+#: ../root/components/InstrumentRelTypes.js:32
+msgid "as “{credit}”"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:141
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:283
+msgid "See all {num} relationships"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:335
+msgid "Credited As"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:352
+msgid "“{link_phrase}” relationships"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:354
+msgid "Invalid relationship type"
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:365
+msgid "No relationships of the selected type were found."
+msgstr ""
+
+#: ../root/components/RelationshipsTable.js:366
+msgid "The provided relationship type ID is not valid."
+msgstr ""
+
+#: ../root/components/ReleaseLanguageScript.js:24
+#: ../root/components/ReleaseLanguageScript.js:30
+#: ../root/components/list/ReleaseList.js:105
+#: ../root/edit/details/MergeReleases.js:58 ../root/release/CoverArt.js:92
+#: ../root/release_group/ReleaseGroupIndex.js:94
+#: ../root/search/components/ReleaseResults.js:62
+#: ../root/static/scripts/common/components/ReleaseEvents.js:54
+#: ../root/static/scripts/common/components/ReleaseEvents.js:71
+#: ../root/static/scripts/release-editor/duplicates.js:144
+msgctxt "missing data"
+msgid "-"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:125
+msgid "Entities where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:129
+msgid "Entities {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:133
+msgid "Entities tagged as “{tag}”"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:144
+msgid "{num} entity found"
+msgid_plural "{num} entities found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:158
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:13
+#: ../root/tag/TagLayout.js:31
+msgid "Areas"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:159
+msgid "See all {num} areas"
+msgid_plural "See all {num} areas"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:163
+msgid "See all {num} artists"
+msgid_plural "See all {num} artists"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:167
+msgid "See all {num} events"
+msgid_plural "See all {num} events"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:170 ../root/report/ReportsIndex.js:159
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:23
+#: ../root/tag/TagLayout.js:32
+msgid "Instruments"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:171
+msgid "See all {num} instruments"
+msgid_plural "See all {num} instruments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:175
+msgid "See all {num} labels"
+msgid_plural "See all {num} labels"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:179
+msgid "See all {num} places"
+msgid_plural "See all {num} places"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:194
+#: ../root/edit/details/AddSeries.js:25 ../root/edit/details/EditSeries.js:34
+#: ../root/report/ReportsIndex.js:559
+#: ../root/report/components/SeriesList.js:47
+msgid "Series"
+msgstr ""
+
+#: ../root/components/TagEntitiesList.js:195
+msgid "See all {num} series"
+msgid_plural "See all {num} series"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/TagEntitiesList.js:199
+msgid "See all {num} works"
+msgid_plural "See all {num} works"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/UserAccountLayout.js:62
+#: ../root/components/UserAccountLayout.js:63
+msgid "Editor “{user}”"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:28
+#: ../root/layout/components/TopMenu.js:48
+msgid "Profile"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:41
+#: ../root/layout/components/TopMenu.js:55
+#: ../root/layout/components/sidebar/CollectionSidebar.js:96
+#: ../root/layout/components/sidebar/SubscriptionLinks.js:32
+msgid "Subscriptions"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:51 ../root/entity/Subscribers.js:51
+#: ../root/entity/Subscribers.js:53
+#: ../root/layout/components/sidebar/CollectionSidebar.js:125
+#: ../root/layout/components/sidebar/SubscriptionLinks.js:58
+#: ../root/user/UserProfile.js:353
+msgid "Subscribers"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:57 ../root/entity/Collections.js:33
+#: ../root/entity/Collections.js:35
+#: ../root/layout/components/sidebar/CollectionLinks.js:48
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:17
+#: ../root/user/UserCollections.js:180
+msgid "Collections"
+msgstr ""
+
+#: ../root/components/UserAccountTabs.js:102
+msgid "Edit User"
+msgstr ""
+
+#: ../root/components/VotingPeriod.js:40
+msgid ""
+"Closes in {num} day"
+msgid_plural ""
+"Closes in {num} days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/VotingPeriod.js:49
+msgid ""
+"Closes in {num} hour"
+msgid_plural ""
+"Closes in {num} hours"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/VotingPeriod.js:58
+msgid ""
+"Closes in {num} minute"
+msgid_plural ""
+"Closes in {num} minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/components/VotingPeriod.js:66
+msgid "About to close"
+msgstr ""
+
+#: ../root/components/list/ArtistList.js:73
+#: ../root/search/components/ArtistResults.js:52
+msgid "Sort Name"
+msgstr ""
+
+#: ../root/components/list/EventList.js:109
+#: ../root/static/scripts/common/components/FilterForm.js:149
+msgid "Role"
+msgstr ""
+
+#: ../root/components/list/LabelList.js:68
+#: ../root/search/components/AreaResults.js:65
+#: ../root/search/components/LabelResults.js:68
+msgid "Code"
+msgstr ""
+
+#: ../root/components/list/ReleaseGroupList.js:166
+msgid "Unspecified type"
+msgstr ""
+
+#: ../root/components/list/ReleaseList.js:95
+#: ../root/edit/details/MergeReleases.js:53
+#: ../root/release_group/ReleaseGroupIndex.js:89
+#: ../root/search/components/ReleaseResults.js:57
+#: ../root/static/scripts/release-editor/duplicates.js:142
+msgid "[missing media]"
+msgstr ""
+
+#: ../root/components/list/WorkList.js:66 ../root/iswc/Index.js:58
+#: ../root/report/IswcsWithManyWorks.js:51
+#: ../root/report/components/WorkList.js:55
+#: ../root/search/components/WorkResults.js:55
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:895
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:554
+msgid "Writers"
+msgstr ""
+
+#: ../root/constants.js:22
+msgid "View and modify your private collections"
+msgstr ""
+
+#: ../root/constants.js:23
+msgid "View your email address"
+msgstr ""
+
+#: ../root/constants.js:24
+msgid "View your public account information"
+msgstr ""
+
+#: ../root/constants.js:25
+msgid "View and modify your private ratings"
+msgstr ""
+
+#: ../root/constants.js:26
+msgid "Submit new barcodes to the database"
+msgstr ""
+
+#: ../root/constants.js:27
+msgid "Submit new ISRCs to the database"
+msgstr ""
+
+#: ../root/constants.js:28
+msgid "View and modify your private tags"
+msgstr ""
+
+#: ../root/doc/DocError.js:32 ../root/doc/DocError.js:36
+#: ../root/main/error/Error404.js:32 ../root/main/error/MirrorError404.js:13
+msgid "Page Not Found"
+msgstr ""
+
+#: ../root/doc/DocError.js:40
+msgid "Sorry, “{id}” is not a valid documentation page."
+msgstr ""
+
+#: ../root/doc/DocError.js:46 ../root/main/error/Error400.js:37
+#: ../root/main/error/Error403.js:29 ../root/main/error/Error404.js:46
+msgid "Looking for help? Check out our {doc|documentation} or {faq|FAQ}."
+msgstr ""
+
+#: ../root/doc/DocError.js:55
+msgid ""
+"Found a broken link on our site? Please let us know by {report|reporting a "
+"bug}."
+msgstr ""
+
+#: ../root/doc/DocPage.js:80
+msgid ""
+"This page has not been reviewed by our documentation team ({more_info|more "
+"info})."
+msgstr ""
+
+#: ../root/doc/DocPage.js:90
+msgid "This page is {doc|transcluded} from revision {version} of {title}."
+msgstr ""
+
+#: ../root/doc/DocPage.js:98
+msgid "This page is {doc|transcluded} from {title}."
+msgstr ""
+
+#: ../root/doc/components/DocSearchBox.js:18
+msgid "Search the documentation..."
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:28 ../root/edit/CancelEdit.js:29
+msgid "Cancel Edit"
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:32
+msgid "Are you sure you wish to cancel edit #{n}? This cannot be undone!"
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:42 ../root/edit/EditIndex.js:56
+#: ../root/edit/components/ListEdit.js:51
+#: ../root/edit/details/historic/RemoveRelationship.js:35
+msgid "An error occurred while loading this edit."
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:48
+msgid ""
+"You may enter an edit note while cancelling this edit. This can be useful to "
+"point editors to another edit."
+msgstr ""
+
+#: ../root/edit/CancelEdit.js:56 ../root/edit/components/EditHeader.js:185
+#: ../root/edit/components/EditSummary.js:76
+msgid "Cancel edit"
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:24
+msgid "The edit has been cancelled."
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:26 ../root/edit/CannotCancelEdit.js:32
+msgid "The edit has already been closed."
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:29
+msgid "Only {doc|auto-editors} can approve an edit."
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:34 ../root/edit/CannotApproveEdit.js:35
+#: ../root/edit/NoteIsRequired.js:21 ../root/edit/NoteIsRequired.js:22
+msgid "Error Approving Edit"
+msgstr ""
+
+#: ../root/edit/CannotApproveEdit.js:38
+msgid "There was a problem approving {edit}."
+msgstr ""
+
+#: ../root/edit/CannotCancelEdit.js:22 ../root/edit/CannotCancelEdit.js:23
+msgid "Error Cancelling Edit"
+msgstr ""
+
+#: ../root/edit/CannotCancelEdit.js:26
+msgid "There was a problem cancelling {edit}."
+msgstr ""
+
+#: ../root/edit/CannotCancelEdit.js:33
+msgid "Only the editor who entered an edit can cancel it."
+msgstr ""
+
+#: ../root/edit/CannotVote.js:13 ../root/edit/CannotVote.js:14
+msgid "Error Voting on Edits"
+msgstr ""
+
+#: ../root/edit/CannotVote.js:16
+msgid "You’re not currently allowed to vote, please read the banner."
+msgstr ""
+
+#: ../root/edit/DeleteNote.js:32 ../root/edit/DeleteNote.js:33
+#: ../root/edit/components/EditNote.js:147
+msgid "Remove edit note"
+msgstr ""
+
+#: ../root/edit/DeleteNote.js:35
+msgid "Are you sure you want to remove the following edit note?"
+msgstr ""
+
+#: ../root/edit/DeleteNote.js:47
+msgid ""
+"Providing a reason for the removal is recommended if you feel it will make "
+"things clearer for other editors checking the editing history in the future. "
+"Otherwise it can be omitted."
+msgstr ""
+
+#: ../root/edit/DeleteNote.js:54 ../root/edit/ModifyNote.js:71
+#: ../root/user/ReportUser.js:139
+msgid "Reason"
+msgstr ""
+
+#: ../root/edit/EditData.js:34
+msgid "Edit data for edit #{id}"
+msgstr ""
+
+#: ../root/edit/EditData.js:57
+msgid "Data:"
+msgstr ""
+
+#: ../root/edit/EditData.js:62
+msgid "Related entities:"
+msgstr ""
+
+#: ../root/edit/EditData.js:90
+msgid ""
+"This is the raw data for edit #{id}. It is available for debugging purposes."
+msgstr ""
+
+#: ../root/edit/EditData.js:96
+msgid "View the human-readable rendering instead."
+msgstr ""
+
+#: ../root/edit/EditIndex.js:49
+msgid "Edit #{id}"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:58
+msgid "Raw edit data may be available."
+msgstr ""
+
+#: ../root/edit/EditIndex.js:83
+msgid "My vote:"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:122
+msgid "You are not currently able to vote on this edit. ({url|Details})"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:132
+msgid "Testing features"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:134
+msgid ""
+"To aid in testing, the following features have been made available on "
+"testing servers:"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:140 ../root/edit/components/EditSummary.js:87
+msgid "Accept edit"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:145 ../root/edit/components/EditSummary.js:93
+msgid "Reject edit"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:153
+msgid "You must be logged in to vote on edits."
+msgstr ""
+
+#: ../root/edit/EditIndex.js:159
+msgid "Edit notes"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:164 ../root/edit/components/Vote.js:112
+msgid "Submit vote and note"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:166
+msgid "Submit note"
+msgstr ""
+
+#: ../root/edit/EditIndex.js:171
+msgid "You must be logged in to see edit notes."
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:36 ../root/edit/ModifyNote.js:37
+#: ../root/edit/components/EditNote.js:142
+msgid "Modify edit note"
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:39
+msgid "You are modifying the following edit note:"
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:52
+msgid "New edit note"
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:58
+msgid ""
+"Keep in mind modification of edit notes is mostly intended to correct small "
+"mistakes. Editors won’t be notified of your changes via email."
+msgstr ""
+
+#: ../root/edit/ModifyNote.js:65
+msgid ""
+"Providing a reason is optional but can make things more clear for editors "
+"checking this edit in the future. Keep in mind the reason will be displayed "
+"to other editors."
+msgstr ""
+
+#: ../root/edit/NoteIsRequired.js:25
+msgid ""
+"{edit} has received one or more \"no\" votes, you must leave an edit note "
+"before you can approve it."
+msgstr ""
+
+#: ../root/edit/NotesReceived.js:35 ../root/edit/NotesReceived.js:37
+msgid "Recent Notes Left on Your Edits"
+msgstr ""
+
+#: ../root/edit/NotesReceived.js:67
+msgid "Nobody has left notes on any of your edits in the past three months."
+msgstr ""
+
+#: ../root/edit/OpenEdits.js:27 ../root/edit/OpenEdits.js:29
+msgid "Open Edits"
+msgstr ""
+
+#: ../root/edit/SubscribedEditorEdits.js:27
+#: ../root/edit/SubscribedEditorEdits.js:29
+msgid "Edits by Your Subscribed Editors"
+msgstr ""
+
+#: ../root/edit/SubscribedEdits.js:27 ../root/edit/SubscribedEdits.js:29
+msgid "Edits for Your Subscribed Entities"
+msgstr ""
+
+#: ../root/edit/SubscribedEdits.js:32
+msgid ""
+"This page lists edits linked to entities you are directly subscribed to, as "
+"well as edits linked to entities which are part of a collection you are "
+"subscribed to."
+msgstr ""
+
+#: ../root/edit/components/EditArtwork.js:27
+#: ../root/edit/details/ReorderCoverArt.js:25
+msgid ""
+"We are unable to display history for this cover art. For a current listing "
+"of cover art, please see the {coverart|release's cover art page}."
+msgstr ""
+
+#: ../root/edit/components/EditArtwork.js:32
+msgid "We are unable to display history for this cover art."
+msgstr ""
+
+#: ../root/edit/components/EditArtwork.js:36
+msgid "Cover art:"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:52
+#: ../root/edit/components/EditNoteListEntry.js:27
+msgid "Edit #{id} - {name}"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:78
+msgid "Edit by {editor}"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:86
+msgid "Editor hidden"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:92
+msgid "log in to see who"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:107
+msgid "Their vote: "
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:114
+msgid "My vote: "
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:118
+msgid "N/A"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:119
+#: ../root/edit/components/Vote.js:107
+#: ../root/static/scripts/common/components/OrderableDirection.js:22
+msgid "None"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:141
+#: ../root/edit/components/EditSidebar.js:53 ../root/elections/Show.js:32
+msgid "Voting"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:149
+msgid "Approved"
+msgstr ""
+
+#: ../root/edit/components/EditHeader.js:177
+#: ../root/edit/components/EditSummary.js:67
+msgid "Approve edit"
+msgstr ""
+
+#: ../root/edit/components/EditList.js:82
+msgid "Found at least {n} edit"
+msgid_plural "Found at least {n} edits"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/components/EditList.js:89
+msgid "Found {n} edit"
+msgid_plural "Found {n} edits"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/components/EditList.js:105
+#: ../root/edit/components/EditList.js:121
+msgid "Submit votes & edit notes"
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:159
+msgid "[time missing]"
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:168
+msgid "This edit note was removed by its author. Reason given: “{reason}”."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:173
+msgid "This edit note was removed by its author. No reason was provided."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:179
+msgid "This edit note was removed by an admin. Reason given: “{reason}”."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:184
+msgid "This edit note was removed by an admin. No reason was provided."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:194
+#: ../root/edit/components/EditNote.js:246
+msgctxt "edit note"
+msgid "see all changes"
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:211
+msgid "Last modified by the note author ({time}). Reason given: “{reason}”."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:220
+msgid "Last modified by the note author ({time})."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:227
+msgid "Last modified by an admin ({time}). Reason given: “{reason}”."
+msgstr ""
+
+#: ../root/edit/components/EditNote.js:236
+msgid "Last modified by an admin ({time})."
+msgstr ""
+
+#: ../root/edit/components/EditNoteHelp.js:20
+msgid ""
+"Edit notes support {doc_formatting|a limited set of wiki formatting "
+"options}. Please do always keep the {doc_coc|Code of Conduct} in mind when "
+"writing edit notes!"
+msgstr ""
+
+#: ../root/edit/components/EditNotes.js:55
+msgid "No edit notes have been added."
+msgstr ""
+
+#: ../root/edit/components/EditNotes.js:70
+msgid "Add an edit note"
+msgstr ""
+
+#: ../root/edit/components/EditNotes.js:78
+msgid "You are not currently able to add notes to this edit. ({url|Details})"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:48
+msgid "Opened:"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:68
+msgid "For quicker closing"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:71
+msgid "1 vote"
+msgid_plural "{n} unanimous votes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/components/EditSidebar.js:80
+msgid "If no votes cast"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:89
+msgid "Raw edit data for this edit"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:94
+msgid "For more information:"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:97
+msgid "Voting FAQ"
+msgstr ""
+
+#: ../root/edit/components/EditSidebar.js:98
+msgid "Editing FAQ"
+msgstr ""
+
+#: ../root/edit/components/EditSummary.js:59
+msgid "Add Note"
+msgstr ""
+
+#: ../root/edit/components/EditorTypeInfo.js:29 ../root/user/UserProfile.js:101
+msgid "This user is new to MusicBrainz."
+msgstr ""
+
+#: ../root/edit/components/EditorTypeInfo.js:31
+msgid "beginner"
+msgstr ""
+
+#: ../root/edit/components/EditorTypeInfo.js:39
+msgid "This user is automated."
+msgstr ""
+
+#: ../root/edit/components/EditorTypeInfo.js:40
+msgid "bot"
+msgstr ""
+
+#: ../root/edit/components/IntentionallyRawIcon.js:17
+msgid ""
+"This field is intentionally left as it was originally entered (untranslated, "
+"unformatted)."
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:49
+msgid "Open edits for {user}"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:57
+msgid "All edits for {user}"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:69
+msgid "Open edits for this collection"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:70
+msgid "Open edits for this entity"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:80
+msgid "All edits for this collection"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:81
+msgid "All edits for this entity"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:92
+msgid "All edits for your subscribed entities"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:100
+msgid "Open edits for your subscribed entities"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:111
+msgid "All edits for your subscribed editors"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:119
+msgid "Open edits for your subscribed editors"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:134
+msgid "Refine this search"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:143
+msgid "Subscribed entities"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:150
+msgid "Subscribed editors"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:158
+#: ../root/layout/components/sidebar/CollectionSidebar.js:77
+#: ../root/layout/components/sidebar/EditLinks.js:43
+msgid "Open edits"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:165 ../root/vote/VotingIndex.js:44
+#: ../root/vote/VotingIndex.js:46
+msgid "Voting suggestions"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:172
+msgid "Search for edits"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:199
+msgid "Quick links:"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:211
+msgid "Help:"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:215
+msgid "Introduction to Voting"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:219
+msgid "Introduction to Editing"
+msgstr ""
+
+#: ../root/edit/components/ListHeader.js:222 ../root/main/index.js:180
+msgid "Style guidelines"
+msgstr ""
+
+#: ../root/edit/components/VoteTally.js:31
+msgid "automatically applied"
+msgstr ""
+
+#: ../root/edit/components/VoteTally.js:39
+msgid "{yes} yes : {no} no"
+msgstr ""
+
+#: ../root/edit/details/AddAnnotation.js:43
+#: ../root/edit/details/historic/AddReleaseAnnotation.js:25
+msgid "Text"
+msgstr ""
+
+#: ../root/edit/details/AddAnnotation.js:56
+#: ../root/edit/details/historic/AddReleaseAnnotation.js:35
+msgid "This annotation is empty."
+msgstr ""
+
+#: ../root/edit/details/AddAnnotation.js:72
+#: ../root/edit/details/historic/AddReleaseAnnotation.js:43
+msgid "Summary"
+msgstr ""
+
+#: ../root/edit/details/AddArea.js:102 ../root/edit/details/EditArea.js:119
+msgctxt "area ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddArtist.js:129 ../root/edit/details/EditArtist.js:155
+msgctxt "artist ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddCoverArt.js:39
+#: ../root/edit/details/RemoveCoverArt.js:39
+msgctxt "type"
+msgid "(none)"
+msgstr ""
+
+#: ../root/edit/details/AddCoverArt.js:44
+#: ../root/edit/details/EditCoverArt.js:47
+#: ../root/edit/details/RemoveCoverArt.js:45 ../root/taglookup/Form.js:50
+msgid "Filename"
+msgstr ""
+
+#: ../root/edit/details/AddCoverArt.js:54
+#: ../root/edit/details/EditCoverArt.js:67
+#: ../root/edit/details/RemoveCoverArt.js:56
+#: ../root/release/CoverArtFields.js:93
+msgid "Comment:"
+msgstr ""
+
+#: ../root/edit/details/AddEvent.js:50 ../root/edit/details/EditEvent.js:54
+msgctxt "event"
+msgid "Cancelled"
+msgstr ""
+
+#: ../root/edit/details/AddIsrcs.js:27 ../root/edit/details/EditBarcodes.js:27
+msgid "Client:"
+msgstr ""
+
+#: ../root/edit/details/AddIsrcs.js:28
+msgctxt "isrc client"
+msgid "(unknown)"
+msgstr ""
+
+#: ../root/edit/details/AddIsrcs.js:33 ../root/edit/details/AddIswcs.js:25
+msgid "Additions:"
+msgstr ""
+
+#: ../root/edit/details/AddIsrcs.js:39
+msgid "ISRC {isrc} to {recording}"
+msgstr ""
+
+#: ../root/edit/details/AddIswcs.js:31
+msgid "ISWC {iswc} to {work}"
+msgstr ""
+
+#: ../root/edit/details/AddLabel.js:74 ../root/edit/details/EditLabel.js:111
+msgctxt "label ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddMedium.js:162 ../root/edit/details/EditMedium.js:572
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:217
+msgid "Artist Credits"
+msgstr ""
+
+#: ../root/edit/details/AddPlace.js:84 ../root/edit/details/EditPlace.js:109
+msgctxt "place ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddRelationship.js:33
+msgid "Link order:"
+msgstr ""
+
+#: ../root/edit/details/AddRelationship.js:41
+#: ../root/edit/details/EditRelationship.js:27
+msgid ""
+"This relationship edit also included changes to relationship attributes "
+"which no longer exist."
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipAttribute.js:60
+#: ../root/edit/details/EditRelationshipAttribute.js:101
+msgid "Creditable"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:82
+#: ../root/edit/details/RemoveRelationshipAttribute.js:47
+#: ../root/edit/details/RemoveRelationshipType.js:57
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:90
+msgctxt "description"
+msgid "(none)"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:88
+#: ../root/edit/details/AddRelationshipType.js:97
+#: ../root/edit/details/EditRelationshipType.js:163
+#: ../root/edit/details/EditRelationshipType.js:172
+#: ../root/edit/details/RemoveRelationshipType.js:63
+#: ../root/edit/details/RemoveRelationshipType.js:72
+msgid "Type of {entity_placeholder}"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:105
+#: ../root/edit/details/EditRelationshipType.js:213
+#: ../root/edit/details/RemoveRelationshipType.js:80
+msgid "Link phrase:"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:128
+#: ../root/edit/details/RemoveRelationshipType.js:87
+#: ../root/edit/details/RemoveRelationshipType.js:99
+#: ../root/edit/details/RemoveRelationshipType.js:111
+msgctxt "link_phrase"
+msgid "(none)"
+msgstr ""
+
+#: ../root/edit/details/AddRelationshipType.js:195
+msgctxt "documentation"
+msgid "(none)"
+msgstr ""
+
+#: ../root/edit/details/AddRelease.js:68
+msgid "(new release group)"
+msgstr ""
+
+#: ../root/edit/details/AddRelease.js:119
+#: ../root/edit/details/EditReleaseLabel.js:92
+#: ../root/edit/details/historic/AddRelease.js:116
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:248
+#: ../root/static/scripts/common/components/ReleaseEvents.js:89
+#: ../root/static/scripts/edit/components/edit/ReleaseEventsDiff.js:122
+msgid "Release events"
+msgstr ""
+
+#: ../root/edit/details/AddReleaseLabel.js:43
+#: ../root/edit/details/EditReleaseLabel.js:78
+#: ../root/edit/details/EditReleaseLabel.js:83
+#: ../root/edit/details/RemoveReleaseLabel.js:39
+#: ../root/edit/details/historic/AddRelease.js:124
+#: ../root/edit/details/historic/EditReleaseEvents.js:112
+#: ../root/otherlookup/OtherLookupForm.js:57
+msgid "Catalog number"
+msgstr ""
+
+#: ../root/edit/details/AddRemoveAlias.js:46
+#: ../root/edit/details/EditAlias.js:51
+msgid "view all aliases"
+msgstr ""
+
+#: ../root/edit/details/AddRemoveAlias.js:75
+#: ../root/edit/details/EditAlias.js:99
+msgid "Primary for locale"
+msgstr ""
+
+#: ../root/edit/details/AddRemoveAlias.js:104
+#: ../root/edit/details/EditAlias.js:125
+msgctxt "alias ended boolean"
+msgid "Ended"
+msgstr ""
+
+#: ../root/edit/details/AddWork.js:65 ../root/edit/details/EditWork.js:84
+#: ../root/layout/components/sidebar/WorkSidebar.js:69
+#: ../root/search/components/WorkResults.js:59
+#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:143
+#: ../root/static/scripts/work/edit.js:346 ../root/utility/tableColumns.js:821
+msgid "Lyrics Languages"
+msgstr ""
+
+#: ../root/edit/details/ChangeReleaseQuality.js:30
+#: ../root/edit/details/historic/ChangeArtistQuality.js:30
+#: ../root/edit/details/historic/ChangeReleaseQuality.js:40
+#: ../root/layout/components/sidebar/SidebarDataQuality.js:36
+#: ../root/release/ChangeQuality.js:67
+msgid "Data Quality"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:39
+msgid "WikiDoc:"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:48
+msgid "Old version:"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:50
+msgid "New page"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:63
+msgid "Page removed"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:75
+msgid "Diff"
+msgstr ""
+
+#: ../root/edit/details/ChangeWikiDoc.js:78
+msgid "View diff"
+msgstr ""
+
+#: ../root/edit/details/EditAlias.js:71
+msgid "primary for {locale}"
+msgstr ""
+
+#: ../root/edit/details/EditArtistCredit.js:26
+#: ../root/report/components/ArtistCreditList.js:29
+msgid "Artist Credit"
+msgstr ""
+
+#: ../root/edit/details/EditArtistCredit.js:41
+msgid "See all uses of the artist credit being changed."
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:84
+msgid "This track's MBID will change when this edit is applied."
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:309
+msgid "Old Tracklist"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:310
+msgid "New Tracklist"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:505
+msgid "This edit changes which tracks are data tracks."
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:520
+msgid "Old recording"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:521
+msgid "New recording"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:578
+msgid "Old Artist"
+msgstr ""
+
+#: ../root/edit/details/EditMedium.js:579
+msgid "New Artist"
+msgstr ""
+
+#: ../root/edit/details/EditRecording.js:63
+msgid "This edit makes subsecond changes to the recording length"
+msgstr ""
+
+#: ../root/edit/details/EditRelationshipType.js:146
+#: ../root/edit/details/historic/EditRelationship.js:44
+msgid ""
+"The data for this edit seems to have been damaged during the 2011 transition "
+"to the current MusicBrainz schema. The remaining data is displayed below, "
+"but might not be fully accurate."
+msgstr ""
+
+#: ../root/edit/details/EditRelationshipType.js:249
+#: ../root/edit/details/EditRelationshipType.js:257
+msgid "Deprecated:"
+msgstr ""
+
+#: ../root/edit/details/EditRelease.js:165
+msgid "This edit also changed the track artists."
+msgstr ""
+
+#: ../root/edit/details/EditUrl.js:70
+msgid "This change affects {num} relationship."
+msgid_plural "This change affects {num} relationships."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/edit/details/EditUrl.js:79
+msgid ""
+"The new URL already exists in the database. This edit will therefore merge "
+"the two URL entities."
+msgstr ""
+
+#: ../root/edit/details/EditUrl.js:82
+msgid "This edit was a merge."
+msgstr ""
+
+#: ../root/edit/details/EditUrl.js:86
+msgid "Search for the target URL."
+msgstr ""
+
+#: ../root/edit/details/EditWork.js:73
+#: ../root/static/scripts/release/components/WorkTypeSelect.js:58
+msgid "Work type"
+msgstr ""
+
+#: ../root/edit/details/MergeAreas.js:19
+#: ../root/edit/details/MergeArtists.js:20
+#: ../root/edit/details/MergeEvents.js:19
+#: ../root/edit/details/MergeInstruments.js:19
+#: ../root/edit/details/MergeLabels.js:19
+#: ../root/edit/details/MergePlaces.js:19
+#: ../root/edit/details/MergeRecordings.js:19
+#: ../root/edit/details/MergeReleaseGroups.js:20
+#: ../root/edit/details/MergeSeries.js:19 ../root/edit/details/MergeWorks.js:19
+msgctxt "merge X into Y heading"
+msgid "Merge"
+msgstr ""
+
+#: ../root/edit/details/MergeAreas.js:25
+#: ../root/edit/details/MergeArtists.js:26
+#: ../root/edit/details/MergeEvents.js:30
+#: ../root/edit/details/MergeInstruments.js:25
+#: ../root/edit/details/MergeLabels.js:25
+#: ../root/edit/details/MergePlaces.js:25
+#: ../root/edit/details/MergeRecordings.js:29
+#: ../root/edit/details/MergeReleaseGroups.js:26
+#: ../root/edit/details/MergeReleases.js:271
+#: ../root/edit/details/MergeReleases.js:278
+#: ../root/edit/details/MergeReleases.js:288
+#: ../root/edit/details/MergeReleases.js:306
+#: ../root/edit/details/MergeSeries.js:25 ../root/edit/details/MergeWorks.js:25
+msgid "Into:"
+msgstr ""
+
+#: ../root/edit/details/MergeArtists.js:32
+msgid "Rename artist and relationship credits"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:109
+msgid "Medium {position}: {name} is now medium {new_position}: {new_name}"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:120
+msgid "Medium {position}: {name} is now medium {new_position}"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:129
+msgid "Medium {position} is now medium {new_position}: {new_name}"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:140
+msgid "Medium {position} is now medium {new_position}"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:254
+msgid "This release has no media to merge."
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:301
+msgid "Recording Merges"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:304
+msgid "Track #"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:316
+msgid ""
+"This edit does not store recording merge information and is closed, so no "
+"recording merge information can be shown."
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:333
+msgid "All recordings for these releases are already merged."
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:341
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:65
+msgid "Merge strategy:"
+msgstr ""
+
+#: ../root/edit/details/MergeReleases.js:349
+msgid ""
+"The data in this edit originally came from an older version of this edit, "
+"and may not display correctly"
+msgstr ""
+
+#: ../root/edit/details/MoveDiscId.js:32
+#: ../root/edit/details/historic/MoveDiscId.js:27
+msgid "From:"
+msgstr ""
+
+#: ../root/edit/details/MoveDiscId.js:36
+#: ../root/edit/details/historic/MoveDiscId.js:31
+msgid "To:"
+msgstr ""
+
+#: ../root/edit/details/RemoveMedium.js:58
+msgid ""
+"The number of tracks on the medium being removed has changed since the "
+"removal edit was entered. Please check the changes and ensure the removal is "
+"still correct."
+msgstr ""
+
+#: ../root/edit/details/RemoveMedium.js:62
+msgid ""
+"Some track lengths, titles or artists have changed since the removal edit "
+"was entered. Please check the changes and ensure the removal is still "
+"correct."
+msgstr ""
+
+#: ../root/edit/details/RemoveMedium.js:80
+msgid "Original tracklist"
+msgstr ""
+
+#: ../root/edit/details/RemoveMedium.js:99
+msgid "Current tracklist"
+msgstr ""
+
+#: ../root/edit/details/ReorderCoverArt.js:41
+msgid "Old positions:"
+msgstr ""
+
+#: ../root/edit/details/ReorderCoverArt.js:53
+msgid "New positions:"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:42
+msgid "Mediums"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:46
+msgid "Medium {new}: {title} (new medium)"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:50
+msgid ""
+"Medium {new}: {title} (moved from position {old})"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:58
+msgid "Medium {new} (new medium)"
+msgstr ""
+
+#: ../root/edit/details/ReorderMediums.js:61
+msgid ""
+"Medium {new} (moved from position {old})"
+msgstr ""
+
+#: ../root/edit/details/ReorderRelationships.js:21
+msgid "Old Order"
+msgstr ""
+
+#: ../root/edit/details/ReorderRelationships.js:22
+msgid "New Order"
+msgstr ""
+
+#: ../root/edit/details/SetCoverArt.js:37
+msgid "Old cover art:"
+msgstr ""
+
+#: ../root/edit/details/SetCoverArt.js:58
+msgid ""
+"The old image was selected automatically from the earliest release in the "
+"release group."
+msgstr ""
+
+#: ../root/edit/details/SetCoverArt.js:60
+#: ../root/edit/details/SetCoverArt.js:85
+msgid "We are unable to display this cover art."
+msgstr ""
+
+#: ../root/edit/details/SetCoverArt.js:65
+msgid "New cover art:"
+msgstr ""
+
+#: ../root/edit/details/SetTrackLengths.js:63
+msgid "Track lengths:"
+msgstr ""
+
+#: ../root/edit/details/SetTrackLengths.js:76
+msgid "This edit makes subsecond changes to track lengths"
+msgstr ""
+
+#: ../root/edit/details/historic/AddDiscId.js:23
+msgid "CD TOC:"
+msgstr ""
+
+#: ../root/edit/details/historic/AddTrackKV.js:49
+#: ../root/edit/details/historic/AddTrackOld.js:34
+#: ../root/edit/details/historic/EditTrack.js:47 ../root/taglookup/Form.js:35
+msgid "Track number"
+msgstr ""
+
+#: ../root/edit/details/historic/AddTrackOld.js:28
+msgid "Artist name:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditRelationship.js:53
+msgid "Old relationships:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditRelationship.js:125
+msgid "New relationships:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseAttributes.js:34
+msgctxt "release type and status"
+msgid "Old"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseAttributes.js:41
+msgid "Type: {type}, status: {status}"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseAttributes.js:60
+msgid "New Type:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseAttributes.js:67
+msgid "New Status:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseEvents.js:121
+msgctxt "list of added release events"
+msgid "Added"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseEvents.js:136
+msgctxt "list of removed release events"
+msgid "Removed"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseEvents.js:152
+msgctxt "list of edited release events"
+msgid "Edited"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:20
+msgctxt "release language"
+msgid "Old"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:27
+msgid "Language: {language}, script: {script}"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:48
+msgid "New language:"
+msgstr ""
+
+#: ../root/edit/details/historic/EditReleaseLanguage.js:57
+msgid "New script:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:22
+msgid "Old releases:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:34
+msgid "New releases:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:46
+msgid "Merge attributes:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:50
+msgid "Merge language & script:"
+msgstr ""
+
+#: ../root/edit/details/historic/MergeReleases.js:57
+msgid ""
+"This edit was a \"Merge Releases (Various Artists)\" edit which additionally "
+"set the release artist to Various Artists."
+msgstr ""
+
+#: ../root/edit/details/historic/MoveRelease.js:26
+msgid "Change track artists:"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:32
+#: ../root/elections/ElectionTable/index.js:22
+msgid "Candidate"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:36
+#: ../root/elections/ElectionTable/index.js:26
+msgid "Proposer"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:40
+#: ../root/elections/ElectionTable/index.js:27
+msgid "1st seconder"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:48
+#: ../root/elections/ElectionTable/index.js:28
+msgid "2nd seconder"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:59
+msgid "Total votes"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:63
+#: ../root/elections/ElectionTable/index.js:29
+msgid "Votes for"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:67
+#: ../root/elections/ElectionTable/index.js:30
+msgid "Votes against"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:71
+msgid "Abstentions"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:79
+msgid "Votes for/against:"
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:81
+msgid ""
+"The tally of votes cast will only be shown when the election is complete."
+msgstr ""
+
+#: ../root/elections/ElectionDetails.js:89
+#: ../root/elections/ElectionTable/index.js:23
+msgctxt "election status"
+msgid "Status"
+msgstr ""
+
+#: ../root/elections/ElectionTable/ElectionTableRows.js:60
+msgid "View details"
+msgstr ""
+
+#: ../root/elections/ElectionTable/index.js:24
+msgid "Start date"
+msgstr ""
+
+#: ../root/elections/ElectionVotes.js:27
+msgid "Vote"
+msgstr ""
+
+#: ../root/elections/ElectionVotes.js:38
+msgid "(private)"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:27
+msgid "To find out if you can vote for this candidate, please {url|log in}."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:36
+msgid "You cannot vote for this candidate, because you are not an auto-editor."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:41
+msgid ""
+"You cannot vote for this candidate, because you proposed / seconded them."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:46
+msgid ""
+"Voting is not yet open. If you would like to support this candidate, you can "
+"second their nomination. If you do not support this candidate, please note "
+"that you cannot cast a \"No\" vote (or abstain) until two seconders have "
+"been found."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:53
+msgid "Voting is closed."
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:68
+msgid "Second this candidate"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:80
+msgid "Your current vote: {vote}"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:88
+msgid "Vote YES"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:91
+msgid "Vote NO"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:94
+msgid "Abstain"
+msgstr ""
+
+#: ../root/elections/ElectionVoting.js:111
+msgid "Cancel the election"
+msgstr ""
+
+#: ../root/elections/Index.js:19 ../root/elections/Index.js:20
+msgid "Auto-editor elections"
+msgstr ""
+
+#: ../root/elections/Index.js:23
+msgid "No elections found."
+msgstr ""
+
+#: ../root/elections/Nominate.js:25
+msgid ""
+"Are you sure you want to nominate the editor {editor} for auto-editor status?"
+msgstr ""
+
+#: ../root/elections/Nominate.js:29
+msgid "Nominate a candidate for auto-editor"
+msgstr ""
+
+#: ../root/elections/Show.js:24
+msgid "Auto-editor election #{no}"
+msgstr ""
+
+#: ../root/elections/Show.js:29
+msgid "Back to elections"
+msgstr ""
+
+#: ../root/elections/Show.js:34
+msgid "Votes cast"
+msgstr ""
+
+#: ../root/elections/Show.js:37
+msgid "The list of voters will only be shown when the election is complete."
+msgstr ""
+
+#: ../root/entity/Collections.js:40
+msgid "{entity} has been added to {num} collection:"
+msgid_plural "{entity} has been added to {num} collections:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Collections.js:50
+msgid "{collection} by {owner}"
+msgstr ""
+
+#: ../root/entity/Collections.js:62
+msgid "plus {n} other private collection"
+msgid_plural "plus {n} other private collections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Collections.js:71
+msgid "A private collection"
+msgid_plural "{n} private collections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Collections.js:83
+msgid "{entity} has not been added to any collections."
+msgstr ""
+
+#: ../root/entity/Details.js:103
+msgid "{mbid|MBID}:"
+msgstr ""
+
+#: ../root/entity/Details.js:109 ../root/report/components/InstrumentList.js:69
+msgid "Last updated"
+msgstr ""
+
+#: ../root/entity/Details.js:113
+msgctxt "last updated"
+msgid "(unknown)"
+msgstr ""
+
+#: ../root/entity/Details.js:117
+msgid "Permanent link:"
+msgstr ""
+
+#: ../root/entity/Details.js:125
+msgid "{xml_ws_docs|XML}"
+msgstr ""
+
+#: ../root/entity/Details.js:141
+msgid "{json_ws_docs|JSON}"
+msgstr ""
+
+#: ../root/entity/Edits.js:53 ../root/entity/Edits.js:57
+msgid "Open Edits for {name}"
+msgstr ""
+
+#: ../root/entity/Edits.js:54 ../root/entity/Edits.js:58
+msgid "Edits for {name}"
+msgstr ""
+
+#: ../root/entity/Edits.js:70
+msgid "{entity_type} by {artist}"
+msgstr ""
+
+#: ../root/entity/NotFound.js:19
+msgid "Area Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:21
+msgid ""
+"Sorry, we could not find an area with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:28
+msgid "Artist Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:30
+msgid ""
+"Sorry, we could not find an artist with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:37
+msgid "Artist Credit Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:38
+msgid "Sorry, we could not find an artist credit with that ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:43
+msgid "CD TOC Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:44
+msgid "Sorry, we could not find the CD TOC you specified."
+msgstr ""
+
+#: ../root/entity/NotFound.js:49
+msgid "Collection Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:51
+msgid "Sorry, we could not find a collection with that MusicBrainz ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:57
+msgid "Edit Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:59
+msgid ""
+"Sorry, we could not find an edit with that edit ID. You may wish to try and "
+"perform an {search_url|edit search} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:66
+msgid "Election Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:67
+msgid "Sorry, we could not find this election."
+msgstr ""
+
+#: ../root/entity/NotFound.js:69
+msgid "Back to all elections."
+msgstr ""
+
+#: ../root/entity/NotFound.js:72
+msgid "Event Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:74
+msgid ""
+"Sorry, we could not find an event with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:81
+msgid "Genre Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:83
+msgid ""
+"Sorry, we could not find a genre with that MusicBrainz ID. You can see all "
+"available genres on our {genre_list|genre list}."
+msgstr ""
+
+#: ../root/entity/NotFound.js:90
+msgid "Instrument Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:92
+msgid ""
+"Sorry, we could not find an instrument with that MusicBrainz ID. You may "
+"wish to try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:99
+msgid "ISRC Not Currently Used"
+msgstr ""
+
+#: ../root/entity/NotFound.js:101
+msgid ""
+"This ISRC is not associated with any recordings. If you wish to associate it "
+"with a recording, please {search_url|search for the recording} and add it."
+msgstr ""
+
+#: ../root/entity/NotFound.js:109
+msgid "ISWC Not Currently Used"
+msgstr ""
+
+#: ../root/entity/NotFound.js:111
+msgid ""
+"This ISWC is not associated with any works. If you wish to associate it with "
+"a work, please {search_url|search for the work} and add it."
+msgstr ""
+
+#: ../root/entity/NotFound.js:118
+msgid "Label Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:120
+msgid ""
+"Sorry, we could not find a label with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:127
+msgid "Entity Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:129
+msgid ""
+"Sorry, we could not find a MusicBrainz entity with that ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:136
+msgid "Place Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:138
+msgid ""
+"Sorry, we could not find a place with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:145
+msgid "Recording Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:147
+msgid ""
+"Sorry, we could not find a recording with that MusicBrainz ID. You may wish "
+"to try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:154
+msgid "Relationship Attribute Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:156
+msgid ""
+"Sorry, we could not find a relationship attribute with that MusicBrainz ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:163
+msgid "Relationship Type Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:165
+msgid "Sorry, we could not find a relationship type with that MusicBrainz ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:172
+msgid "Release Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:174
+msgid ""
+"Sorry, we could not find a release with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:181
+msgid "Release Group Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:183
+msgid ""
+"Sorry, we could not find a release group with that MusicBrainz ID. You may "
+"wish to try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:190
+msgid "Series Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:192
+msgid ""
+"Sorry, we could not find a series with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:199
+msgid "Track Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:201
+msgid ""
+"Sorry, we could not find neither a recording nor a track with that "
+"MusicBrainz ID. You may wish to try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:209
+msgid "URL Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:210
+msgid "Sorry, we could not find a URL with that MusicBrainz ID."
+msgstr ""
+
+#: ../root/entity/NotFound.js:215
+msgid "Editor Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:217
+msgid ""
+"Sorry, we could not find an editor with that name. You may wish to try and "
+"{search_url|search for them} instead."
+msgstr ""
+
+#: ../root/entity/NotFound.js:224
+msgid "Work Not Found"
+msgstr ""
+
+#: ../root/entity/NotFound.js:226
+msgid ""
+"Sorry, we could not find a work with that MusicBrainz ID. You may wish to "
+"try and {search_url|search for it} instead."
+msgstr ""
+
+#: ../root/entity/Ratings.js:68
+msgid "{count} private rating not listed."
+msgid_plural "{count} private ratings not listed."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Ratings.js:75
+msgid "Average rating:"
+msgstr ""
+
+#: ../root/entity/Ratings.js:81
+msgid "{link} has no ratings."
+msgstr ""
+
+#: ../root/entity/Ratings.js:97
+msgid "Most Recent"
+msgstr ""
+
+#: ../root/entity/Ratings.js:104
+msgid "Most Popular"
+msgstr ""
+
+#: ../root/entity/Subscribers.js:57
+msgid "This is a special purpose entity and does not support subscriptions."
+msgstr ""
+
+#: ../root/entity/Subscribers.js:68
+msgid "There is currently {num} user subscribed to edits that you make:"
+msgid_plural ""
+"There are currently {num} users subscribed to edits that you make:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:79
+msgid "There is currently {num} user subscribed to edits that {user} makes:"
+msgid_plural ""
+"There are currently {num} users subscribed to edits that {user} makes:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:92
+msgid "There is currently {num} user subscribed to {entity}:"
+msgid_plural "There are currently {num} users subscribed to {entity}:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:111
+msgid "Plus {n} other anonymous user"
+msgid_plural "Plus {n} other anonymous users"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:121
+msgid "An anonymous user"
+msgid_plural "{n} anonymous users"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/entity/Subscribers.js:135
+msgid "There are currently no users subscribed to edits that you make."
+msgstr ""
+
+#: ../root/entity/Subscribers.js:138
+msgid "There are currently no users subscribed to edits that {user} makes."
+msgstr ""
+
+#: ../root/entity/Subscribers.js:143
+msgid "There are currently no users subscribed to {entity}."
+msgstr ""
+
+#: ../root/entity/Subscribers.js:152
+msgid "You are currently subscribed. {unsub|Unsubscribe}?"
+msgstr ""
+
+#: ../root/entity/Subscribers.js:156
+msgid "Be the first! {sub|Subscribe}?"
+msgstr ""
+
+#: ../root/entity/Subscribers.js:159
+msgid "You are not currently subscribed. {sub|Subscribe}?"
+msgstr ""
+
+#: ../root/entity/alias/AddOrEditAlias.js:37
+msgid "Add alias"
+msgstr ""
+
+#: ../root/entity/alias/AddOrEditAlias.js:38
+msgid "Edit alias"
+msgstr ""
+
+#: ../root/entity/alias/DeleteAlias.js:31
+msgid "Remove alias"
+msgstr ""
+
+#: ../root/entity/alias/DeleteAlias.js:42
+msgid "You're removing the alias {alias}."
+msgstr ""
+
+#: ../root/entity/alias/DeleteAlias.js:48
+msgid "Please review the {doc|alias documentation} before entering this edit."
+msgstr ""
+
+#: ../root/event/EventMerge.js:32
+msgid ""
+"You are about to merge all these events into a single one. Please select the "
+"event all others should be merged into:"
+msgstr ""
+
+#: ../root/genre/CreateGenre.js:24 ../root/genre/CreateGenre.js:26
+msgid "Add a new genre"
+msgstr ""
+
+#: ../root/genre/DeleteGenre.js:35
+msgid "Are you sure you want to remove the genre {genre}?"
+msgstr ""
+
+#: ../root/genre/GenreIndex.js:34
+msgid "Genre information"
+msgstr ""
+
+#: ../root/genre/GenreIndex.js:36
+msgid "Associated tags"
+msgstr ""
+
+#: ../root/genre/GenreIndex.js:39
+msgid "Primary tag"
+msgstr ""
+
+#: ../root/genre/GenreListPage.js:20 ../root/genre/GenreListPage.js:22
+#: ../root/layout/components/BottomMenu.js:324
+msgid "Genre List"
+msgstr ""
+
+#: ../root/genre/GenreListPage.js:25
+msgid ""
+"These are all the {genre_url|genres} currently available for use in "
+"MusicBrainz."
+msgstr ""
+
+#: ../root/genre/GenreListPage.js:31
+msgid ""
+"To associate a genre with an entity, tag the entity with the genre name."
+msgstr ""
+
+#: ../root/genre/GenreListPage.js:42
+msgid ""
+"Is a genre missing from the list? Request it by {link|adding a style ticket}."
+msgstr ""
+
+#: ../root/instrument/DeleteInstrument.js:34
+#: ../root/instrument/DeleteInstrument.js:36
+msgid "Remove Instrument"
+msgstr ""
+
+#: ../root/instrument/DeleteInstrument.js:49
+msgid ""
+"This instrument cannot be removed because there are still relationships "
+"attributed to it."
+msgstr ""
+
+#: ../root/instrument/InstrumentArtists.js:67
+msgid "No artists found."
+msgstr ""
+
+#: ../root/instrument/InstrumentMerge.js:32
+msgid ""
+"You are about to merge all these instruments into a single one. Please "
+"select the instrument all others should be merged into:"
+msgstr ""
+
+#: ../root/instrument/List.js:45 ../root/instrument/List.js:47
+#: ../root/layout/components/BottomMenu.js:321
+msgid "Instrument List"
+msgstr ""
+
+#: ../root/instrument/List.js:61 ../root/report/components/InstrumentList.js:55
+msgid "Unclassified instrument"
+msgstr ""
+
+#: ../root/instrument/List.js:72
+msgid ""
+"Is this list missing an instrument? Request it by following {link|these "
+"instructions}."
+msgstr ""
+
+#: ../root/isrc/Index.js:38 ../root/isrc/Index.js:42
+msgid "ISRC “{isrc}”"
+msgstr ""
+
+#: ../root/isrc/Index.js:48
+msgid "Associated with {num} recording"
+msgid_plural "Associated with {num} recordings"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/iswc/Index.js:31 ../root/iswc/Index.js:34
+msgid "ISWC “{iswc}”"
+msgstr ""
+
+#: ../root/iswc/Index.js:39
+msgid "Associated with {num} work"
+msgid_plural "Associated with {num} works"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/label/LabelIndex.js:101
+msgid "This label does not have any releases."
+msgstr ""
+
+#: ../root/label/LabelMerge.js:32
+msgid ""
+"You are about to merge all these labels into a single one. Please select the "
+"label all others should be merged into:"
+msgstr ""
+
+#: ../root/label/SpecialPurpose.js:25
+msgid "You may not edit special purpose labels"
+msgstr ""
+
+#: ../root/label/SpecialPurpose.js:27
+msgid ""
+"The label you are trying to edit is a special purpose label, and you may not "
+"make direct changes to this data."
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:99
+msgid "(reset language)"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:104
+msgid "Help Translate"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:115
+msgid "About Us"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:120
+msgid "About MusicBrainz"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:123
+msgid "Sponsors"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:126
+msgid "Team"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:129
+msgid "Shop"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:132
+msgid "Contact Us"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:135
+msgid "Data Licenses"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:138
+msgid "Social Contract"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:141
+msgid "Code of Conduct"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:144
+msgid "Privacy Policy"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:147
+msgid "GDPR Compliance"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:150
+msgid "Data Removal Policy"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:153
+msgid "Auto-editor Elections"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:156
+msgid "Privileged User Accounts"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:159 ../root/user/UserProfile.js:575
+msgid "Statistics"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:162
+msgid "Timeline Graph"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:165
+msgid "MusicBrainz History"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:174
+msgid "Products"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:179 ../root/main/index.js:153
+msgid "MusicBrainz Picard"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:182 ../root/main/index.js:157
+msgid "AudioRanger"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:185 ../root/main/index.js:160
+msgid "Mp3tag"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:188 ../root/main/index.js:163
+msgid "Yate Music Tagger"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:192
+msgid "MusicBrainz for Android"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:196
+msgid "MusicBrainz Server"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:199 ../root/main/index.js:218
+msgid "MusicBrainz Database"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:202
+msgid "Developer Resources"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:205
+msgid "MusicBrainz API"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:208
+msgid "Live Data Feed"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:222
+msgid "Advanced Search"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:225
+msgid "Edit Search"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:228
+msgid "Tag Cloud"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:240
+#: ../root/layout/components/sidebar/CollectionSidebar.js:72
+#: ../root/layout/components/sidebar/EditLinks.js:31
+#: ../root/static/scripts/account/components/PreferencesForm.js:242
+msgid "Editing"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:245
+msgctxt "button/menu"
+msgid "Add Artist"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:252
+msgctxt "button/menu"
+msgid "Add Release Group"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:256
+msgctxt "button/menu"
+msgid "Add Release"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:260
+msgid "Add Various Artists Release"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:265
+msgctxt "button/menu"
+msgid "Add Standalone Recording"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:269
+msgctxt "button/menu"
+msgid "Add Work"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:272
+msgctxt "button/menu"
+msgid "Add Place"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:275
+msgctxt "button/menu"
+msgid "Add Series"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:278
+msgctxt "button/menu"
+msgid "Add Event"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:281
+msgid "Vote on Edits"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:284
+#: ../root/report/ReportsIndex.js:39 ../root/report/ReportsIndex.js:41
+msgid "Reports"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:298
+msgid "Beginners Guide"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:301
+msgid "Style Guidelines"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:304
+msgid "How Tos"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:307 ../root/main/index.js:183
+msgid "FAQs"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:311
+msgid "Documentation Index"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:318
+#: ../root/relationship/RelationshipsHeader.js:17
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:111
+#: ../root/relationship/linktype/RelationshipTypesList.js:60
+#: ../root/utility/tableColumns.js:373
+msgid "Relationship Types"
+msgstr ""
+
+#: ../root/layout/components/BottomMenu.js:327
+msgid "Development"
+msgstr ""
+
+#: ../root/layout/components/ExternalLinks.js:56
+msgid "{url} (as {credited_name})"
+msgstr ""
+
+#: ../root/layout/components/ExternalLinks.js:121
+msgid "Official homepage"
+msgstr ""
+
+#: ../root/layout/components/ExternalLinks.js:170
+msgid "External links"
+msgstr ""
+
+#: ../root/layout/components/ExternalLinks.js:177
+msgid "View all relationships"
+msgstr ""
+
+#: ../root/layout/components/Footer.js:30
+msgid "Chat (IRC)"
+msgstr ""
+
+#: ../root/layout/components/Footer.js:66
+msgid "Running: {git_details}"
+msgstr ""
+
+#: ../root/layout/components/Head.js:49
+msgid "Page {n}"
+msgstr ""
+
+#: ../root/layout/components/Head.js:105
+msgid "MusicBrainz: Artist"
+msgstr ""
+
+#: ../root/layout/components/Head.js:111
+msgid "MusicBrainz: Label"
+msgstr ""
+
+#: ../root/layout/components/Head.js:117
+msgid "MusicBrainz: Release"
+msgstr ""
+
+#: ../root/layout/components/Head.js:123
+msgid "MusicBrainz: Track"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:68
+msgid "Log Out"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:82
+msgid "My Data"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:88
+msgid "My Collections"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:92
+msgid "My Ratings"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:95
+msgid "My Tags"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:98
+msgid "My Open Edits"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:101
+msgid "All My Edits"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:104
+msgid "Edits for Subscribed Entities"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:108
+msgid "Edits by Subscribed Editors"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:112
+msgid "Notes Left on My Edits"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:122
+msgid "Admin"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:128
+msgctxt "button/menu"
+msgid "Add Area"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:136
+msgctxt "button/menu"
+msgid "Add Instrument"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:140
+msgctxt "button/menu"
+msgid "Add Genre"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:143
+msgid "Edit Relationship Types"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:150
+msgid "Transclude WikiDocs"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:163
+#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:233
+msgid "Edit Attributes"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:167
+msgid "Edit Statistics Events"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:171
+msgid "Email Search"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:174
+msgid "Privilege Search"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:178
+msgid "Locked Username Search"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:200 ../root/user/Login.js:51
+#: ../root/user/Login.js:52 ../root/user/Login.js:131
+msgid "Log In"
+msgstr ""
+
+#: ../root/layout/components/TopMenu.js:204
+#: ../root/static/scripts/account/components/RegisterForm.js:131
+msgid "Create Account"
+msgstr ""
+
+#: ../root/layout/components/sidebar/AnnotationLinks.js:38
+msgid "Add annotation"
+msgstr ""
+
+#: ../root/layout/components/sidebar/AnnotationLinks.js:44
+#: ../root/static/scripts/common/components/Annotation.js:91
+msgid "View annotation history"
+msgstr ""
+
+#: ../root/layout/components/sidebar/AreaSidebar.js:49
+msgid "Area information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ArtistSidebar.js:71
+msgid "Artist information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ArtistSidebar.js:157
+msgid "Add recording"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ArtistSidebar.js:175
+msgid "Split into separate artists"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:48
+msgctxt "CD stub addition time"
+msgid "Added"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:56
+msgctxt "CD stub modification time"
+msgid "Last modified"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:81
+msgid "Import as MusicBrainz release"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:88
+msgid "Add disc ID to an existing release"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CDStubSidebar.js:97
+msgid "Search the database for this CD"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:23
+msgid "You have no area collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:24
+msgid "You have no artist collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:25
+msgid "You have no event collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:26
+msgid "You have no instrument collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:27
+msgid "You have no label collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:28
+msgid "You have no place collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:29
+msgid "You have no recording collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:30
+msgid "You have no release collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:31
+msgid "You have no release group collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:32
+msgid "You have no series collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:33
+msgid "You have no work collections!"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:44
+msgid "Add to a new collection"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:46
+#: ../root/user/UserCollections.js:203
+msgid "Collaborative collections"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:50
+#: ../root/user/UserCollections.js:182
+msgid "My collections"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:57
+msgid "Found in {num} user collection"
+msgid_plural "Found in {num} user collections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/layout/components/sidebar/CollectionLinks.js:66
+msgid "Other collections"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionList.js:86
+msgid "Remove from {collection}"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionList.js:91
+msgid "Add to {collection}"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:50
+msgid "Collection information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:54
+msgid "Owner:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:66
+msgid "Number of entities"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:84
+#: ../root/layout/components/sidebar/EditLinks.js:50
+msgid "Editing history"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:107
+#: ../root/layout/components/sidebar/SubscriptionLinks.js:42
+#: ../root/user/UserSubscriptions.js:91
+msgid "Unsubscribe"
+msgstr ""
+
+#: ../root/layout/components/sidebar/CollectionSidebar.js:119
+#: ../root/layout/components/sidebar/SubscriptionLinks.js:52
+msgid "Subscribe"
+msgstr ""
+
+#: ../root/layout/components/sidebar/EditLinks.js:36
+msgid "Log in to edit"
+msgstr ""
+
+#: ../root/layout/components/sidebar/EventSidebar.js:51
+msgid "Event information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/EventSidebar.js:65
+msgid "Start Date:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/EventSidebar.js:66
+msgid "End Date:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/InstrumentSidebar.js:51
+msgid "Instrument information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LabelSidebar.js:58
+msgid "Label information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LabelSidebar.js:67
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:73
+msgid "Founded:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LabelSidebar.js:73
+msgid "Defunct:"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LastUpdated.js:23
+msgid "Last updated on {date}"
+msgstr ""
+
+#: ../root/layout/components/sidebar/LastUpdated.js:28
+msgid "Last updated on an unknown date"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:55
+msgid "Place information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:66
+msgctxt "place"
+msgid "Opening"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:67
+msgctxt "place"
+msgid "Opened"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:76
+msgctxt "place"
+msgid "Closing"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlaceSidebar.js:77
+msgctxt "place"
+msgid "Closed"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:59
+msgid "ListenBrainz"
+msgstr ""
+
+#: ../root/layout/components/sidebar/PlayOnListenBrainzButton.js:64
+msgid "Play on ListenBrainz"
+msgstr ""
+
+#: ../root/layout/components/sidebar/RecordingSidebar.js:45
+msgid "Recording information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/RecordingSidebar.js:65
+msgid "First release year"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseGroupSidebar.js:56
+msgid "Release group information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:90
+msgid "Front cover image failed to load correctly.
{all|View all artwork}."
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:96
+#: ../root/release/CoverArt.js:69
+msgid ""
+"Cover art for this release has been hidden by the Internet Archive because "
+"of a takedown request."
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:102
+msgid "No front cover image available."
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:105
+msgid "View all artwork"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:108
+msgid "No cover art available."
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:154
+msgid "Additional details"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:259
+msgid "Release group rating"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:265
+msgid "Release group reviews"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:280
+msgid "Release group external links"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:286
+msgid "Edit relationships"
+msgstr ""
+
+#: ../root/layout/components/sidebar/ReleaseSidebar.js:292
+msgid "Change data quality"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SeriesSidebar.js:45
+msgid "Series information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarLicenses.js:141
+msgid "License"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarRating.js:27
+#: ../root/static/scripts/release/components/MediumTable.js:88
+#: ../root/utility/tableColumns.js:466
+msgid "Rating"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarRating.js:35
+msgid "see all ratings"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarTags.js:51
+#: ../root/static/scripts/common/components/TagEditor.js:673
+msgctxt "genre"
+msgid "(none)"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarTags.js:51
+#: ../root/static/scripts/common/components/TagEditor.js:682
+msgctxt "tag"
+msgid "(none)"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarTags.js:80
+#: ../root/static/scripts/common/components/TagEditor.js:542
+#: ../root/static/scripts/common/components/TagEditor.js:667
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:21
+#: ../root/tag/TagCloud.js:117 ../root/user/UserTagList.js:76
+msgid "Genres"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarTags.js:91
+#: ../root/static/scripts/common/components/TagEditor.js:552
+#: ../root/static/scripts/common/components/TagEditor.js:676
+#: ../root/tag/TagCloud.js:125 ../root/user/UserTagList.js:97
+msgid "Other tags"
+msgstr ""
+
+#: ../root/layout/components/sidebar/SidebarTags.js:103
+msgid "See all tags"
+msgstr ""
+
+#: ../root/layout/components/sidebar/WorkSidebar.js:60
+msgid "Work information"
+msgstr ""
+
+#: ../root/layout/components/sidebar/WorkSidebar.js:96
+msgid "Work attributes"
+msgstr ""
+
+#: ../root/layout/index.js:38
+msgid "Birthday cakes"
+msgstr ""
+
+#: ../root/layout/index.js:87
+msgid ""
+"You’ve been a MusicBrainz editor for {num} year! Happy anniversary, and "
+"thanks for contributing to MusicBrainz!"
+msgid_plural ""
+"You’ve been a MusicBrainz editor for {num} years! Happy anniversary, and "
+"thanks for contributing to MusicBrainz!"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/layout/index.js:257
+msgid "Happy birthday, and thanks for contributing to MusicBrainz!"
+msgstr ""
+
+#: ../root/main/ConfirmSeed.js:31
+msgid "Confirm Form Submission"
+msgstr ""
+
+#: ../root/main/ConfirmSeed.js:48
+msgid ""
+"You are about to submit a request to {action} originating from {origin}. "
+"Continue?"
+msgstr ""
+
+#: ../root/main/ConfirmSeed.js:57
+msgid ""
+"This confirmation is important to ensure that no malicious actor can use "
+"your account to modify data without your knowledge. Below this line, you can "
+"review the data being sent and make any modifications if desired."
+msgstr ""
+
+#: ../root/main/error/Error400.js:26
+msgid "Bad Request"
+msgstr ""
+
+#: ../root/main/error/Error400.js:29
+msgid "Sorry, there was a problem with your request."
+msgstr ""
+
+#: ../root/main/error/Error400.js:44
+msgid ""
+"Found a problem on our site? Please {report|report a bug} and include any "
+"error message that is shown above."
+msgstr ""
+
+#: ../root/main/error/Error400.js:52 ../root/main/error/TimeoutError.js:37
+msgid "Technical Information"
+msgstr ""
+
+#: ../root/main/error/Error401.js:19
+msgid "Unauthorized Request"
+msgstr ""
+
+#: ../root/main/error/Error401.js:22 ../root/report/LimitedEditors.js:43
+msgid "Sorry, you are not authorized to view this page."
+msgstr ""
+
+#: ../root/main/error/Error401.js:29
+msgid ""
+"You must first {url|add and verify your email address} before being able to "
+"edit or add anything to the database."
+msgstr ""
+
+#: ../root/main/error/Error401.js:38 ../root/user/Login.js:89
+msgid ""
+"If you think this is a mistake, please contact support@musicbrainz."
+"org
with the name of your account."
+msgstr ""
+
+#: ../root/main/error/Error403.js:21 ../root/main/error/MirrorError403.js:13
+msgid "Forbidden Request"
+msgstr ""
+
+#: ../root/main/error/Error403.js:24
+msgid "The page you requested is private."
+msgstr ""
+
+#: ../root/main/error/Error403.js:35
+msgid ""
+"If you followed a link on our site to get here, please {report|report a bug} "
+"and the URL of the page that sent you here."
+msgstr ""
+
+#: ../root/main/error/Error404.js:35
+msgid "Sorry, the page you're looking for does not exist."
+msgstr ""
+
+#: ../root/main/error/Error404.js:40
+#: ../root/main/error/components/ErrorInfo.js:28
+msgid "Error message: "
+msgstr ""
+
+#: ../root/main/error/Error404.js:52
+msgid ""
+"Found a broken link on our site? Please {report|report a bug} and include "
+"any error message that is shown above."
+msgstr ""
+
+#: ../root/main/error/Error500.js:37
+msgid "Internal Server Error"
+msgstr ""
+
+#: ../root/main/error/Error500.js:40
+#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:553
+msgid "Oops, something went wrong!"
+msgstr ""
+
+#: ../root/main/error/Error500.js:50
+msgid "Edits loaded for the page:"
+msgstr ""
+
+#: ../root/main/error/Error500.js:60
+msgid "raw edit data"
+msgstr ""
+
+#: ../root/main/error/Error500.js:65
+msgid "fully loaded"
+msgstr ""
+
+#: ../root/main/error/Error500.js:78
+msgid ""
+"We’re terribly sorry for this problem. Please wait a few minutes and repeat "
+"your request — the problem may go away."
+msgstr ""
+
+#: ../root/main/error/Error500.js:85
+msgid ""
+"If the problem persists, please {report|report a bug} and include any error "
+"message that is shown above."
+msgstr ""
+
+#: ../root/main/error/Error503.js:13
+msgid "System Busy"
+msgstr ""
+
+#: ../root/main/error/Error503.js:16
+msgid "The system is overloaded or you are making requests too fast."
+msgstr ""
+
+#: ../root/main/error/Error503.js:21
+msgid "Please wait a few minutes and repeat your request."
+msgstr ""
+
+#: ../root/main/error/MirrorError403.js:16
+msgid "Sorry, you are unable to perform that action on a mirror server."
+msgstr ""
+
+#: ../root/main/error/MirrorError403.js:23
+msgid ""
+"In order to log in or make changes to the database you must visit the main "
+"server at {mb|https://musicbrainz.org/}."
+msgstr ""
+
+#: ../root/main/error/MirrorError404.js:16
+msgid "Sorry, the page you're looking for is not available on a mirror server."
+msgstr ""
+
+#: ../root/main/error/MirrorError404.js:23
+msgid ""
+"In order to view this page, please visit the main server at {mb|https://"
+"musicbrainz.org/}."
+msgstr ""
+
+#: ../root/main/error/TimeoutError.js:25
+msgid "Request Timed Out"
+msgstr ""
+
+#: ../root/main/error/TimeoutError.js:28
+msgid "Processing your request took too long and timed out."
+msgstr ""
+
+#: ../root/main/error/TimeoutError.js:33
+msgid "It may help to try again by reloading the page."
+msgstr ""
+
+#: ../root/main/error/components/ErrorEnvironment.js:34
+msgid "Host:"
+msgstr ""
+
+#: ../root/main/error/components/ErrorEnvironment.js:42
+msgid "Interface language:"
+msgstr ""
+
+#: ../root/main/error/components/ErrorEnvironment.js:55
+msgid "Request data:"
+msgstr ""
+
+#: ../root/main/error/components/ErrorInfo.js:32
+msgid "(No details about this error are available)"
+msgstr ""
+
+#: ../root/main/index.js:36
+msgid "MusicBrainz - The Open Music Encyclopedia"
+msgstr ""
+
+#: ../root/main/index.js:40
+msgid "Welcome to MusicBrainz!"
+msgstr ""
+
+#: ../root/main/index.js:44
+msgid ""
+"MusicBrainz is an open music encyclopedia that collects music metadata and "
+"makes it available to the public."
+msgstr ""
+
+#: ../root/main/index.js:50
+msgid "MusicBrainz aims to be:"
+msgstr ""
+
+#: ../root/main/index.js:56
+msgid ""
+"The ultimate source of music information by allowing anyone "
+"to contribute and releasing the {doc|data} under {doc2|open licenses}."
+msgstr ""
+
+#: ../root/main/index.js:67
+msgid ""
+"The universal lingua franca for music by providing a "
+"reliable and unambiguous form of {doc|music identification}, enabling both "
+"people and machines to have meaningful conversations about music."
+msgstr ""
+
+#: ../root/main/index.js:80
+msgid ""
+"Like Wikipedia, MusicBrainz is maintained by a global community of users and "
+"we want everyone — including you — to {doc|participate and "
+"contribute}."
+msgstr ""
+
+#: ../root/main/index.js:91
+msgid ""
+"{about|More Information} — {faq|FAQs} — {contact|Contact Us}"
+msgstr ""
+
+#: ../root/main/index.js:103
+msgid ""
+"MusicBrainz is operated by the {uri|MetaBrainz Foundation}, a California "
+"based 501(c)(3) tax-exempt non-profit corporation dedicated to keeping "
+"MusicBrainz {free|free and open source}."
+msgstr ""
+
+#: ../root/main/index.js:116
+msgid "MetaBrainz Blog"
+msgstr ""
+
+#: ../root/main/index.js:121
+msgid "Latest posts:"
+msgstr ""
+
+#: ../root/main/index.js:133
+msgid "Read more »"
+msgstr ""
+
+#: ../root/main/index.js:140
+msgid "The blog is currently unavailable."
+msgstr ""
+
+#: ../root/main/index.js:149
+msgid "Tag Your Music"
+msgstr ""
+
+#: ../root/main/index.js:169
+msgid "Quick Start"
+msgstr ""
+
+#: ../root/main/index.js:172
+msgid "Beginners guide"
+msgstr ""
+
+#: ../root/main/index.js:176
+msgid "Editing introduction"
+msgstr ""
+
+#: ../root/main/index.js:187
+msgid "How to add artists"
+msgstr ""
+
+#: ../root/main/index.js:192
+msgid "How to add releases"
+msgstr ""
+
+#: ../root/main/index.js:203
+msgid "Community"
+msgstr ""
+
+#: ../root/main/index.js:206
+msgid "How to Contribute"
+msgstr ""
+
+#: ../root/main/index.js:222
+msgid ""
+"The majority of the data in the MusicBrainz Database is "
+"released into the Public Domain and can be downloaded and "
+"used for free."
+msgstr ""
+
+#: ../root/main/index.js:232
+msgid "Developers"
+msgstr ""
+
+#: ../root/main/index.js:236
+msgid ""
+"Use our XML web service or development libraries"
+"strong> to create your own MusicBrainz-enabled applications."
+msgstr ""
+
+#: ../root/main/index.js:246
+msgid "Recent Additions"
+msgstr ""
+
+#: ../root/mbid/NotFound.js:21
+msgid "MBID Not Found"
+msgstr ""
+
+#: ../root/mbid/NotFound.js:21
+msgid "Invalid MBID"
+msgstr ""
+
+#: ../root/mbid/NotFound.js:25
+msgid ""
+"No MusicBrainz {entity_doc|entities} match the {mbid_doc|MBID} {mbid}. "
+"Either it’s incorrect, it was for an entity that has since been removed, or "
+"it is an ID for something else than an entity (for example, a "
+"{rel_type_table|relationship type})."
+msgstr ""
+
+#: ../root/mbid/NotFound.js:39
+msgid "{mbid} is not a valid {mbid_doc|MBID}."
+msgstr ""
+
+#: ../root/mbid/NotFound.js:47
+msgid "No {mbid_doc|MBID} selected."
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:28 ../root/oauth2/OAuth2Oob.js:21
+msgid "OAuth Authorization"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:29
+msgid "Authorization"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:33
+msgid "{app} is requesting permission to:"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:44
+msgid "Perform the above operations when I'm not using the application"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:59
+msgid "No thanks"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Authorize.js:62
+msgid "Allow access"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Error.js:21
+msgid "OAuth Authorization Error"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Error.js:22
+msgid "Error: {error}"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Error.js:24
+msgid "{doc|Learn more}"
+msgstr ""
+
+#: ../root/oauth2/OAuth2FormPost.js:21
+msgid "Redirecting to {application}"
+msgstr ""
+
+#: ../root/oauth2/OAuth2FormPost.js:33
+msgid "If this page doesn’t redirect automatically, press “Submit” below."
+msgstr ""
+
+#: ../root/oauth2/OAuth2Oob.js:22
+msgid "Success!"
+msgstr ""
+
+#: ../root/oauth2/OAuth2Oob.js:25
+msgid ""
+"You have granted access to {app}. Next, return to {app} and copy this token "
+"to complete the authorization process:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:82
+msgid "Artist IPI:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:87
+msgid "Artist ISNI:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:92
+msgid "Label IPI:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:97
+msgid "Label ISNI:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupForm.js:102
+msgid "FreeDB ID:"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupIndex.js:22
+#: ../root/otherlookup/OtherLookupIndex.js:24
+msgid "Other Lookups"
+msgstr ""
+
+#: ../root/otherlookup/OtherLookupReleaseResults.js:22
+#: ../root/otherlookup/OtherLookupReleaseResults.js:23
+#: ../root/search/components/ResultsLayout.js:32
+#: ../root/search/components/ResultsLayout.js:34
+msgid "Search Results"
+msgstr ""
+
+#: ../root/place/PlaceEvents.js:61
+msgid "This place is not currently associated with any events."
+msgstr ""
+
+#: ../root/place/PlaceMap.js:47
+msgid "A map cannot be shown because this place has no coordinates."
+msgstr ""
+
+#: ../root/place/PlaceMerge.js:32
+msgid ""
+"You are about to merge all these places into a single one. Please select the "
+"place all others should be merged into:"
+msgstr ""
+
+#: ../root/place/PlacePerformances.js:33
+msgid "No recordings, releases or release groups are linked to this place."
+msgstr ""
+
+#: ../root/recording/DeleteRecording.js:34
+#: ../root/recording/DeleteRecording.js:36
+msgid "Remove Recording"
+msgstr ""
+
+#: ../root/recording/DeleteRecording.js:43
+msgid ""
+"Please make sure you’re not removing a legitimate {doc_standalone|standalone "
+"recording}."
+msgstr ""
+
+#: ../root/recording/DeleteRecording.js:57
+msgid "This recording cannot be removed because it is still used on releases."
+msgstr ""
+
+#: ../root/recording/RecordingFingerprints.js:27
+msgid "Associated AcoustIDs"
+msgstr ""
+
+#: ../root/recording/RecordingHeader.js:40
+msgid "Video by {artist}"
+msgstr ""
+
+#: ../root/recording/RecordingHeader.js:41
+msgid "Recording by {artist}"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:56
+msgid "Track Artist"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:57
+msgid "Release Title"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:58
+msgid "Release Artist"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:59
+msgid "Release Group Type"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:81
+#: ../root/release_group/ReleaseGroupIndex.js:60
+msgctxt "release status"
+msgid "(unknown)"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:94
+msgid "Medium {medium_num}, track {track_num}"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:176
+msgid "Appears on releases"
+msgstr ""
+
+#: ../root/recording/RecordingIndex.js:184
+msgid "No releases found which feature this recording."
+msgstr ""
+
+#: ../root/recording/RecordingMerge.js:34
+msgid ""
+"You are about to merge all these recordings into a single one. Please select "
+"the recording all others should be merged into:"
+msgstr ""
+
+#: ../root/recording/RecordingMerge.js:41
+msgid ""
+"Warning: Some of the recordings you're merging have "
+"different ISRCs. Please make sure they are indeed the same recordings and "
+"you wish to continue with the merge."
+msgstr ""
+
+#: ../root/relationship/RelationshipsHeader.js:23
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:87
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:178
+msgid "Relationship Attributes"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/DeleteRelationshipAttributeType.js:24
+msgid ""
+"Are you sure you wish to remove the {link_attr_type} "
+"relationship attribute?"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/DeleteRelationshipAttributeType.js:28
+msgid "Remove Relationship Attribute"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:19
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:21
+msgid "Relationship attribute in use"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeInUse.js:24
+msgid ""
+"The relationship attribute type “{type}” can’t be removed because it’s still "
+"in use."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:77
+msgid "Relationship Attribute"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:128
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:188
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:111
+msgid "UUID:"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:134
+msgid "Parent attribute"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:157
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:150
+msgid "Possible values"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:161
+msgid ""
+"The possible values for this relationship can be seen from the "
+"{instrument_list|instrument list}."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:182
+msgid "Relationship usage"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:186
+msgid "This attribute is being used by the following relationship types:"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:200
+msgid "{type0} - {type1}"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypeIndex.js:217
+msgid "This attribute isn’t directly being used by any relationship types."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:45
+msgid "none"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:62
+msgid "Add child"
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:168
+msgid "No relationship attributes found."
+msgstr ""
+
+#: ../root/relationship/linkattributetype/RelationshipAttributeTypesList.js:184
+msgid "Add a new relationship attribute"
+msgstr ""
+
+#: ../root/relationship/linktype/DeleteRelationshipType.js:24
+msgid ""
+"Are you sure you wish to remove the {link_type} "
+"relationship type?"
+msgstr ""
+
+#: ../root/relationship/linktype/DeleteRelationshipType.js:28
+msgid "Remove Relationship Type"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeInUse.js:19
+#: ../root/relationship/linktype/RelationshipTypeInUse.js:21
+msgid "Relationship Type In Use"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeInUse.js:24
+msgid ""
+"The relationship type “{type}” can’t be removed because it’s still in use."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:48
+msgid "This relationship type doesn't allow any attributes."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:52
+msgid "The following attributes can be used with this relationship type:"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:73
+msgid "start date"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:76
+msgid "end date"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:116
+msgid "{entity0}-{entity1}"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:126
+#: ../root/static/scripts/edit/externalLinks.js:774
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:72
+msgid "This relationship type is deprecated and should not be used."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:194
+msgid "Link phrases"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:223
+msgid "Guidelines"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:227
+msgid "See the general {url|guidelines for URLs}."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypeIndex.js:260
+msgid ""
+"This relationship type is only used for grouping other relationship types."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:47
+msgid "more"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:69
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:76
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:83
+msgctxt "link phrase"
+msgid "(none)"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:134
+msgid "{relationship_documentation_url|Documentation}"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:172
+msgid "{type0}-{type1} Relationship Types"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:183
+msgid "< Back to all relationship types"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:190
+msgid "{type0}-{type1} relationship types"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:199
+msgid "Add a new {type0}-{type1} relationship type"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:210
+msgid "Expand all descriptions"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:213
+msgid "Collapse all descriptions"
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypePairTree.js:232
+msgid "No {type0}-{type1} relationship types found."
+msgstr ""
+
+#: ../root/relationship/linktype/RelationshipTypesList.js:40
+msgid "{type0}-{type1}"
+msgstr ""
+
+#: ../root/release/ChangeQuality.js:52
+msgid ""
+"{data_quality_doc|Data quality} indicates how good the data for a release "
+"is. It is not a mark of how good or bad the music itself is — for that, use "
+"{ratings_doc|ratings}."
+msgstr ""
+
+#: ../root/release/CoverArt.js:32
+msgid "250px"
+msgstr ""
+
+#: ../root/release/CoverArt.js:38
+msgid "500px"
+msgstr ""
+
+#: ../root/release/CoverArt.js:44
+msgid "1200px"
+msgstr ""
+
+#: ../root/release/CoverArt.js:48
+msgid "original"
+msgstr ""
+
+#: ../root/release/CoverArt.js:63
+msgid "Cannot show cover art"
+msgstr ""
+
+#: ../root/release/CoverArt.js:100
+msgid "All sizes:"
+msgstr ""
+
+#: ../root/release/CoverArt.js:125
+msgid ""
+"These images provided by the {caa|Cover Art Archive}. You can also see them "
+"at the {ia|Internet Archive}."
+msgstr ""
+
+#: ../root/release/CoverArt.js:137
+msgid "We do not currently have any cover art for {release}."
+msgstr ""
+
+#: ../root/release/CoverArt.js:147
+msgctxt "button/menu"
+msgid "Add Cover Art"
+msgstr ""
+
+#: ../root/release/CoverArt.js:153
+msgctxt "button/menu"
+msgid "Reorder Cover Art"
+msgstr ""
+
+#: ../root/release/CoverArt.js:161
+msgid "Log in to upload cover art"
+msgstr ""
+
+#: ../root/release/CoverArtDarkened.js:19
+msgid "Cannot Add Cover Art"
+msgstr ""
+
+#: ../root/release/CoverArtFields.js:78
+msgid "Choose one or more cover art types for this image"
+msgstr ""
+
+#: ../root/release/DeleteRelease.js:31 ../root/release/DeleteRelease.js:33
+msgid "Remove Release"
+msgstr ""
+
+#: ../root/release/EditRelationships.js:28
+msgid "Edit Relationships: {release}"
+msgstr ""
+
+#: ../root/release/EditRelationships.js:35
+msgid ""
+"To use the batch tools, select some recordings or works using the checkboxes."
+msgstr ""
+
+#: ../root/release/EditRelationships.js:42
+msgid ""
+"Please read {relationships_doc|our guidelines for relationships} if you "
+"haven’t already."
+msgstr ""
+
+#: ../root/release/ReleaseHeader.js:29
+msgid "see all versions of this release, {count} available"
+msgid_plural "see all versions of this release, {count} available"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/release/ReleaseHeader.js:36
+msgid "Release by {artist}"
+msgstr ""
+
+#: ../root/release/ReleaseMerge.js:41
+msgid ""
+"You are about to merge the following releases into a single release. Please "
+"select the release which you would like other releases to be merged into:"
+msgstr ""
+
+#: ../root/release/RemoveCoverArt.js:31
+msgid "Remove Cover Art"
+msgstr ""
+
+#: ../root/release/RemoveCoverArt.js:38
+msgid ""
+"Are you sure you wish to remove the below cover art from {release} by "
+"{artist}?"
+msgstr ""
+
+#: ../root/release_group/ReleaseGroupHeader.js:28
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:814
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:504
+msgid "Release group by {artist}"
+msgstr ""
+
+#: ../root/release_group/ReleaseGroupMerge.js:32
+msgid ""
+"You are about to merge all these release groups into a single one. Please "
+"select the release group all others should be merged into:"
+msgstr ""
+
+#: ../root/report/AnnotationsArtists.js:29
+msgid "This report lists artists with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsArtists.js:34
+msgid "Artist annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsEvents.js:29
+msgid "This report lists events with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsEvents.js:34
+msgid "Event annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsLabels.js:29
+msgid "This report lists labels with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsLabels.js:34
+msgid "Label annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsPlaces.js:29
+msgid "This report lists places with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsPlaces.js:34
+msgid "Place annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsRecordings.js:30
+msgid "This report lists recordings with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsRecordings.js:35
+msgid "Recording annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsReleaseGroups.js:30
+msgid "This report lists release groups with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsReleaseGroups.js:35
+msgid "Release group annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsReleases.js:29
+msgid "This report lists releases with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsReleases.js:34
+msgid "Release annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsSeries.js:29
+msgid "This report lists series with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsSeries.js:34
+msgid "Series annotations"
+msgstr ""
+
+#: ../root/report/AnnotationsWorks.js:29
+msgid "This report lists works with annotations."
+msgstr ""
+
+#: ../root/report/AnnotationsWorks.js:34
+msgid "Work annotations"
+msgstr ""
+
+#: ../root/report/ArtistCreditsWithDubiousTrailingPhrases.js:24
+msgid ""
+"This report lists artist credits that have a trailing join phrase that looks "
+"like it might have been left behind in error, such as a trailing comma or "
+"“feat.”."
+msgstr ""
+
+#: ../root/report/ArtistCreditsWithDubiousTrailingPhrases.js:31
+#: ../root/report/ReportsIndex.js:120
+msgid "Artist credits with dubious trailing join phrases"
+msgstr ""
+
+#: ../root/report/ArtistsContainingDisambiguationComments.js:24
+msgid ""
+"This report lists artists that may have disambiguation comments in their "
+"name, rather than the actual disambiguation comment field."
+msgstr ""
+
+#: ../root/report/ArtistsContainingDisambiguationComments.js:30
+#: ../root/report/ReportsIndex.js:84
+msgid "Artists containing disambiguation comments in their name"
+msgstr ""
+
+#: ../root/report/ArtistsDisambiguationSameName.js:24
+msgid ""
+"This report lists artists that have their disambiguation set to be the same "
+"as their name. The disambiguation should be removed or, if it is needed, "
+"improved."
+msgstr ""
+
+#: ../root/report/ArtistsDisambiguationSameName.js:31
+#: ../root/report/ReportsIndex.js:111
+msgid "Artists with disambiguation the same as the name"
+msgstr ""
+
+#: ../root/report/ArtistsThatMayBeGroups.js:24
+msgid ""
+"This report lists artists that have their type set to other than Group (or a "
+"subtype of Group) but may be a group, because they have other artists listed "
+"as members. If you find that an artist here is indeed a group, change its "
+"type. If it is not, please make sure that the “member of” relationships are "
+"in the right direction and are correct."
+msgstr ""
+
+#: ../root/report/ArtistsThatMayBeGroups.js:34
+#: ../root/report/ReportsIndex.js:59
+msgid "Artists that may be groups"
+msgstr ""
+
+#: ../root/report/ArtistsThatMayBePersons.js:24
+msgid ""
+"This report lists artists that have their type set to other than Person, but "
+"may be a person, based on their relationships. For example, an artist will "
+"appear here if it is listed as a member of another. If you find that an "
+"artist here is indeed a person, change its type. If it is not, please make "
+"sure that all the relationships are correct and make sense."
+msgstr ""
+
+#: ../root/report/ArtistsThatMayBePersons.js:34
+#: ../root/report/ReportsIndex.js:63
+msgid "Artists that may be persons"
+msgstr ""
+
+#: ../root/report/ArtistsWithMultipleOccurrencesInArtistCredits.js:24
+msgid ""
+"This report lists artists that appear more than once in different positions "
+"within the same artist credit."
+msgstr ""
+
+#: ../root/report/ArtistsWithMultipleOccurrencesInArtistCredits.js:30
+#: ../root/report/ReportsIndex.js:98
+msgid "Artists occurring multiple times in the same artist credit"
+msgstr ""
+
+#: ../root/report/ArtistsWithNoSubscribers.js:24
+msgid ""
+"This report lists artists that have no editors subscribed to them, and whose "
+"changes may therefore be under-reviewed. Artists with more release groups "
+"and more open edits are listed first."
+msgstr ""
+
+#: ../root/report/ArtistsWithNoSubscribers.js:31
+#: ../root/report/ReportsIndex.js:67
+msgid "Artists with no subscribers"
+msgstr ""
+
+#: ../root/report/AsinsWithMultipleReleases.js:24
+msgid ""
+"This report shows Amazon URLs which are linked to multiple releases. In most "
+"cases Amazon ASINs should map to MusicBrainz releases 1:1, so only one of "
+"the links will be correct. Just check which MusicBrainz release fits the "
+"release in Amazon (look at the format, tracklist, etc). If the release has a "
+"barcode, you can also search Amazon for it and see which ASIN matches. You "
+"might also find some ASINs linked to several discs of a multi-disc release: "
+"just merge those (see {how_to_merge_releases|How to Merge Releases})."
+msgstr ""
+
+#: ../root/report/AsinsWithMultipleReleases.js:38
+#: ../root/report/ReportsIndex.js:280
+msgid "Amazon URLs linked to multiple releases"
+msgstr ""
+
+#: ../root/report/BadAmazonUrls.js:35
+#: ../root/report/LinksWithMultipleEntities.js:86
+#: ../root/report/WikidataLinksWithMultipleEntities.js:81
+#: ../root/report/components/RemovedUrlRow.js:16
+msgid "This URL no longer exists."
+msgstr ""
+
+#: ../root/report/BadAmazonUrls.js:47
+msgid ""
+"This report shows releases with Amazon URLs which don't follow the expected "
+"format. They might still be correct if they're archive.org cover links, but "
+"in any other case they should probably be fixed or removed."
+msgstr ""
+
+#: ../root/report/BadAmazonUrls.js:55
+msgid "Bad Amazon URLs"
+msgstr ""
+
+#: ../root/report/CDTocDubiousLength.js:24
+msgid ""
+"This report shows disc IDs indicating a total duration much longer than what "
+"a standard CD allows (at least 88 minutes for a CD, or 30 minutes for a mini-"
+"CD). This usually means a disc ID was generated for the wrong format (SACD) "
+"or with a buggy tool."
+msgstr ""
+
+#: ../root/report/CDTocDubiousLength.js:32 ../root/report/ReportsIndex.js:628
+msgid "Disc IDs with dubious duration"
+msgstr ""
+
+#: ../root/report/CDTocNotApplied.js:24
+msgid ""
+"This report shows disc IDs attached to a release but obviously not applied "
+"because at least one track length is unknown on the release. The report is "
+"also restricted to mediums where only one disc ID is attached, so it is "
+"highly likely that the disc ID can be applied without any worries. Do make "
+"sure though that no existing lengths clash with the disc ID, or that any "
+"clashes are clear mistakes."
+msgstr ""
+
+#: ../root/report/CDTocNotApplied.js:34 ../root/report/ReportsIndex.js:632
+msgid "Disc IDs attached but not applied"
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeAsin.js:28
+msgid ""
+"This report shows releases which have catalog numbers that look like ASINs. "
+"This is almost always wrong: ASINs are just Amazon's entries for the "
+"releases and should be linked to the release with an Amazon URL relationship "
+"instead."
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeAsin.js:36 ../root/report/ReportsIndex.js:323
+msgid "Releases with catalog numbers that look like ASINs"
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeIsrc.js:28
+msgid ""
+"This report shows releases which have catalog numbers that look like "
+"{doc_link|ISRCs}. Assigning ISRCs to releases is almost always wrong, but "
+"still happens sometimes, especially for releases added to MusicBrainz by an "
+"artist/label. But ISRCs are codes assigned to recordings, and should be "
+"linked to the appropriate recording instead. That said, do make sure this is "
+"not a legitimate catalog number that just happens to look like an ISRC!"
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeIsrc.js:40 ../root/report/ReportsIndex.js:327
+msgid "Releases with catalog numbers that look like ISRCs"
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeLabelCode.js:28
+msgid ""
+"This report shows releases which have catalog numbers that look like "
+"{doc_link|Label Codes}. This is often wrong, since the two are often "
+"confused: label codes apply to the label, not to a specific release. If you "
+"confirm this is a label code (check the label page to see if they match, for "
+"example), remove it or, even better, try to find the actual catalog number."
+msgstr ""
+
+#: ../root/report/CatNoLooksLikeLabelCode.js:39
+#: ../root/report/ReportsIndex.js:332
+msgid "Releases with catalog numbers that look like Label Codes"
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:32
+msgid ""
+"This report lists artists which have collaboration relationships but no URL "
+"relationships. If the collaboration has its own independent name, do "
+"nothing. If it is in a format like \"X with Y\" or \"X & Y\", you should "
+"probably split it. See {how_to_split_artists|How to Split Artists}."
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:42
+msgid "Artists with collaboration relationships"
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:49
+msgid "Collaboration"
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:50
+msgid "Collaborator"
+msgstr ""
+
+#: ../root/report/CollaborationRelationships.js:68
+#: ../root/report/CollaborationRelationships.js:79
+#: ../root/report/DuplicateArtists.js:116
+#: ../root/report/components/ArtistUrlList.js:74
+msgid "This artist no longer exists."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipArtists.js:29
+msgid ""
+"This report lists artists which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipArtists.js:35
+#: ../root/report/ReportsIndex.js:103
+msgid "Artists with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipLabels.js:29
+msgid ""
+"This report lists labels which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipLabels.js:35
+#: ../root/report/ReportsIndex.js:186
+msgid "Labels with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipPlaces.js:29
+msgid ""
+"This report lists places which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipPlaces.js:35
+#: ../root/report/ReportsIndex.js:546
+msgid "Places with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipRecordings.js:29
+msgid ""
+"This report lists recordings which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipRecordings.js:35
+#: ../root/report/ReportsIndex.js:492
+msgid "Recordings with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipReleaseGroups.js:29
+msgid ""
+"This report lists release groups which have relationships using deprecated "
+"and grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipReleaseGroups.js:35
+#: ../root/report/ReportsIndex.js:223
+msgid "Release groups with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipReleases.js:29
+msgid ""
+"This report lists releases which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipReleases.js:35
+#: ../root/report/ReportsIndex.js:397
+msgid "Releases with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipUrls.js:29
+msgid ""
+"This report lists URLs which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipUrls.js:35
+#: ../root/report/ReportsIndex.js:593
+msgid "URLs with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipWorks.js:29
+msgid ""
+"This report lists works which have relationships using deprecated and "
+"grouping-only relationship types."
+msgstr ""
+
+#: ../root/report/DeprecatedRelationshipWorks.js:35
+#: ../root/report/ReportsIndex.js:576
+msgid "Works with deprecated relationships"
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleArtists.js:25
+msgid "This report shows Discogs URLs which are linked to multiple artists."
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleArtists.js:30
+#: ../root/report/ReportsIndex.js:89
+msgid "Discogs URLs linked to multiple artists"
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleLabels.js:25
+msgid "This report shows Discogs URLs which are linked to multiple labels."
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleLabels.js:30
+#: ../root/report/ReportsIndex.js:178
+msgid "Discogs URLs linked to multiple labels"
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleReleaseGroups.js:25
+msgid ""
+"This report shows Discogs URLs which are linked to multiple release groups."
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleReleaseGroups.js:31
+#: ../root/report/ReportsIndex.js:213
+msgid "Discogs URLs linked to multiple release groups"
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleReleases.js:25
+msgid ""
+"This report shows Discogs URLs which are linked to multiple releases. In "
+"most cases Discogs releases should map to MusicBrainz releases 1:1, so only "
+"one of the links will be correct. Just check which MusicBrainz release fits "
+"the release in Discogs (look at the format, tracklist, release country, "
+"etc.). You might also find some Discogs URLs linked to several discs of a "
+"multi-disc release: just merge those (see {how_to_merge_releases|How to "
+"Merge Releases})."
+msgstr ""
+
+#: ../root/report/DiscogsLinksWithMultipleReleases.js:37
+#: ../root/report/ReportsIndex.js:284
+msgid "Discogs URLs linked to multiple releases"
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:38
+msgid "Total duplicate groups: {count}"
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:40
+msgid ""
+"This report aims to identify artists with very similar names. If two artists "
+"are actually the same, please merge them (remember to "
+"{how_to_write_edit_notes|write an edit note} and give your proof). If "
+"they're different, add {disambiguation_comment|disambiguation comments} to "
+"them (and once a group of similarly named artists have disambiguation "
+"comments, they will stop appearing here)."
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:55 ../root/report/ReportsIndex.js:71
+msgid "Possibly duplicate artists"
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:99
+msgid "alias:"
+msgstr ""
+
+#: ../root/report/DuplicateArtists.js:109
+#: ../root/report/DuplicateReleaseGroups.js:93
+#: ../root/report/components/ArtistList.js:59
+#: ../root/report/components/ReleaseGroupList.js:63
+#: ../root/report/components/WorkList.js:63
+#: ../root/static/scripts/common/components/Cardinality.js:26
+msgid "Unknown"
+msgstr ""
+
+#: ../root/report/DuplicateEvents.js:24
+msgid ""
+"This report lists events happening at the same place on the same date. If "
+"there are duplicates (for example, if there are separate events for "
+"headliner and supporting artist) please merge them."
+msgstr ""
+
+#: ../root/report/DuplicateEvents.js:32
+msgid "Possible duplicate events"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsArtists.js:24
+msgid ""
+"This report lists artists which have multiple relatonships to the same "
+"artist, label or URL using the same relationship type. For multiple "
+"relationships to release groups, recordings or works, see the reports for "
+"those entities."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsArtists.js:32
+#: ../root/report/ReportsIndex.js:93
+msgid "Artists with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsLabels.js:24
+msgid ""
+"This report lists labels which have multiple relationships to the same "
+"entity using the same relationship type."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsLabels.js:30
+#: ../root/report/ReportsIndex.js:182
+msgid "Labels with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsRecordings.js:24
+msgid ""
+"This report lists recordings which have multiple relationships to the same "
+"entity using the same relationship type."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsRecordings.js:30
+#: ../root/report/ReportsIndex.js:484
+msgid "Recordings with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsReleaseGroups.js:24
+msgid ""
+"This report lists release groups which have multiple relationships to the "
+"same entity using the same relationship type."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsReleaseGroups.js:30
+#: ../root/report/ReportsIndex.js:218
+msgid "Release groups with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsReleases.js:24
+msgid ""
+"This report lists releases which have multiple relationships to the same "
+"entity using the same relationship type."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsReleases.js:30
+#: ../root/report/ReportsIndex.js:381
+msgid "Releases with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsWorks.js:24
+msgid ""
+"This report lists works which have multiple relationships to the same entity "
+"using the same relationship type. This excludes recording-work "
+"relationships. See the recording version of this report for those."
+msgstr ""
+
+#: ../root/report/DuplicateRelationshipsWorks.js:32
+#: ../root/report/ReportsIndex.js:572
+msgid "Works with possible duplicate relationships"
+msgstr ""
+
+#: ../root/report/DuplicateReleaseGroups.js:39
+msgid ""
+"This report lists release groups with very similar names and artists. If the "
+"releases in the release groups should be grouped together (see the {url|"
+"guidelines}), they can be merged. If they shouldn't be grouped together but "
+"they can be distinguished by the release group types, such as when an artist "
+"has an album and single with the same name, then there is usually no need to "
+"change anything. In other cases, a disambiguation comment may be helpful."
+msgstr ""
+
+#: ../root/report/DuplicateReleaseGroups.js:52
+#: ../root/report/ReportsIndex.js:227
+msgid "Possible duplicate release groups"
+msgstr ""
+
+#: ../root/report/DuplicateReleaseGroups.js:100
+#: ../root/report/components/ReleaseGroupUrlList.js:83
+msgid "This release group no longer exists."
+msgstr ""
+
+#: ../root/report/EventSequenceNotInSeries.js:24
+msgid ""
+"This report lists events where the event name indicates that it may have to "
+"be part of a series or a larger event."
+msgstr ""
+
+#: ../root/report/EventSequenceNotInSeries.js:30
+#: ../root/report/ReportsIndex.js:151
+msgid "Events which should be part of series or larger event"
+msgstr ""
+
+#: ../root/report/FeaturingRecordings.js:24
+msgid ""
+"This report shows recordings with “(feat. Artist)” (or similar) in the "
+"title. For classical recordings, consult the {CSG|classical style "
+"guidelines}. For non-classical recordings, this is usually inherited from an "
+"older version of MusicBrainz and should be fixed (both on the recordings and "
+"on the tracks!). Consult the {featured_artists|page about featured artists} "
+"to know more."
+msgstr ""
+
+#: ../root/report/FeaturingRecordings.js:39 ../root/report/ReportsIndex.js:480
+msgid "Recordings with titles containing featuring artists"
+msgstr ""
+
+#: ../root/report/FeaturingReleaseGroups.js:24
+msgid ""
+"This report shows release groups with “(feat. Artist)” (or similar) in the "
+"title. For classical release groups, consult the {CSG|classical style "
+"guidelines}. For non-classical release groups, this is usually inherited "
+"from an older version of MusicBrainz and should be fixed. Consult the "
+"{featured_artists|page about featured artists} to know more."
+msgstr ""
+
+#: ../root/report/FeaturingReleaseGroups.js:38
+#: ../root/report/ReportsIndex.js:208
+msgid "Release groups with titles containing featuring artists"
+msgstr ""
+
+#: ../root/report/FeaturingReleases.js:24
+msgid ""
+"This report shows releases with “(feat. Artist)” (or similar) in the title. "
+"For classical releases, consult the {CSG|classical style guidelines}. For "
+"non-classical releases, this is usually inherited from an older version of "
+"MusicBrainz and should be fixed. Consult the {featured_artists|page about "
+"featured artists} to know more. Don’t forget that the same generally applies "
+"to tracks, so if the track titles also include featuring credits you can fix "
+"them too while you edit the release!"
+msgstr ""
+
+#: ../root/report/FeaturingReleases.js:41 ../root/report/ReportsIndex.js:308
+msgid "Releases with titles containing featuring artists"
+msgstr ""
+
+#: ../root/report/FilterLink.js:27
+msgid "Show all results."
+msgstr ""
+
+#: ../root/report/FilterLink.js:31
+msgid "Show only results that are in my subscribed entities."
+msgstr ""
+
+#: ../root/report/InstrumentsWithoutAnImage.js:24
+msgid ""
+"This report shows instruments without an image relationship to StaticBrainz "
+"(that is, without an IROMBOOK image)."
+msgstr ""
+
+#: ../root/report/InstrumentsWithoutAnImage.js:30
+#: ../root/report/ReportsIndex.js:163
+msgid "Instruments without an image"
+msgstr ""
+
+#: ../root/report/InstrumentsWithoutWikidata.js:24
+msgid "This report shows instruments without Wikidata relationships."
+msgstr ""
+
+#: ../root/report/InstrumentsWithoutWikidata.js:29
+msgid "Instruments without a Wikidata link"
+msgstr ""
+
+#: ../root/report/IsrcsWithManyRecordings.js:37
+msgid ""
+"This report lists {isrc|ISRCs} that are attached to more than one recording. "
+"If the recordings are the same, this usually means they should be merged "
+"(ISRCs can be wrongly assigned so care should still be taken to make sure "
+"they really are the same). If the recordings are parts of a larger "
+"recording, the ISRCs are probably correct and should be left alone. If the "
+"same ISRC appears on two unrelated recordings on the same release, this is "
+"usually means there was an error when reading the disc."
+msgstr ""
+
+#: ../root/report/IsrcsWithManyRecordings.js:51
+#: ../root/report/ReportsIndex.js:610
+msgid "ISRCs with multiple recordings"
+msgstr ""
+
+#: ../root/report/IsrcsWithManyRecordings.js:98
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:82
+msgid "This recording no longer exists."
+msgstr ""
+
+#: ../root/report/IswcsWithManyWorks.js:34
+msgid ""
+"This report lists {iswc|ISWCs} that are attached to more than one work. If "
+"the works are the same, this usually means they should be merged."
+msgstr ""
+
+#: ../root/report/IswcsWithManyWorks.js:42 ../root/report/ReportsIndex.js:619
+msgid "ISWCs with multiple works"
+msgstr ""
+
+#: ../root/report/IswcsWithManyWorks.js:83
+msgid "This work no longer exists."
+msgstr ""
+
+#: ../root/report/LabelsDisambiguationSameName.js:24
+msgid ""
+"This report lists labels that have their disambiguation set to be the same "
+"as their name. The disambiguation should be removed or, if it is needed, "
+"improved."
+msgstr ""
+
+#: ../root/report/LabelsDisambiguationSameName.js:31
+#: ../root/report/ReportsIndex.js:194
+msgid "Labels with disambiguation the same as the name"
+msgstr ""
+
+#: ../root/report/LimitedEditors.js:31
+msgid "This report lists {url|beginner/limited editors}."
+msgstr ""
+
+#: ../root/report/LimitedEditors.js:37 ../root/report/ReportsIndex.js:131
+msgid "Beginner/limited editors"
+msgstr ""
+
+#: ../root/report/LinksWithMultipleEntities.js:40
+msgid ""
+"This report shows URLs that are linked to multiple entities. It excludes "
+"license relationships (where reuse is expected) and Amazon (for releases), "
+"Discogs and Wikidata, which have their own reports. The links here should be "
+"reviewed to see whether they are really a good match: for example, a generic "
+"link to a store page could be replaced with specific per-release store "
+"links, and a link attached to all movements of a classical work might be a "
+"better fit for the main parent work only."
+msgstr ""
+
+#: ../root/report/LinksWithMultipleEntities.js:53
+#: ../root/report/ReportsIndex.js:597
+msgid "URLs linked to multiple entities"
+msgstr ""
+
+#: ../root/report/LinksWithMultipleEntities.js:61
+#: ../root/report/WikidataLinksWithMultipleEntities.js:56
+#: ../root/report/components/UrlList.js:52
+msgid "URL Entity"
+msgstr ""
+
+#: ../root/report/LinksWithMultipleEntities.js:62
+#: ../root/report/WikidataLinksWithMultipleEntities.js:57
+msgid "Usage count"
+msgstr ""
+
+#: ../root/report/LowQualityReleases.js:26
+msgid ""
+"This report shows releases that have been marked as low quality. If you have "
+"some time, you can review them and try to improve the data as much as "
+"possible before changing their quality back to Normal (or even to High, if "
+"you add all the possible data!). If a release has already been improved but "
+"the quality wasn’t changed accordingly, just enter a data quality change to "
+"remove it from this report."
+msgstr ""
+
+#: ../root/report/LowQualityReleases.js:36 ../root/report/ReportsIndex.js:467
+msgid "Releases marked as low quality"
+msgstr ""
+
+#: ../root/report/MediumsWithOrderInTitle.js:24
+msgid ""
+"This report lists releases where at least one medium has a title that seems "
+"to just be indicating its position (such a first medium with the title “Disc "
+"1”). These should usually be removed, as per {release_style|the release "
+"guidelines}."
+msgstr ""
+
+#: ../root/report/MediumsWithOrderInTitle.js:33
+#: ../root/report/ReportsIndex.js:365
+msgid "Releases with mediums named after their position"
+msgstr ""
+
+#: ../root/report/MediumsWithSequenceIssues.js:24
+msgid ""
+"This report lists all releases with gaps in the medium numbers (for example, "
+"there is a medium 1 and 3 but no medium 2)."
+msgstr ""
+
+#: ../root/report/MediumsWithSequenceIssues.js:30
+msgid "Releases with medium number issues"
+msgstr ""
+
+#: ../root/report/MislinkedPseudoReleases.js:24
+msgid ""
+"This report shows releases with status Pseudo-Release that are marked as the "
+"original version of a translation/transliteration relationship. The pseudo-"
+"release should be the one marked as a translated/transliterated version "
+"instead. If both releases are pseudo-releases, consider linking both to an "
+"official release rather than to each other."
+msgstr ""
+
+#: ../root/report/MislinkedPseudoReleases.js:34
+msgid "Translated/transliterated pseudo-releases marked as original"
+msgstr ""
+
+#: ../root/report/MultipleAsins.js:24
+msgid ""
+"This report shows releases that have more than one Amazon ASIN. In most "
+"cases ASINs should map to MusicBrainz releases 1:1, so only one of them will "
+"be correct. Just check which ones do not fit the release (because of format, "
+"different number of tracks, etc). If the release has a barcode, you can "
+"search Amazon for it and see which ASIN matches."
+msgstr ""
+
+#: ../root/report/MultipleAsins.js:34
+msgid "Releases with multiple ASINs"
+msgstr ""
+
+#: ../root/report/MultipleDiscogsLinks.js:24
+msgid ""
+"This report shows releases that have more than one link to Discogs. In most "
+"cases a MusicBrainz release should have only one equivalent in Discogs, so "
+"only one of them will be correct. Just check which ones do not fit the "
+"release (because of format, different number of tracks, etc). Any \"master\" "
+"Discogs page belongs at the {release_group|release group level}, not at the "
+"release level, and should be removed from releases too."
+msgstr ""
+
+#: ../root/report/MultipleDiscogsLinks.js:36
+msgid "Releases with multiple Discogs links"
+msgstr ""
+
+#: ../root/report/NoLanguage.js:28
+msgid ""
+"This report shows releases that have no language set. If you recognize the "
+"language, please set it! Do it only if you are pretty sure, don't just "
+"guess: not everything written in Cyrillic is Russian, for example."
+msgstr ""
+
+#: ../root/report/NoLanguage.js:36 ../root/report/ReportsIndex.js:260
+msgid "Releases without language"
+msgstr ""
+
+#: ../root/report/NoScript.js:28
+msgid ""
+"This report shows releases that have no script set. If you recognize the "
+"script, just add it! Remember that the script used for English (and most "
+"other European languages) is Latin."
+msgstr ""
+
+#: ../root/report/NoScript.js:35 ../root/report/ReportsIndex.js:264
+msgid "Releases without script"
+msgstr ""
+
+#: ../root/report/NonBootlegsOnBootlegLabels.js:24
+msgid ""
+"This report shows releases that have at least one “Bootleg Production” label "
+"in their labels list, but are not set to status “Bootleg”. These labels "
+"pretty much never release non-bootleg releases, so chances are that either "
+"the label or the status are wrong."
+msgstr ""
+
+#: ../root/report/NonBootlegsOnBootlegLabels.js:32
+#: ../root/report/ReportsIndex.js:456
+msgid "Releases on bootleg labels not set to bootleg"
+msgstr ""
+
+#: ../root/report/PartOfSetRelationships.js:24
+msgid ""
+"This report shows releases that still have the deprecated \"part of set\" "
+"relationship and should probably be merged. For instructions on how to fix "
+"them, please see the documentation about {how_to_merge_releases|how to merge "
+"releases}. If the releases are not really part of a set (for example, if "
+"they are independently-released volumes in a series) just remove the "
+"relationship."
+msgstr ""
+
+#: ../root/report/PartOfSetRelationships.js:36
+msgid "Releases with “part of set” relationships"
+msgstr ""
+
+#: ../root/report/PlacesWithoutCoordinates.js:29
+msgid "This report lists places without coordinates."
+msgstr ""
+
+#: ../root/report/PlacesWithoutCoordinates.js:33
+#: ../root/report/ReportsIndex.js:554
+msgid "Places without coordinates"
+msgstr ""
+
+#: ../root/report/PlacesWithoutCoordinates.js:43
+msgid "Search for coordinates"
+msgstr ""
+
+#: ../root/report/PlacesWithoutCoordinates.js:123
+msgid "This place no longer exists."
+msgstr ""
+
+#: ../root/report/PossibleCollaborations.js:24
+msgid ""
+"This report lists artists which have “&” in their names but no membership-"
+"related relationships (none of member, collaborator, conductor, founder nor "
+"subgroup). If the artist is usually seen as an actual group, member "
+"relationships should be added. If it’s a short term collaboration, it should "
+"be split if possible (see {how_to_split_artists|How to Split Artists}). If "
+"it is a collaboration with its own name and can’t be split, collaboration "
+"relationships should be added to it. For some special cases, such as “Person "
+"& His Orchestra”, conductor and/or founder might be the best choice."
+msgstr ""
+
+#: ../root/report/PossibleCollaborations.js:39
+msgid "Artists that may be collaborations"
+msgstr ""
+
+#: ../root/report/RecordingTrackDifferentName.js:37
+msgid ""
+"This report shows recordings that are linked to only one track, yet have a "
+"different name than the track. This might mean one of the two needs to be "
+"renamed to match the other."
+msgstr ""
+
+#: ../root/report/RecordingTrackDifferentName.js:44
+#: ../root/report/ReportsIndex.js:528
+msgid "Recordings with a different name than their only track"
+msgstr ""
+
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:30
+msgid ""
+"This report shows all recordings with the same name that have different "
+"artists (having different MBIDs) with the same name. These are most likely "
+"cases where the {ac|artist credit} is incorrect for at least one of the "
+"recordings."
+msgstr ""
+
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:38
+msgid "Currently, this report only works with recordings that have one artist."
+msgstr ""
+
+#: ../root/report/RecordingsSameNameDifferentArtistsSameName.js:44
+msgid "Recordings with the same name by different artists with the same name"
+msgstr ""
+
+#: ../root/report/RecordingsWithEarliestReleaseRelationships.js:24
+msgid ""
+"This report shows recordings that have the deprecated \"earliest release\" "
+"relationship. They should be merged if they are truly the same recording; if "
+"they're not, the relationship should be removed. Please, do not merge "
+"recordings blindly just because the lengths fit, and do not merge recordings "
+"with very different times!"
+msgstr ""
+
+#: ../root/report/RecordingsWithEarliestReleaseRelationships.js:34
+#: ../root/report/ReportsIndex.js:476
+msgid "Recordings with earliest release relationships"
+msgstr ""
+
+#: ../root/report/RecordingsWithFutureDates.js:55
+msgid ""
+"This report shows recordings with relationships using dates in the future. "
+"Those are probably typos (such as 2109 instead of 2019)."
+msgstr ""
+
+#: ../root/report/RecordingsWithFutureDates.js:61
+msgid "Recordings with relationships having dates in the future"
+msgstr ""
+
+#: ../root/report/RecordingsWithVaryingTrackLengths.js:24
+msgid ""
+"This report shows recordings where the linked tracks have times that vary by "
+"more than 30 seconds."
+msgstr ""
+
+#: ../root/report/RecordingsWithVaryingTrackLengths.js:30
+#: ../root/report/ReportsIndex.js:488
+msgid "Recordings with varying track times"
+msgstr ""
+
+#: ../root/report/RecordingsWithoutVaCredit.js:24
+msgid ""
+"This report shows recordings linked to the Various Artists entity without "
+"\"Various Artists\" as the credited name."
+msgstr ""
+
+#: ../root/report/RecordingsWithoutVaCredit.js:30
+#: ../root/report/ReportsIndex.js:501
+msgid "Recordings not credited to \"Various Artists\" but linked to VA"
+msgstr ""
+
+#: ../root/report/RecordingsWithoutVaLink.js:24
+msgid ""
+"This report shows recordings with \"Various Artists\" as the credited name "
+"but not linked to the Various Artists entity."
+msgstr ""
+
+#: ../root/report/RecordingsWithoutVaLink.js:30
+#: ../root/report/ReportsIndex.js:508
+msgid "Recordings credited to \"Various Artists\" but not linked to VA"
+msgstr ""
+
+#: ../root/report/ReleaseGroupsWithoutVaCredit.js:24
+msgid ""
+"This report shows release groups linked to the Various Artists entity "
+"without \"Various Artists\" as the credited name."
+msgstr ""
+
+#: ../root/report/ReleaseGroupsWithoutVaCredit.js:31
+#: ../root/report/ReportsIndex.js:236
+msgid "Release groups not credited to \"Various Artists\" but linked to VA"
+msgstr ""
+
+#: ../root/report/ReleaseGroupsWithoutVaLink.js:24
+msgid ""
+"This report shows release groups with \"Various Artists\" as the credited "
+"name but not linked to the Various Artists entity."
+msgstr ""
+
+#: ../root/report/ReleaseGroupsWithoutVaLink.js:31
+#: ../root/report/ReportsIndex.js:243
+msgid "Release groups credited to \"Various Artists\" but not linked to VA"
+msgstr ""
+
+#: ../root/report/ReleaseLabelSameArtist.js:39
+msgid ""
+"This report lists releases where the label name is the same as the artist "
+"name. Often this means the release is self-released, and the label "
+"{SpecialPurposeLabel|should be \"[no label]\" instead}."
+msgstr ""
+
+#: ../root/report/ReleaseLabelSameArtist.js:50
+#: ../root/report/ReportsIndex.js:438
+msgid "Releases where artist name and label name are the same"
+msgstr ""
+
+#: ../root/report/ReleaseRgDifferentName.js:37
+msgid ""
+"This report shows releases which are the only ones in their release group, "
+"yet have a different name than the group. This might mean one of the two "
+"needs to be renamed to match the other."
+msgstr ""
+
+#: ../root/report/ReleaseRgDifferentName.js:44
+#: ../root/report/ReportsIndex.js:444
+msgid "Releases with a different name than their release group"
+msgstr ""
+
+#: ../root/report/ReleasedTooEarly.js:24
+msgid ""
+"This report shows releases which have disc IDs even though they were "
+"released too early to have disc IDs, where one of the medium formats didn't "
+"exist at the time the release was released or where a disc ID is attached to "
+"a medium whose format does not have disc IDs."
+msgstr ""
+
+#: ../root/report/ReleasedTooEarly.js:33 ../root/report/ReportsIndex.js:312
+msgid "Releases released too early"
+msgstr ""
+
+#: ../root/report/ReleasesConflictingDiscIds.js:24
+msgid ""
+"This report shows releases that have conflicting disc IDs on the same medium "
+"with significant differences in duration. This usually means a disc ID was "
+"applied to the wrong medium or the wrong release."
+msgstr ""
+
+#: ../root/report/ReleasesConflictingDiscIds.js:31
+#: ../root/report/ReportsIndex.js:429
+msgid "Releases with conflicting disc IDs"
+msgstr ""
+
+#: ../root/report/ReleasesMissingDiscIds.js:24
+msgid ""
+"This report shows releases (official and promotional only) that have at "
+"least one medium with a format that supports disc IDs, but is missing one."
+msgstr ""
+
+#: ../root/report/ReleasesMissingDiscIds.js:30
+msgid ""
+"For instructions on how to add one, see the {add_discids|documentation page}."
+msgstr ""
+
+#: ../root/report/ReleasesMissingDiscIds.js:36
+#: ../root/report/ReportsIndex.js:425
+msgid "Releases missing disc IDs"
+msgstr ""
+
+#: ../root/report/ReleasesSameBarcode.js:53
+msgid ""
+"This report shows non-bootleg releases which have the same barcode, yet are "
+"placed in different release groups. Chances are that the releases are "
+"duplicates or parts of a set, or at least that the release groups should be "
+"merged."
+msgstr ""
+
+#: ../root/report/ReleasesSameBarcode.js:61 ../root/report/ReportsIndex.js:450
+msgid "Releases with the same barcode in different release groups"
+msgstr ""
+
+#: ../root/report/ReleasesToConvert.js:24
+msgid ""
+"This report aims to identify releases which need converting to multiple "
+"artists (because the track artists are on the title field, for example). "
+"Currently it does this by looking for releases where every track contains \"/"
+"\" or \"-\"."
+msgstr ""
+
+#: ../root/report/ReleasesToConvert.js:32 ../root/report/ReportsIndex.js:255
+msgid "Releases which might need converting to \"multiple artists\""
+msgstr ""
+
+#: ../root/report/ReleasesWithAmazonCoverArt.js:24
+msgid ""
+"This report shows releases which have cover art on Amazon, but have no front "
+"cover in the Cover Art Archive. The use of Amazon art has been discontinued "
+"since the 16th of May 2022, so these releases have no front cover anymore "
+"until one is added to the Cover Art Archive."
+msgstr ""
+
+#: ../root/report/ReleasesWithAmazonCoverArt.js:33
+#: ../root/report/ReportsIndex.js:352
+msgid ""
+"Releases that have Amazon cover art but no Cover Art Archive front cover"
+msgstr ""
+
+#: ../root/report/ReleasesWithCaaNoTypes.js:24
+msgid ""
+"This report shows releases which have cover art in the Cover Art Archive, "
+"but where none of it has any types set. This often means a front cover was "
+"added, but not marked as such."
+msgstr ""
+
+#: ../root/report/ReleasesWithCaaNoTypes.js:32
+#: ../root/report/ReportsIndex.js:359
+msgid "Releases in the Cover Art Archive where no cover art piece has types"
+msgstr ""
+
+#: ../root/report/ReleasesWithDownloadRelationships.js:24
+msgid ""
+"This report shows releases that have relationships that only apply to "
+"digital media releases (download/streaming), but have media whose format is "
+"not “Digital Media”. Generally, these should be moved to the appropriate "
+"digital media release. If one doesn’t exist yet, feel free to add it."
+msgstr ""
+
+#: ../root/report/ReleasesWithDownloadRelationships.js:34
+#: ../root/report/ReportsIndex.js:389
+msgid "Non-digital releases with digital relationships"
+msgstr ""
+
+#: ../root/report/ReleasesWithEmptyMediums.js:24
+msgid ""
+"This report shows releases with at least one medium that is missing a "
+"tracklist. If you can find the tracklist, please help complete the data!"
+msgstr ""
+
+#: ../root/report/ReleasesWithEmptyMediums.js:31
+#: ../root/report/ReportsIndex.js:409
+msgid "Releases with empty mediums"
+msgstr ""
+
+#: ../root/report/ReleasesWithMailOrderRelationships.js:24
+msgid ""
+"This report shows releases that have mail order relationships (which by "
+"definition only apply to physical media releases), but only have media whose "
+"format is “Digital Media”. Generally, these should be moved to the "
+"appropriate physical release. If one doesn’t exist yet, feel free to add it."
+msgstr ""
+
+#: ../root/report/ReleasesWithMailOrderRelationships.js:33
+#: ../root/report/ReportsIndex.js:393
+msgid "Digital releases with mail order relationships"
+msgstr ""
+
+#: ../root/report/ReleasesWithNoMediums.js:24
+msgid "This report shows releases without any mediums (no tracklist)."
+msgstr ""
+
+#: ../root/report/ReleasesWithNoMediums.js:29
+#: ../root/report/ReportsIndex.js:405
+msgid "Releases with no mediums"
+msgstr ""
+
+#: ../root/report/ReleasesWithUnlikelyLanguageScript.js:28
+msgid ""
+"This report shows releases that have an unlikely combination of language and "
+"script properties, such as German and Ethiopic."
+msgstr ""
+
+#: ../root/report/ReleasesWithUnlikelyLanguageScript.js:34
+#: ../root/report/ReportsIndex.js:373
+msgid "Releases with unlikely language/script pairs"
+msgstr ""
+
+#: ../root/report/ReleasesWithoutVaCredit.js:24
+msgid ""
+"This report shows releases linked to the Various Artists entity without "
+"\"Various Artists\" as the credited name."
+msgstr ""
+
+#: ../root/report/ReleasesWithoutVaCredit.js:30
+#: ../root/report/ReportsIndex.js:414
+msgid "Releases not credited to \"Various Artists\" but linked to VA"
+msgstr ""
+
+#: ../root/report/ReleasesWithoutVaLink.js:24
+msgid ""
+"This report shows releases with \"Various Artists\" as the credited name but "
+"not linked to the Various Artists entity."
+msgstr ""
+
+#: ../root/report/ReleasesWithoutVaLink.js:30
+#: ../root/report/ReportsIndex.js:420
+msgid "Releases credited to \"Various Artists\" but not linked to VA"
+msgstr ""
+
+#: ../root/report/ReportNotAvailable.js:18
+msgid "We are sorry, but data for this report is not available right now."
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:45
+msgid ""
+"If you'd like to participate in the editing process, but do not know where "
+"to start, the following reports should be useful. These reports scour the "
+"database looking for data that might require fixing, either to comply with "
+"the {style|style guidelines}, or in other cases where administrative \"clean "
+"up\" tasks are required."
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:75
+msgid "Artists which have collaboration relationships"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:79
+msgid "Artists which look like collaborations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:107
+msgid "Artists with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:127
+msgid "Editors"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:142
+msgid "Events with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:146
+msgid "Possibly duplicate events"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:167
+msgid "Instruments without a link to Wikidata"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:190
+msgid "Labels with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:199
+msgid "Release groups"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:203
+msgid "Release groups that might need to be merged"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:231
+msgid "Release groups with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:268
+msgid "Releases which have unexpected Amazon URLs"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:272
+msgid "Releases which have multiple ASINs"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:276
+msgid "Releases which have multiple Discogs links"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:288
+msgid "Releases which have part of set relationships"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:292
+msgid "Discs entered as separate releases"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:296
+msgid "Tracks whose names include their sequence numbers"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:300
+msgid "Releases with non-sequential track numbers"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:304
+#: ../root/report/SuperfluousDataTracks.js:39
+msgid "Releases with superfluous data tracks"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:317
+msgid "Releases where some (but not all) mediums have no format set"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:338
+msgid ""
+"Translated/Transliterated Pseudo-Releases marked as the original version"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:345
+msgid ""
+"Translated/Transliterated Pseudo-Releases not linked to an original version"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:369
+msgid "Releases with non-sequential mediums"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:377 ../root/report/TracksWithoutTimes.js:30
+msgid "Releases with unknown track times"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:385
+#: ../root/report/SingleMediumReleasesWithMediumTitles.js:31
+msgid "Releases with a single medium that has a name"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:401
+msgid "Releases with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:433 ../root/report/ShouldNotHaveDiscIds.js:32
+msgid "Releases that have disc IDs, but shouldn’t"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:462
+#: ../root/report/ShowNotesButNotBroadcast.js:37
+msgid "Non-broadcast releases with linked show notes"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:496
+msgid "Recordings with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:533
+msgid "Recordings with dates in the future"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:537
+#: ../root/report/VideosInNonVideoMediums.js:40
+msgid "Video recordings in non-video mediums"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:550
+msgid "Places with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:563
+msgid "Series with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:580
+msgid "Works with annotations"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:584 ../root/report/WorkSameTypeAsParent.js:35
+msgid "Works with the same type as their parent"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:589
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:37
+msgid "URLs"
+msgstr ""
+
+#: ../root/report/ReportsIndex.js:601
+#: ../root/report/WikidataLinksWithMultipleEntities.js:48
+msgid "Wikidata URLs linked to multiple entities"
+msgstr ""
+
+#: ../root/report/SeparateDiscs.js:24
+msgid ""
+"This report shows releases which have (disc n) or (bonus disc) in the title."
+msgstr ""
+
+#: ../root/report/SeparateDiscs.js:29
+msgid ""
+"For instructions on how to fix them, please see the documentation about "
+"{howto|how to merge releases}."
+msgstr ""
+
+#: ../root/report/SeparateDiscs.js:35
+msgid "Discs as separate releases"
+msgstr ""
+
+#: ../root/report/SetInDifferentRg.js:24
+msgid ""
+"This report shows release groups with releases that are linked to releases "
+"in different release groups by part-of-set or transliteration relationships. "
+"If a pair of release groups are listed here, you should probably merge them. "
+"If the releases are discs linked with \"part of set\" relationships, you "
+"might want to merge them too into one multi-disc release (see "
+"{how_to_merge_releases|How to Merge Releases})."
+msgstr ""
+
+#: ../root/report/SetInDifferentRg.js:36
+msgid "Mismatched release groups"
+msgstr ""
+
+#: ../root/report/ShouldNotHaveDiscIds.js:24
+msgid ""
+"This report shows releases that have at least one medium with a format that "
+"does not support disc IDs, yet have disc IDs attached. Usually this means "
+"the disc IDs ended up here because of a bug and should be moved or removed."
+msgstr ""
+
+#: ../root/report/ShowNotesButNotBroadcast.js:24
+msgid ""
+"This report shows releases that have a {doc|show notes relationship}, but "
+"are not in a release group of type Broadcast. Show notes are meant for "
+"podcasts and similar shows, and should not be used to link to some random "
+"notes about any sort of release, yet the relationship often gets used in "
+"that way. If that is the case, the relationship should be either switched to "
+"a better type or removed if nothing is a good fit. If the release is indeed "
+"a podcast, the release group type should be set to Broadcast."
+msgstr ""
+
+#: ../root/report/SingleMediumReleasesWithMediumTitles.js:24
+msgid ""
+"This report shows releases that have a single medium, where this medium also "
+"has a specific name. Usually, this is not necessary and is duplicate "
+"information which can be removed."
+msgstr ""
+
+#: ../root/report/SomeFormatsUnset.js:24
+msgid ""
+"This report shows releases where some of the medium formats are set, but "
+"others are unset. In most cases, it should be easy to find out which the "
+"correct formats are (don't just assume that they're all CDs because one is "
+"though!)."
+msgstr ""
+
+#: ../root/report/SomeFormatsUnset.js:32
+msgid "Releases with some formats unset"
+msgstr ""
+
+#: ../root/report/SuperfluousDataTracks.js:24
+msgid ""
+"This report lists releases without any disc IDs that probably contain data "
+"tracks (like videos) at the end of a medium, but have no tracks marked as "
+"data tracks. A data track should be marked as such if it is the last track "
+"of the CD and contains audio or video. Otherwise, it should just be removed. "
+"See the {data_track_guidelines|data track guidelines}."
+msgstr ""
+
+#: ../root/report/TracksNamedWithSequence.js:24
+msgid ""
+"This report aims to identify releases where track names include their own "
+"track number, such as \"1) Some Name\" (instead of just \"Some Name\"). "
+"Notice that sometimes this is justified and correct, don't automatically "
+"assume it is a mistake! If you confirm it is a mistake, please correct it."
+msgstr ""
+
+#: ../root/report/TracksNamedWithSequence.js:33
+msgid "Releases where track names start with their track number"
+msgstr ""
+
+#: ../root/report/TracksWithSequenceIssues.js:24
+msgid ""
+"This report lists all releases where the track numbers are not continuous "
+"(for example, there is no \"track 2\"), or with duplicated track numbers "
+"(for example, there are two \"track 4\"s)."
+msgstr ""
+
+#: ../root/report/TracksWithSequenceIssues.js:31
+msgid "Releases with track number issues"
+msgstr ""
+
+#: ../root/report/TracksWithoutTimes.js:24
+msgid ""
+"This report lists all releases where some or all tracks have unknown track "
+"lengths."
+msgstr ""
+
+#: ../root/report/UnlinkedPseudoReleases.js:24
+msgid ""
+"This report shows releases with status Pseudo-Release that aren’t linked via "
+"the translation/transliteration relationship to an original version. This "
+"could be because the original version is missing, or just because the "
+"release status is wrongly set."
+msgstr ""
+
+#: ../root/report/UnlinkedPseudoReleases.js:32
+msgid "Unlinked pseudo-releases"
+msgstr ""
+
+#: ../root/report/VideosInNonVideoMediums.js:24
+msgid ""
+"This report shows recordings marked as video, but that appear in at least "
+"one medium that does not support videos."
+msgstr ""
+
+#: ../root/report/VideosInNonVideoMediums.js:29
+msgid ""
+"There are two main possibilities here: either the recording being marked as "
+"a video is correct, but the format is not (a CD should be a VCD, for "
+"example), or the recording is being used for both a video and and audio-only "
+"recording, in which case the two should be split since video recordings "
+"should always be separate. If you split the recordings, consider whether it "
+"makes sense to link them with a {doc_link|music video relationship}."
+msgstr ""
+
+#: ../root/report/WikidataLinksWithMultipleEntities.js:40
+msgid ""
+"This report shows Wikidata URLs that are linked to multiple entities. In "
+"general, Wikidata entities should match 1 to 1 with MusicBrainz entities, so "
+"most of these should indicate either an error in MusicBrainz or a too-wide "
+"Wikidata page."
+msgstr ""
+
+#: ../root/report/WorkSameTypeAsParent.js:24
+msgid ""
+"This report shows works with at least one parent work that has the same work "
+"type as them (such as a work marked as a sonata which is part of another "
+"sonata). In most cases, that means these works should have a different type "
+"or (most likely) no type at all, as per {work_style_doc|the work "
+"guidelines}. Sometimes the parent work type might be the one that needs to "
+"be changed."
+msgstr ""
+
+#: ../root/report/components/ArtistCreditList.js:46
+msgid "This artist credit no longer exists."
+msgstr ""
+
+#: ../root/report/components/LabelUrlList.js:75
+msgid "This label no longer exists."
+msgstr ""
+
+#: ../root/report/components/ReleaseUrlList.js:83
+msgid "This release no longer exists."
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:19
+msgid "Total artists found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:20
+msgid "Total artist credits found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:21
+msgid "Total discIDs found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:22
+msgid "Total editors found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:23
+msgid "Total events found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:24
+msgid "Total instruments found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:25
+msgid "Total ISRCs found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:26
+msgid "Total ISWCs found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:27
+msgid "Total labels found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:28
+msgid "Total places found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:29
+msgid "Total recordings found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:30
+msgid "Total relationships found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:31
+msgid "Total releases found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:32
+msgid "Total release groups found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:33
+msgid "Total series found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:34
+msgid "Total URLs found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:35
+msgid "Total works found: {count}"
+msgstr ""
+
+#: ../root/report/components/ReportLayout.js:85
+msgid "Generated on {date}"
+msgstr ""
+
+#: ../root/report/constants.js:11
+msgid ""
+"If you see something in these annotations that can be represented with a "
+"relationship instead, please add a relationship and remove that part of the "
+"annotation. If something is marked as “sub-optimal”, consider checking if a "
+"better way to store that data has been added in the meantime."
+msgstr ""
+
+#: ../root/report/hooks/useAnnotationColumns.js:34
+msgid "Last edited"
+msgstr ""
+
+#: ../root/report/hooks/useCatNoColumn.js:26
+msgid "Catalog Number"
+msgstr ""
+
+#: ../root/search/SearchIndex.js:32
+msgid "Tag lookup"
+msgstr ""
+
+#: ../root/search/SearchIndex.js:34
+msgid "Other lookups"
+msgstr ""
+
+#: ../root/search/components/AreaResults.js:66
+#: ../root/search/components/ArtistResults.js:56
+#: ../root/search/components/LabelResults.js:70
+#: ../root/search/components/PlaceResults.js:67
+#: ../root/utility/tableColumns.js:164 ../root/utility/tableColumns.js:169
+msgid "Begin"
+msgstr ""
+
+#: ../root/search/components/AreaResults.js:76
+msgid "Alternatively, you may {uri|add a new area}."
+msgstr ""
+
+#: ../root/search/components/ArtistResults.js:85
+msgid "Alternatively, you may {uri|add a new artist}."
+msgstr ""
+
+#: ../root/search/components/DocResults.js:16
+#: ../root/search/components/DocResults.js:18
+msgid "Documentation Search"
+msgstr ""
+
+#: ../root/search/components/EventResults.js:78
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1049
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:221
+#: ../root/utility/tableColumns.js:388
+msgctxt "event location"
+msgid "Location"
+msgstr ""
+
+#: ../root/search/components/EventResults.js:87
+msgid "Alternatively, you may {uri|add a new event}."
+msgstr ""
+
+#: ../root/search/components/InstrumentResults.js:64
+msgid "Alternatively, you may {uri|add a new instrument}."
+msgstr ""
+
+#: ../root/search/components/LabelResults.js:80
+msgid "Alternatively, you may {uri|add a new label}."
+msgstr ""
+
+#: ../root/search/components/PaginatedSearchResults.js:54
+msgid "The last page of results is page {last_page}."
+msgstr ""
+
+#: ../root/search/components/PlaceResults.js:77
+msgid "Alternatively, you may {uri|add a new place}."
+msgstr ""
+
+#: ../root/search/components/RecordingResults.js:120
+msgid "(standalone recording)"
+msgstr ""
+
+#: ../root/search/components/RecordingResults.js:178
+msgid "Alternatively, you may {uri|add a new recording}."
+msgstr ""
+
+#: ../root/search/components/ReleaseGroupResults.js:74
+msgid "Alternatively, you may {uri|add a new release group}."
+msgstr ""
+
+#: ../root/search/components/ReleaseResults.js:151
+msgid "Alternatively, you may {uri|add a new release}."
+msgstr ""
+
+#: ../root/search/components/ResultsLayout.js:38
+msgid "Last updated: {date}"
+msgstr ""
+
+#: ../root/search/components/SearchError.js:24
+msgid "Search Error"
+msgstr ""
+
+#: ../root/search/components/SearchError.js:28
+msgid ""
+"For assistance in writing effective advanced search queries, read the {doc|"
+"syntax documentation}."
+msgstr ""
+
+#: ../root/search/components/SearchForm.js:28
+#: ../root/search/components/SearchForm.js:29
+#: ../root/search/components/SearchForm.js:30
+msgid "Up to {n}"
+msgstr ""
+
+#: ../root/search/components/SearchForm.js:62
+msgid "Indexed search with {doc|advanced query syntax}"
+msgstr ""
+
+#: ../root/search/components/SearchForm.js:90
+msgid "Results per page:"
+msgstr ""
+
+#: ../root/search/components/SearchForm.js:96
+msgid "Search method:"
+msgstr ""
+
+#: ../root/search/components/SeriesResults.js:67
+msgid "Alternatively, you may {uri|add a new series}."
+msgstr ""
+
+#: ../root/search/components/WorkResults.js:68
+msgid "Alternatively, you may {uri|add a new work}."
+msgstr ""
+
+#: ../root/search/error/General.js:24
+msgid ""
+"Sorry, but your query “({query}
)” could not be performed, due "
+"to an error which we are not quite able to identify."
+msgstr ""
+
+#: ../root/search/error/InternalError.js:23
+msgid ""
+"The search server could not fulfill your request due to an internal error. "
+"This is usually only temporary, so please retry your search again later."
+msgstr ""
+
+#: ../root/search/error/Invalid.js:21
+msgid "Your search query was deemed invalid by our ruthless search server."
+msgstr ""
+
+#: ../root/search/error/NoInfo.js:24
+msgid ""
+"Sorry, your query “({query}
)” does not contain enough "
+"information to carry out a search."
+msgstr ""
+
+#: ../root/search/error/NoResults.js:26
+msgid ""
+"Sorry, but your query “({query}
)” did not find any results of "
+"the type “{type}”. Please check you used the correct spelling. Sometimes "
+"searching for fewer or different words may also help."
+msgstr ""
+
+#: ../root/search/error/RateLimited.js:24
+msgid ""
+"Sorry, but your query “({query}
)” could not be performed, "
+"because it appears you've been rate-limited. Either the server is overloaded "
+"or you're making a lot of requests all at once!."
+msgstr ""
+
+#: ../root/search/error/UriTooLarge.js:20
+msgid "Sorry, your query was too large."
+msgstr ""
+
+#: ../root/series/SeriesIndex.js:142
+msgid "This series is currently empty."
+msgstr ""
+
+#: ../root/series/SeriesMerge.js:32
+msgid ""
+"You are about to merge all these series into a single one. Please select the "
+"series all others should be merged into:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/ApplicationForm.js:95
+msgid "Callback URL"
+msgstr ""
+
+#: ../root/static/scripts/account/components/ApplicationForm.js:103
+msgid ""
+"Callback URI is optional for installed applications. If set, its scheme must "
+"be a custom reverse-DNS string, as in org.example.app://auth
, "
+"for installed applications."
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:210
+msgid ""
+"This is a development server. Your email address is not private or secure. "
+"Proceed with caution!"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:223
+msgid "If you change your email address, you will be required to verify it."
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:245
+#: ../root/user/UserProfile.js:275
+msgctxt "user area"
+msgid "Location"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:270
+msgid ""
+"You can pick the level you prefer here: your country, region or city. Be as "
+"specific as you want to!"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:277
+msgid "Birth date:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:282
+msgid ""
+"We will use your birth date to display your age in years on your profile "
+"page."
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:293
+msgid "Languages Known:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/EditProfileForm.js:329
+msgid "Add a language"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:157
+msgid "Regional settings"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:166
+msgid "Guess timezone"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:171
+msgid "Timezone:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:179
+msgid "Date/time format:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:193
+msgid "Allow other users to see my subscriptions"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:198
+msgid "Allow other users to see my tags"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:203
+msgid "Allow other users to see my ratings"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:212
+msgid ""
+"Mail me when one of my edits gets a \"no\" vote. (Note: the email is only "
+"sent for the first \"no\" vote, not each one)"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:221
+msgid "When I add a note to an edit, mail me all future notes for that edit."
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:229
+msgid "When I vote on an edit, mail me all future notes for that edit."
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:236
+msgid "Send me mails with edits to my subscriptions:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:245
+msgid "Automatically subscribe me to artists I add."
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:250
+msgid "Automatically subscribe me to labels I add."
+msgstr ""
+
+#: ../root/static/scripts/account/components/PreferencesForm.js:255
+msgid "Automatically subscribe me to series I add."
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:70
+msgid "Your username will be publicly visible."
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:81
+msgid ""
+"The username you have entered looks like an email address. This is allowed, "
+"but please keep in mind that everyone will be able to see it. Only use an "
+"email address as your username if you are completely sure you are happy with "
+"that."
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:92
+#: ../root/user/Login.js:107
+msgid "Password:"
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:113
+msgid ""
+"You must provide a working email address if you wish to contribute to the "
+"database."
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:119
+msgid "Captcha"
+msgstr ""
+
+#: ../root/static/scripts/account/components/RegisterForm.js:126
+msgid ""
+"Please review the {coc|MusicBrainz Code of Conduct} before creating an "
+"account."
+msgstr ""
+
+#: ../root/static/scripts/alias/AliasEditForm.js:293
+msgid "Alias Details"
+msgstr ""
+
+#: ../root/static/scripts/alias/AliasEditForm.js:300
+msgid "Alias name:"
+msgstr ""
+
+#: ../root/static/scripts/alias/AliasEditForm.js:324
+msgid "This is the primary alias for this locale"
+msgstr ""
+
+#: ../root/static/scripts/alias/AliasEditForm.js:339
+msgid "This alias is no longer current."
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:101
+msgctxt "annotation"
+msgid "Old"
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:102
+msgctxt "annotation"
+msgid "New"
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:107
+msgid "Version History"
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:149
+msgid "View this version"
+msgstr ""
+
+#: ../root/static/scripts/annotation/AnnotationHistoryTable.js:154
+msgid "no changelog specified"
+msgstr ""
+
+#: ../root/static/scripts/area/places-map.js:95
+msgid "… and {place_count} other"
+msgid_plural "… and {place_count} others"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/area/places-map.js:107
+msgid "No type"
+msgstr ""
+
+#: ../root/static/scripts/area/places-map.js:109
+msgid "{place_name} (closed)"
+msgstr ""
+
+#: ../root/static/scripts/area/places-map.js:125
+msgid "{place_type}: {place_link} (closed)"
+msgstr ""
+
+#: ../root/static/scripts/area/places-map.js:130
+msgid "{place_type}: {place_link}"
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:220
+msgid ""
+"Please select the {doc|artist credits} that you want to rename to follow the "
+"new artist name."
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:226
+msgid ""
+"This will enter additional edits to change each specific credit to use the "
+"new name. Only use this if you are sure the existing credits are incorrect "
+"(such as for typos)."
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:231
+msgid ""
+"Keep in mind artist credits should generally follow what is printed on "
+"releases. If an artist has changed their name, but old releases were "
+"credited to the existing name, do not change the artist credit."
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:255
+msgid "Show less artist credits"
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:257
+#: ../root/static/scripts/common/components/Collapsible.js:76
+msgid "Show less..."
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:269
+msgid "Show more artist credits"
+msgstr ""
+
+#: ../root/static/scripts/artist/components/ArtistCreditRenamer.js:271
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:479
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:101
+#: ../root/static/scripts/common/components/Collapsible.js:76
+msgid "Show more..."
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:194
+msgid "Collection details"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:213
+msgid "Allow other users to see this collection"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:228
+msgid "Add collection"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:230
+msgid "Update collection"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:288
+msgid "Add collaborator"
+msgstr ""
+
+#: ../root/static/scripts/collection/components/CollectionEditForm.js:330
+msgid "Remove collaborator"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:88
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:94
+msgid "An error occurred while searching. Click here to try again."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:93
+msgid "Try with direct search instead."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:94
+msgid "Try with indexed search instead."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:126
+#: ../root/static/scripts/common/components/Autocomplete2.js:800
+msgid "Type to search, or paste an MBID"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:217
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:49
+msgid "Clear recent items"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:486
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:108
+msgid "Not found? Try again with direct search."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:487
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:115
+msgid "Slow? Switch back to indexed search."
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:714
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:407
+msgid "standalone recording"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:808
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:499
+msgid "{release_group_type} by {artist}"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/Autocomplete.js:1047
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:217
+msgid "Performers"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditList.js:45
+msgid "Vote on all edits:"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:23
+msgctxt "Edit note field toggle"
+msgid "Remove Note"
+msgstr ""
+
+#: ../root/static/scripts/common/MB/Control/EditSummary.js:31
+msgctxt "Edit note field toggle"
+msgid "Add Note"
+msgstr ""
+
+#: ../root/static/scripts/common/artworkViewer.js:76
+msgid "Image {current} of {total}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/AcoustIdCell.js:116
+#: ../root/static/scripts/common/components/FingerprintTable.js:114
+#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:108
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:101
+#: ../root/static/scripts/edit/components/withLoadedTypeInfo.js:144
+msgid "Loading..."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:55
+msgid "This annotation is blank."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:73
+msgid "(no changelog)"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:83
+msgid "Annotation last modified by {user} on {date}."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:102
+msgid ""
+"This is an {history|old revision} of this annotation, as edited by {user} on "
+"{date}. {current|View current revision}."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Annotation.js:114
+msgid "Annotation last modified on {date}."
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistCreditLink.js:49
+msgid "This artist credit has {edit_search|open edits}."
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistCreditLink.js:54
+msgid "This artist credit has open edits."
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistRoles.js:29
+msgid "{artist} ({roles})"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistRoles.js:46
+msgid "Artist Roles"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistRoles.js:50
+#: ../root/static/scripts/common/components/WorkArtists.js:31
+msgid "Show all artists"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ArtistRoles.js:51
+#: ../root/static/scripts/common/components/WorkArtists.js:32
+msgid "Show less artists"
+msgstr ""
+
+#: ../root/static/scripts/common/components/AttributeList.js:69
+msgid "Show all attributes"
+msgstr ""
+
+#: ../root/static/scripts/common/components/AttributeList.js:70
+msgid "Show less attributes"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:55
+msgid "Recent items"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:64
+msgid "Try again with direct search."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:70
+msgid "Try again with indexed search."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:76
+msgid "An error occurred while looking up the MBID you entered."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:82
+msgid "The type of entity you pasted isn’t supported here."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:127
+msgid "Search for an area"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:129
+msgid "Search for an editor"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:130
+msgid "Search for an event"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:131
+msgid "Search for a genre"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:132
+msgid "Search for an instrument"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:133
+msgid "Search for a label"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:135
+msgid "Search for a relationship type"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:136
+msgid "Search for a place"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:137
+msgid "Search for a recording"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:138
+msgid "Search for a release"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:139
+msgid "Search for a release group"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:140
+msgid "Search for a series"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/constants.js:141
+msgid "Search for a work"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:332
+msgid "{forward_link_phrase} / {backward_link_phrase}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:398
+msgid "by {artist}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/formatters.js:462
+msgid "{first_list_item} … {last_list_item}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/reducer.js:159
+msgid "Hide descriptions"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/reducer.js:160
+msgid "Show descriptions"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Autocomplete2/reducer.js:255
+msgid ""
+"1 result found. Press enter to select, or use the up and down arrow keys to "
+"navigate."
+msgid_plural ""
+"{n} results found. Press enter to select, or use the up and down arrow keys "
+"to navigate."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/common/components/Cardinality.js:20
+msgid "Few relationships"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Cardinality.js:23
+msgid "Many relationships"
+msgstr ""
+
+#: ../root/static/scripts/common/components/CollapsibleList.js:87
+msgid "show {n} more"
+msgstr ""
+
+#: ../root/static/scripts/common/components/CollapsibleList.js:109
+msgid "show less"
+msgstr ""
+
+#: ../root/static/scripts/common/components/CommonsImage.js:47
+msgid "Image from Wikimedia Commons"
+msgstr ""
+
+#: ../root/static/scripts/common/components/CritiqueBrainzReview.js:37
+msgid "{review_link|Review} by {author} on {date}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EditorLink.js:19
+msgid ""
+"This editor is missing from this server, and cannot be displayed correctly."
+msgstr ""
+
+#: ../root/static/scripts/common/components/EditorLink.js:23
+msgid "[missing editor]"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:125
+#: ../root/url/UrlIndex.js:31
+msgid ""
+"This link has been temporarily disabled because it has been reported as "
+"potentially harmful."
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:337
+msgid "This release has artwork in the Cover Art Archive"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:351
+msgid "This release group has artwork in the Cover Art Archive"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:367
+msgid ""
+"High quality: All available data has been added, if possible including cover "
+"art with liner info that proves it"
+msgstr ""
+
+#: ../root/static/scripts/common/components/EntityLink.js:380
+msgid ""
+"Low quality: The release needs serious fixes, or its existence is hard to "
+"prove (but it’s not clearly fake)"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Filter.js:64
+msgid "Filter"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:44
+msgid "Filter events"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:46
+msgid "Filter recordings"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:48
+msgid "Filter releases"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:50
+msgid "Filter release groups"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:52
+msgid "Filter works"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:99
+msgid "Secondary type"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:118
+msgid "Artist credit"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FilterForm.js:242
+msgid "Setlist contains"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FingerprintTable.js:69
+msgid "Error loading AcoustIDs: {error}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FingerprintTable.js:105
+msgid "Unlink"
+msgstr ""
+
+#: ../root/static/scripts/common/components/FingerprintTable.js:113
+msgid "This recording does not have any associated AcoustIDs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IrombookImage.js:42
+msgid "IROMBOOK image/IROMBOOKのイラスト"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IsrcList.js:48
+msgid "Show all ISRCs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IsrcList.js:49
+msgid "Show less ISRCs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IswcList.js:48
+msgid "Show all ISWCs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/IswcList.js:49
+msgid "Show less ISWCs"
+msgstr ""
+
+#: ../root/static/scripts/common/components/MediumDescription.js:19
+msgid "{medium_format} {position}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/MediumLink.js:21
+msgid "{medium} on {release}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/OrderableDirection.js:25
+msgid "Forward"
+msgstr ""
+
+#: ../root/static/scripts/common/components/OrderableDirection.js:28
+msgid "Backward"
+msgstr ""
+
+#: ../root/static/scripts/common/components/PostParameters.js:47
+msgid "Data submitted with this request"
+msgstr ""
+
+#: ../root/static/scripts/common/components/RelatedSeries.js:35
+msgid "Related series"
+msgstr ""
+
+#: ../root/static/scripts/common/components/RelatedWorks.js:35
+msgid "Related works"
+msgstr ""
+
+#: ../root/static/scripts/common/components/Relationships.js:109
+msgid ""
+"{link} only has event relationships, which are displayed in the Events tab."
+msgstr ""
+
+#: ../root/static/scripts/common/components/Relationships.js:120
+msgid "{link} has no relationships."
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseEvents.js:52
+msgid "Missing country"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseEvents.js:69
+msgid "Missing date"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseEvents.js:94
+msgid "Show all release events"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseEvents.js:95
+msgid "Show less release events"
+msgstr ""
+
+#: ../root/static/scripts/common/components/ReleaseGroupAppearances.js:36
+msgid "and another {num} release group"
+msgid_plural "and another {num} release groups"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:27
+msgid "{start_track}–{end_track}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:93
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:276
+msgid "{num}. {relationship}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:98
+msgid "{relationship} (order: {num})"
+msgstr ""
+
+#: ../root/static/scripts/common/components/StaticRelationshipsDisplay.js:110
+msgid "track {tracks}"
+msgid_plural "tracks {tracks}"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:105
+msgid "Withdraw vote"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:127
+msgid "You’ve upvoted this tag"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:131
+msgid "Upvote"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:141
+msgid "You’ve downvoted this tag"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:145
+msgid "Downvote"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:549
+#: ../root/user/UserTagList.js:94
+msgid "There are no genres to show."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:559
+#: ../root/user/UserTagList.js:115
+msgid "There are no other tags to show."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:563
+msgid "Nobody has tagged this yet."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:574
+msgid ""
+"Tags with a score of zero or below, and tags that you’ve downvoted are "
+"hidden."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:580
+msgid "Tags with a score of zero or below are hidden."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:588
+msgid "Show all tags."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:597
+msgid "All tags are being shown."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:606
+msgid ""
+"Hide tags with a score of zero or below, and tags that you’ve downvoted."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:617
+msgid "Hide tags with a score of zero or below."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:626
+msgid "Add Tags"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:629
+msgid ""
+"You can add your own {tagdocs|tags} below. Use commas to separate multiple "
+"tags."
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:643
+msgid "Submit tags"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:689
+msgid "see all tags"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TagEditor.js:705
+msgctxt "verb"
+msgid "Tag"
+msgstr ""
+
+#: ../root/static/scripts/common/components/TaggerIcon.js:79
+msgid "Open in tagger"
+msgstr ""
+
+#: ../root/static/scripts/common/components/WikipediaExtract.js:64
+msgid "Wikipedia"
+msgstr ""
+
+#: ../root/static/scripts/common/components/WikipediaExtract.js:70
+msgid "Continue reading at Wikipedia..."
+msgstr ""
+
+#: ../root/static/scripts/common/components/WikipediaExtract.js:75
+msgid ""
+"Wikipedia content provided under the terms of the {license_link|Creative "
+"Commons BY-SA license}"
+msgstr ""
+
+#: ../root/static/scripts/common/components/WorkArtists.js:27
+msgid "Work Artists"
+msgstr ""
+
+#: ../root/static/scripts/common/entity.js:256
+msgid "You selected {label}."
+msgstr ""
+
+#: ../root/static/scripts/common/entity.js:262
+msgid "Label code: {code}"
+msgstr ""
+
+#: ../root/static/scripts/common/entity.js:289
+msgid "You selected {area}."
+msgstr ""
+
+#: ../root/static/scripts/common/entity.js:382
+msgid "You selected {releasegroup}."
+msgstr ""
+
+#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:138
+msgid "Failed to load the medium."
+msgstr ""
+
+#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:209
+msgid ""
+"This medium has too many tracks to load at once; currently showing "
+"{loaded_track_count} out of {total_track_count} total."
+msgstr ""
+
+#: ../root/static/scripts/common/hooks/usePagedMediumTable.js:226
+msgid "Load all tracks..."
+msgstr ""
+
+#: ../root/static/scripts/common/i18n/hyphenateTitle.js:14
+msgid "{title} - {subtitle}"
+msgstr ""
+
+#: ../root/static/scripts/common/i18n/semicolonOnlyList.js:25
+msgid "{semicolon_only_list_item}; {rest}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/bracketed.js:19
+msgid "[{text}]"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/bracketed.js:22
+msgid "({text})"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:22
+msgid " – ????"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:31
+msgid "{begin_date} – {end_date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:37
+msgid "– {end_date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:42
+msgid "{begin_date} – ????"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatDatePeriod.js:43
+msgid "{begin_date} –"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/formatEntityTypeName.js:35
+#: ../root/tag/TagLayout.js:33
+msgctxt "plural"
+msgid "Series"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:25
+msgid "on {date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:27
+msgid "in {date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:29
+msgid "from {begin_date} until {end_date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:34
+msgid "from {date} to ????"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:36
+msgid "from {date} to present"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:38
+msgid "until {date}"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/relationshipDateText.js:40
+msgid "ended"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/tableColumns.js:24
+msgid "AcoustIDs"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/yesNo.js:11
+msgid "Yes"
+msgstr ""
+
+#: ../root/static/scripts/common/utility/yesNo.js:11
+msgid "No"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:51
+msgid "Began:"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:52
+msgctxt "artist end date"
+msgid "Ended"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:63
+msgid "This person is deceased."
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:74
+msgid "Dissolved:"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:75
+msgid "This group has dissolved."
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:77
+msgid "Founded in:"
+msgstr ""
+
+#: ../root/static/scripts/edit/MB/Control/ArtistEdit.js:77
+msgid "Dissolved in:"
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:383
+msgid ""
+"Please link to a channel, not a specific video. Videos should be linked to "
+"the appropriate recordings or releases instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:389
+msgid ""
+"This is a link to a search result. Please link to any page in the results "
+"that is relevant to this entity instead, if available."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:394
+msgid ""
+"Please link to a specific video. Add channel pages to the relevant artist, "
+"label, etc. instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:399
+msgid ""
+"This is a lyrics site. As such, links to the site should be added at the "
+"release group level with the “lyrics” relationship, rather than directly to "
+"any specific release."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:571
+msgid ""
+"Allmusic “{album_url_pattern}” links should be added to release groups. To "
+"find the appropriate release link for this release, please check the "
+"Releases tab from {album_url|your link}."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:658
+#: ../root/static/scripts/edit/URLCleanup.js:921
+#: ../root/static/scripts/edit/URLCleanup.js:4190
+#: ../root/static/scripts/edit/URLCleanup.js:5194
+msgid ""
+"This is a redirect link. Please follow {redirect_url|your link} and add the "
+"link it redirects to instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:676
+msgid ""
+"This is a link to a user video and should not be added. Please add the "
+"product link instead, if relevant."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:881
+msgid ""
+"Only Apple Books audiobooks can be added to MusicBrainz. Consider adding "
+"books to {bookbrainz_url|BookBrainz} instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1130
+msgid ""
+"Please link to the main page for the artist, not to a specific album or "
+"track."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1147
+msgid ""
+"Please link to the main page for the label, not to a specific album or track."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1169
+msgid ""
+"This is a Bandcamp profile, not a page for a specific recording. Even if it "
+"shows a single recording right now, that can change when the artist releases "
+"another. Please find and add the appropriate recording page "
+"(“{single_url_pattern}”) instead, and feel free to add this profile link to "
+"the appropriate artist or label."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1197
+msgid ""
+"This is a Bandcamp profile, not a page for a specific release. Even if it "
+"shows this release right now, that can change when the artist releases "
+"another. Please find and add the appropriate release page "
+"(“{album_url_pattern}” or “{single_url_pattern}”) instead, and feel free to "
+"add this profile link to the appropriate artist or label."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1505
+msgid "Please link to the main page for the artist, not a specific product."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:1507
+msgid "Please link to the main page for the label, not a specific product."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:2251
+msgid ""
+"Discogs “{master_url_pattern}” links group several releases, so this should "
+"be added to the release group instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:2929
+msgid ""
+"Only IMSLP “{category_url_pattern}” links are allowed for artists. Please "
+"link work pages to the specific work in question."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:2947
+msgid ""
+"IMSLP “{category_url_pattern}” links are only allowed for artists. Please "
+"link the specific work page to this work instead, if available."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:2992
+msgid ""
+"Instagram “{explore_url_pattern}” links are not allowed. Please link to a "
+"profile instead, if there is one."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:3020
+msgid ""
+"Please do not link directly to images, link to the appropriate Instagram "
+"profile page instead. If you want to link to a video, {url|add a standalone "
+"recording} for it instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:3045
+msgid "This is an internal Instagram page and should not be added."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:4087
+msgid ""
+"Musixmatch “{album_url_pattern}” pages are a bad match for MusicBrainz "
+"release groups, and linking to them is currently disallowed. Please consider "
+"adding Musixmatch links to the relevant artists and works instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:4711
+msgid "Only RYM music videos can be linked to recordings."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:4773
+msgid ""
+"This is a link to the old Resident Advisor domain. Please follow {ra_url|"
+"your link}, make sure the link it redirects to is still the correct one and, "
+"if so, add that link instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5350
+msgid "Please link to Threads profiles, not threads."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5737
+msgid "This is not a profile, but a Twitter documentation page."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5751
+msgid "Please link to Twitter profiles, not tweets."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5769
+msgid "This site does not allow direct links to their images."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:5975
+msgid ""
+"Please link to the “{allowed_url_pattern}” page rather than this "
+"“{current_url_pattern}” link."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6058
+msgid ""
+"There is an unencoded “?” or “#” character in this URL. Please check whether "
+"it is useless and should be removed, or whether it is an error and the URL "
+"is misencoded."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6078
+msgid ""
+"Please do not link directly to WhoSampled “{unwanted_url_pattern}” pages. "
+"Link to the appropriate WhoSampled artist, track or album page instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6099
+msgid "Please link WhoSampled “{album_url_pattern}” pages to release groups."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6117
+msgid "Please link WhoSampled artist pages to artists."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6129
+msgid "Please link WhoSampled track pages to recordings."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6196
+msgid ""
+"Links to specific sections of Wikipedia articles are not allowed. Please "
+"remove “{fragment}” if still appropriate. See the {url|guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6221
+msgid ""
+"Links to Wikipedia user pages are not allowed. Please link only to actual "
+"Wikipedia articles."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6341
+msgid ""
+"This is a playlist link, which isn’t a video channel and is not guaranteed "
+"to be officially approved. Please link to the official channel for this "
+"entity, if it exists, instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6381
+msgid "Only video and playlist links are allowed on releases."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6413
+msgid ""
+"Wikipedia normally has no entries for specific releases, so adding Wikipedia "
+"links to a release is currently blocked. Please add this Wikipedia link to "
+"the release group instead, if appropriate."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6425
+msgid ""
+"Wikidata normally has no entries for specific releases, so adding Wikidata "
+"links to a release is currently blocked. Please add this Wikidata link to "
+"the release group instead, if appropriate."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6636
+msgid "Some relationship types are missing for this URL."
+msgstr ""
+
+#: ../root/static/scripts/edit/URLCleanup.js:6653
+#: ../root/static/scripts/edit/externalLinks.js:1022
+msgid "This relationship type combination is invalid."
+msgstr ""
+
+#: ../root/static/scripts/edit/check-duplicates.js:156
+#: ../root/static/scripts/edit/externalLinks.js:703
+#: ../root/static/scripts/release/components/EditWorkDialog.js:175
+msgid "Required field."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:15
+msgid "Add a new area"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:16
+msgid "Add a new artist"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:17
+msgid "Add a new event"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:18
+msgid "Add a new instrument"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:19
+msgid "Add a new label"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:20
+msgid "Add a new place"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:22
+msgid "Add a new release group"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:23
+msgid "Add a new series"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/AddEntityDialog.js:24
+msgid "Add a new work"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:60
+msgid ""
+"Use the following fields to enter collaborations. See the {ac|Artist Credit} "
+"documentation for more information."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:75
+msgid "[missing track name]"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:78
+msgid "You haven’t entered a track name yet."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:79
+msgid "This track hasn’t been added yet."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:97
+msgid "Artist in MusicBrainz:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:98
+msgid "Artist as credited:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:99
+msgid "Join phrase:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:123
+msgid "Add Artist Credit"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:135
+msgid "Change all artists on this release that match “{name}”"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:139
+msgid "Change all artists on this release that are currently empty"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:150
+msgid "Copy Credits"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditBubble.js:157
+msgid "Paste Credits"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ArtistCreditNameEditor.js:130
+msgid "Remove Artist Credit"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/DateRangeFieldset.js:201
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:179
+msgid "Copy to end date"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/EnterEditNote.js:53
+msgid ""
+"Entering an {note|edit note} that describes where you got your information "
+"is highly recommended. Not only does it make your sources clear (both now "
+"and to users who see the edit years later), but it can also encourage other "
+"users to vote on the edit — thus making it get applied faster."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:33
+msgid "This entity has {edits_link|open edits}."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/EntityPendingEditsWarning.js:38
+msgid "This entity has open edits."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ExternalLinkAttributeDialog.js:198
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:202
+msgid "This relationship has ended."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/NewNotesAlertCheckbox.js:35
+msgid "Show me an alert whenever I receive a new edit note."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PartialDateInput.js:56
+msgid "The date you've entered is not valid"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PossibleDuplicates.js:24
+msgid "Possible Duplicates"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PossibleDuplicates.js:25
+msgid "We found the following entities with very similar names:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PossibleDuplicates.js:38
+msgid "Yes, I still want to enter “{entity_name}”."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/PossibleDuplicates.js:45
+msgid ""
+"Please enter a {doc_disambiguation|disambiguation} to help distinguish this "
+"entity from the others."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:40
+msgid "This relationship has {edit_search|open edits}."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/RelationshipPendingEditsWarning.js:45
+msgid "This relationship has open edits."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:75
+msgid ""
+"Using this merge strategy, all mediums from all releases will be used. You "
+"may specify the new order of mediums. The order does not have to be "
+"continuous, but all medium positions must be positive, and multiple mediums "
+"cannot be in the same position"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:90
+msgid "New position:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:107
+msgid "New disc title:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:127
+msgid "(was medium {position}: {name} on release {release})"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:141
+msgid "(was medium {position} on release {release})"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:197
+msgid ""
+"This merge strategy will merge all mediums together into a single set of "
+"mediums. Recordings between mediums will also be merged, into the recordings "
+"used on the target mediums."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:203
+msgid ""
+"This requires that corresponding mediums have the same number of tracks."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:207
+msgid ""
+"Make sure all mediums in the releases being merged are in the correct "
+"position. For example, to merge a medium into medium 2 of a release, it will "
+"need to be set as medium 2 of the release being merged."
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:217
+msgid ""
+"The recording artists do not match! Perhaps you meant to use the \"append "
+"mediums\" merge strategy?"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/ReleaseMergeStrategy.js:222
+msgid ""
+"The recordings that will be merged if you continue with the current merge "
+"strategy include the following, whose artists differ:"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/URLInputPopover.js:97
+msgid "Cleaned up to"
+msgstr ""
+
+#: ../root/static/scripts/edit/components/forms.js:104
+#: ../root/static/scripts/edit/confirmNavigationFallback.js:44
+#: ../root/static/scripts/release-editor/init.js:271
+msgid "All of your changes will be lost if you leave this page."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:708
+msgid "Please enter a valid URL, such as “{example_url}”."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:715
+msgid ""
+"“{example_url}” is just an example. Please enter the actual link you want to "
+"add."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:723
+msgid ""
+"Links to MusicBrainz URLs are not allowed. Did you mean to paste something "
+"else?"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:730
+msgid ""
+"Please don’t enter CritiqueBrainz links — reviews are automatically linked "
+"from the “{reviews_tab_name}” tab."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:738
+msgid ""
+"Links to this website are not allowed because it is known to host malware."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:744
+msgid ""
+"Please don’t enter bundled/shortened URLs, enter the destination URL(s) "
+"instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:750
+msgid ""
+"Please don’t enter Google AMP links, since they are effectively an extra "
+"redirect. Enter the destination URL instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:757
+msgid ""
+"Please don’t enter links to search results. If you’ve found any links "
+"through your search that seem useful, do enter those instead."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:764
+msgid "Please select a link type for the URL you’ve entered."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:784
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:987
+#: ../root/static/scripts/relationship-editor/components/RelationshipEditor.js:526
+msgid "This relationship already exists."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:796
+#: ../root/static/scripts/relationship-editor/components/DialogSourceEntity.js:61
+msgid ""
+"This URL is not allowed for the selected link type, or is incorrectly "
+"formatted."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:801
+msgid "This URL is not allowed for the selected link type."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:807
+msgid "This URL is not allowed for areas."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:810
+msgid "This URL is not allowed for artists."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:813
+msgid "This URL is not allowed for events."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:816
+msgid "This URL is not allowed for instruments."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:819
+msgid "This URL is not allowed for labels."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:822
+msgid "This URL is not allowed for places."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:825
+msgid "This URL is not allowed for recordings."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:828
+msgid "This URL is not allowed for releases."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:831
+msgid "This URL is not allowed for release groups."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:835
+msgid "This URL is not allowed for series."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:838
+msgid "This URL is not allowed for works."
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1146
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:322
+msgid "{description} ({url|more documentation})"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1195
+msgid "Remove Relationship"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1282
+msgid "video"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1413
+msgid "Remove Link"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1443
+msgid "Add link"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1446
+msgid "Add another link"
+msgstr ""
+
+#: ../root/static/scripts/edit/externalLinks.js:1555
+msgid "Add another relationship"
+msgstr ""
+
+#: ../root/static/scripts/genre/components/GenreEditForm.js:140
+msgid "Genre details"
+msgstr ""
+
+#: ../root/static/scripts/guess-case/MB/Control/GuessCase.js:25
+msgid "Guess Case Options"
+msgstr ""
+
+#: ../root/static/scripts/guess-case/modes.js:313
+msgid ""
+"This mode capitalises almost all words, with some words (mainly articles and "
+"short prepositions) lowercased. Some words may need to be manually "
+"capitalised to follow the {url|English capitalisation guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/guess-case/modes.js:350
+msgid ""
+"This mode capitalises titles as sentence mode, but also inserts spaces "
+"before semicolons, colons, exclamation marks and question marks, and inside "
+"guillemets. Some words may need to be manually capitalised to follow the "
+"{url|French capitalisation guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/guess-case/modes.js:374
+msgid ""
+"This mode capitalises the first word of a sentence, most other words are "
+"lowercased. Some words, often proper nouns, may need to be manually fixed "
+"according to the {url|relevant language guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/guess-case/modes.js:389
+msgid ""
+"This mode handles the Turkish capitalisation of 'i' ('İ') and 'ı' ('I'). "
+"Some words may need to be manually corrected according to the {url|Turkish "
+"language guidelines}."
+msgstr ""
+
+#: ../root/static/scripts/main/components/ConfirmSeedButtons.js:31
+msgid "Continue"
+msgstr ""
+
+#: ../root/static/scripts/main/components/ConfirmSeedButtons.js:47
+msgid "Leave"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:40
+msgid "Add vocal"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:164
+msgid "This attribute is required."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:200
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:208
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:212
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:216
+msgid "Credited as"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogAttribute/MultiselectAttribute.js:236
+msgctxt "relationship attribute"
+msgid "Add another"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:217
+msgid ""
+"If you want to set the relationship as happening on one specific date, just "
+"set the same end date and start date. You can use the arrow button to copy "
+"the begin date to the end date."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogDatePeriod.js:223
+msgid ""
+"If you do not know the end date, but you know the relationship has ended and "
+"this seems like useful information to store (for example, if someone is no "
+"longer a member of a band), you can indicate it with the checkbox above."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:124
+msgid "Change credits for other {entity} relationships on the page."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:133
+msgid ""
+"Some tracks/mediums haven’t been loaded yet. If you want to use this option, "
+"please close this dialog and load all tracks/mediums beforehand."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:149
+msgid "All of these relationships."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:161
+msgid "Only relationships to {entity_type} entities."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:179
+msgid "Only “{relationship_type}” relationships to {entity_type} entities."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogEntityCredit.js:204
+msgid ""
+"A credited name is optional. You can leave this field blank to keep the "
+"current name."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkOrder.js:44
+msgid "Order"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkOrder.js:56
+msgid ""
+"If this relationship has a specific order among others of the same type, you "
+"may set its position in the list here (as an alternative to the up- and down-"
+"arrow buttons)."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:66
+msgid ""
+"Please select a subtype of the currently selected relationship type. The "
+"selected relationship type is only used for grouping subtypes."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:88
+msgid "This relationship type is not allowed with the current series type."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:126
+msgid "Type or click to search"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:294
+msgid "Relationship type"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogLinkType.js:309
+msgid "Please select a relationship type. ({url|more documentation})"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:157
+msgid "Old order"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:161
+msgid "New order"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:224
+msgid "Please fill out all required fields."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogPreview.js:236
+msgid "Change direction"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:61
+msgid "The series you’ve selected is for artists."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:62
+msgid "The series you’ve selected is for events."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:63
+msgid "The series you’ve selected is for recordings."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:64
+msgid "The series you’ve selected is for releases."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:65
+msgid "The series you’ve selected is for release groups."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:66
+msgid "The series you’ve selected is for works."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetEntity.js:100
+msgid "Entities in a relationship cannot be the same."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/DialogTargetType.js:52
+msgid "Related type"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:902
+msgid ""
+"Warning: This relationship has open edits. {show|Click here} to view these "
+"edits and make sure they do not conflict with your own."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1007
+msgid "This will add a relationship to all checked recordings."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipDialogContent.js:1010
+msgid "This will add a relationship to all checked works."
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:111
+msgid "no entity"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:117
+msgid "{target} (as {credited_name})"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:188
+msgid "Edit Relationship"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:254
+msgid "Move entity down"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipItem.js:261
+msgid "Move entity up"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:33
+msgid "Add another area"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:34
+msgid "Add another artist"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:35
+msgid "Add another event"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:36
+msgid "Add another genre"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:37
+msgid "Add another instrument"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:38
+msgid "Add another label"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:39
+msgid "Add another place"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:40
+msgid "Add another recording"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:41
+msgid "Add another release"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:42
+msgid "Add another release group"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:43
+msgid "Add another series"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:45
+msgid "Add another work"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:170
+#: ../root/static/scripts/relationship-editor/components/RelationshipTargetTypeGroups.js:54
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:70
+#: ../root/static/scripts/release/components/TrackRelationshipEditor.js:408
+msgid "Add Relationship"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:272
+msgid "no type"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/components/RelationshipPhraseGroup.js:311
+msgid "These relationships have a specific ordering"
+msgstr ""
+
+#: ../root/static/scripts/relationship-editor/utility/getBatchSelectionMessage.js:19
+msgid "{n} recording selected"
+msgid_plural "{n} recordings selected"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/relationship-editor/utility/getBatchSelectionMessage.js:27
+msgid "{n} work selected"
+msgid_plural "{n} works selected"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/static/scripts/release-editor/actions.js:279
+msgid ""
+"This tracklist has artist credits with information that will be lost if you "
+"swap artist credits with track titles. This cannot be undone. Do you wish to "
+"continue?"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/bindingHandlers.js:31
+msgid ""
+"This medium has one or more discids which prevent this information from "
+"being changed."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/dialogs.js:265
+msgid "Page {page} of {total}"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:760
+msgid "Medium {position}: {title}"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:766
+msgid "Medium {position}"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:775
+msgid "I confirm this medium is actually titled “{medium_title}”."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:790
+msgid ""
+"“{matched_text}” seems to indicate medium ordering rather than a medium "
+"title. If this is the case, please use the up/down arrows on the right side "
+"to set the medium position instead of adding a title (see {release_style|the "
+"guidelines}). Otherwise, please confirm that this is the actual title using "
+"the checkbox below."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/fields.js:892
+msgid "You haven’t selected a label for “{name}”."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/init.js:36
+msgid "Error loading release: {error}"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/init.js:220
+#: ../root/static/scripts/release-editor/init.js:221
+msgid "Add Release"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/init.js:224
+#: ../root/static/scripts/release-editor/init.js:225
+msgid "Edit Release"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:136
+msgid ""
+"The following releases with that barcode are already in the MusicBrainz "
+"database. Please make sure you are not adding an exact duplicate of any of "
+"these:"
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:178
+msgid "The check digit is {checkdigit}."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:179
+msgid "Please double-check the barcode on the release."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:184
+msgid ""
+"The barcode you entered looks like a UPC code with the check digit missing."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:194
+msgid "The barcode you entered is a valid UPC code."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:199
+msgid ""
+"The barcode you entered is either an invalid UPC code, or an EAN code with "
+"the check digit missing."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:213
+msgid "The barcode you entered is a valid EAN code."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:217
+msgid "The barcode you entered is not a valid EAN code."
+msgstr ""
+
+#: ../root/static/scripts/release-editor/validation.js:224
+msgid "The barcode you entered is not a valid UPC or EAN code."
+msgstr ""
+
+#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:236
+msgid ""
+"This will add a new work for each checked recording that has no work "
+"already. The work names will be the same as their respective recording."
+msgstr ""
+
+#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:241
+msgid ""
+"Only use this option after you’ve tried searching for the work(s) you want "
+"to add, and are certain they do not already exist on MusicBrainz."
+msgstr ""
+
+#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:323
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:94
+msgid "To use this tool, select some recordings using the checkboxes below."
+msgstr ""
+
+#: ../root/static/scripts/release/components/BatchCreateWorksDialog.js:334
+msgid "Batch-add new works"
+msgstr ""
+
+#: ../root/static/scripts/release/components/EditWorkDialog.js:162
+msgid "Edit Work"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumTable.js:101
+msgid ""
+"This medium has too many tracks to load at once, so it’s been paginated."
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumToolbox.js:42
+msgid "Expand all mediums"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumToolbox.js:57
+msgid "Collapse all mediums"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumToolbox.js:92
+msgid "Display Credits Inline"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumToolbox.js:93
+msgid "Display Credits at Bottom"
+msgstr ""
+
+#: ../root/static/scripts/release/components/MediumTrackRow.js:64
+msgid "Recording artist:"
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:101
+msgid "To use this tool, select some works using the checkboxes below."
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:145
+msgid "Batch-add a relationship to recordings"
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:147
+msgid "[selected recording]"
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:173
+msgid "Batch-add a relationship to works"
+msgstr ""
+
+#: ../root/static/scripts/release/components/RelationshipEditorBatchTools.js:175
+msgid "[selected work]"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:279
+msgid "An error occurred:"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1525
+msgid "Track Relationships"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1544
+msgid ""
+"Some tracks/mediums haven’t been loaded yet. If you want to make batch "
+"operations on these, please fully load them first."
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1587
+msgid "Related Works"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1611
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:374
+msgid "We have no information about this release’s media and tracklist."
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1648
+msgid "Release Relationships"
+msgstr ""
+
+#: ../root/static/scripts/release/components/ReleaseRelationshipEditor.js:1691
+msgid "Release Group Relationships"
+msgstr ""
+
+#: ../root/static/scripts/release/components/TrackRelationshipEditor.js:343
+msgid "Error loading work relationships: {error}"
+msgstr ""
+
+#: ../root/static/scripts/release/components/TrackRelationshipEditor.js:428
+msgid "Add related work"
+msgstr ""
+
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:381
+msgid "Credits"
+msgstr ""
+
+#: ../root/static/scripts/release/components/TracklistAndCredits.js:387
+msgid ""
+"The credits listed below may be incomplete, as some tracks/mediums haven’t "
+"been loaded yet."
+msgstr ""
+
+#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:81
+#: ../root/static/scripts/release/components/WorkLanguageMultiselect.js:147
+msgid "Add lyrics language"
+msgstr ""
+
+#: ../root/static/scripts/work/edit.js:340
+msgid "Add Language"
+msgstr ""
+
+#: ../root/static/scripts/work/edit.js:352
+msgid "Remove Language"
+msgstr ""
+
+#: ../root/tag/EntityList.js:26
+msgid "Areas tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:27
+msgid "Artists tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:28
+msgid "Events tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:29
+msgid "Instruments tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:30
+msgid "Labels tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:31
+msgid "Places tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:32
+msgid "Recordings tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:33
+msgid "Releases tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:34
+msgid "Release groups tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:35
+msgctxt "plural series"
+msgid "Series tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:36
+msgid "Works tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:40
+msgid "Areas {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:41
+msgid "Artists {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:42
+msgid "Events {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:43
+msgid "Instruments {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:44
+msgid "Labels {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:45
+msgid "Places {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:46
+msgid "Recordings {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:47
+msgid "Releases {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:48
+msgid "Release groups {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:49
+msgctxt "plural series"
+msgid "Series {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:50
+msgid "Works {user} tagged as “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:54
+msgid "Areas where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:55
+msgid "Artists where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:56
+msgid "Events where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:57
+msgid "Instruments where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:58
+msgid "Labels where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:59
+msgid "Places where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:60
+msgid "Recordings where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:61
+msgid "Releases where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:62
+msgid "Release groups where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:63
+msgid "Series where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:64
+msgid "Works where {user} downvoted “{tag}”"
+msgstr ""
+
+#: ../root/tag/EntityList.js:70
+msgid "{num} area found"
+msgid_plural "{num} areas found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:71
+msgid "{num} artist found"
+msgid_plural "{num} artists found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:72
+msgid "{num} event found"
+msgid_plural "{num} events found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:73
+msgid "{num} instrument found"
+msgid_plural "{num} instruments found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:74
+msgid "{num} label found"
+msgid_plural "{num} labels found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:75
+msgid "{num} place found"
+msgid_plural "{num} places found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:82
+msgid "{num} series found"
+msgid_plural "{num} series found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/EntityList.js:83
+msgid "{num} work found"
+msgid_plural "{num} works found"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/tag/NotFound.js:17
+msgid "Tag Not Used"
+msgstr ""
+
+#: ../root/tag/NotFound.js:20
+msgid "No MusicBrainz entities have yet been tagged with \"{tag}\"."
+msgstr ""
+
+#: ../root/tag/NotFound.js:26
+msgid ""
+"If you wish to use this tag, please {url|search} for the entity first and "
+"apply the tag using the sidebar."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:62
+msgid "'{tag}' has been used {num} times"
+msgstr ""
+
+#: ../root/tag/TagCloud.js:107
+msgid "These are the most used genres and other tags in the database."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:111
+msgid "Show as a cloud instead."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:113
+msgid "Show as a list instead."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:123
+msgid "No genre tags have been used yet."
+msgstr ""
+
+#: ../root/tag/TagCloud.js:130
+msgid "No non-genre tags have been used yet."
+msgstr ""
+
+#: ../root/tag/TagIndex.js:38
+msgid "This tag is associated with the genre {genre}."
+msgstr ""
+
+#: ../root/tag/TagLayout.js:47 ../root/tag/TagLayout.js:48
+#: ../root/tag/TagLayout.js:54
+msgid "Tag “{tag}”"
+msgstr ""
+
+#: ../root/tag/TagLayout.js:56
+msgid "Tag"
+msgstr ""
+
+#: ../root/taglookup/Form.js:45
+msgid "Duration"
+msgstr ""
+
+#: ../root/taglookup/Index.js:17 ../root/taglookup/Index.js:19
+msgid "Tag Lookup"
+msgstr ""
+
+#: ../root/taglookup/Nag.js:13
+msgid "The users make MusicBrainz happen and we appreciate your help!"
+msgstr ""
+
+#: ../root/taglookup/Nag.js:17
+msgid ""
+"However, we still have to pay the bills and hosting this site costs "
+"{finances|more than $1000 per month}. We need our users to help us make ends "
+"meet and hopefully have money left over to sponsor more development. The "
+"{metabrainz_foundation|MetaBrainz Foundation}, a California based 501(c)3 "
+"tax-exempt non-profit, operates the MusicBrainz project which makes all "
+"donations tax deductible for US taxpayers. And it's simply "
+"good karma everywhere else!"
+msgstr ""
+
+#: ../root/taglookup/Nag.js:33
+msgid ""
+"If you donate $4 you will not get this nag text for a "
+"month. We encourage people to donate $12 to make the nag "
+"screen disappear for 3 months. Or even better, sign up for a recurring "
+"donation every three months to not have to think about or see this nag again."
+msgstr ""
+
+#: ../root/taglookup/Nag.js:42
+msgid "Make a donation now!"
+msgstr ""
+
+#: ../root/taglookup/Nag.js:46
+msgid "I just donated! Why am I seeing this?"
+msgstr ""
+
+#: ../root/taglookup/NotFound.js:13
+msgid "Tag Lookup Error"
+msgstr ""
+
+#: ../root/taglookup/NotFound.js:16
+msgid ""
+"That search can't be performed, because you must provide at least one of "
+"'recording', 'track number', 'duration', 'release', or 'artist'."
+msgstr ""
+
+#: ../root/taglookup/NotFound.js:22
+msgid "Please {search|try again}, providing at least one of these parameters"
+msgstr ""
+
+#: ../root/taglookup/Results.js:19 ../root/taglookup/Results.js:21
+msgid "Tag Lookup Results"
+msgstr ""
+
+#: ../root/url/UrlIndex.js:21
+msgid "URL Information"
+msgstr ""
+
+#: ../root/url/UrlIndex.js:22
+msgid "URL Details"
+msgstr ""
+
+#: ../root/user/ContactUser.js:53
+msgid "Subject:"
+msgstr ""
+
+#: ../root/user/ContactUser.js:61 ../root/user/ReportUser.js:147
+msgid "Message"
+msgstr ""
+
+#: ../root/user/ContactUser.js:68
+msgid "Reveal my email address"
+msgstr ""
+
+#: ../root/user/ContactUser.js:74 ../root/user/ReportUser.js:173
+msgid "Send a copy to my own email address"
+msgstr ""
+
+#: ../root/user/ContactUser.js:79 ../root/user/ReportUser.js:178
+msgid "Send"
+msgstr ""
+
+#: ../root/user/Login.js:56
+msgid "You need to be logged in to view this page."
+msgstr ""
+
+#: ../root/user/Login.js:62
+msgid "Don't have an account? {uri|Create one now}!"
+msgstr ""
+
+#: ../root/user/Login.js:73
+msgid "Incorrect username or password"
+msgstr ""
+
+#: ../root/user/Login.js:83
+msgid ""
+"You cannot log in because this account has been marked as a spam account."
+msgstr ""
+
+#: ../root/user/Login.js:116
+msgid "This is a development server; all passwords have been reset to \"mb\"."
+msgstr ""
+
+#: ../root/user/Login.js:124
+msgid "Keep me logged in"
+msgstr ""
+
+#: ../root/user/Login.js:136
+msgid "Forgot your {link1|username} or {link2|password}?"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:33 ../root/user/PrivilegedUsers.js:35
+msgid "Privileged user accounts"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:37
+msgid "Auto-editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:40
+msgid ""
+"Auto-editors are trusted users who have been given {url|auto-editor} "
+"privileges. These privileges allow them to make select edits that are "
+"automatically approved without going through the normal voting process, as "
+"well as the ability to instantly approve other users' edits."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:50
+msgid "The following {count} users have auto-editor privileges:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:56
+msgid "Relationship editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:59
+msgid ""
+"Relationship editors are users who can add or modify relationship types in "
+"the database. If you would like to propose a new relationship, you must "
+"follow our {url|proposal system}. Relationship editors will only make "
+"changes that have been accepted through the proposal system."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:69
+msgid "The following {count} users are relationship editors:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:75
+msgid "Transclusion editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:78
+msgid ""
+"Transclusion editors are users who add and maintain entries in the {uri|"
+"WikiDocs} transclusion table."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:85
+msgid "The following {count} users are transclusion editors:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:91
+msgid "Location editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:94
+msgid "Location editors are users who can add or modify {uri|areas}."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:100
+msgid "The following {count} users are location editors:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:106
+msgid "Banner message editors"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:108
+msgid ""
+"Banner message editors are users who can set a message that is shown in a "
+"banner on all pages, for example to warn users about upcoming site "
+"maintenance."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:114
+msgid "The following {count} users are banner message editors:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:120
+msgid "Account administrators"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:121
+msgid "Account administrators can edit and delete user accounts."
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:124
+msgid "The following {count} users are account administrators:"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:130
+msgid "Bots"
+msgstr ""
+
+#: ../root/user/PrivilegedUsers.js:133
+msgid "The following {count} user accounts are bots:"
+msgstr ""
+
+#: ../root/user/ReportUser.js:83 ../root/user/ReportUser.js:85
+msgid "Report User"
+msgstr ""
+
+#: ../root/user/ReportUser.js:90
+msgid ""
+"This user account has already been deleted, so there’s probably no need to "
+"report it. If you feel there’s a problem that still needs action, please "
+"{link|contact us}."
+msgstr ""
+
+#: ../root/user/ReportUser.js:101
+msgid "Please review our {uri|Code of Conduct} before sending a report."
+msgstr ""
+
+#: ../root/user/ReportUser.js:109
+msgid ""
+"Your report will be sent to our {uri|account administrators}, who will "
+"decide what action to take."
+msgstr ""
+
+#: ../root/user/ReportUser.js:119
+msgid ""
+"Be sure to provide direct links to examples of the behaviour you’re "
+"reporting (for example, use “https://musicbrainz.org/edit/23
” "
+"instead of “edit #23”, and use “https://musicbrainz.org/edit/42
"
+"and https://musicbrainz.org/edit/43
” instead of “https://"
+"musicbrainz.org/user/SomeUser/edits
”). Providing links makes it much "
+"easier for the recipients of the report to look into the issues; a report "
+"without links is unlikely to be acted on fast, since it will require a lot "
+"of additional research."
+msgstr ""
+
+#: ../root/user/ReportUser.js:157
+msgid ""
+"If you don’t want our admins to contact you further regarding this report, "
+"you can uncheck the checkbox above.
We recommend leaving it checked, "
+"so that you can be contacted if the report is resolved or the admins need "
+"more information."
+msgstr ""
+
+#: ../root/user/ReportUser.js:167
+msgid "Receive email updates about this report"
+msgstr ""
+
+#: ../root/user/UserCollections.js:42
+msgid "Area Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:43
+msgid "Artist Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:44
+msgid "Event Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:45
+msgid "Instrument Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:46
+msgid "Label Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:47
+msgid "Place Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:48
+msgid "Recording Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:49
+msgid "Release Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:50
+msgid "Release Group Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:51
+msgctxt "plural"
+msgid "Series Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:52
+msgid "Work Collections"
+msgstr ""
+
+#: ../root/user/UserCollections.js:64
+msgid "{collaborator_number} (including you)"
+msgstr ""
+
+#: ../root/user/UserCollections.js:79
+msgid "(your collection)"
+msgstr ""
+
+#: ../root/user/UserCollections.js:197
+msgid "You have no collections."
+msgstr ""
+
+#: ../root/user/UserCollections.js:199
+msgid "{user} has no public collections."
+msgstr ""
+
+#: ../root/user/UserCollections.js:218
+msgid "You aren’t collaborating in any collections."
+msgstr ""
+
+#: ../root/user/UserCollections.js:220
+msgid "{user} isn’t collaborating in any public collections."
+msgstr ""
+
+#: ../root/user/UserEdits.js:42 ../root/user/UserEdits.js:43
+msgid "Votes by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:46 ../root/user/UserEdits.js:47
+msgid "Open edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:50 ../root/user/UserEdits.js:51
+msgid "Cancelled edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:54 ../root/user/UserEdits.js:55
+msgid "Accepted edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:58 ../root/user/UserEdits.js:59
+msgid "Failed edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:62 ../root/user/UserEdits.js:63
+msgid "Rejected edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:66 ../root/user/UserEdits.js:67
+msgid "Auto-edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:70 ../root/user/UserEdits.js:71
+msgid "Applied edits by {name}"
+msgstr ""
+
+#: ../root/user/UserEdits.js:74 ../root/user/UserEdits.js:75
+msgid "Edits by {name}"
+msgstr ""
+
+#: ../root/user/UserProfile.js:68
+msgid "Deleted User"
+msgstr ""
+
+#: ../root/user/UserProfile.js:72
+msgid "{doc|Auto-Editor}"
+msgstr ""
+
+#: ../root/user/UserProfile.js:77
+msgid "Internal/Bot"
+msgstr ""
+
+#: ../root/user/UserProfile.js:81
+msgid "{doc|Relationship Editor}"
+msgstr ""
+
+#: ../root/user/UserProfile.js:87
+msgid "{doc|Transclusion Editor}"
+msgstr ""
+
+#: ../root/user/UserProfile.js:93
+msgid "{doc|Location Editor}"
+msgstr ""
+
+#: ../root/user/UserProfile.js:103
+msgid "Beginner"
+msgstr ""
+
+#: ../root/user/UserProfile.js:109
+msgid "Normal User"
+msgstr ""
+
+#: ../root/user/UserProfile.js:157
+msgid "The Dawn of the Project"
+msgstr ""
+
+#: ../root/user/UserProfile.js:159
+msgid "The early days of the project"
+msgstr ""
+
+#: ../root/user/UserProfile.js:167
+msgid ""
+"Your homepage and biography will not show until you have completed the email "
+"verification process."
+msgstr ""
+
+#: ../root/user/UserProfile.js:186
+msgid "General Information"
+msgstr ""
+
+#: ../root/user/UserProfile.js:192
+msgid "(hidden)"
+msgstr ""
+
+#: ../root/user/UserProfile.js:195
+msgid "(verified at {date})"
+msgstr ""
+
+#: ../root/user/UserProfile.js:200
+msgid "(unverified!)"
+msgstr ""
+
+#: ../root/user/UserProfile.js:209
+msgid "resend verification email"
+msgstr ""
+
+#: ../root/user/UserProfile.js:217
+msgid "send email"
+msgstr ""
+
+#: ../root/user/UserProfile.js:232
+msgid "find all users of this email"
+msgstr ""
+
+#: ../root/user/UserProfile.js:242
+msgctxt "email"
+msgid "(none)"
+msgstr ""
+
+#: ../root/user/UserProfile.js:249
+msgid "User type:"
+msgstr ""
+
+#: ../root/user/UserProfile.js:255
+msgid "nominate for auto-editor"
+msgstr ""
+
+#: ../root/user/UserProfile.js:262
+msgid "Age:"
+msgstr ""
+
+#: ../root/user/UserProfile.js:287
+msgid "Restrictions"
+msgstr ""
+
+#: ../root/user/UserProfile.js:297
+msgid "Hasn't logged in yet"
+msgstr ""
+
+#: ../root/user/UserProfile.js:302
+msgid "Authorized applications"
+msgstr ""
+
+#: ../root/user/UserProfile.js:309 ../root/user/UserProfile.js:325
+msgid "see list"
+msgstr ""
+
+#: ../root/user/UserProfile.js:318
+msgid "Developer applications"
+msgstr ""
+
+#: ../root/user/UserProfile.js:335
+msgid "Homepage:"
+msgstr ""
+
+#: ../root/user/UserProfile.js:356
+msgid "{count} ({url|view list})"
+msgstr ""
+
+#: ../root/user/UserProfile.js:363
+msgid "0"
+msgstr ""
+
+#: ../root/user/UserProfile.js:376
+msgid "unsubscribe"
+msgstr ""
+
+#: ../root/user/UserProfile.js:385
+msgid "subscribe"
+msgstr ""
+
+#: ../root/user/UserProfile.js:414
+msgid "Languages"
+msgstr ""
+
+#: ../root/user/UserProfile.js:489 ../root/user/UserProfile.js:589
+#: ../root/user/UserProfile.js:599 ../root/user/UserProfile.js:609
+#: ../root/user/UserProfile.js:619 ../root/user/UserProfile.js:629
+#: ../root/user/UserProfile.js:639 ../root/user/UserProfile.js:649
+#: ../root/user/UserProfile.js:659 ../root/user/UserProfile.js:668
+#: ../root/user/UserProfile.js:818 ../root/user/UserProfile.js:834
+#: ../root/user/UserProfile.js:855
+msgid "{count} ({view_url|view})"
+msgstr ""
+
+#: ../root/user/UserProfile.js:581
+msgid "Edits"
+msgstr ""
+
+#: ../root/user/UserProfile.js:587
+msgctxt "edit descriptor"
+msgid "Total"
+msgstr ""
+
+#: ../root/user/UserProfile.js:597
+msgctxt "edit descriptor"
+msgid "Accepted"
+msgstr ""
+
+#: ../root/user/UserProfile.js:607
+msgid "Auto-edits"
+msgstr ""
+
+#: ../root/user/UserProfile.js:617
+msgid "Total applied"
+msgstr ""
+
+#: ../root/user/UserProfile.js:627
+msgid "Voted down"
+msgstr ""
+
+#: ../root/user/UserProfile.js:637
+msgid "Failed"
+msgstr ""
+
+#: ../root/user/UserProfile.js:667
+msgid "Last 24 hours"
+msgstr ""
+
+#: ../root/user/UserProfile.js:691
+msgid "This table shows a summary of votes cast by this editor."
+msgstr ""
+
+#: ../root/user/UserProfile.js:696
+msgid "Votes ({view_url|view})"
+msgstr ""
+
+#: ../root/user/UserProfile.js:704
+msgid "Last 28 days"
+msgstr ""
+
+#: ../root/user/UserProfile.js:707
+msgid "Overall"
+msgstr ""
+
+#: ../root/user/UserProfile.js:755
+msgid "This table shows a summary of entities added by this editor."
+msgstr ""
+
+#: ../root/user/UserProfile.js:761
+msgid "Newly applied edits may need 24 hours to appear"
+msgstr ""
+
+#: ../root/user/UserProfile.js:764
+msgid "Added entities"
+msgstr ""
+
+#: ../root/user/UserProfile.js:787
+msgid "This user has not added any entities."
+msgstr ""
+
+#: ../root/user/UserProfile.js:797
+msgid "This table shows a summary of secondary data added by this editor."
+msgstr ""
+
+#: ../root/user/UserProfile.js:803
+msgid "Tags and ratings"
+msgstr ""
+
+#: ../root/user/UserProfile.js:810
+msgid "Tags upvoted"
+msgstr ""
+
+#: ../root/user/UserProfile.js:813 ../root/user/UserProfile.js:829
+msgid "Tags are removed when an editor is deleted."
+msgstr ""
+
+#: ../root/user/UserProfile.js:815 ../root/user/UserProfile.js:831
+msgctxt "tags"
+msgid "Removed"
+msgstr ""
+
+#: ../root/user/UserProfile.js:826
+msgid "Tags downvoted"
+msgstr ""
+
+#: ../root/user/UserProfile.js:848
+msgid "Ratings are removed when an editor is deleted."
+msgstr ""
+
+#: ../root/user/UserProfile.js:851
+msgctxt "ratings"
+msgid "Removed"
+msgstr ""
+
+#: ../root/user/UserProfile.js:918
+msgid "Blocked Spam Account"
+msgstr ""
+
+#: ../root/user/UserProfile.js:920
+msgid ""
+"This user was blocked and their profile is hidden because they were deemed "
+"to be spamming. If you see spam in MusicBrainz, please do let us know by "
+"reporting the spammer from their user page."
+msgstr ""
+
+#: ../root/user/UserProfile.js:931
+msgid ""
+"This user is marked as a spammer and is blocked for all non-admin users."
+msgstr ""
+
+#: ../root/user/UserProfile.js:942
+msgid ""
+"This user’s editing rights have been restricted. Active restrictions: "
+"{restrictions}."
+msgstr ""
+
+#: ../root/user/UserProfile.js:974
+msgid "Report this user for bad behavior"
+msgstr ""
+
+#: ../root/user/UserRatingEntity.js:58
+msgid "No ratings."
+msgstr ""
+
+#: ../root/user/UserRatingList.js:28
+msgid "Artist ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:29
+msgid "Event ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:30
+msgid "Label ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:31
+msgid "Place ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:32
+msgid "Recording ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:33
+msgid "Release group ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:34
+msgid "Work ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:72
+msgid "View all ratings"
+msgstr ""
+
+#: ../root/user/UserRatingList.js:83
+msgid "{user} has not rated anything."
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:24
+msgid "Artist Subscriptions"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:25
+msgid "Collection Subscriptions"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:26
+msgid "Editor Subscriptions"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:27
+msgid "Label Subscriptions"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:28
+msgid "Series Subscriptions"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:183
+msgid "{editor} is subscribed to:"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:191
+msgid "{num} artist"
+msgid_plural "{num} artists"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserSubscriptions.js:202
+msgid "{num} collection"
+msgid_plural "{num} collections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserSubscriptions.js:213
+msgid "{num} editor"
+msgid_plural "{num} editors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserSubscriptions.js:224
+msgid "{num} label"
+msgid_plural "{num} labels"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserSubscriptions.js:235
+msgid "{num} series"
+msgid_plural "{num} series"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserSubscriptions.js:256
+msgid "No public subscriptions."
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:257
+msgid "No subscriptions."
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:261
+msgid "Private collections"
+msgstr ""
+
+#: ../root/user/UserSubscriptions.js:275
+msgid "{editor} is also subscribed to {n} other private collection."
+msgid_plural "{editor} is also subscribed to {n} other private collections."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserSubscriptions.js:285
+msgid "{editor} is subscribed to {n} private collection."
+msgid_plural "{editor} is subscribed to {n} private collections."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/user/UserTagList.js:21
+msgid "Tags {user} downvoted"
+msgstr ""
+
+#: ../root/user/UserTagList.js:22
+msgid "Tags {user} upvoted"
+msgstr ""
+
+#: ../root/user/UserTagList.js:122
+msgid "{user} has not downvoted any tags."
+msgstr ""
+
+#: ../root/user/UserTagList.js:129
+msgid "{user} has not upvoted any tags."
+msgstr ""
+
+#: ../root/user/components/UserInlineList.js:24
+msgid "No users found"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:32
+msgctxt "tag upvotes or downvotes"
+msgid "Show votes"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:38
+msgctxt "tag"
+msgid "upvotes"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:39
+msgctxt "tag"
+msgid "downvotes"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:48
+msgid "Sort by"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:51
+msgid "name"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:52
+msgid "count (more first)"
+msgstr ""
+
+#: ../root/user/components/UserTagFilters.js:53
+msgid "count (less first)"
+msgstr ""
+
+#: ../root/utility/age.js:148
+msgid "aged {num}"
+msgstr ""
+
+#: ../root/utility/age.js:150
+msgid "{num} year"
+msgid_plural "{num} years"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/utility/age.js:152
+msgid "{num} month"
+msgid_plural "{num} months"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/utility/age.js:154
+msgid "{num} day"
+msgid_plural "{num} days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/utility/age.js:161
+msgid "{num} year ago"
+msgid_plural "{num} years ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/utility/age.js:164
+msgid "{num} month ago"
+msgid_plural "{num} months ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/utility/age.js:170
+msgid "{num} day ago"
+msgid_plural "{num} days ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/utility/edit.js:35
+msgid "Accept upon closing"
+msgstr ""
+
+#: ../root/utility/edit.js:36
+msgid "Reject upon closing"
+msgstr ""
+
+#: ../root/utility/edit.js:61
+msgid "This edit is open for voting."
+msgstr ""
+
+#: ../root/utility/edit.js:63
+msgid "This edit has been successfully applied."
+msgstr ""
+
+#: ../root/utility/edit.js:66
+msgid "This edit failed because there were insufficient \"yes\" votes."
+msgstr ""
+
+#: ../root/utility/edit.js:70
+msgid ""
+"This edit failed either because an entity it was modifying no longer exists, "
+"or the entity can not be modified in this manner anymore."
+msgstr ""
+
+#: ../root/utility/edit.js:75
+msgid ""
+"This edit failed due to an internal error and may need to be entered again."
+msgstr ""
+
+#: ../root/utility/edit.js:80
+msgid ""
+"This edit failed because the data it was changing was modified after this "
+"edit was entered. This may happen when the same edit is entered in twice; "
+"one will pass but the other will fail."
+msgstr ""
+
+#: ../root/utility/edit.js:86
+msgid ""
+"This edit failed because it affected high quality data and did not receive "
+"any votes."
+msgstr ""
+
+#: ../root/utility/edit.js:90
+msgid "This edit was cancelled."
+msgstr ""
+
+#: ../root/utility/tableColumns.js:773
+msgid "Subscribed"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:34
+msgid "…related to artists in my subscriptions"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:50
+msgid ""
+"If you’d like to help ensuring the changes made to MusicBrainz data are "
+"correct, but do not know where to start, the following suggestions should be "
+"useful. These are pre-defined {edit_search|edit searches}; once you’re "
+"comfortable with the edit search you can refine them further or just create "
+"your own personal searches and bookmark them for your own use!"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:61
+msgid ""
+"While reviewing the work of your fellow editors, always keep the {coc|Code "
+"of Conduct} in mind. Almost all editors want to help, so your goal as a "
+"voter is to help them help better. This applies even more for beginners: "
+"always try to be helpful and patient with them, even if they are making "
+"mistakes, so that they’ll hopefully grow into better editors! That said, if "
+"you find an editor that seems to be vandalizing the data, you can always "
+"report them from their profile."
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:74
+msgid ""
+"By default, these searches skip your own edits and edits you have already "
+"voted on (when relevant). To change that, load the search and then remove "
+"the conditions “Editor is not me” and “Voter is me and voted No vote”, "
+"respectively."
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:81
+msgid "Destructive edits"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:84
+msgid ""
+"Destructive edits (removals and merges) are often very hard or even "
+"impossible to revert. As such, an incorrect destructive edit that applies "
+"unnoticed can cause quite a big mess! Most are guaranteed to remain open for "
+"at least two full days even if they get three “Yes” votes, to avoid them "
+"closing too quickly, but it’s always good to get more eyes on them. Below "
+"you can find four different searches: one for all destructive edits (which "
+"might be overwhelming sometimes), one for entity merges and removals only "
+"(the edits more likely to cause a mess if they incorrectly go through), one "
+"for relationship removals only, and one for destructive changes to releases "
+"(track, medium and release label removals)."
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:101
+msgid "All open destructive edits"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:110
+msgid "All open entity merges and removals"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:119
+msgid "All open relationship removals"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:128
+msgid "All open destructive changes to releases"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:139
+msgid "Unreviewed and potentially problematic edits"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:142
+msgid ""
+"Edits that nobody have seen can always benefit from a quick check: even if "
+"you’re not familiar with the music in question, you might be able to notice "
+"that something seems wrong. Don’t forget you don’t need to vote on every "
+"edit: it’s perfectly fine to just abstain if you feel something doesn’t seem "
+"wrong but it’s also not 100% obvious that it is right without further checks."
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:153
+msgid "Unreviewed edits (0 votes) that will close in less than a day"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:164
+msgid "All open unreviewed edits (0 votes)"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:174
+msgid ""
+"All open unconfirmed edits (“Abstain” votes only) that will close in less "
+"than a day"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:184
+msgid "All open unconfirmed edits (“Abstain” votes only)"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:196
+msgid ""
+"Edits that have already received “No” votes are also ones likely to benefit "
+"from more eyes on them, to either confirm the edit is indeed incorrect or to "
+"add a dissenting opinion to the current “No” vote. Similarly, edits with "
+"both “Yes” and “No” votes are likely to benefit from more opinions to push "
+"them to one side or the other. As always, remember to be polite, even if you "
+"disagree with a voter!"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:208
+msgid "Open edits with at least 1 “No” vote"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:217
+msgid "Open edits with both “Yes” and “No” votes (controversial edits)"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:229
+msgid "Edits by beginners"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:232
+msgid ""
+"Beginner editors are the ones most likely to need a friendly eye on their "
+"edits. When reviewing these, look for cases where the editor is making edits "
+"that go against the MusicBrainz guidelines, or seem otherwise wrong, and "
+"leave notes guiding the editor so that they can do better in the future. "
+"Make sure to link to the appropriate guidelines, or to relevant examples of "
+"well-entered data, and above all remember to be nice. Chances are if these "
+"users are making a terrible mess, they’re not doing it on purpose but out of "
+"confusion: MusicBrainz can be daunting for newcomers! If at all possible, "
+"fix the errors (and let the editor know that you’ve done that and that they "
+"can check the edits you made to see how it should look like) rather than "
+"voting “No” on edits, since “No” votes can be quite discouraging, especially "
+"as a new editor. If something is just so bad that there’s no fixing it and "
+"it is making the existing data worse, do vote against the edit, but make "
+"sure to explain nicely why that is needed, rather than just silently “No”-"
+"voting. For a longer overview of the attitude we’re hoping for, see "
+"{voting_blog|this blog post about voting}. Also, if a beginner is making "
+"especially good edits, you might want to let them know so they’ll feel good "
+"about it!"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:259
+msgid ""
+"The filters for edits you haven’t voted on yet below will only show open "
+"edits (since you can’t vote on closed edits anyway). That said, a fair "
+"amount of edits that auto-apply might still be worth reviewing when entered "
+"by beginners, so consider checking those too!"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:268
+msgid ""
+"Specific searches are provided for edits adding releases/mediums, which are "
+"probably the most complex and as such reasonably likely to have issues, plus "
+"for edits adding artists, which might include artists trying to add their "
+"own data and not doing a great job of it."
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:279
+msgid "All edits from beginner editors"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:287
+msgid "All edits from beginner editors made less than 2 weeks ago"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:296
+msgid "All \"Add release/medium\" edits by beginner editors"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:303
+msgid ""
+"All \"Add release/medium\" edits by beginner editors made less than 2 weeks "
+"ago"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:311
+msgid "All \"Add artist\" edits by beginner editors"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:317
+msgid "All \"Add artist\" edits by beginner editors made less than 2 weeks ago"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:324
+msgid "All open destructive edits by beginner editors"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:333
+msgid "All open unreviewed edits (0 votes) by beginner editors"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:345 ../root/vote/VotingIndex.js:367
+msgid "All edits"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:348
+msgid ""
+"Sometimes you might want to just check all edits for some reason. If you "
+"feel like being overwhelmed by a very long list of edits is just what the "
+"doctor ordered, just check the searches below! Don’t forget you can always "
+"experiment with different edit search filters to limit the amount of edits "
+"shown a bit and make it more manageable"
+msgstr ""
+
+#: ../root/vote/VotingIndex.js:360
+msgid "All open edits"
+msgstr ""
+
+#: ../root/work/WorkMerge.js:34
+msgid ""
+"You are about to merge all these works into a single one. Please select the "
+"work all others should be merged into:"
+msgstr ""
+
+#: ../root/work/WorkMerge.js:41
+msgid ""
+"Warning: Some of the works you’re merging have different "
+"ISWCs. Please make sure they are indeed the same works and you wish to "
+"continue with the merge."
+msgstr ""
diff --git a/po/relationships.bg.po b/po/relationships.bg.po
index cfef7c186e1..47291f2a6e5 100644
--- a/po/relationships.bg.po
+++ b/po/relationships.bg.po
@@ -46,10 +46,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -303,6 +303,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -333,10 +339,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -487,14 +489,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -866,7 +868,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1069,8 +1071,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1207,7 +1209,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1230,7 +1232,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1578,8 +1580,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1644,8 +1646,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1724,8 +1726,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1748,8 +1750,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1874,16 +1876,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1901,8 +1903,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2229,9 +2231,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2464,18 +2466,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2562,9 +2564,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2793,8 +2795,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2833,8 +2835,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2940,8 +2942,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2961,8 +2963,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2973,8 +2975,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3256,7 +3258,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3265,7 +3267,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3273,13 +3275,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3289,7 +3306,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3297,28 +3314,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3326,7 +3328,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3375,9 +3377,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3415,9 +3417,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3434,9 +3436,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3481,9 +3483,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3603,14 +3605,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3621,8 +3623,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3632,8 +3634,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4061,8 +4063,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4357,15 +4359,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4373,8 +4375,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4676,11 +4678,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4916,8 +4918,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6500,7 +6502,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6512,7 +6513,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6533,6 +6534,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6979,22 +6988,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7763,8 +7772,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7786,8 +7794,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7925,6 +7932,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7934,6 +7945,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8525,7 +8540,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.bn.po b/po/relationships.bn.po
index 2e75a4a0cb1..253b53b0809 100644
--- a/po/relationships.bn.po
+++ b/po/relationships.bn.po
@@ -46,10 +46,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -303,6 +303,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -333,10 +339,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -487,14 +489,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -866,7 +868,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1069,8 +1071,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1207,7 +1209,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1230,7 +1232,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1578,8 +1580,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1644,8 +1646,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1724,8 +1726,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1748,8 +1750,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1874,16 +1876,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1901,8 +1903,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2229,9 +2231,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2464,18 +2466,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2562,9 +2564,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2793,8 +2795,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2833,8 +2835,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2940,8 +2942,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2961,8 +2963,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2973,8 +2975,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3256,7 +3258,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3265,7 +3267,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3273,13 +3275,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3289,7 +3306,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3297,28 +3314,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3326,7 +3328,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3375,9 +3377,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3415,9 +3417,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3434,9 +3436,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3481,9 +3483,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3603,14 +3605,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3621,8 +3623,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3632,8 +3634,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4061,8 +4063,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4357,15 +4359,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4373,8 +4375,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4676,11 +4678,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4916,8 +4918,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6500,7 +6502,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6512,7 +6513,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6533,6 +6534,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6979,22 +6988,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7763,8 +7772,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7786,8 +7794,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7925,6 +7932,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7934,6 +7945,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8525,7 +8540,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.ca.po b/po/relationships.ca.po
index 130bfde7921..57b98b07c92 100644
--- a/po/relationships.ca.po
+++ b/po/relationships.ca.po
@@ -46,10 +46,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -303,6 +303,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -333,10 +339,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -487,14 +489,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -866,7 +868,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1069,8 +1071,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1207,7 +1209,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1230,7 +1232,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1578,8 +1580,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1644,8 +1646,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1724,8 +1726,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1748,8 +1750,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1874,16 +1876,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1901,8 +1903,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2229,9 +2231,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2464,18 +2466,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2562,9 +2564,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2793,8 +2795,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2833,8 +2835,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2940,8 +2942,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2961,8 +2963,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2973,8 +2975,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3256,7 +3258,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3265,7 +3267,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3273,13 +3275,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3289,7 +3306,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3297,28 +3314,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3326,7 +3328,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3375,9 +3377,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3415,9 +3417,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3434,9 +3436,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3481,9 +3483,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3603,14 +3605,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3621,8 +3623,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3632,8 +3634,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4061,8 +4063,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4357,15 +4359,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4373,8 +4375,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4676,11 +4678,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4916,8 +4918,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6500,7 +6502,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6512,7 +6513,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6533,6 +6534,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6979,22 +6988,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7763,8 +7772,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7786,8 +7794,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7925,6 +7932,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7934,6 +7945,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8525,7 +8540,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.cs.po b/po/relationships.cs.po
index 559244302d0..fa6ddefdbb9 100644
--- a/po/relationships.cs.po
+++ b/po/relationships.cs.po
@@ -47,10 +47,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -304,6 +304,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -334,10 +340,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -488,14 +490,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -867,7 +869,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1070,8 +1072,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1208,7 +1210,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1231,7 +1233,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1579,8 +1581,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1645,8 +1647,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1725,8 +1727,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1749,8 +1751,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1875,16 +1877,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1902,8 +1904,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2230,9 +2232,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2465,18 +2467,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2563,9 +2565,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2794,8 +2796,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2834,8 +2836,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2941,8 +2943,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2962,8 +2964,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2974,8 +2976,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3257,7 +3259,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3266,7 +3268,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3274,13 +3276,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3290,7 +3307,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3298,28 +3315,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3327,7 +3329,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3376,9 +3378,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3416,9 +3418,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3435,9 +3437,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3482,9 +3484,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3604,14 +3606,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3622,8 +3624,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3633,8 +3635,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4062,8 +4064,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4358,15 +4360,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4374,8 +4376,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4677,11 +4679,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4917,8 +4919,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6501,7 +6503,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6513,7 +6514,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6534,6 +6535,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6980,22 +6989,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7764,8 +7773,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7787,8 +7795,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7926,6 +7933,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7935,6 +7946,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8526,7 +8541,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.cy.po b/po/relationships.cy.po
index f7cdffa4075..1c3dfb1428f 100644
--- a/po/relationships.cy.po
+++ b/po/relationships.cy.po
@@ -47,10 +47,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -304,6 +304,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -334,10 +340,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -488,14 +490,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -867,7 +869,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1070,8 +1072,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1208,7 +1210,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1231,7 +1233,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1579,8 +1581,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1645,8 +1647,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1725,8 +1727,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1749,8 +1751,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1875,16 +1877,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1902,8 +1904,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2230,9 +2232,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2465,18 +2467,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2563,9 +2565,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2794,8 +2796,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2834,8 +2836,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2941,8 +2943,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2962,8 +2964,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2974,8 +2976,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3257,7 +3259,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3266,7 +3268,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3274,13 +3276,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3290,7 +3307,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3298,28 +3315,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3327,7 +3329,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3376,9 +3378,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3416,9 +3418,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3435,9 +3437,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3482,9 +3484,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3604,14 +3606,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3622,8 +3624,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3633,8 +3635,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4062,8 +4064,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4358,15 +4360,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4374,8 +4376,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4677,11 +4679,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4917,8 +4919,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6501,7 +6503,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6513,7 +6514,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6534,6 +6535,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6980,22 +6989,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7764,8 +7773,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7787,8 +7795,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7926,6 +7933,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7935,6 +7946,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8526,7 +8541,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.da.po b/po/relationships.da.po
index ca4624a07f5..cea329f9958 100644
--- a/po/relationships.da.po
+++ b/po/relationships.da.po
@@ -46,10 +46,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -303,6 +303,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -333,10 +339,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -487,14 +489,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -866,7 +868,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1069,8 +1071,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1207,7 +1209,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1230,7 +1232,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1578,8 +1580,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1644,8 +1646,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1724,8 +1726,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1748,8 +1750,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1874,16 +1876,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1901,8 +1903,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2229,9 +2231,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2464,18 +2466,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2562,9 +2564,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2793,8 +2795,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2833,8 +2835,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2940,8 +2942,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2961,8 +2963,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2973,8 +2975,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3256,7 +3258,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3265,7 +3267,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3273,13 +3275,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3289,7 +3306,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3297,28 +3314,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3326,7 +3328,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3375,9 +3377,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3415,9 +3417,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3434,9 +3436,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3481,9 +3483,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3603,14 +3605,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3621,8 +3623,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3632,8 +3634,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4061,8 +4063,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4357,15 +4359,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4373,8 +4375,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4676,11 +4678,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4916,8 +4918,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6500,7 +6502,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6512,7 +6513,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6533,6 +6534,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6979,22 +6988,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7763,8 +7772,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7786,8 +7794,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7925,6 +7932,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7934,6 +7945,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8525,7 +8540,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.de.po b/po/relationships.de.po
index 8a675c397fd..eed7f460c2f 100644
--- a/po/relationships.de.po
+++ b/po/relationships.de.po
@@ -19,11 +19,13 @@
# Ulrich Klauer , 2016
# chaban , 2023.
# Philipp Wolfer , 2023.
+# kellnerd , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
-"PO-Revision-Date: 2023-08-31 20:27+0000\n"
-"Last-Translator: Philipp Wolfer \n"
+"PO-Revision-Date: 2023-11-04 15:27+0000\n"
+"Last-Translator: kellnerd \n"
"Language-Team: German \n"
"Language: de\n"
@@ -31,7 +33,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.18.2\n"
+"X-Generator: Weblate 5.1\n"
#: DB:link_attribute_type/description:1355
msgid "A performance-centered, usually one to three year postgraduate program."
@@ -66,10 +68,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -345,6 +347,12 @@ msgstr ""
"Beziehung, die normalerweise auf bekannte Solokünstler zutrifft, obwohl sie "
"manchmal auch auf Gruppen zutreffen kann."
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -379,11 +387,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr "Gibt eine Webseite mit einer Besprechung der Veranstaltung an."
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-"Zeigt eine Webseite an, die das betreffende Release (Gruppe) überprüft."
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -567,19 +570,15 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"Gibt den Komponisten für diese Veröffentlichung an, z. B. den Künstler der "
-"die Musik (nicht unbedingt die Texte) geschrieben hat."
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"Gibt den Komponisten für dieses Werk an, z. B. den Künstler der die Musik "
-"(nicht unbedingt die Texte) geschrieben hat."
#: DB:link_type/description:845
msgid "Indicates the event where the work had its first performance"
@@ -968,7 +967,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1171,8 +1170,8 @@ msgstr "Zeigt auf die Wikipedia-Seite für dieses Werk."
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1323,11 +1322,8 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
-"Dieses Attribut kennzeichnet ein Mitglied, nach dem die Band benannt ist und "
-"ohne das sie nicht existieren würde (z. B. Miles Davis -> Miles Davis "
-"Sextett)"
#: DB:link_attribute_type/description:511
msgid ""
@@ -1354,10 +1350,8 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
-"Dieses Attribut gibt an, dass der streambare Inhalt Video statt nur Audio "
-"ist."
#: DB:link_attribute_type/description:788
msgid "This attribute indicates the number of an entity in a series."
@@ -1711,8 +1705,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1782,8 +1776,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1865,8 +1859,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1889,11 +1883,9 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
-"Dies gibt an, dass die Aufnahme nicht das ganze Werk umfasst, z. B. Auszüge "
-"des Werks, die Coda etc."
#: DB:link_attribute_type/description:578
msgid "This indicates that the recording is of a live performance."
@@ -2021,16 +2013,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -2051,8 +2043,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2385,9 +2377,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2624,18 +2616,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2724,9 +2716,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2968,8 +2960,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
"Dies verlinkt ein Objekt zum äquivalenten Eintrag in einer anderen "
"Datenbank. Respektiere bitte die work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -3120,8 +3112,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
"Diese Beziehung beschreibt eine URL, unter der Liedtexte für den Künstler "
"gefunden werden können. Nur Websites auf der whitelist are permitted."
msgstr ""
"Diese Beziehung beschreibt eine URL, unter der Liedtexte für das Label "
-"(meist ein Herausgeber) gefunden werden können. Nur Websites auf der Whitelist sind "
+"(meist ein Herausgeber) gefunden werden können. Nur Websites auf der Whitelist sind "
"zulässig."
#: DB:link_type/description:93
@@ -3145,15 +3137,15 @@ msgid ""
"Lyrics_whitelist\">whitelist are permitted."
msgstr ""
"Diese Beziehung beschreibt eine URL, unter der Liedtexte für die "
-"Veröffentlichungsgruppe gefunden werden können. Nur Websites auf der Whitelist sind "
+"Veröffentlichungsgruppe gefunden werden können. Nur Websites auf der Whitelist sind "
"zulässig."
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
"Diese Beziehung beschreibt eine URL, unter der Liedtexte für das Werk "
"gefunden werden können. Nur Websites auf der \n"
"For individual songs, see the recording-work performance relationship type."
@@ -3479,7 +3471,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3487,7 +3479,7 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
@@ -3495,6 +3487,21 @@ msgid "This relationship type is used to link a label to its blog."
msgstr ""
"Dieser Beziehungstyp wird benutzt, um ein Label zu seinem Blog zu verlinken."
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3504,72 +3511,30 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
-"Dieser Beziehungstyp wird benutzt, um eine Veröffentlichung zu einer Seite "
-"zu verlinken, von der sie gegen eine Abo-Gebühr legal gestreamt werden kann, "
-"z. B. Tidal.\n"
-"\n"
-"Wenn die Seite kostenloses Streamen erlaubt, verwende stattdessen "
-"„kostenloses Streamen“."
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-"Dieser Beziehungstyp wird benutzt, um eine Veröffentlichung zu einer Seite "
-"zu verlinken, von der sie legal kostenlos gestreamt werden kann, z. B. "
-"Spotify."
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-"Dieser Beziehungstyp wird benutzt, um einen Titel zu einer Seite zu "
-"verlinken, von der er gegen eine Abo-Gebühr legal gestreamt werden kann, "
-"z. B. Tidal.\n"
-"\n"
-"Wenn die Seite kostenloses Streamen erlaubt, verwende stattdessen "
-"„kostenloses Streamen“."
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
-"Dieser Beziehungstyp wird benutzt, um einen Titel zu einer Seite zu "
-"verlinken, von der Musik legal kostenlos gestreamt werden kann, wie "
-"beispielsweise Spotify für Audiotitel oder YouTube für Videos."
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
-"Dieser Beziehungstyp wird benutzt, um einen Künstler zu einer Seite zu "
-"verlinken, von der Musik gegen eine Abo-Gebühr legal gestreamt werden kann, "
-"z. B. Tidal.\n"
-"\n"
-"Wenn die Seite kostenloses Streamen erlaubt, verwende stattdessen "
-"„kostenloses Streamen“."
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
-"Dieser Beziehungstyp wird benutzt, um einen Künstler zu einer Seite zu "
-"verlinken, von der Musik legal kostenlos gestreamt werden kann, z. B. "
-"Spotify."
#: DB:link_type/description:199
msgid "This relationship type is used to link an artist to their blog."
@@ -3621,9 +3586,9 @@ msgstr "Dieser Beziehungstyp verbindet ein Label mit seiner Myspace-Seite."
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3666,9 +3631,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3685,9 +3650,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3737,9 +3702,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3872,14 +3837,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3890,8 +3855,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3901,8 +3866,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4330,8 +4295,8 @@ msgstr "kann zum Herunterladen gekauft werden unter"
msgid "can be purchased for mail-order at"
msgstr "kann bestellt werden unter"
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr "kann gestreamt werden unter"
@@ -4577,7 +4542,7 @@ msgstr "Copyright"
#: DB:link_type/reverse_link_phrase:708 DB:link_type/reverse_link_phrase:709
msgid "copyrighted (©) by"
-msgstr ""
+msgstr "urheberrechtlich geschützt (©) von"
#: DB:link_attribute_type/name:1349
msgid "counterpoint"
@@ -4626,15 +4591,15 @@ msgid "creative position"
msgstr "kreative Position"
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4642,8 +4607,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4945,11 +4910,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr "Seite zum kostenlosen Musik-Streamen für"
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr "Seite zum kostenlosen Musik-{video:Video-}Streamen für"
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr "kostenloses Streamen"
@@ -5185,8 +5150,8 @@ msgstr "hat einen Albenkatalog unter"
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -5646,6 +5611,9 @@ msgid ""
"is a {live} {medley:medley including a} {partial} {instrumental} {cover} "
"{karaoke} recording of"
msgstr ""
+"ist {medley:ein|eine} {live} {medley:Medley inklusive einer} {partial:"
+"teilweise} {instrumental:Instrumental-}{cover:Cover-}{karaoke:Karaoke-}"
+"Aufnahme von"
#: DB:link_type/long_link_phrase:15
msgid "is a {translated} {parody} cover of"
@@ -6573,7 +6541,7 @@ msgstr "phonographisches Urheberrecht"
#: DB:link_type/reverse_link_phrase:867 DB:link_type/reverse_link_phrase:711
#: DB:link_type/reverse_link_phrase:710 DB:link_type/reverse_link_phrase:869
msgid "phonographic copyright (℗) by"
-msgstr ""
+msgstr "phonographisches Urheberrecht (℗) von"
#: DB:link_type/name:123 DB:link_type/name:1175 DB:link_type/name:20
msgid "photography"
@@ -6773,7 +6741,6 @@ msgid "provided legal representation for"
msgstr "hat rechtliche Vertretung übernommen für"
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr "war {additional:zusätzlicher} Artdirector auf"
@@ -6785,7 +6752,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr "war {additional:zusätzlicher} künstlerische(r) Leiter(in) auf"
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6806,6 +6773,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -7252,22 +7227,22 @@ msgstr ""
msgid "stream for free"
msgstr "kostenlos streamen"
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr "{video:Video} kostenlos streamen"
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr "Streaming"
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr "Streaming-Seite"
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr "Streaming-Seite für"
@@ -8054,8 +8029,7 @@ msgid "{additional} arranging location for"
msgstr "{additional} Arrangement-Örtlichkeit für"
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr "{additional:zusätzliche} Artdirection"
@@ -8077,8 +8051,7 @@ msgstr "{additional} Kompositions-Örtlichkeit für"
msgid "{additional} creative direction"
msgstr "{additional:zusätzliche} künstlerische Leitung"
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -8216,6 +8189,10 @@ msgstr "{additional:zusätzliche(r)} Verfasser(in)"
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -8225,6 +8202,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8353,23 +8334,23 @@ msgstr ""
#: DB:link_type/link_phrase:756 DB:link_type/link_phrase:697
msgid "{additional} {pre:pre-}{re}mastering location for"
-msgstr ""
+msgstr "{additional:zusätzlicher} {pre:Pre-}{re:Remastering|Mastering}-Ort für"
#: DB:link_type/reverse_link_phrase:888
msgid "{anniversary:anniversary tour for|tour in support of}"
-msgstr ""
+msgstr "{anniversary:Jubiläumstour für|Tour zur Unterstützung von}"
#: DB:link_type/link_phrase:888
msgid "{anniversary:anniversary tours|supporting tours}"
-msgstr ""
+msgstr "{anniversary:Jubiläumstouren|Unterstützungstouren}"
#: DB:link_type/reverse_link_phrase:1186 DB:link_type/reverse_link_phrase:1187
msgid "{assistant} audio director"
-msgstr ""
+msgstr "{assistant:assistierender} Audio‐Regisseur"
#: DB:link_type/link_phrase:1186 DB:link_type/link_phrase:1187
msgid "{assistant} audio director for"
-msgstr ""
+msgstr "{assistant:assistierender} Audio‐Regisseur für"
#: DB:link_type/reverse_link_phrase:1165
msgid "{assistant} carillonneur"
@@ -8389,11 +8370,11 @@ msgstr "{assistant:assistierende} Organisten"
#: DB:link_type/reverse_link_phrase:962 DB:link_type/reverse_link_phrase:1185
msgid "{assistant} video director"
-msgstr ""
+msgstr "{assistant:assistierender} Video‐Regisseur"
#: DB:link_type/link_phrase:962 DB:link_type/link_phrase:1185
msgid "{assistant} video director for"
-msgstr ""
+msgstr "{assistant:assistierender} Video‐Regisseur für"
#: DB:link_type/reverse_link_phrase:305
msgid "{assistant} {principal} {guest} conductor {emeritus}"
@@ -8434,39 +8415,39 @@ msgstr ""
#: DB:link_type/long_link_phrase:854
msgid "{entity1} has a BookBrainz page at {entity0}"
-msgstr ""
+msgstr "{entity1} hat eine BookBrainz‐Seite unter {entity0}"
#: DB:link_type/long_link_phrase:971
msgid "{entity1} has a Discogs page at {entity0}"
-msgstr ""
+msgstr "{entity1} hat eine Discogs‐Seite unter {entity0}"
#: DB:link_type/long_link_phrase:280
msgid "{entity1} has a SecondHandSongs page at {entity0}"
-msgstr ""
+msgstr "{entity1} hat eine SecondHandSongs‐Seite unter {entity0}"
#: DB:link_type/long_link_phrase:289
msgid "{entity1} has a Songfacts page at {entity0}"
-msgstr ""
+msgstr "{entity1} hat eine Songfacts‐Seite unter {entity0}"
#: DB:link_type/long_link_phrase:992
msgid "{entity1} has a VGMdb page at {entity0}"
-msgstr ""
+msgstr "{entity1} hat eine VGMdb‐Seite unter {entity0}"
#: DB:link_type/long_link_phrase:351
msgid "{entity1} has a Wikidata page at {entity0}"
-msgstr ""
+msgstr "{entity1} hat eine Wikidata‐Seite unter {entity0}"
#: DB:link_type/long_link_phrase:279
msgid "{entity1} has a Wikipedia page at {entity0}"
-msgstr ""
+msgstr "{entity1} hat eine Wikipedia‐Seite unter {entity0}"
#: DB:link_type/long_link_phrase:908
msgid "{entity1} has a crowdfunding page at {entity0}"
-msgstr ""
+msgstr "{entity1} hat eine Crowdfunding‐Seite unter {entity0}"
#: DB:link_type/long_link_phrase:1188
msgid "{entity1} has a fan page at {entity0}"
-msgstr ""
+msgstr "{entity1} hat eine Fanseite unter {entity0}"
#: DB:link_type/long_link_phrase:273
msgid "{entity1} has a page in a database at {entity0}"
@@ -8796,12 +8777,16 @@ msgid ""
"{live} {medley:medley including a} {partial} {instrumental} {cover} "
"{karaoke} recording of"
msgstr ""
+"{live} {medley:Medley inklusive einer} {partial:teilweise} {instrumental:"
+"Instrumental-}{cover:Cover-}{karaoke:Karaoke-}Aufnahme von"
#: DB:link_type/reverse_link_phrase:278
msgid ""
"{live} {medley:medleys including} {partial} {instrumental} {cover} {karaoke} "
"recordings"
msgstr ""
+"{live} {medley:Medleys inklusive} {partial:teilweiser} {instrumental:"
+"Instrumental-}{cover:Cover-}{karaoke:Karaoke-}Aufnahmen"
#: DB:link_type/link_phrase:109
msgid "{step}children"
@@ -8839,7 +8824,7 @@ msgstr "{translated:übersetzte} {parody:Parodieversion|Version} von"
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr "{video:Video} kann kostenlos gestreamt werden unter"
@@ -8851,6 +8836,110 @@ msgstr "{vocal:%|vocals} Unterstützung von"
msgid "{vocal:%|vocals} support for"
msgstr "{vocal:%|vocals} Unterstützung für"
+#~ msgid "Indicates a webpage that reviews the release (group) in question."
+#~ msgstr ""
+#~ "Zeigt eine Webseite an, die das betreffende Release (Gruppe) überprüft."
+
+#~ msgid ""
+#~ "Indicates the composer for this release, i.e. the artist who wrote the "
+#~ "music (not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Gibt den Komponisten für diese Veröffentlichung an, z. B. den Künstler "
+#~ "der die Musik (nicht unbedingt die Texte) geschrieben hat."
+
+#~ msgid ""
+#~ "Indicates the composer for this work, i.e. the artist who wrote the music "
+#~ "(not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Gibt den Komponisten für dieses Werk an, z. B. den Künstler der die Musik "
+#~ "(nicht unbedingt die Texte) geschrieben hat."
+
+#~ msgid ""
+#~ "This attribute indicates a member the band is named after and without "
+#~ "which it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+#~ msgstr ""
+#~ "Dieses Attribut kennzeichnet ein Mitglied, nach dem die Band benannt ist "
+#~ "und ohne das sie nicht existieren würde (z. B. Miles Davis -> Miles "
+#~ "Davis Sextett)"
+
+#~ msgid ""
+#~ "This attribute indicates that the streamable content is not audio but "
+#~ "video."
+#~ msgstr ""
+#~ "Dieses Attribut gibt an, dass der streambare Inhalt Video statt nur Audio "
+#~ "ist."
+
+#~ msgid ""
+#~ "This indicates that the recording is not of the entire work, e.g. "
+#~ "excerpts from, conclusion of, etc."
+#~ msgstr ""
+#~ "Dies gibt an, dass die Aufnahme nicht das ganze Werk umfasst, z. B. "
+#~ "Auszüge des Werks, die Coda etc."
+
+#~ msgid ""
+#~ "This relationship type is used to link a release to a site where the "
+#~ "tracks can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Dieser Beziehungstyp wird benutzt, um eine Veröffentlichung zu einer "
+#~ "Seite zu verlinken, von der sie gegen eine Abo-Gebühr legal gestreamt "
+#~ "werden kann, z. B. Tidal.\n"
+#~ "\n"
+#~ "Wenn die Seite kostenloses Streamen erlaubt, verwende stattdessen "
+#~ "„kostenloses Streamen“."
+
+#~ msgid ""
+#~ "This relationship type is used to link a release to a site where the "
+#~ "tracks can be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "Dieser Beziehungstyp wird benutzt, um eine Veröffentlichung zu einer "
+#~ "Seite zu verlinken, von der sie legal kostenlos gestreamt werden kann, "
+#~ "z. B. Spotify."
+
+#~ msgid ""
+#~ "This relationship type is used to link a track to a site where the track "
+#~ "can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Dieser Beziehungstyp wird benutzt, um einen Titel zu einer Seite zu "
+#~ "verlinken, von der er gegen eine Abo-Gebühr legal gestreamt werden kann, "
+#~ "z. B. Tidal.\n"
+#~ "\n"
+#~ "Wenn die Seite kostenloses Streamen erlaubt, verwende stattdessen "
+#~ "„kostenloses Streamen“."
+
+#~ msgid ""
+#~ "This relationship type is used to link a track to a site where the track "
+#~ "can be legally streamed for free, such as Spotify for audio tracks or "
+#~ "YouTube for videos."
+#~ msgstr ""
+#~ "Dieser Beziehungstyp wird benutzt, um einen Titel zu einer Seite zu "
+#~ "verlinken, von der Musik legal kostenlos gestreamt werden kann, wie "
+#~ "beispielsweise Spotify für Audiotitel oder YouTube für Videos."
+
+#~ msgid ""
+#~ "This relationship type is used to link an artist to a site where music "
+#~ "can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Dieser Beziehungstyp wird benutzt, um einen Künstler zu einer Seite zu "
+#~ "verlinken, von der Musik gegen eine Abo-Gebühr legal gestreamt werden "
+#~ "kann, z. B. Tidal.\n"
+#~ "\n"
+#~ "Wenn die Seite kostenloses Streamen erlaubt, verwende stattdessen "
+#~ "„kostenloses Streamen“."
+
+#~ msgid ""
+#~ "This relationship type is used to link an artist to a site where music "
+#~ "can be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "Dieser Beziehungstyp wird benutzt, um einen Künstler zu einer Seite zu "
+#~ "verlinken, von der Musik legal kostenlos gestreamt werden kann, z. B. "
+#~ "Spotify."
+
#~ msgid "performed {additional} chorus master on"
#~ msgstr "leitete {additional:zusätzlich} den Chor auf"
diff --git a/po/relationships.el.po b/po/relationships.el.po
index 837a9b0f584..04119ba85b9 100644
--- a/po/relationships.el.po
+++ b/po/relationships.el.po
@@ -49,10 +49,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -310,6 +310,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -340,10 +346,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -494,14 +496,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -873,7 +875,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1076,8 +1078,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1216,7 +1218,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1244,7 +1246,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1594,8 +1596,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1660,8 +1662,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1740,8 +1742,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1764,8 +1766,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1890,16 +1892,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1917,8 +1919,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2245,9 +2247,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2480,18 +2482,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2578,9 +2580,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2809,8 +2811,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2849,8 +2851,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2956,8 +2958,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2977,8 +2979,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2989,8 +2991,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3274,7 +3276,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3283,7 +3285,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3291,13 +3293,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3307,7 +3324,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3315,28 +3332,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3344,7 +3346,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3393,9 +3395,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3433,9 +3435,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3452,9 +3454,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3499,9 +3501,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3631,14 +3633,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3649,8 +3651,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3660,8 +3662,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4089,8 +4091,8 @@ msgstr "μπορεί να κατέβει με πληρωμή από"
msgid "can be purchased for mail-order at"
msgstr "μπορεί να αγοραστεί μέσω αλληλογραφίας από"
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4385,15 +4387,15 @@ msgid "creative position"
msgstr "δημιουργική θέση"
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4401,8 +4403,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4704,11 +4706,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4944,8 +4946,8 @@ msgstr "έχει κατάλογο δίσκων στο"
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6528,7 +6530,6 @@ msgid "provided legal representation for"
msgstr "παρείχε νομική υποστήριξη για"
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr "παρείχε {additional} καλλιτεχνική διεύθυνση στο"
@@ -6540,7 +6541,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr "παρείχε {additional} δημιουργική διεύθυνση στο"
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6561,6 +6562,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -7007,22 +7016,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7791,8 +7800,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr "{additional} καλλιτεχνική διεύθυνση"
@@ -7814,8 +7822,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr "{additional} δημιουργική διεύθυνση"
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7953,6 +7960,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7962,6 +7973,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8558,7 +8573,7 @@ msgstr "{translated} έκδοση {parody} του"
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.eo.po b/po/relationships.eo.po
index 4a72a8adacf..c4061c3fba9 100644
--- a/po/relationships.eo.po
+++ b/po/relationships.eo.po
@@ -61,10 +61,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -322,6 +322,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -352,10 +358,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -506,14 +508,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -885,7 +887,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1088,8 +1090,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1226,7 +1228,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1249,7 +1251,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1597,8 +1599,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1663,8 +1665,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1743,8 +1745,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1767,8 +1769,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1893,16 +1895,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1920,8 +1922,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2248,9 +2250,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2483,18 +2485,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2581,9 +2583,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2812,8 +2814,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2852,8 +2854,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2959,8 +2961,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2980,8 +2982,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2992,8 +2994,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3275,7 +3277,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3284,7 +3286,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3292,13 +3294,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3308,7 +3325,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3316,28 +3333,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3345,7 +3347,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3394,9 +3396,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3434,9 +3436,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3453,9 +3455,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3500,9 +3502,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3622,14 +3624,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3640,8 +3642,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3651,8 +3653,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4080,8 +4082,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4376,15 +4378,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4392,8 +4394,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4695,11 +4697,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4935,8 +4937,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6519,7 +6521,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6531,7 +6532,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6552,6 +6553,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6998,22 +7007,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7782,8 +7791,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7805,8 +7813,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7944,6 +7951,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7953,6 +7964,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8544,7 +8559,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.es.po b/po/relationships.es.po
index f292df93b4f..7d690447e26 100644
--- a/po/relationships.es.po
+++ b/po/relationships.es.po
@@ -69,10 +69,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -329,6 +329,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -359,10 +365,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -513,14 +515,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -894,7 +896,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1097,8 +1099,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1239,7 +1241,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1265,9 +1267,8 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
-"Este atributo indica que el contenido en streaming no es audio, sino vídeo."
#: DB:link_attribute_type/description:788
msgid "This attribute indicates the number of an entity in a series."
@@ -1615,8 +1616,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1681,8 +1682,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1763,8 +1764,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1787,9 +1788,9 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
-msgstr "Indica que la grabación no es de toda la obra, sino de un fragmento."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
+msgstr ""
#: DB:link_attribute_type/description:578
msgid "This indicates that the recording is of a live performance."
@@ -1913,16 +1914,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1940,8 +1941,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2268,9 +2269,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2506,18 +2507,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2604,9 +2605,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2839,8 +2840,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2879,8 +2880,8 @@ msgstr "Esto enlaza artistas que se han casado."
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2986,8 +2987,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -3007,8 +3008,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -3019,8 +3020,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3302,7 +3303,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3311,7 +3312,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3319,13 +3320,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3335,7 +3351,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3343,28 +3359,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3372,7 +3373,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3421,9 +3422,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3461,9 +3462,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3480,9 +3481,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3527,9 +3528,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3649,14 +3650,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3667,8 +3668,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3678,8 +3679,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4107,8 +4108,8 @@ msgstr "puede comprarse para descarga en"
msgid "can be purchased for mail-order at"
msgstr "puede comprarse por correo en"
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4403,15 +4404,15 @@ msgid "creative position"
msgstr "posición creativa"
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4419,8 +4420,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4722,11 +4723,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr "página de transmisión gratuita de música de"
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr "página de streaming gratuito {video:del vídeo|de}"
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4962,8 +4963,8 @@ msgstr "tuvo un catalogo de discos en"
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6546,7 +6547,6 @@ msgid "provided legal representation for"
msgstr "ofreció representación legal para"
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6558,7 +6558,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6579,6 +6579,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -7025,22 +7033,22 @@ msgstr ""
msgid "stream for free"
msgstr "Escucha gratis"
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr "streaming gratuito {video:del vídeo}"
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7819,8 +7827,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr "dirección artística {additional:adicional}"
@@ -7842,8 +7849,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr "dirección creativa {additional:adicional}"
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7981,6 +7987,10 @@ msgstr "escritor {additional:adicional}"
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7990,6 +8000,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8599,7 +8613,7 @@ msgstr "{translated} {parody} versión de"
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
@@ -8611,6 +8625,19 @@ msgstr ""
msgid "{vocal:%|vocals} support for"
msgstr ""
+#~ msgid ""
+#~ "This attribute indicates that the streamable content is not audio but "
+#~ "video."
+#~ msgstr ""
+#~ "Este atributo indica que el contenido en streaming no es audio, sino "
+#~ "vídeo."
+
+#~ msgid ""
+#~ "This indicates that the recording is not of the entire work, e.g. "
+#~ "excerpts from, conclusion of, etc."
+#~ msgstr ""
+#~ "Indica que la grabación no es de toda la obra, sino de un fragmento."
+
#~ msgid "{additional:additionally} conducted"
#~ msgstr "director {additional}"
diff --git a/po/relationships.es_419.po b/po/relationships.es_419.po
new file mode 100644
index 00000000000..830aac2c061
--- /dev/null
+++ b/po/relationships.es_419.po
@@ -0,0 +1,8549 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: es_419\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: DB:link_attribute_type/description:1355
+msgid "A performance-centered, usually one to three year postgraduate program."
+msgstr ""
+
+#: DB:link_type/description:218
+msgid ""
+"A social network page is a label's own page on a social network which only "
+"people involved with the label can post content to. Examples include "
+"Facebook pages, and accounts on Twitter, Instagram and Flickr."
+msgstr ""
+
+#: DB:link_type/description:784
+msgid ""
+"A social network page is a page for a series on a social network which only "
+"people involved with the series can post content to. Examples include "
+"Facebook pages, and accounts on Twitter, Instagram and Flickr."
+msgstr ""
+
+#: DB:link_type/description:429
+msgid ""
+"A social network page is a place's own page on a social network which only "
+"people involved with the place can post content to. Examples include "
+"Facebook pages, and accounts on Twitter, Instagram and Flickr."
+msgstr ""
+
+#: DB:link_type/description:192
+msgid ""
+"A social network page is an artist's own profile page on a social "
+"network which only they (or their management) can post content to. Other "
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
+msgstr ""
+
+#: DB:link_type/description:783
+msgid ""
+"A social network page is an event's own page on a social network which only "
+"people involved with the event can post content to. Examples include "
+"Facebook pages and event entries, and accounts on Twitter, Instagram and "
+"Flickr."
+msgstr ""
+
+#: DB:link_type/link_phrase:77 DB:link_type/reverse_link_phrase:77
+msgid "ASIN"
+msgstr ""
+
+#: DB:link_type/link_phrase:755 DB:link_type/link_phrase:284
+#: DB:link_type/link_phrase:283 DB:link_type/link_phrase:285
+#: DB:link_type/link_phrase:1093 DB:link_type/reverse_link_phrase:286
+msgid "Allmusic"
+msgstr ""
+
+#: DB:link_type/link_phrase:286 DB:link_type/reverse_link_phrase:755
+#: DB:link_type/reverse_link_phrase:284 DB:link_type/reverse_link_phrase:283
+#: DB:link_type/reverse_link_phrase:285 DB:link_type/reverse_link_phrase:1093
+msgid "Allmusic page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1131 DB:link_type/link_phrase:1130
+msgid "Apple Music"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1131 DB:link_type/reverse_link_phrase:1130
+msgid "Apple Music page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:190
+msgid "BBC Music"
+msgstr ""
+
+#: DB:link_type/name:190
+msgid "BBC Music page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:190
+msgid "BBC Music page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1092 DB:link_type/link_phrase:718
+#: DB:link_type/link_phrase:719
+msgid "Bandcamp"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1092 DB:link_type/reverse_link_phrase:718
+#: DB:link_type/reverse_link_phrase:719
+msgid "Bandcamp page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:861 DB:link_type/link_phrase:862
+#: DB:link_type/link_phrase:860
+msgid "Bandsintown"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:861 DB:link_type/reverse_link_phrase:862
+#: DB:link_type/reverse_link_phrase:860
+msgid "Bandsintown page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:851 DB:link_type/link_phrase:852
+#: DB:link_type/link_phrase:853 DB:link_type/link_phrase:1167
+#: DB:link_type/link_phrase:850 DB:link_type/name:851 DB:link_type/name:852
+#: DB:link_type/name:853 DB:link_type/name:1167 DB:link_type/name:854
+#: DB:link_type/name:850 DB:link_type/reverse_link_phrase:854
+msgid "BookBrainz"
+msgstr ""
+
+#: DB:link_type/link_phrase:854 DB:link_type/reverse_link_phrase:851
+#: DB:link_type/reverse_link_phrase:852 DB:link_type/reverse_link_phrase:853
+#: DB:link_type/reverse_link_phrase:1167 DB:link_type/reverse_link_phrase:850
+msgid "BookBrainz page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:919 DB:link_type/name:919
+msgid "CD Baby"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:919
+msgid "CD Baby page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:981 DB:link_type/name:981
+msgid "CPDL"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:981
+msgid "CPDL page for"
+msgstr ""
+
+#: DB:link_type/name:227 DB:link_type/name:8
+msgid "DJ-mix"
+msgstr ""
+
+#: DB:link_type/link_phrase:227 DB:link_type/link_phrase:8
+msgid "DJ-mix of"
+msgstr ""
+
+#: DB:link_type/link_phrase:155 DB:link_type/long_link_phrase:155
+msgid "DJ-mixed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:8
+msgid "DJ-mixed versions"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:43
+msgid "DJ-mixed {medium:% of}"
+msgstr ""
+
+#: DB:link_type/link_phrase:43
+msgid "DJ-mixed {medium}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:155
+msgid "DJ-mixer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:43
+msgid "DJ-mixer {medium}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:227
+msgid "DJ-mixes"
+msgstr ""
+
+#: DB:link_type/description:704
+msgid ""
+"Describes the fact a person was contracted by a place as a mastering "
+"engineer."
+msgstr ""
+
+#: DB:link_type/description:703
+msgid ""
+"Describes the fact a person was contracted by a place as a mixing engineer."
+msgstr ""
+
+#: DB:link_type/description:702
+msgid ""
+"Describes the fact a person was contracted by a place as a recording "
+"engineer."
+msgstr ""
+
+#: DB:link_type/description:701
+msgid "Describes the fact a person was contracted by a place as an engineer."
+msgstr ""
+
+#: DB:link_type/description:357
+msgid "Designates that a work is or was the anthem for an area"
+msgstr ""
+
+#: DB:link_type/description:356
+msgid "Designates that one area is contained by another."
+msgstr ""
+
+#: DB:link_type/link_phrase:1089 DB:link_type/link_phrase:180
+#: DB:link_type/link_phrase:76 DB:link_type/link_phrase:217
+#: DB:link_type/link_phrase:90 DB:link_type/link_phrase:747
+#: DB:link_type/link_phrase:705 DB:link_type/reverse_link_phrase:971
+msgid "Discogs"
+msgstr ""
+
+#: DB:link_type/link_phrase:971 DB:link_type/reverse_link_phrase:1089
+#: DB:link_type/reverse_link_phrase:180 DB:link_type/reverse_link_phrase:76
+#: DB:link_type/reverse_link_phrase:217 DB:link_type/reverse_link_phrase:90
+#: DB:link_type/reverse_link_phrase:747 DB:link_type/reverse_link_phrase:705
+msgid "Discogs page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:1020
+msgid ""
+"For indicating the step-spouse of the artist's parent, or the sibling "
+"relationship with the children of such a spouse"
+msgstr ""
+
+#: DB:link_attribute_type/description:580
+msgid ""
+"For works that have lyrics, this indicates that those lyrics are not "
+"relevant to this recording. Examples include instrumental arrangements, or "
+"\"beats\" from hip-hop songs which may be reused with different lyrics."
+msgstr ""
+
+#: DB:link_type/link_phrase:934 DB:link_type/link_phrase:713
+msgid "Geonames"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:934 DB:link_type/reverse_link_phrase:713
+msgid "Geonames page for"
+msgstr ""
+
+#: DB:link_type/name:83 DB:link_type/name:258
+msgid "IMDB samples"
+msgstr ""
+
+#: DB:link_type/link_phrase:313 DB:link_type/link_phrase:178
+#: DB:link_type/link_phrase:97 DB:link_type/link_phrase:706
+#: DB:link_type/name:843 DB:link_type/name:313 DB:link_type/name:178
+#: DB:link_type/name:97 DB:link_type/name:706
+#: DB:link_type/reverse_link_phrase:843
+msgid "IMDb"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:83 DB:link_type/reverse_link_phrase:258
+msgid "IMDb entry sampled in"
+msgstr ""
+
+#: DB:link_type/link_phrase:843 DB:link_type/reverse_link_phrase:313
+#: DB:link_type/reverse_link_phrase:178 DB:link_type/reverse_link_phrase:97
+#: DB:link_type/reverse_link_phrase:706
+msgid "IMDb page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:754 DB:link_type/name:754
+msgid "IMSLP"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:754
+msgid "IMSLP page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:516
+msgid "Indicates a bonus disc"
+msgstr ""
+
+#: DB:link_type/description:162
+msgid ""
+"Indicates a miscellaneous support role. This is usually stated in the liner "
+"notes of an album."
+msgstr ""
+
+#: DB:link_type/description:105
+msgid ""
+"Indicates a musician doing long-time instrumental support for another one on "
+"albums and/or at concerts. This is a person-to-artist relationship that "
+"normally applies to well-known solo artists, although it can sometimes apply "
+"to groups."
+msgstr ""
+
+#: DB:link_type/description:107
+msgid ""
+"Indicates a musician doing long-time vocal support for another one on albums "
+"and/or at concerts. This is a person-to-artist relationship that normally "
+"applies to well-known solo artists, although it can sometimes apply to "
+"groups."
+msgstr ""
+
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
+#: DB:link_type/description:1083
+msgid "Indicates a page with an official schedule for an event series."
+msgstr ""
+
+#: DB:link_type/description:109
+msgid "Indicates a parent-child relationship."
+msgstr ""
+
+#: DB:link_type/description:396
+msgid "Indicates a pictorial image (JPEG, GIF, PNG) of a place"
+msgstr ""
+
+#: DB:link_type/description:173
+msgid "Indicates a pictorial image (JPEG, GIF, PNG) of an artist."
+msgstr ""
+
+#: DB:link_type/description:943
+msgid ""
+"Indicates a place that moved from one location to another, while still being "
+"generally considered the same."
+msgstr ""
+
+#: DB:link_attribute_type/description:1019
+msgid "Indicates a sibling with whom the artist has only one parent in common"
+msgstr ""
+
+#: DB:link_type/description:842
+msgid "Indicates a webpage that reviews the event in question."
+msgstr ""
+
+#: DB:link_type/description:958
+msgid "Indicates a webpage where you can download a label's releases for free."
+msgstr ""
+
+#: DB:link_type/description:177
+msgid "Indicates a webpage where you can download an artist's work for free."
+msgstr ""
+
+#: DB:link_type/description:834
+msgid ""
+"Indicates an artist (generally a composer) this work was previously "
+"attributed to, but who is currently confirmed (or very strongly suspected) "
+"not to be the real author."
+msgstr ""
+
+#: DB:link_type/description:104
+msgid ""
+"Indicates an artist doing long-time instrumental or vocal support for "
+"another one on albums and/or at concerts. This is a person-to-artist "
+"relationship that normally applies to well-known solo artists, although it "
+"can sometimes apply to groups."
+msgstr ""
+
+#: DB:link_type/description:156
+msgid "Indicates an artist that performed on this recording."
+msgstr ""
+
+#: DB:link_type/description:51
+msgid "Indicates an artist that performed on this release."
+msgstr ""
+
+#: DB:link_type/description:148
+msgid ""
+"Indicates an artist that performed one or more instruments on this recording."
+msgstr ""
+
+#: DB:link_type/description:44
+msgid ""
+"Indicates an artist that performed one or more instruments on this release."
+msgstr ""
+
+#: DB:link_type/description:149
+msgid "Indicates an artist that performed vocals on this recording."
+msgstr ""
+
+#: DB:link_type/description:60
+msgid "Indicates an artist that performed vocals on this release."
+msgstr ""
+
+#: DB:link_type/description:150
+msgid "Indicates an orchestra that performed on this recording."
+msgstr ""
+
+#: DB:link_type/description:45
+msgid "Indicates an orchestra that performed on this release."
+msgstr ""
+
+#: DB:link_attribute_type/description:1080
+msgid ""
+"Indicates how many of a specific instrument an ensemble usually includes."
+msgstr ""
+
+#: DB:link_type/description:844
+msgid ""
+"Indicates that an artist revised a work. In most cases, this will be the "
+"original composer revising the work at a later date."
+msgstr ""
+
+#: DB:link_type/description:887
+msgid ""
+"Indicates that an event was intended as a performance of a specific release "
+"group (usually an album)."
+msgstr ""
+
+#: DB:link_attribute_type/description:567
+msgid "Indicates that one entity is a cover of another entity"
+msgstr ""
+
+#: DB:link_type/description:996
+msgid "Indicates that the artist is part of a series."
+msgstr ""
+
+#: DB:link_type/description:802
+msgid "Indicates that the event is part of a series."
+msgstr ""
+
+#: DB:link_type/description:231
+msgid "Indicates that the recording contains samples from another."
+msgstr ""
+
+#: DB:link_type/description:154
+msgid ""
+"Indicates that the recording contains samples from material by the indicated "
+"artist. Use this only if you really cannot figure out the particular "
+"recording that has been sampled."
+msgstr ""
+
+#: DB:link_type/description:69
+msgid "Indicates that the recording contains samples from this release."
+msgstr ""
+
+#: DB:link_type/description:740
+msgid "Indicates that the recording is part of a series."
+msgstr ""
+
+#: DB:link_attribute_type/description:1053
+msgid "Indicates that the relationship is optional - doesn't always apply."
+msgstr ""
+
+#: DB:link_type/description:49
+msgid ""
+"Indicates that the release contains samples from material by the indicated "
+"artist. Use this only if you really cannot figure out the particular "
+"recording that has been sampled."
+msgstr ""
+
+#: DB:link_type/description:742
+msgid "Indicates that the release group is part of a series."
+msgstr ""
+
+#: DB:link_type/description:741
+msgid "Indicates that the release is part of a series."
+msgstr ""
+
+#: DB:link_type/description:743
+msgid "Indicates that the work is part of a series."
+msgstr ""
+
+#: DB:link_type/description:112
+msgid ""
+"Indicates that two persons were romantically involved with each other "
+"without being married."
+msgstr ""
+
+#: DB:link_type/description:1085
+msgid "Indicates the area an event series was held at."
+msgstr ""
+
+#: DB:link_type/description:715
+msgid "Indicates the area where the work had its first performance"
+msgstr ""
+
+#: DB:link_type/description:956
+msgid ""
+"Indicates the artist(s) who gave the first performance of the work; this is "
+"usually mostly relevant for classical music"
+msgstr ""
+
+#: DB:link_type/description:55
+msgid ""
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
+msgstr ""
+
+#: DB:link_type/description:168
+msgid ""
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
+msgstr ""
+
+#: DB:link_type/description:845
+msgid "Indicates the event where the work had its first performance"
+msgstr ""
+
+#: DB:link_type/description:986
+msgid ""
+"Indicates the instrument technician for this recording. Use also for \"piano "
+"tuner\" credits and other similar ones."
+msgstr ""
+
+#: DB:link_type/description:987
+msgid ""
+"Indicates the instrument technician for this release. Use also for \"piano "
+"tuner\" credits and other similar ones."
+msgstr ""
+
+#: DB:link_type/description:57
+msgid "Indicates the librettist for this release."
+msgstr ""
+
+#: DB:link_type/description:169
+msgid "Indicates the librettist for this work."
+msgstr ""
+
+#: DB:link_type/description:995
+msgid "Indicates the location a run or residency was held at."
+msgstr ""
+
+#: DB:link_type/description:56
+msgid "Indicates the lyricist for this release."
+msgstr ""
+
+#: DB:link_type/description:165
+msgid "Indicates the lyricist for this work."
+msgstr ""
+
+#: DB:link_type/description:42
+msgid "Indicates the mastering engineer for this work."
+msgstr ""
+
+#: DB:link_type/description:219
+msgid "Indicates the official homepage for a label."
+msgstr ""
+
+#: DB:link_type/description:363
+msgid "Indicates the official homepage for a place."
+msgstr ""
+
+#: DB:link_type/description:745
+msgid "Indicates the official homepage for a series."
+msgstr ""
+
+#: DB:link_type/description:183
+msgid "Indicates the official homepage for an artist."
+msgstr ""
+
+#: DB:link_type/description:782
+msgid "Indicates the official homepage for an event."
+msgstr ""
+
+#: DB:link_type/description:871
+msgid ""
+"Indicates the person who translated the lyrics/libretto for this release."
+msgstr ""
+
+#: DB:link_type/description:872
+msgid "Indicates the person who translated the lyrics/libretto for this work."
+msgstr ""
+
+#: DB:link_type/description:716
+msgid "Indicates the place where the work had its first performance"
+msgstr ""
+
+#: DB:link_type/description:32
+msgid ""
+"Indicates the publisher of this release. This is not the "
+"same concept as the record label"
+"a>."
+msgstr ""
+
+#: DB:link_type/description:161
+msgid ""
+"Indicates the publisher of this work. This is not the same "
+"concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:208
+msgid ""
+"Indicates the publisher of this work. This is not the same "
+"concept as the record label."
+msgstr ""
+
+#: DB:link_type/link_phrase:840 DB:link_type/link_phrase:837
+#: DB:link_type/link_phrase:839 DB:link_type/link_phrase:838
+msgid "Last.fm"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:840 DB:link_type/reverse_link_phrase:837
+#: DB:link_type/reverse_link_phrase:839 DB:link_type/reverse_link_phrase:838
+msgid "Last.fm page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:4
+msgid "Lead or solo vocal"
+msgstr ""
+
+#: DB:link_type/description:864
+msgid ""
+"Links a recording to the area it was arranged in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:821
+msgid ""
+"Links a recording to the area it was edited in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:814
+msgid ""
+"Links a recording to the area it was engineered in. Use only when the place "
+"is unknown!"
+msgstr ""
+
+#: DB:link_type/description:758
+msgid ""
+"Links a recording to the area it was mixed in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:827
+msgid ""
+"Links a recording to the area it was produced in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:698
+msgid ""
+"Links a recording to the area it was recorded in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:830
+msgid ""
+"Links a recording to the area it was remixed in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:809
+msgid "Links a recording to the event it was recorded at."
+msgstr ""
+
+#: DB:link_type/description:1006
+msgid ""
+"Links a recording to the event series (tour, residency, etc.) it was "
+"recorded during."
+msgstr ""
+
+#: DB:link_type/description:866
+msgid "Links a recording to the place it was arranged at."
+msgstr ""
+
+#: DB:link_type/description:819
+msgid "Links a recording to the place it was edited at."
+msgstr ""
+
+#: DB:link_type/description:813
+msgid "Links a recording to the place it was engineered at."
+msgstr ""
+
+#: DB:link_type/description:694
+msgid "Links a recording to the place it was mixed at."
+msgstr ""
+
+#: DB:link_type/description:825
+msgid "Links a recording to the place it was produced at."
+msgstr ""
+
+#: DB:link_type/description:693
+msgid "Links a recording to the place it was recorded at."
+msgstr ""
+
+#: DB:link_type/description:829
+msgid "Links a recording to the place it was remixed at."
+msgstr ""
+
+#: DB:link_type/description:1008
+msgid ""
+"Links a recording, release or release group series to the event series "
+"(tour, residency, etc.) it was recorded during."
+msgstr ""
+
+#: DB:link_type/description:1007
+msgid ""
+"Links a release group to the event series (tour, residency, etc.) it was "
+"recorded during."
+msgstr ""
+
+#: DB:link_type/description:797
+msgid "Links a release group with a launch event for it."
+msgstr ""
+
+#: DB:link_type/description:863
+msgid ""
+"Links a release to the area it was arranged in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:822
+msgid ""
+"Links a release to the area it was edited in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:815
+msgid ""
+"Links a release to the area it was engineered in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:835
+msgid "Links a release to the area it was manufactured (\"made\") in."
+msgstr ""
+
+#: DB:link_type/description:756
+msgid ""
+"Links a release to the area it was mastered in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:757
+msgid ""
+"Links a release to the area it was mixed in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:849
+msgid "Links a release to the area it was printed in."
+msgstr ""
+
+#: DB:link_type/description:826
+msgid ""
+"Links a release to the area it was produced in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:699
+msgid ""
+"Links a release to the area it was recorded in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:831
+msgid ""
+"Links a release to the area it was remixed in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:1181
+msgid ""
+"Links a release to the area it was transferred in (for example from an old "
+"tape to digital). Use only when the place is unknown!"
+msgstr ""
+
+#: DB:link_type/description:967
+msgid ""
+"Links a release to the area where the lacquer cutting took place. Use only "
+"when the place is unknown!"
+msgstr ""
+
+#: DB:link_type/description:969
+msgid "Links a release to the engineer who did the lacquer cutting for it."
+msgstr ""
+
+#: DB:link_type/description:810
+msgid "Links a release to the event it was recorded at."
+msgstr ""
+
+#: DB:link_type/description:865
+msgid "Links a release to the place it was arranged at."
+msgstr ""
+
+#: DB:link_type/description:820
+msgid "Links a release to the place it was edited at."
+msgstr ""
+
+#: DB:link_type/description:812
+msgid "Links a release to the place it was engineered at."
+msgstr ""
+
+#: DB:link_type/description:953
+msgid ""
+"Links a release to the place it was manufactured at. Use a more specific "
+"credit if available"
+msgstr ""
+
+#: DB:link_type/description:697
+msgid "Links a release to the place it was mastered at."
+msgstr ""
+
+#: DB:link_type/description:696
+msgid "Links a release to the place it was mixed at."
+msgstr ""
+
+#: DB:link_type/description:941
+msgid "Links a release to the place it was pressed at."
+msgstr ""
+
+#: DB:link_type/description:824
+msgid "Links a release to the place it was produced at."
+msgstr ""
+
+#: DB:link_type/description:695
+msgid "Links a release to the place it was recorded at."
+msgstr ""
+
+#: DB:link_type/description:828
+msgid "Links a release to the place it was remixed at."
+msgstr ""
+
+#: DB:link_type/description:1182
+msgid ""
+"Links a release to the place it was transferred at (for example from an old "
+"tape to digital)."
+msgstr ""
+
+#: DB:link_type/description:954
+msgid ""
+"Links a release to the place where the glass master for pressing was made. "
+"Not the same as mastered!"
+msgstr ""
+
+#: DB:link_type/description:968
+msgid "Links a release to the place where the lacquer cutting took place."
+msgstr ""
+
+#: DB:link_type/description:796
+msgid "Links a release with a launch event for it."
+msgstr ""
+
+#: DB:link_type/description:795
+msgid ""
+"Links a release with an event where it was available. This is intended for "
+"event-exclusive releases and/or releases available at events before the "
+"official launch date, not for every release in the merchandise stall."
+msgstr ""
+
+#: DB:link_type/description:823
+msgid "Links a series to another series that exists within it."
+msgstr ""
+
+#: DB:link_type/description:1094
+msgid ""
+"Links an award series to the award ceremony series of events where it's "
+"announced and/or awarded."
+msgstr ""
+
+#: DB:link_type/description:798
+msgid "Links an event to (one of) its main performer(s)."
+msgstr ""
+
+#: DB:link_type/description:799
+msgid ""
+"Links an event to (one of) its support act(s) (also known as opening acts or "
+"warm-up acts)."
+msgstr ""
+
+#: DB:link_type/description:932
+msgid ""
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
+"between artists, or closing the night after a concert)."
+msgstr ""
+
+#: DB:link_type/description:800
+msgid ""
+"Links an event to a guest performer. Guest performers usually make short "
+"appearances during other artist's set."
+msgstr ""
+
+#: DB:link_type/description:1168
+msgid ""
+"Links an event to a label or other organization credited for presenting it "
+"(often as \"Label presents Event\")."
+msgstr ""
+
+#: DB:link_type/description:806
+msgid "Links an event to an artist that was a conductor in it."
+msgstr ""
+
+#: DB:link_type/description:1163
+msgid ""
+"Links an event to an artist who was a VJ during it, either as the background "
+"for someone else’s musical performance or as its own performance."
+msgstr ""
+
+#: DB:link_type/description:1084
+msgid "Links an event to an engineer or sound technician who worked on it."
+msgstr ""
+
+#: DB:link_type/description:807
+msgid "Links an event to an orchestra that performed in it."
+msgstr ""
+
+#: DB:link_type/description:801
+msgid ""
+"Links an event to its host/MC. Event hosts usually do introductions to the "
+"show or each song."
+msgstr ""
+
+#: DB:link_type/description:793
+msgid ""
+"Links an event to the area where it was held. Use only if the exact place is "
+"unknown."
+msgstr ""
+
+#: DB:link_type/description:794
+msgid "Links an event to the place where it was held."
+msgstr ""
+
+#: DB:link_attribute_type/description:830
+msgid "Local time a band's performance is scheduled to start, formatted HH:MM."
+msgstr ""
+
+#: DB:link_attribute_type/description:1060
+msgid "Meane or mean is a young male singer with a voice lower than a treble"
+msgstr ""
+
+#: DB:link_type/link_phrase:215 DB:link_type/link_phrase:462
+#: DB:link_type/link_phrase:189
+msgid "Myspace"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:215 DB:link_type/reverse_link_phrase:462
+#: DB:link_type/reverse_link_phrase:189
+msgid "Myspace page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:461
+msgid "Other vocalizations"
+msgstr ""
+
+#: DB:link_type/description:852
+msgid "Points to the BookBrainz page for this artist."
+msgstr ""
+
+#: DB:link_type/description:851
+msgid "Points to the BookBrainz page for this label."
+msgstr ""
+
+#: DB:link_type/description:853
+msgid "Points to the BookBrainz page for this release group."
+msgstr ""
+
+#: DB:link_type/description:850
+msgid "Points to the BookBrainz page for this release."
+msgstr ""
+
+#: DB:link_type/description:1167
+msgid "Points to the BookBrainz page for this series."
+msgstr ""
+
+#: DB:link_type/description:854
+msgid "Points to the BookBrainz page for this work."
+msgstr ""
+
+#: DB:link_type/description:713
+msgid "Points to the Geonames page for this area."
+msgstr ""
+
+#: DB:link_type/description:934
+msgid "Points to the Geonames page for this place."
+msgstr ""
+
+#: DB:link_type/description:706
+msgid "Points to the Internet Movie Database page for this place."
+msgstr ""
+
+#: DB:link_type/description:358
+msgid ""
+"Points to the Wikidata page for this area, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:352
+msgid ""
+"Points to the Wikidata page for this artist, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:790
+msgid ""
+"Points to the Wikidata page for this event, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:1087
+msgid ""
+"Points to the Wikidata page for this genre, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:733
+msgid ""
+"Points to the Wikidata page for this instrument, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:354
+msgid ""
+"Points to the Wikidata page for this label, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:594
+msgid ""
+"Points to the Wikidata page for this place, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:353
+msgid ""
+"Points to the Wikidata page for this release group, and will be used to "
+"fetch Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:749
+msgid ""
+"Points to the Wikidata page for this series, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:351
+msgid ""
+"Points to the Wikidata page for this work, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:89
+msgid "Points to the Wikipedia page for this album."
+msgstr ""
+
+#: DB:link_type/description:355
+msgid "Points to the Wikipedia page for this area."
+msgstr ""
+
+#: DB:link_type/description:179
+msgid "Points to the Wikipedia page for this artist."
+msgstr ""
+
+#: DB:link_type/description:789
+msgid "Points to the Wikipedia page for this event."
+msgstr ""
+
+#: DB:link_type/description:731
+msgid "Points to the Wikipedia page for this instrument."
+msgstr ""
+
+#: DB:link_type/description:595
+msgid "Points to the Wikipedia page for this place"
+msgstr ""
+
+#: DB:link_type/description:744
+msgid "Points to the Wikipedia page for this series."
+msgstr ""
+
+#: DB:link_type/description:279
+msgid "Points to the Wikipedia page for this work."
+msgstr ""
+
+#: DB:link_type/description:127
+msgid ""
+"Publishers should be added on works instead. Keep in mind this is "
+"not the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/link_phrase:174
+msgid "PureVolume"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:174
+msgid "PureVolume page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:308 DB:link_type/link_phrase:976
+#: DB:link_type/link_phrase:977 DB:link_type/link_phrase:307
+#: DB:link_type/reverse_link_phrase:280
+msgid "SecondHandSongs"
+msgstr ""
+
+#: DB:link_type/link_phrase:280 DB:link_type/reverse_link_phrase:308
+#: DB:link_type/reverse_link_phrase:976 DB:link_type/reverse_link_phrase:977
+#: DB:link_type/reverse_link_phrase:307
+msgid "SecondHandSongs page for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:289
+msgid "Songfacts"
+msgstr ""
+
+#: DB:link_type/link_phrase:289
+msgid "Songfacts page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:786 DB:link_type/link_phrase:785
+#: DB:link_type/link_phrase:787
+msgid "Songkick"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:786 DB:link_type/reverse_link_phrase:785
+#: DB:link_type/reverse_link_phrase:787
+msgid "Songkick page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:870 DB:link_type/link_phrase:291
+#: DB:link_type/link_phrase:290 DB:link_type/link_phrase:940
+msgid "SoundCloud"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:870 DB:link_type/reverse_link_phrase:291
+#: DB:link_type/reverse_link_phrase:290 DB:link_type/reverse_link_phrase:940
+msgid "SoundCloud page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:1135
+msgid ""
+"Specifies the level of studies that a student studied towards in an "
+"educational institution."
+msgstr ""
+
+#: DB:link_attribute_type/description:1125
+msgid ""
+"Specifies the subject that was taught by a teacher in an institution and/or "
+"to a student."
+msgstr ""
+
+#: DB:link_attribute_type/description:561
+msgid "Spoken vocals (speech)"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:880
+msgid ""
+"The libretto for {entity1} was {additional:additionally} written at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:879
+msgid ""
+"The libretto for {entity1} was {additional:additionally} written in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:878
+msgid ""
+"The lyrics for {entity1} were {additional:additionally} written at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:877
+msgid ""
+"The lyrics for {entity1} were {additional:additionally} written in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:274
+msgid "The score for {entity1} can be downloaded for free at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:912
+msgid "The score for {entity1} can be purchased for download at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:913
+msgid "The score for {entity1} can be purchased for mail-order at {entity0}"
+msgstr ""
+
+#: DB:link_type/description:933
+msgid "This allows linking a series to the label who publishes it."
+msgstr ""
+
+#: DB:link_attribute_type/description:3
+msgid "This attribute describes a type of vocal performance."
+msgstr ""
+
+#: DB:link_attribute_type/description:2
+msgid ""
+"This attribute describes if a particular collaboration was considered equal "
+"or minor."
+msgstr ""
+
+#: DB:link_attribute_type/description:1
+msgid ""
+"This attribute describes if a particular role was considered normal or "
+"additional."
+msgstr ""
+
+#: DB:link_attribute_type/description:14
+msgid ""
+"This attribute describes the possible instruments that can be captured as "
+"part of a performance.\n"
+"
\n"
+"Can't find an instrument? Request it!"
+msgstr ""
+
+#: DB:link_attribute_type/description:194
+msgid ""
+"This attribute indicates a 'guest' performance where the performer is not "
+"usually part of the band."
+msgstr ""
+
+#: DB:link_attribute_type/description:1094
+msgid ""
+"This attribute indicates a member the band is named after and without which "
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
+msgstr ""
+
+#: DB:link_attribute_type/description:511
+msgid ""
+"This attribute indicates a version with satirical, ironic, or otherwise "
+"humorous intent. Parodies in most cases have altered lyrics."
+msgstr ""
+
+#: DB:link_attribute_type/description:517
+msgid ""
+"This attribute indicates a version with the lyrics in a different language "
+"than the original."
+msgstr ""
+
+#: DB:link_attribute_type/description:525
+msgid ""
+"This attribute indicates that an artist was an original member of a group "
+"artist."
+msgstr ""
+
+#: DB:link_attribute_type/description:582
+msgid ""
+"This attribute indicates that the content is not audio (or text) but video."
+msgstr ""
+
+#: DB:link_attribute_type/description:788
+msgid "This attribute indicates the number of an entity in a series."
+msgstr ""
+
+#: DB:link_attribute_type/description:425
+msgid ""
+"This attribute is to be used if the role was fulfilled in an executive "
+"capacity."
+msgstr ""
+
+#: DB:link_type/description:146
+msgid ""
+"This credits a person or agency who provided some kind of general creative "
+"inspiration during the recording of this recording, without actually "
+"contributing to the writing or performance."
+msgstr ""
+
+#: DB:link_type/description:63
+msgid ""
+"This credits a person or agency who provided some kind of general creative "
+"inspiration during the recording of this release group, without actually "
+"contributing to the writing or performance."
+msgstr ""
+
+#: DB:link_type/description:123
+msgid ""
+"This credits a person or agency whose photographs are included as part of a "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:134
+msgid ""
+"This credits a person who was responsible for booking the studio or "
+"performance venue where the recording was recorded."
+msgstr ""
+
+#: DB:link_type/description:23
+msgid ""
+"This credits a person who was responsible for booking the studio or "
+"performance venue where the release was recorded."
+msgstr ""
+
+#: DB:link_type/description:1175
+msgid ""
+"This credits an agency whose photographs are included as part of a release."
+msgstr ""
+
+#: DB:link_type/description:20
+msgid ""
+"This credits an artist whose photographs are included as part of a release."
+msgstr ""
+
+#: DB:link_type/description:24
+msgid ""
+"This credits the author of liner notes provided with the release (usually on "
+"the sleeve). While most time liner notes are just personnel information and "
+"production data, in some cases they consist of a blurb of text (article). "
+"This relationship type should be used in this last case."
+msgstr ""
+
+#: DB:link_type/description:125
+msgid ""
+"This credits the people or agency who did the graphic design, arranging "
+"pieces of content into a coherent and aesthetically-pleasing sleeve design."
+msgstr ""
+
+#: DB:link_type/description:202
+msgid ""
+"This describes a situation where a label has changed its name, either for "
+"purely aesthetic reasons or following a buyout/sellout/spin-off. Extra care "
+"should be taken with cases where complicated merge/split/restructure "
+"financial operations are done. For example, it's not a good idea to rename "
+"the label Verve "
+"into The Verve Music "
+"Group, as Verve continued its existence thereafter as an imprint."
+msgstr ""
+
+#: DB:link_type/description:1079
+msgid ""
+"This describes a situation where an artist (generally a group) changed its "
+"name, leading to the start of a new project."
+msgstr ""
+
+#: DB:link_type/description:200
+msgid ""
+"This describes a situation where one label is (or was) a subsidiary of "
+"another label, during a given period of time. This should be used either to "
+"describe the fact a label is a subdivision of another one, or, through "
+"corporate acquisition of the former label, has become a subdivision of "
+"another one."
+msgstr ""
+
+#: DB:link_type/description:203
+msgid ""
+"This describes a situation where one label is distributing (part of) another "
+"label's catalog, in a country/region of the world, during a period of time."
+msgstr ""
+
+#: DB:link_type/description:201
+msgid ""
+"This describes a situation where one label is reissuing, under its own name, "
+"(part of) another label's catalog. This can happen in at least three cases:\n"
+"\n"
+"- A label acquires a lease on another label's catalog, for a period of "
+"time, in a specific region of the world.
\n"
+"- A label buys the rights to a defunct label's catalog, or buys a label "
+"(with its catalog) and dismantles it.
\n"
+"- A bootleg label reissues another label's catalog.
\n"
+"
"
+msgstr ""
+
+#: DB:link_type/description:140 DB:link_type/description:31
+msgid ""
+"This describes an engineer involved with the machines used to generate "
+"sound, such as effects processors and digital audio equipment used to modify "
+"or manipulate sound in either an analogue or digital form."
+msgstr ""
+
+#: DB:link_type/description:36 DB:link_type/description:128
+msgid ""
+"This describes an engineer responsible for committing the performance to "
+"tape or another recording medium. This can be as complex as setting up the "
+"microphones, amplifiers, and recording devices, or as simple as pressing the "
+"'record' button on a 4-track or a digital audio workstation."
+msgstr ""
+
+#: DB:link_type/description:144 DB:link_type/description:38
+msgid ""
+"This describes an engineer responsible for either connecting disparate "
+"elements of the audio recording, or otherwise redistributing material "
+"recorded in the sessions. This is usually secondary, or additional to the "
+"work done by the mix engineer. It can also involve streamlining a longer "
+"track to around the 3 minute mark in order to make it suitable for radio "
+"play (a \"radio edit\")."
+msgstr ""
+
+#: DB:link_type/description:133 DB:link_type/description:29
+msgid ""
+"This describes an engineer responsible for ensuring that the sounds that the "
+"artists make reach the microphones sounding pleasant, without unwanted "
+"resonance or noise. Sometimes known as acoustical engineering."
+msgstr ""
+
+#: DB:link_type/description:1179
+msgid ""
+"This describes an engineer responsible for transferring a release, for "
+"example from an old tape to digital."
+msgstr ""
+
+#: DB:link_type/description:143
+msgid ""
+"This describes an engineer responsible for using a mixing console to mix a "
+"recorded track into a single piece of music suitable for release. For "
+"remixing, see remixer."
+msgstr ""
+
+#: DB:link_type/description:26
+msgid ""
+"This describes an engineer responsible for using a mixing console to mix a "
+"recorded track into a single piece of music suitable for release. For "
+"remixing, see remixer."
+msgstr ""
+
+#: DB:link_type/description:28 DB:link_type/description:138
+msgid "This describes an engineer who performed a general engineering role."
+msgstr ""
+
+#: DB:link_type/description:103
+msgid "This indicates a person is a member of a group."
+msgstr ""
+
+#: DB:link_type/description:135 DB:link_type/description:62
+msgid ""
+"This indicates a person or agency which is responsible for talent scouting, "
+"overseeing the artistic development of an artist, and acting as liaison "
+"between artists and the labels."
+msgstr ""
+
+#: DB:link_type/description:19
+msgid ""
+"This indicates a person or agency who did design or illustration for the "
+"release. This relationship is deprecated, please use either \"design\" or "
+"\"illustration\" (or both!)"
+msgstr ""
+
+#: DB:link_type/description:130
+msgid ""
+"This indicates a person or agency who did design or illustration for the "
+"track."
+msgstr ""
+
+#: DB:link_type/description:723
+msgid ""
+"This indicates a personal production label for an artist. A personal label "
+"is a small label (usually a subdivision of a larger one) that exclusively "
+"handles releases by that artist."
+msgstr ""
+
+#: DB:link_type/description:724
+msgid ""
+"This indicates a personal publishing label for an artist. A personal "
+"publishing label is a small label (usually a subdivision of a larger one) "
+"that exclusively handles the rights to works by that artist."
+msgstr ""
+
+#: DB:link_type/description:1011
+msgid ""
+"This indicates a recording engineer that recorded field recordings for the "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:1012
+msgid ""
+"This indicates a recording engineer that recorded field recordings for the "
+"release."
+msgstr ""
+
+#: DB:link_type/description:1174
+msgid "This indicates an agency that did the art direction for the release."
+msgstr ""
+
+#: DB:link_type/description:1171
+msgid "This indicates an agency who did design for the release."
+msgstr ""
+
+#: DB:link_type/description:1173
+msgid "This indicates an agency who did illustration for the release."
+msgstr ""
+
+#: DB:link_type/description:1172
+msgid ""
+"This indicates an agency who did the graphic design for the release, "
+"arranging pieces of content into a coherent and aesthetically-pleasing "
+"sleeve design."
+msgstr ""
+
+#: DB:link_type/description:1170
+msgid ""
+"This indicates an agency who provided artwork for the release when no more "
+"specific information is available."
+msgstr ""
+
+#: DB:link_type/description:895
+msgid ""
+"This indicates an artist (generally a person) was the founder of a group."
+msgstr ""
+
+#: DB:link_type/description:1004
+msgid ""
+"This indicates an artist (generally a person) was the founder of a series "
+"(mostly, but not always, an event series such as a festival)."
+msgstr ""
+
+#: DB:link_attribute_type/description:921
+msgid "This indicates an artist cancelled their appearance at an event."
+msgstr ""
+
+#: DB:link_type/description:917
+msgid ""
+"This indicates an artist reconstructed a work (usually one where the score "
+"was lost) to make it ready for performance."
+msgstr ""
+
+#: DB:link_type/description:18
+msgid "This indicates an artist that did the art direction for the release."
+msgstr ""
+
+#: DB:link_type/description:151
+msgid ""
+"This indicates an artist who conducted an orchestra, band or choir on this "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:46
+msgid ""
+"This indicates an artist who conducted an orchestra, band or choir on this "
+"release."
+msgstr ""
+
+#: DB:link_type/description:928
+msgid "This indicates an artist who did design for the release."
+msgstr ""
+
+#: DB:link_type/description:927
+msgid "This indicates an artist who did illustration for the release."
+msgstr ""
+
+#: DB:link_type/description:27
+msgid ""
+"This indicates an artist who did the graphic design for the release, "
+"arranging pieces of content into a coherent and aesthetically-pleasing "
+"sleeve design."
+msgstr ""
+
+#: DB:link_type/description:141 DB:link_type/description:30
+msgid ""
+"This indicates an artist who is responsible for the creative and practical "
+"day-to-day aspects involved with making a musical recording."
+msgstr ""
+
+#: DB:link_type/description:993
+msgid ""
+"This indicates an artist who provided artwork for the release when no more "
+"specific information is available."
+msgstr ""
+
+#: DB:link_type/description:760
+msgid ""
+"This indicates an artist who was the concertmaster/leader for an orchestra "
+"or band on this recording."
+msgstr ""
+
+#: DB:link_type/description:759
+msgid ""
+"This indicates an artist who was the concertmaster/leader for an orchestra "
+"or band on this release."
+msgstr ""
+
+#: DB:link_type/description:891
+msgid ""
+"This indicates that (most commonly) a festival commissioned the work. This "
+"is most common for classical works, but also exists in other genres to a "
+"degree."
+msgstr ""
+
+#: DB:link_type/description:1097
+msgid ""
+"This indicates that a genre has influences of another, but is not connected "
+"to it enough to be a subgenre of it."
+msgstr ""
+
+#: DB:link_type/description:1096
+msgid ""
+"This indicates that a genre originated as a hybrid of two or more other "
+"genres."
+msgstr ""
+
+#: DB:link_type/description:305
+msgid "This indicates that a person is, or was, a conductor for a group."
+msgstr ""
+
+#: DB:link_type/description:965
+msgid ""
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
+msgstr ""
+
+#: DB:link_type/description:137
+msgid ""
+"This indicates that a person or agency did the art direction for the "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:142
+msgid ""
+"This indicates that a person or firm provided legal representation for the "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:22
+msgid ""
+"This indicates that a person or firm provided legal representation for the "
+"release."
+msgstr ""
+
+#: DB:link_type/description:717
+msgid "This indicates that a place is part of another place."
+msgstr ""
+
+#: DB:link_type/description:725
+msgid ""
+"This indicates that a record label (company) owns or has the right to use an "
+"imprint."
+msgstr ""
+
+#: DB:link_type/description:228
+msgid ""
+"This indicates that a recording is a compilation of several other "
+"recordings. This applies to one long recording that contains multiple songs, "
+"one after the other, in which the audio material of the original recordings "
+"has not been altered. If the tracks are pitched or blended into each other, "
+"the DJ-mix "
+"relationship type may be more appropriate."
+msgstr ""
+
+#: DB:link_type/description:894
+msgid ""
+"This indicates that a release group was included in another. This allows "
+"linking release groups (often albums) to box sets and other compilations "
+"that contain them."
+msgstr ""
+
+#: DB:link_type/description:3
+msgid ""
+"This indicates that a release was released in support of another release. "
+"This allows a release to be linked to its supporting singles, EPs, and remix "
+"releases. A 'supporting release' is one which is released to increase sales "
+"of an album or to create publicity for an album."
+msgstr ""
+
+#: DB:link_type/description:11
+msgid ""
+"This indicates that a single or EP release group includes at least one track "
+"taken from an album release group. This allows a release group to be linked "
+"to its associated singles and EPs."
+msgstr ""
+
+#: DB:link_type/description:281
+msgid ""
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
+msgstr ""
+
+#: DB:link_type/description:858
+msgid ""
+"This indicates that an artist appears on a music video, but doesn't actually "
+"perform on the audio track."
+msgstr ""
+
+#: DB:link_type/description:121
+msgid "This indicates that an artist had a recording contract with a label."
+msgstr ""
+
+#: DB:link_type/description:117
+msgid ""
+"This indicates that an artist was officially employed by a label as a "
+"producer."
+msgstr ""
+
+#: DB:link_type/description:120
+msgid ""
+"This indicates that an artist was officially employed by a label as an "
+"engineer."
+msgstr ""
+
+#: DB:link_type/description:115
+msgid ""
+"This indicates that an artist was officially employed by a label in a "
+"creative position, such as photographer or graphic designer."
+msgstr ""
+
+#: DB:link_type/description:1081
+msgid ""
+"This indicates that an artist was officially employed by a label in an "
+"artists and repertoire (A&R) position."
+msgstr ""
+
+#: DB:link_type/description:818
+msgid ""
+"This indicates that an event is made up of multiple parts (e.g. a festival "
+"happening on multiple venues over the course of a few days)."
+msgstr ""
+
+#: DB:link_type/description:739
+msgid ""
+"This indicates that an instrument (often an ensemble or family) consists of "
+"two or more other instruments."
+msgstr ""
+
+#: DB:link_type/description:916
+msgid ""
+"This indicates that an instrument is a hybrid of two or more other "
+"instruments."
+msgstr ""
+
+#: DB:link_type/description:2
+msgid ""
+"This indicates that one release is identical to another release, but that "
+"the release title and track titles have been either translated (into another "
+"language) or transliterated (into another script)."
+msgstr ""
+
+#: DB:link_type/description:889
+msgid ""
+"This indicates that the artist commissioned the work. This is most common "
+"for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:129 DB:link_type/description:25
+msgid ""
+"This indicates that the artist performed a role not covered by other "
+"relationship types."
+msgstr ""
+
+#: DB:link_attribute_type/description:618
+msgid ""
+"This indicates that the group had multiple conductors or multiple players of "
+"the selected instrument who were led by this artist. This is often indicated "
+"by the title of \"principal conductor\" or \"first conductor\" for "
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
+msgstr ""
+
+#: DB:link_type/description:998 DB:link_type/description:999
+msgid ""
+"This indicates that the label performed a role not covered by other "
+"relationship types."
+msgstr ""
+
+#: DB:link_type/description:890
+msgid ""
+"This indicates that the organisation commissioned the work. This is most "
+"common for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:892
+msgid ""
+"This indicates that the place commissioned the work. This is most common for "
+"classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_attribute_type/description:579
+msgid ""
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
+msgstr ""
+
+#: DB:link_attribute_type/description:578
+msgid "This indicates that the recording is of a live performance."
+msgstr ""
+
+#: DB:link_attribute_type/description:750
+msgid ""
+"This indicates that the recording is of a medley, of which the work is one "
+"part."
+msgstr ""
+
+#: DB:link_attribute_type/description:1261
+msgid ""
+"This indicates that this is a karaoke recording of the work. This is "
+"different from an instrumental recording in that it is actively meant to "
+"sing on top of, and as such the lyrics info is still relevant. It might "
+"still contain backing vocals and other sections that would not be present in "
+"a true instrumental recording."
+msgstr ""
+
+#: DB:link_type/description:738
+msgid ""
+"This indicates that two instruments are related in a way not covered by "
+"other, more specific relationships."
+msgstr ""
+
+#: DB:link_type/description:1185
+msgid "This indicates the artist directed video on this release."
+msgstr ""
+
+#: DB:link_type/description:973
+msgid "This indicates the artist that inspired this artist’s name."
+msgstr ""
+
+#: DB:link_type/description:975
+msgid "This indicates the artist that inspired this place’s name."
+msgstr ""
+
+#: DB:link_type/description:1000
+msgid ""
+"This indicates the artist that inspired this series' name, for example for "
+"an award named after a musician."
+msgstr ""
+
+#: DB:link_type/description:1186
+msgid ""
+"This indicates the artist was an audio director for this recording.\n"
+"\n"
+"This is the artist responsible for the creative realization of an audio "
+"project (such as an audio drama or audiobook), which is usually based on a "
+"written template and involves the performance of voice actors."
+msgstr ""
+
+#: DB:link_type/description:1187
+msgid ""
+"This indicates the artist was an audio director for this release.\n"
+"\n"
+"This is the artist responsible for the creative realization of an audio "
+"project (such as an audio drama or audiobook), which is usually based on a "
+"written template and involves the performance of voice actors."
+msgstr ""
+
+#: DB:link_type/description:962
+msgid "This indicates the artist was the director of this video recording."
+msgstr ""
+
+#: DB:link_type/description:991
+msgid "This indicates the artist was the owner of this label."
+msgstr ""
+
+#: DB:link_type/description:988
+msgid ""
+"This indicates the artist was the owner of this place (often a studio, but "
+"sometimes also a venue)."
+msgstr ""
+
+#: DB:link_type/description:295 DB:link_type/description:41
+#: DB:link_type/description:296 DB:link_type/description:297
+#: DB:link_type/description:298 DB:link_type/description:158
+#: DB:link_type/description:294 DB:link_type/description:282
+#: DB:link_type/description:293
+msgid ""
+"This indicates the artist who arranged a tune into a form suitable for "
+"performance. 'Arrangement' is used as a catch-all term for all processes "
+"that turn a composition into a form that can be played by a specific type of "
+"ensemble."
+msgstr ""
+
+#: DB:link_type/description:152
+msgid ""
+"This indicates the chorus master of a choir which performed on this "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:53
+msgid ""
+"This indicates the chorus master of a choir which performed on this release."
+msgstr ""
+
+#: DB:link_type/description:955
+msgid ""
+"This indicates the company that made the glass master for a release. This is "
+"not the same concept as the record "
+"label, nor as mastering engineering."
+msgstr ""
+
+#: DB:link_type/description:989
+msgid ""
+"This indicates the label / organization was the owner of this place (often a "
+"studio, but sometimes also a venue)."
+msgstr ""
+
+#: DB:link_attribute_type/description:1018
+msgid ""
+"This indicates the linked entity translated something, rather than being the "
+"original writer."
+msgstr ""
+
+#: DB:link_type/description:361
+msgid ""
+"This indicates the organization that distributes (or contracts out "
+"distribution). \n"
+"\n"
+"This is not the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:360
+msgid ""
+"This indicates the organization that manufactures (or contracts out "
+"manufacturing). \n"
+"This is not the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:848
+msgid ""
+"This indicates the organization that markets a release. This is not"
+"strong> the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:985
+msgid ""
+"This indicates the organization that printed a release. This is not"
+"strong> the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:359
+msgid ""
+"This indicates the organization that promotes (or contracts out promotion) "
+"for a release. This is not the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:362
+msgid ""
+"This indicates the organization which releases a release. This is "
+"not the same concept as the record "
+"label."
+msgstr ""
+
+#: DB:link_type/description:300
+msgid ""
+"This indicates the person who orchestrated the recording. Orchestration is a "
+"special type of arrangement. It means the adaptation of a composition for an "
+"orchestra, done in a way that the musical substance remains essentially "
+"unchanged. The orchestrator is also responsible for writing scores for an "
+"orchestra, band, choral group, individual instrumentalist(s) or vocalist(s). "
+"In practical terms it consists of deciding which instruments should play "
+"which notes in a piece of music."
+msgstr ""
+
+#: DB:link_type/description:40
+msgid ""
+"This indicates the person who orchestrated the release. Orchestration is a "
+"special type of arrangement. It means the adaptation of a composition for an "
+"orchestra, done in a way that the musical substance remains essentially "
+"unchanged. The orchestrator is also responsible for writing scores for an "
+"orchestra, band, choral group, individual instrumentalist(s) or vocalist(s). "
+"In practical terms it consists of deciding which instruments should play "
+"which notes in a piece of music."
+msgstr ""
+
+#: DB:link_type/description:164
+msgid ""
+"This indicates the person who orchestrated the work. Orchestration is a "
+"special type of arrangement. It means the adaptation of a composition for an "
+"orchestra, done in a way that the musical substance remains essentially "
+"unchanged. The orchestrator is also responsible for writing scores for an "
+"orchestra, band, choral group, individual instrumentalist(s) or vocalist(s). "
+"In practical terms it consists of deciding which instruments should play "
+"which notes in a piece of music."
+msgstr ""
+
+#: DB:link_type/description:48
+msgid ""
+"This indicates the person who selected the tracks and the sequence for a "
+"compilation. If the tracks are pitched or blended into each other, it is "
+"more appropriate to credit this person as a DJ-"
+"mixer."
+msgstr ""
+
+#: DB:link_type/description:147
+msgid ""
+"This indicates the person who selected the tracks and the sequence for a "
+"compilation. This applies to one long recording which contains multiple "
+"songs, one after the other. If the tracks are pitched or blended into each "
+"other, it is more appropriate to credit this person as a DJ-"
+"mixer."
+msgstr ""
+
+#: DB:link_type/description:942
+msgid ""
+"This indicates the pressing company that presses a release. This is "
+"not the same concept as the record "
+"label."
+msgstr ""
+
+#: DB:link_attribute_type/description:1310
+msgid ""
+"This indicates the publisher subcontracted to publish a release or work in a "
+"specific territory. Use this only when you have a specific sub-publisher "
+"credit, do not guess."
+msgstr ""
+
+#: DB:link_type/description:974
+msgid "This indicates the release group that inspired this artist’s name."
+msgstr ""
+
+#: DB:link_type/description:349
+msgid ""
+"This indicates the rights society associated with a release. The rights "
+"society is an organization which collects royalties on behalf of the artists."
+msgstr ""
+
+#: DB:link_type/description:963
+msgid "This indicates the video was shot at this place."
+msgstr ""
+
+#: DB:link_type/description:966
+msgid "This indicates the video was shot at/during this event."
+msgstr ""
+
+#: DB:link_type/description:964
+msgid "This indicates the video was shot in this area."
+msgstr ""
+
+#: DB:link_type/description:914
+msgid ""
+"This indicates the work is dedicated to a specific area. This is most common "
+"for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:922
+msgid ""
+"This indicates the work is dedicated to a specific organization. This is "
+"most common for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:846
+msgid ""
+"This indicates the work is dedicated to a specific person. This is most "
+"common for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:983
+msgid ""
+"This indicates the work is dedicated to a specific place (such an "
+"educational institution). This is most common for classical works, but also "
+"exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:972
+msgid "This indicates the work that inspired this artist’s name."
+msgstr ""
+
+#: DB:link_type/description:915
+msgid "This indicates where a feed for this podcast can be found."
+msgstr ""
+
+#: DB:link_type/description:17
+msgid ""
+"This is used to indicate that a release group is a live performance of a "
+"studio release group."
+msgstr ""
+
+#: DB:link_type/description:1082
+msgid ""
+"This is used to indicate that a release group is a translated version of "
+"another."
+msgstr ""
+
+#: DB:link_type/description:239
+msgid ""
+"This is used to indicate that a work is a medley of several other songs. "
+"This means that the original songs were rearranged to create a new work in "
+"the form of a medley. See arranger for crediting the person "
+"who arranges songs into a medley."
+msgstr ""
+
+#: DB:link_type/description:232
+msgid ""
+"This is used to indicate that the recording is a mash-up of two (or more) other recordings."
+msgstr ""
+
+#: DB:link_type/description:10
+msgid ""
+"This is used to indicate that the release group is a mash-up mash-up of two (or more) other release groups."
+msgstr ""
+
+#: DB:link_type/description:227
+msgid ""
+"This is used to link a DJ-mixed "
+"recording to each of the source recordings. See DJ-mixer for "
+"crediting the person who created the DJ-mix."
+msgstr ""
+
+#: DB:link_type/description:1093
+msgid "This is used to link a genre to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:226
+msgid ""
+"This is used to link a karaoke version of a song to the original song.
\n"
+"A karaoke version is a version of the song with the main vocals removed, "
+"designed to be used for karaoke. These are generally produced from the "
+"original masters by muting the main vocal track or by using post-processing "
+"filters to remove the vocals. Karaoke versions can be found labelled in "
+"numerous different ways other than \"karaoke\": instrumental (even if "
+"backing vocals are still present), off vocal, backing track, etc."
+msgstr ""
+
+#: DB:link_type/description:213
+msgid "This is used to link a label to an image of its logo."
+msgstr ""
+
+#: DB:link_type/description:216
+msgid "This is used to link a label to its corresponding Wikipedia page."
+msgstr ""
+
+#: DB:link_type/description:977
+msgid ""
+"This is used to link a label to its corresponding page in the "
+"SecondHandSongs database."
+msgstr ""
+
+#: DB:link_type/description:857
+msgid ""
+"This is used to link a music video to the corresponding audio recording."
+msgstr ""
+
+#: DB:link_type/description:705
+msgid "This is used to link a place to the equivalent entry in Discogs."
+msgstr ""
+
+#: DB:link_type/description:976
+msgid ""
+"This is used to link a recording to its corresponding page in the "
+"SecondHandSongs database."
+msgstr ""
+
+#: DB:link_type/description:285
+msgid "This is used to link a recording to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:8
+msgid ""
+"This is used to link a release group containing a DJ-mixed version of a release to the release "
+"group containing the source release. See DJ-mixer for "
+"crediting the person who created the DJ-mix."
+msgstr ""
+
+#: DB:link_type/description:284
+msgid ""
+"This is used to link a release group to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:308
+msgid ""
+"This is used to link a release to its corresponding page in the "
+"SecondHandSongs database."
+msgstr ""
+
+#: DB:link_type/description:755
+msgid "This is used to link a release to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:747
+msgid "This is used to link a series to the equivalent entry in Discogs."
+msgstr ""
+
+#: DB:link_type/description:280
+msgid ""
+"This is used to link a work to its corresponding page in the SecondHandSongs "
+"database."
+msgstr ""
+
+#: DB:link_type/description:286
+msgid "This is used to link a work to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:307
+msgid ""
+"This is used to link an artist to its corresponding page in the "
+"SecondHandSongs database."
+msgstr ""
+
+#: DB:link_type/description:283
+msgid "This is used to link an artist to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:714
+msgid "This is used to link an artist to its primary concert venue."
+msgstr ""
+
+#: DB:link_type/description:180
+msgid "This is used to link the Discogs page for this artist."
+msgstr ""
+
+#: DB:link_type/description:1089
+msgid "This is used to link the Discogs page for this genre/style."
+msgstr ""
+
+#: DB:link_type/description:217
+msgid "This is used to link the Discogs page for this label."
+msgstr ""
+
+#: DB:link_type/description:90
+msgid "This is used to link the Discogs page for this release group."
+msgstr ""
+
+#: DB:link_type/description:76
+msgid "This is used to link the Discogs page for this release."
+msgstr ""
+
+#: DB:link_type/description:971
+msgid "This is used to link the Discogs page for this work."
+msgstr ""
+
+#: DB:link_type/description:176
+msgid ""
+"This is used to link to a page where the artist's releases can be purchased "
+"for download."
+msgstr ""
+
+#: DB:link_type/description:959
+msgid ""
+"This is used to link to a page where the label's releases can be purchased "
+"for download."
+msgstr ""
+
+#: DB:link_type/description:254
+msgid ""
+"This is used to link to a page where the recording can be purchased for "
+"download."
+msgstr ""
+
+#: DB:link_type/description:74
+msgid ""
+"This is used to link to a page where the release can be purchased for "
+"download."
+msgstr ""
+
+#: DB:link_type/description:278
+msgid "This is used to link works to their recordings."
+msgstr ""
+
+#: DB:link_type/description:102
+msgid ""
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
+msgstr ""
+
+#: DB:link_type/description:1047
+msgid ""
+"This is used when a work includes a brief quotation of the lyrics of another "
+"work. In most cases the quotation is uncredited, although this is not a "
+"requirement. For a work that includes significantly more of another than "
+"just a brief quotation, consider using “based on” instead."
+msgstr ""
+
+#: DB:link_type/description:1046
+msgid ""
+"This is used when a work includes a brief quotation of the music of another "
+"work. In most cases the quotation is uncredited, although this is not a "
+"requirement. For a work that includes significantly more of another than "
+"just a brief quotation, consider using “based on” instead."
+msgstr ""
+
+#: DB:link_type/description:1169
+msgid ""
+"This link points to a page for a particular release group within a "
+"discography for an artist or label. If the page is for a particular release, "
+"prefer the release level relationship."
+msgstr ""
+
+#: DB:link_type/description:288
+msgid ""
+"This link points to a page for a particular release within a discography for "
+"an artist or label."
+msgstr ""
+
+#: DB:link_type/description:921
+msgid ""
+"This link points to a page for a particular work within a work list for an "
+"artist."
+msgstr ""
+
+#: DB:link_type/description:43 DB:link_type/description:155
+msgid ""
+"This links a DJ-"
+"mix to the artist who mixed it."
+msgstr ""
+
+#: DB:link_type/description:9
+msgid ""
+"This links a remix release group "
+"to the source release group and is used to indicate that the release group "
+"includes remixed versions of all (or most of) the tracks in the other "
+"release group."
+msgstr ""
+
+#: DB:link_type/description:230
+msgid ""
+"This links a remixed recording to "
+"the source recording."
+msgstr ""
+
+#: DB:link_type/description:77
+msgid ""
+"This links a MusicBrainz release to the equivalent entry at Amazon and will "
+"often provide cover art if there is no cover art in the Cover Art Archive."
+msgstr ""
+
+#: DB:link_type/description:888
+msgid ""
+"This links a concert tour with a release group (generally an album) the tour "
+"is connected with."
+msgstr ""
+
+#: DB:link_type/description:1092
+msgid "This links a genre to its page at Bandcamp."
+msgstr ""
+
+#: DB:link_type/description:1095
+msgid "This links a genre to its subgenres."
+msgstr ""
+
+#: DB:link_type/description:855
+msgid ""
+"This links a group (often an orchestra) to a composer who has a composer-in-"
+"residence position with the group."
+msgstr ""
+
+#: DB:link_type/description:304
+msgid ""
+"This links a label to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:214
+msgid "This links a label to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:899
+msgid ""
+"This links a label to a site where the label can receive donations/"
+"patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:1194
+msgid ""
+"This links a label to a site where tickets can be purchased for their events."
+msgstr ""
+
+#: DB:link_type/description:1130
+msgid "This links a label to its page at Apple Music."
+msgstr ""
+
+#: DB:link_type/description:719
+msgid "This links a label to its page at Bandcamp."
+msgstr ""
+
+#: DB:link_type/description:313
+msgid ""
+"This links a label to its page in IMDb."
+msgstr ""
+
+#: DB:link_type/description:290
+msgid "This links a label to its profile at SoundCloud."
+msgstr ""
+
+#: DB:link_type/description:225
+msgid "This links a label to the equivalent entry at YouTube."
+msgstr ""
+
+#: DB:link_type/description:903
+msgid ""
+"This links a label to their profile at a crowdfunding site like Kickstarter "
+"or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:937
+msgid ""
+"This links a place (often a concert hall or educational institution) to a "
+"composer who has a composer-in-residence position with it."
+msgstr ""
+
+#: DB:link_type/description:495
+msgid ""
+"This links a place to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:1191
+msgid "This links a place to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:900
+msgid ""
+"This links a place to a site where the place or the organisation behind it "
+"can receive donations/patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:1195
+msgid ""
+"This links a place to a site where tickets can be purchased for its events."
+msgstr ""
+
+#: DB:link_type/description:940
+msgid "This links a place to its profile at SoundCloud."
+msgstr ""
+
+#: DB:link_type/description:909
+msgid ""
+"This links a place to its profile at a crowdfunding site like Kickstarter or "
+"Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:836
+msgid "This links a postponed event to the later rescheduled event."
+msgstr ""
+
+#: DB:link_type/description:302
+msgid "This links a recording to a license under which it is available."
+msgstr ""
+
+#: DB:link_type/description:255
+msgid ""
+"This links a recording to a page where it can be legally downloaded for free."
+msgstr ""
+
+#: DB:link_type/description:1177
+msgid ""
+"This links a recording to another containing official commentary for it "
+"(usually the artist talking about it)."
+msgstr ""
+
+#: DB:link_type/description:132
+msgid ""
+"This links a recording to the artist who did the programming for electronic "
+"instruments used on the recording. In the most cases, the 'electronic "
+"instrument' is either a synthesizer or a drum machine."
+msgstr ""
+
+#: DB:link_type/description:726
+msgid "This links a recording to the balance engineer who engineered it."
+msgstr ""
+
+#: DB:link_type/description:153
+msgid ""
+"This links a recording to the person who remixed it by taking one or more "
+"other tracks, substantially altering them and mixing them together with "
+"other material. Note that this includes the artist who created a mash-up or "
+"used samples as well."
+msgstr ""
+
+#: DB:link_type/description:905
+msgid ""
+"This links a recording to the relevant crowdfunding project at a "
+"crowdfunding site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:1190
+msgid "This links a release group to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:970
+msgid ""
+"This links a release group to a label, to indicate that it is a tribute "
+"album. Tribute albums often have a title in the form \"A Tribute to Label\" "
+"or \"A Tribute to Artists from Label\", and they consist of covers of songs "
+"put out by the label, played by other (sometimes very unknown) artists, to "
+"honor the label. Often they are various artist compilations, but a single "
+"artist can perform the entire tribute album."
+msgstr ""
+
+#: DB:link_type/description:868
+msgid ""
+"This links a release group to an artist it is dedicated to. This is for "
+"dedications such as \"This album is dedicated to the memory of Artist\" - "
+"for tribute albums consisting of covers of the artist, use the tribute relationship."
+msgstr ""
+
+#: DB:link_type/description:65
+msgid ""
+"This links a release group to an artist, to indicate that it is a tribute "
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
+msgstr ""
+
+#: DB:link_type/description:1176
+msgid ""
+"This links a release group to another containing official commentary for it "
+"(usually the artist talking about each specific track in an album)."
+msgstr ""
+
+#: DB:link_type/description:907
+msgid ""
+"This links a release group to the relevant crowdfunding project at a "
+"crowdfunding site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:1009
+msgid ""
+"This links a release that was withdrawn (usually because of having some "
+"defect, but sometimes just to change the artist credits) to a new release "
+"put out to replaced it."
+msgstr ""
+
+#: DB:link_type/description:301
+msgid "This links a release to a license under which it is available."
+msgstr ""
+
+#: DB:link_type/description:75
+msgid ""
+"This links a release to a page where it can be legally downloaded for free."
+msgstr ""
+
+#: DB:link_type/description:37
+msgid ""
+"This links a release to the artist who did the programming for electronic "
+"instruments used on the release. In the most cases, the 'electronic "
+"instrument' is either a synthesizer or a drum machine."
+msgstr ""
+
+#: DB:link_type/description:727
+msgid "This links a release to the balance engineer who engineered it."
+msgstr ""
+
+#: DB:link_type/description:47
+msgid ""
+"This links a release to the person who remixed it by taking one or more "
+"other tracks, substantially altering them and mixing them together with "
+"other material. Note that this includes the artist who created a mash-up or "
+"used samples as well."
+msgstr ""
+
+#: DB:link_type/description:906
+msgid ""
+"This links a release to the relevant crowdfunding project at a crowdfunding "
+"site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:870
+msgid ""
+"This links a series (most commonly, but not necessarily always, a music "
+"festival) to its official page at SoundCloud."
+msgstr ""
+
+#: DB:link_type/description:901
+msgid ""
+"This links a series (usually, but not exclusively, a festival or concert "
+"series) to a site where the organisers/creators can receive donations/"
+"patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:805
+msgid ""
+"This links a series to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:1189
+msgid "This links a series to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:1196
+msgid ""
+"This links a series to a site where tickets can be purchased for events in "
+"it."
+msgstr ""
+
+#: DB:link_type/description:910
+msgid ""
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:97
+msgid ""
+"This links a soundtrack release group to the IMDb page for the movie, show or game of which it is a soundtrack."
+msgstr ""
+
+#: DB:link_type/description:992
+msgid ""
+"This links a soundtrack work to the VGMdb "
+"page for the movie, show or game of which it is a soundtrack. VGMdb is a "
+"community project dedicated to cataloguing the music of video games and "
+"anime."
+msgstr ""
+
+#: DB:link_type/description:843
+msgid ""
+"This links a soundtrack work to the IMDb"
+"a> page for the movie, show or game of which it is a soundtrack."
+msgstr ""
+
+#: DB:link_type/description:722
+msgid "This links a subgroup to the group from which it was created."
+msgstr ""
+
+#: DB:link_type/description:1188
+msgid "This links a work to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:939
+msgid "This links a work to a license under which it is available."
+msgstr ""
+
+#: DB:link_type/description:908
+msgid ""
+"This links a work to its project at a crowdfunding site like Kickstarter or "
+"Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:885
+msgid "This links a work with the area it was arranged in."
+msgstr ""
+
+#: DB:link_type/description:875
+msgid "This links a work with the area it was composed in."
+msgstr ""
+
+#: DB:link_type/description:881
+msgid "This links a work with the area it was revised in."
+msgstr ""
+
+#: DB:link_type/description:884
+msgid "This links a work with the area it was translated in."
+msgstr ""
+
+#: DB:link_type/description:873
+msgid "This links a work with the area it was written in."
+msgstr ""
+
+#: DB:link_type/description:879
+msgid "This links a work with the area its libretto was written in."
+msgstr ""
+
+#: DB:link_type/description:877
+msgid "This links a work with the area its lyrics were written in."
+msgstr ""
+
+#: DB:link_type/description:886
+msgid "This links a work with the place it was arranged at."
+msgstr ""
+
+#: DB:link_type/description:876
+msgid "This links a work with the place it was composed at."
+msgstr ""
+
+#: DB:link_type/description:882
+msgid "This links a work with the place it was revised at."
+msgstr ""
+
+#: DB:link_type/description:883
+msgid "This links a work with the place it was translated at."
+msgstr ""
+
+#: DB:link_type/description:874
+msgid "This links a work with the place it was written at."
+msgstr ""
+
+#: DB:link_type/description:880
+msgid "This links a work with the place its libretto was written at."
+msgstr ""
+
+#: DB:link_type/description:878
+msgid "This links a work with the place its lyrics were written at."
+msgstr ""
+
+#: DB:link_type/description:292
+msgid "This links an (fictional) artist to the person that voice acted it."
+msgstr ""
+
+#: DB:link_type/description:303
+msgid ""
+"This links an artist to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:172
+msgid "This links an artist to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:897
+msgid ""
+"This links an artist to a site where the artist can receive donations/"
+"patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:1193
+msgid ""
+"This links an artist to a site where tickets can be purchased for their "
+"events."
+msgstr ""
+
+#: DB:link_type/description:707
+msgid ""
+"This links an artist to an URL containing an interview with that artist."
+msgstr ""
+
+#: DB:link_type/description:182
+msgid "This links an artist to an online biography for that artist."
+msgstr ""
+
+#: DB:link_type/description:184
+msgid ""
+"This links an artist to an online discography of their works. The "
+"discography should provide a summary of most, if not all, releases by the "
+"artist, and be as comprehensive as possible."
+msgstr ""
+
+#: DB:link_type/description:1080
+msgid "This links an artist to its channel at YouTube Music."
+msgstr ""
+
+#: DB:link_type/description:1131
+msgid "This links an artist to its page at Apple Music."
+msgstr ""
+
+#: DB:link_type/description:718
+msgid "This links an artist to its page at Bandcamp."
+msgstr ""
+
+#: DB:link_type/description:919
+msgid "This links an artist to its page at CD Baby."
+msgstr ""
+
+#: DB:link_type/description:178
+msgid ""
+"This links an artist to its page in IMDb"
+"a>."
+msgstr ""
+
+#: DB:link_type/description:754
+msgid ""
+"This links an artist to its page in IMSLP"
+"a>."
+msgstr ""
+
+#: DB:link_type/description:981
+msgid ""
+"This links an artist to its page in CPDL"
+"a>."
+msgstr ""
+
+#: DB:link_type/description:291
+msgid "This links an artist to its profile at SoundCloud."
+msgstr ""
+
+#: DB:link_type/description:190
+msgid ""
+"This links an artist to that artist's page at BBC Music."
+msgstr ""
+
+#: DB:link_type/description:174
+msgid "This links an artist to the equivalent entry at PureVolume."
+msgstr ""
+
+#: DB:link_type/description:193
+msgid "This links an artist to the equivalent entry at YouTube."
+msgstr ""
+
+#: DB:link_type/description:902
+msgid ""
+"This links an artist to their profile at a crowdfunding site like "
+"Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:108
+msgid ""
+"This links an artist's performance name (a stage name or alias) with their "
+"legal name (or a more well know performance name if the legal name is "
+"unknown)."
+msgstr ""
+
+#: DB:link_type/description:309
+msgid ""
+"This links an edit to its original recording. An \"edit\", for this "
+"relationship, can be a radio edit (which involves streamlining a longer "
+"track to around the 3 minute mark in order to make it suitable for radio "
+"play), or a shortened, censored, or otherwise edited version of the same "
+"material. The person who edited the recording can be linked using the editor "
+"relationship type."
+msgstr ""
+
+#: DB:link_type/description:289
+msgid ""
+"This links an entity to the appropriate listing in the Songfacts database, a "
+"user contributed database concerned with the stories behind the songs."
+msgstr ""
+
+#: DB:link_type/description:1086 DB:link_type/description:753
+#: DB:link_type/description:730 DB:link_type/description:82
+#: DB:link_type/description:273 DB:link_type/description:222
+#: DB:link_type/description:188 DB:link_type/description:306
+#: DB:link_type/description:561 DB:link_type/description:746
+#: DB:link_type/description:96 DB:link_type/description:803
+msgid ""
+"This links an entity to the equivalent entry in another database. Please "
+"respect the whitelist."
+msgstr ""
+
+#: DB:link_type/description:804
+msgid ""
+"This links an event to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:898
+msgid ""
+"This links an event to a site where the event organisers can receive "
+"donations/patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:1197
+msgid "This links an event to a site where tickets can be purchased for it."
+msgstr ""
+
+#: DB:link_type/description:904
+msgid ""
+"This links an event to the relevant crowdfunding project at a crowdfunding "
+"site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:737
+msgid "This links an instrument to an older instrument that it was based on."
+msgstr ""
+
+#: DB:link_type/description:736
+msgid "This links an instrument to more specific subtypes of it."
+msgstr ""
+
+#: DB:link_type/description:111
+msgid "This links artists who were married."
+msgstr ""
+
+#: DB:link_type/description:315
+msgid ""
+"This links different revisions of the same work."
+msgstr ""
+
+#: DB:link_type/description:212
+msgid "This links to a catalog or list of records published by the label."
+msgstr ""
+
+#: DB:link_type/description:211
+msgid ""
+"This links to a site describing relevant details about a label's history."
+msgstr ""
+
+#: DB:link_type/description:984
+msgid ""
+"This links to a site describing relevant details about a place's history."
+msgstr ""
+
+#: DB:link_type/description:350
+msgid ""
+"This links two works where one work "
+"is an arrangement of the other."
+msgstr ""
+
+#: DB:link_type/description:316
+msgid ""
+"This links two works where one work "
+"is an orchestration of the other."
+msgstr ""
+
+#: DB:link_type/description:314
+msgid ""
+"This links two works, where the "
+"second work is based on music or text from the first, but isn't directly a "
+"revision or an arrangement of it."
+msgstr ""
+
+#: DB:link_type/description:6
+msgid ""
+"This links two releases, where one is a remaster of the other. This is usually done "
+"to improve the audio quality or to adjust for more modern playback "
+"equipment. The process generally doesn't involve changing the music in any "
+"artistically important way. It may, however, result in recordings that "
+"differ in length by a few seconds."
+msgstr ""
+
+#: DB:link_type/description:110
+msgid "This links two siblings (brothers or sisters)."
+msgstr ""
+
+#: DB:link_type/description:241
+msgid ""
+"This links two versions of a work."
+msgstr ""
+
+#: DB:link_type/description:310
+msgid ""
+"This points to the VIAF page for this artist. "
+"VIAF is an international project to make a common authority file available "
+"to libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)"
+msgstr ""
+
+#: DB:link_type/description:311
+msgid ""
+"This points to the VIAF page for this label. "
+"VIAF is an international project to make a common authority file available "
+"to libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)"
+msgstr ""
+
+#: DB:link_type/description:920
+msgid ""
+"This points to the VIAF page for this place. "
+"VIAF is an international project to make a common authority file available "
+"to libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)"
+msgstr ""
+
+#: DB:link_type/description:1001
+msgid ""
+"This points to the VIAF page for this series. "
+"VIAF is an international project to make a common authority file available "
+"to libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)"
+msgstr ""
+
+#: DB:link_type/description:312
+msgid ""
+"This points to the VIAF page for this work. VIAF "
+"is an international project to make a common authority file available to "
+"libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)\n"
+"
\n"
+"Note: Works in VIAF aren't very detailed. Only add links to "
+"MusicBrainz works if you're absolutely sure it's the same work."
+msgstr ""
+
+#: DB:link_type/description:197
+msgid ""
+"This relationship describes a URL where lyrics for the artist can be found. "
+"Only sites on the whitelist are permitted."
+msgstr ""
+
+#: DB:link_type/description:982
+msgid ""
+"This relationship describes a URL where lyrics for the label (most often as "
+"a publisher) can be found. Only sites on the whitelist are permitted."
+msgstr ""
+
+#: DB:link_type/description:93
+msgid ""
+"This relationship describes a URL where lyrics for the release group can be "
+"found. Only sites on the whitelist are permitted."
+msgstr ""
+
+#: DB:link_type/description:271
+msgid ""
+"This relationship describes a URL where lyrics for the work can be found. "
+"Only sites on the whitelist are permitted."
+msgstr ""
+
+#: DB:link_type/description:929
+msgid ""
+"This relationship indicates an artist credited as the booklet editor for a "
+"release."
+msgstr ""
+
+#: DB:link_type/description:893
+msgid ""
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
+msgstr ""
+
+#: DB:link_type/description:847
+msgid ""
+"This relationship indicates that a person was another's teacher/student."
+msgstr ""
+
+#: DB:link_type/description:869
+msgid ""
+"This relationship indicates the artist is the phonographic "
+"copyright holder for this recording, usually indicated with a ℗ symbol."
+msgstr ""
+
+#: DB:link_type/description:710
+msgid ""
+"This relationship indicates the artist is the phonographic "
+"copyright holder for this release, usually indicated with a ℗ symbol."
+msgstr ""
+
+#: DB:link_type/description:709
+msgid ""
+"This relationship indicates the artist is the copyright holder for this "
+"release, usually indicated with a © symbol."
+msgstr ""
+
+#: DB:link_type/description:1010
+msgid ""
+"This relationship indicates the artist that was the licensor of this release."
+msgstr ""
+
+#: DB:link_type/description:833
+msgid ""
+"This relationship indicates the company that was the licensee of this "
+"release (that is, received a license for it from other company)."
+msgstr ""
+
+#: DB:link_type/description:712
+msgid ""
+"This relationship indicates the company that was the licensor of this "
+"release."
+msgstr ""
+
+#: DB:link_type/description:867
+msgid ""
+"This relationship indicates the label is the phonographic copyright holder "
+"for this recording, usually indicated with a ℗ symbol."
+msgstr ""
+
+#: DB:link_type/description:711
+msgid ""
+"This relationship indicates the label is the phonographic copyright holder "
+"for this release, usually indicated with a ℗ symbol."
+msgstr ""
+
+#: DB:link_type/description:708
+msgid ""
+"This relationship indicates the label is the copyright holder for this "
+"release, usually indicated with a © symbol."
+msgstr ""
+
+#: DB:link_type/description:83
+msgid ""
+"This relationship is deprecated, since it's almost always misused. To "
+"specify that a recording on this release contains samples taken from a "
+"movie, show or game, use the recording - URL relationship. If you don't know "
+"what recording(s) use the samples, please just indicate it in the "
+"annotation.\n"
+"
\n"
+"To say that the release is a soundtrack, please use the IMDB relationship type "
+"for release groups."
+msgstr ""
+
+#: DB:link_type/description:206
+msgid ""
+"This relationship is deprecated. To indicate work publishers, add label-work "
+"relationships. To indicate (P) holders, use the phonographic copyright "
+"relationship."
+msgstr ""
+
+#: DB:link_type/description:751
+msgid ""
+"This relationship is used to link a catalogue work series to a person who "
+"was involved in compiling it."
+msgstr ""
+
+#: DB:link_type/description:750
+msgid ""
+"This relationship is used to link a catalogue work series to a person whose "
+"work it catalogues."
+msgstr ""
+
+#: DB:link_type/description:54
+msgid ""
+"This relationship is used to link a release to the artist responsible for "
+"writing the music and/or the words (lyrics, libretto, etc.), when no more "
+"specific information is available. If possible, the more specific composer, "
+"lyricist and/or librettist types should be used, rather than this "
+"relationship type."
+msgstr ""
+
+#: DB:link_type/description:167
+msgid ""
+"This relationship is used to link a work to the artist responsible for "
+"writing the music and/or the words (lyrics, libretto, etc.), when no more "
+"specific information is available. If possible, the more specific composer, "
+"lyricist and/or librettist types should be used, rather than this "
+"relationship type."
+msgstr ""
+
+#: DB:link_type/description:994
+msgid ""
+"This relationship links a concert residency to the artist(s) "
+"who held the residency."
+msgstr ""
+
+#: DB:link_type/description:1165
+msgid ""
+"This relationship links a carillonneur to the place(s) (most commonly "
+"religious buildings) at which they are the resident carillonneur."
+msgstr ""
+
+#: DB:link_type/description:859
+msgid "This relationship links a concert tour to the artist(s) the tour is by."
+msgstr ""
+
+#: DB:link_type/description:926
+msgid ""
+"This relationship links a group with the institution (esp. educational "
+"institution) they're associated with."
+msgstr ""
+
+#: DB:link_type/description:924
+msgid ""
+"This relationship links a musician to the music school(s) they taught at."
+msgstr ""
+
+#: DB:link_type/description:923
+msgid ""
+"This relationship links a musician to the music school(s) they were educated "
+"at."
+msgstr ""
+
+#: DB:link_type/description:1166
+msgid "This relationship links a person to the music school(s) they directed."
+msgstr ""
+
+#: DB:link_type/description:918
+msgid ""
+"This relationship links an instrument to the company that invented or "
+"designed it."
+msgstr ""
+
+#: DB:link_type/description:896
+msgid ""
+"This relationship links an instrument to the person(s) who invented or "
+"designed it."
+msgstr ""
+
+#: DB:link_type/description:856
+msgid ""
+"This relationship links an organist to the place(s) (most commonly religious "
+"buildings) at which they are the resident organist."
+msgstr ""
+
+#: DB:link_type/description:729
+msgid ""
+"This relationship links the release of a show's episode (for example a "
+"podcast) to the show notes for this episode."
+msgstr ""
+
+#: DB:link_type/description:728
+msgid ""
+"This relationship specifies that an artist is a tribute to another specific artist/"
+"band; that is, it primarily performs covers of that artist. They may also be "
+"referred to as cover bands. Some tribute artists may name themselves, dress, "
+"and/or act similarly to the artists they pay tribute to."
+msgstr ""
+
+#: DB:link_type/description:936
+msgid ""
+"This relationship specifies that an event was held as a tribute/homage to a "
+"specific artist."
+msgstr ""
+
+#: DB:link_type/description:462
+msgid ""
+"This relationship type can be used to link a MusicBrainz place to the "
+"equivalent entry in Myspace."
+msgstr ""
+
+#: DB:link_type/description:116
+msgid ""
+"This relationship type can be used to link a label to the person(s) who "
+"founded it."
+msgstr ""
+
+#: DB:link_type/description:832
+msgid ""
+"This relationship type can be used to link a place (generally a studio or "
+"venue) to the person(s) who founded it."
+msgstr ""
+
+#: DB:link_type/description:627
+msgid "This relationship type can be used to link a place to its blog"
+msgstr ""
+
+#: DB:link_type/description:528
+msgid ""
+"This relationship type can be used to link a place to the equivalent entry "
+"in YouTube. URLs should follow the format http://www.youtube.com/user/<"
+"username>."
+msgstr ""
+
+#: DB:link_type/description:792
+msgid ""
+"This relationship type can be used to link a series to the equivalent entry "
+"in YouTube. URLs should follow the format http://www.youtube.com/user/<"
+"username>"
+msgstr ""
+
+#: DB:link_type/description:791
+msgid ""
+"This relationship type can be used to link an event to the equivalent entry "
+"in YouTube. URLs should follow the format http://www.youtube.com/user/<"
+"username>"
+msgstr ""
+
+#: DB:link_type/description:258
+msgid ""
+"This relationship type describes that the recording contains samples taken "
+"from a movie, show or game, which has an IMDB page at the given URL.\n"
+"
\n"
+"To say that the recording is part of a soundtrack, please use the IMDB relationship type "
+"for release groups."
+msgstr ""
+
+#: DB:link_type/description:236
+msgid ""
+"This relationship type is deprecated! Different remasters should "
+"be merged."
+msgstr ""
+
+#: DB:link_type/description:238
+msgid ""
+"This relationship type is deprecated! If two recordings are "
+"identical, please merge them."
+msgstr ""
+
+#: DB:link_type/description:136
+msgid ""
+"This relationship type is deprecated! Please add mastering "
+"engineers at the release level."
+msgstr ""
+
+#: DB:link_type/description:1
+msgid ""
+"This relationship type is deprecated! Please enter a "
+"release with multiple discs as a single release containing multiple discs."
+msgstr ""
+
+#: DB:link_type/description:78
+msgid ""
+"This relationship type is deprecated! Please upload covers "
+"on the cover art tab for the release and/or add an ASIN relationship.\n"
+"\n"
+"Note about CD Baby: Many CD Baby releases are also available (usually with "
+"bigger covers) on Amazon.com."
+msgstr ""
+
+#: DB:link_type/description:15
+msgid ""
+"This relationship type is used to indicate that a release group is a cover "
+"version of another release group, that is, when an artist performs a new "
+"rendition of another artist's album.
\n"
+"For individual songs, see the recording-work performance relationship type."
+msgstr ""
+
+#: DB:link_type/description:1005
+msgid ""
+"This relationship type is used to link a label to a site where music can be "
+"legally streamed for a subscription fee, such as Apple Music.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:997
+msgid ""
+"This relationship type is used to link a label to a site where music can be "
+"legally streamed for free, such as Spotify."
+msgstr ""
+
+#: DB:link_type/description:224
+msgid "This relationship type is used to link a label to its blog."
+msgstr ""
+
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
+#: DB:link_type/description:287
+msgid ""
+"This relationship type is used to link a release group to an official "
+"website created specifically for the release group."
+msgstr ""
+
+#: DB:link_type/description:980
+msgid ""
+"This relationship type is used to link a release to a site where the tracks "
+"can be legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:85
+msgid ""
+"This relationship type is used to link a release to a site where the tracks "
+"can be legally streamed for free, such as Spotify."
+msgstr ""
+
+#: DB:link_type/description:978
+msgid ""
+"This relationship type is used to link an artist to a site where music can "
+"be legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:194
+msgid ""
+"This relationship type is used to link an artist to a site where music can "
+"be legally streamed for free, such as Spotify."
+msgstr ""
+
+#: DB:link_type/description:199
+msgid "This relationship type is used to link an artist to their blog."
+msgstr ""
+
+#: DB:link_type/description:175
+msgid ""
+"This relationship type is used to link to a page where the artist's releases "
+"can be purchased for mail order."
+msgstr ""
+
+#: DB:link_type/description:960
+msgid ""
+"This relationship type is used to link to a page where the label's releases "
+"can be purchased for mail order."
+msgstr ""
+
+#: DB:link_type/description:79
+msgid ""
+"This relationship type is used to link to a page where the release can be "
+"purchased for mail order."
+msgstr ""
+
+#: DB:link_type/description:274
+msgid ""
+"This relationship type is used to link to a page where the score / sheet "
+"music for this work can be legally downloaded for free."
+msgstr ""
+
+#: DB:link_type/description:912
+msgid ""
+"This relationship type is used to link to a page where the score / sheet "
+"music for this work can be legally purchased for download."
+msgstr ""
+
+#: DB:link_type/description:913
+msgid ""
+"This relationship type is used to link to a page where the score / sheet "
+"music for this work can be legally purchased for mail order."
+msgstr ""
+
+#: DB:link_type/description:215
+msgid "This relationship type links a label to its Myspace page."
+msgstr ""
+
+#: DB:link_type/description:210
+msgid ""
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:838
+msgid ""
+"This relationship type links a label to its corresponding page at Last.fm"
+msgstr ""
+
+#: DB:link_type/description:1013
+msgid ""
+"This relationship type links a place (usually a studio) to its corresponding "
+"page at VGMdb. VGMdb is a community "
+"project dedicated to cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:861
+msgid ""
+"This relationship type links a place to its corresponding page at "
+"Bandsintown."
+msgstr ""
+
+#: DB:link_type/description:837
+msgid ""
+"This relationship type links a place to its corresponding page at Last.fm"
+msgstr ""
+
+#: DB:link_type/description:787
+msgid ""
+"This relationship type links a place to its corresponding page at Songkick."
+msgstr ""
+
+#: DB:link_type/description:817
+msgid ""
+"This relationship type links a place to its corresponding page at setlist.fm"
+msgstr ""
+
+#: DB:link_type/description:86
+msgid ""
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:938
+msgid ""
+"This relationship type links a series (like a festival) to its corresponding "
+"page at setlist.fm"
+msgstr ""
+
+#: DB:link_type/description:1192
+msgid ""
+"This relationship type links an artist (usually a visual artist) to their "
+"art gallery page(s), such as DeviantArt or pixiv."
+msgstr ""
+
+#: DB:link_type/description:191
+msgid ""
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:862
+msgid ""
+"This relationship type links an artist to its corresponding page at "
+"Bandsintown."
+msgstr ""
+
+#: DB:link_type/description:840
+msgid ""
+"This relationship type links an artist to its corresponding page at Last.fm"
+msgstr ""
+
+#: DB:link_type/description:785
+msgid ""
+"This relationship type links an artist to its corresponding page at Songkick."
+msgstr ""
+
+#: DB:link_type/description:816
+msgid ""
+"This relationship type links an artist to its corresponding page at setlist."
+"fm"
+msgstr ""
+
+#: DB:link_type/description:189
+msgid "This relationship type links an artist to their Myspace page."
+msgstr ""
+
+#: DB:link_type/description:185
+msgid ""
+"This relationship type links an artist to their online community page(s). An "
+"online community is a group where any member can comment and contribute "
+"content. The artist may or may not be a member of the group. Examples "
+"include forums, LiveJournal communities and groups on Facebook, Last.fm and "
+"Flickr."
+msgstr ""
+
+#: DB:link_type/description:808
+msgid ""
+"This relationship type links an event to a promotional poster for the event."
+msgstr ""
+
+#: DB:link_type/description:788
+msgid ""
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:860
+msgid ""
+"This relationship type links an event to its corresponding page at "
+"Bandsintown."
+msgstr ""
+
+#: DB:link_type/description:839
+msgid ""
+"This relationship type links an event to its corresponding page at Last.fm"
+msgstr ""
+
+#: DB:link_type/description:786
+msgid ""
+"This relationship type links an event to its corresponding page at Songkick."
+msgstr ""
+
+#: DB:link_type/description:811
+msgid ""
+"This relationship type links an event to its corresponding page at setlist.fm"
+msgstr ""
+
+#: DB:link_type/description:1088
+msgid "This relationship type links genres to the areas they originate from."
+msgstr ""
+
+#: DB:link_type/description:1090
+msgid ""
+"This relationship type links instruments to genres they are commonly used in."
+msgstr ""
+
+#: DB:link_type/description:752
+msgid ""
+"This relationship type links instruments to the areas they originate from."
+msgstr ""
+
+#: DB:link_attribute_type/description:596
+msgid ""
+"This should be used when an artist is credited in liner notes or a similar "
+"source as performing a solo part."
+msgstr ""
+
+#: DB:link_attribute_type/description:1150
+msgid ""
+"This specifies the credited task(s) for a relationship that can be credited "
+"in many different ways, such as \"producer\", or one that is otherwise "
+"generic, such as \"miscellaneous support\"."
+msgstr ""
+
+#: DB:link_attribute_type/description:568
+msgid "This specifies the medium the relationship applies to."
+msgstr ""
+
+#: DB:link_attribute_type/description:617
+msgid ""
+"This title indicates that a conductor has at least partially retired, and no "
+"longer plays an active role with the group."
+msgstr ""
+
+#: DB:link_attribute_type/description:526
+msgid ""
+"This typically indicates someone who is either a first-timer, or less "
+"experienced, and who is working under the direction of someone who is more "
+"experienced."
+msgstr ""
+
+#: DB:link_attribute_type/description:527
+msgid ""
+"This typically indicates someone who is less experienced and who is working "
+"under the direction of someone who is more experienced."
+msgstr ""
+
+#: DB:link_attribute_type/description:477
+msgid ""
+"Transliterated track listings don't change the language, just the script or "
+"spelling."
+msgstr ""
+
+#: DB:link_attribute_type/description:834
+msgid ""
+"Treble or boy soprano is a young male singer with an unchanged voice in the "
+"soprano range"
+msgstr ""
+
+#: DB:link_attribute_type/description:1032
+msgid ""
+"Use this for operas and similar works that are separated in numbers, to specify what "
+"parts are numbers (as opposed to spoken dialog or other non-numbered parts)."
+msgstr ""
+
+#: DB:link_attribute_type/description:424
+msgid ""
+"Use this only for cases when someone is credited as co-[role] (co-producer, "
+"co-engineer, etc.) - which generally has a specific meaning that depends on "
+"the specific activity but is different from just \"there were several people "
+"collaborating\"."
+msgstr ""
+
+#: DB:link_type/description:949
+msgid ""
+"Use this relationship for credits like \"Recording was arranged by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:946
+msgid ""
+"Use this relationship for credits like \"Recording was mixed by X for Label\""
+msgstr ""
+
+#: DB:link_type/description:950
+msgid ""
+"Use this relationship for credits like \"Recording was produced by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:1178
+msgid ""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:948
+msgid ""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:952
+msgid ""
+"Use this relationship for credits like \"Release was manufactured by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:1183
+msgid ""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:947
+msgid ""
+"Use this relationship for credits like \"Release was mixed by X for Label\""
+msgstr ""
+
+#: DB:link_type/description:951
+msgid ""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_attribute_type/description:1353
+msgid ""
+"Use this to indicate that the mastering relationship is specifically for a "
+"pre-master"
+msgstr ""
+
+#: DB:link_attribute_type/description:952
+msgid ""
+"Use this to indicate that the mastering relationship is specifically for a "
+"remaster."
+msgstr ""
+
+#: DB:link_attribute_type/description:1033
+msgid ""
+"Use this to indicate the parent work is not intended to be performed as a "
+"whole, but is just a grouping of pieces or works that can be performed "
+"individually (collections of songs, several sonatas or concertos published "
+"as a set, books of piano pieces, etc.)"
+msgstr ""
+
+#: DB:link_attribute_type/description:1030
+msgid ""
+"Use this to mark acts of an opera (as opposed to other parts that are not "
+"acts)"
+msgstr ""
+
+#: DB:link_attribute_type/description:1079
+msgid ""
+"Use this to mark that a tour was for the anniversary (rather than the "
+"launch) of a release group."
+msgstr ""
+
+#: DB:link_attribute_type/description:1031
+msgid ""
+"Use this when the parent work consists of several parts which are generally "
+"meant to be performed one after another in a particular order (rather than "
+"in any order, or multiple times, or in arbitrary selections rather than as a "
+"whole)."
+msgstr ""
+
+#: DB:link_type/link_phrase:86 DB:link_type/link_phrase:191
+#: DB:link_type/link_phrase:210 DB:link_type/link_phrase:788
+#: DB:link_type/link_phrase:1013 DB:link_type/reverse_link_phrase:992
+msgid "VGMdb"
+msgstr ""
+
+#: DB:link_type/link_phrase:992 DB:link_type/reverse_link_phrase:86
+#: DB:link_type/reverse_link_phrase:191 DB:link_type/reverse_link_phrase:210
+#: DB:link_type/reverse_link_phrase:788 DB:link_type/reverse_link_phrase:1013
+msgid "VGMdb page for"
+msgstr ""
+
+#: DB:link_type/name:311 DB:link_type/name:310 DB:link_type/name:312
+#: DB:link_type/name:920 DB:link_type/name:1001
+msgid "VIAF"
+msgstr ""
+
+#: DB:link_type/link_phrase:311 DB:link_type/link_phrase:310
+#: DB:link_type/link_phrase:920 DB:link_type/link_phrase:1001
+#: DB:link_type/reverse_link_phrase:312
+msgid "VIAF ID"
+msgstr ""
+
+#: DB:link_type/link_phrase:312 DB:link_type/reverse_link_phrase:311
+#: DB:link_type/reverse_link_phrase:310 DB:link_type/reverse_link_phrase:920
+#: DB:link_type/reverse_link_phrase:1001
+msgid "VIAF ID for"
+msgstr ""
+
+#: DB:link_type/name:1163 DB:link_type/reverse_link_phrase:1163
+msgid "VJ"
+msgstr ""
+
+#: DB:link_type/link_phrase:1163
+msgid "VJ at"
+msgstr ""
+
+#: DB:link_attribute_type/description:1151
+msgid "Whistling (with mouth, not a whistle)"
+msgstr ""
+
+#: DB:link_type/link_phrase:1087 DB:link_type/link_phrase:353
+#: DB:link_type/link_phrase:749 DB:link_type/link_phrase:594
+#: DB:link_type/link_phrase:354 DB:link_type/link_phrase:790
+#: DB:link_type/link_phrase:352 DB:link_type/link_phrase:733
+#: DB:link_type/link_phrase:358 DB:link_type/reverse_link_phrase:351
+msgid "Wikidata"
+msgstr ""
+
+#: DB:link_type/link_phrase:351 DB:link_type/reverse_link_phrase:1087
+#: DB:link_type/reverse_link_phrase:353 DB:link_type/reverse_link_phrase:749
+#: DB:link_type/reverse_link_phrase:594 DB:link_type/reverse_link_phrase:354
+#: DB:link_type/reverse_link_phrase:790 DB:link_type/reverse_link_phrase:352
+#: DB:link_type/reverse_link_phrase:733 DB:link_type/reverse_link_phrase:358
+msgid "Wikidata page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:179 DB:link_type/link_phrase:595
+#: DB:link_type/link_phrase:355 DB:link_type/link_phrase:744
+#: DB:link_type/link_phrase:216 DB:link_type/link_phrase:731
+#: DB:link_type/link_phrase:89 DB:link_type/link_phrase:789
+#: DB:link_type/reverse_link_phrase:279
+msgid "Wikipedia"
+msgstr ""
+
+#: DB:link_type/link_phrase:279 DB:link_type/reverse_link_phrase:179
+#: DB:link_type/reverse_link_phrase:595 DB:link_type/reverse_link_phrase:355
+#: DB:link_type/reverse_link_phrase:744 DB:link_type/reverse_link_phrase:216
+#: DB:link_type/reverse_link_phrase:731 DB:link_type/reverse_link_phrase:89
+#: DB:link_type/reverse_link_phrase:789
+msgid "Wikipedia page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1080
+msgid "YouTube Music"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1080
+msgid "YouTube Music channel for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:791 DB:link_type/reverse_link_phrase:792
+#: DB:link_type/reverse_link_phrase:193 DB:link_type/reverse_link_phrase:225
+#: DB:link_type/reverse_link_phrase:528
+msgid "YouTube channel for"
+msgstr ""
+
+#: DB:link_type/link_phrase:791 DB:link_type/link_phrase:792
+#: DB:link_type/link_phrase:193 DB:link_type/link_phrase:225
+#: DB:link_type/link_phrase:528
+msgid "YouTube channels"
+msgstr ""
+
+#: DB:link_attribute_type/name:1345
+msgid "accompanying"
+msgstr ""
+
+#: DB:link_attribute_type/name:1030
+msgid "act"
+msgstr ""
+
+#: DB:link_attribute_type/name:1
+msgid "additional"
+msgstr ""
+
+#: DB:link_type/name:755 DB:link_type/name:284 DB:link_type/name:283
+#: DB:link_type/name:285 DB:link_type/name:286 DB:link_type/name:1093
+msgid "allmusic"
+msgstr ""
+
+#: DB:link_attribute_type/description:5 DB:link_attribute_type/name:5
+msgid "alto vocals"
+msgstr ""
+
+#: DB:link_type/name:77
+msgid "amazon asin"
+msgstr ""
+
+#: DB:link_attribute_type/name:1080
+msgid "amount"
+msgstr ""
+
+#: DB:link_attribute_type/name:1079
+msgid "anniversary"
+msgstr ""
+
+#: DB:link_type/link_phrase:357 DB:link_type/name:357
+msgid "anthem"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:357
+msgid "anthem of"
+msgstr ""
+
+#: DB:link_type/link_phrase:858 DB:link_type/long_link_phrase:858
+msgid "appears on video"
+msgstr ""
+
+#: DB:link_type/name:1131 DB:link_type/name:1130
+msgid "apple music"
+msgstr ""
+
+#: DB:link_type/name:866 DB:link_type/name:865 DB:link_type/name:886
+#: DB:link_type/reverse_link_phrase:866 DB:link_type/reverse_link_phrase:865
+msgid "arranged at"
+msgstr ""
+
+#: DB:link_type/name:948 DB:link_type/name:949
+#: DB:link_type/reverse_link_phrase:948 DB:link_type/reverse_link_phrase:949
+msgid "arranged for"
+msgstr ""
+
+#: DB:link_type/name:864 DB:link_type/name:863 DB:link_type/name:885
+#: DB:link_type/reverse_link_phrase:864 DB:link_type/reverse_link_phrase:863
+msgid "arranged in"
+msgstr ""
+
+#: DB:link_type/name:350
+msgid "arrangement"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:350
+msgid "arrangement of"
+msgstr ""
+
+#: DB:link_type/link_phrase:350
+msgid "arrangements"
+msgstr ""
+
+#: DB:link_type/name:295 DB:link_type/name:297 DB:link_type/name:293
+msgid "arranger"
+msgstr ""
+
+#: DB:link_attribute_type/name:1347
+msgid "arranging"
+msgstr ""
+
+#: DB:link_type/link_phrase:864 DB:link_type/link_phrase:863
+#: DB:link_type/link_phrase:866 DB:link_type/link_phrase:865
+msgid "arranging location for"
+msgstr ""
+
+#: DB:link_type/name:137 DB:link_type/name:1174 DB:link_type/name:18
+msgid "art direction"
+msgstr ""
+
+#: DB:link_type/link_phrase:1192
+msgid "art galleries"
+msgstr ""
+
+#: DB:link_type/name:1192
+msgid "art gallery"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1192
+msgid "art gallery for"
+msgstr ""
+
+#: DB:link_type/link_phrase:135 DB:link_type/link_phrase:62
+#: DB:link_type/reverse_link_phrase:135 DB:link_type/reverse_link_phrase:62
+msgid "artist & repertoire support"
+msgstr ""
+
+#: DB:link_attribute_type/name:1355
+msgid "artist diploma"
+msgstr ""
+
+#: DB:link_type/name:1079
+msgid "artist rename"
+msgstr ""
+
+#: DB:link_type/name:965 DB:link_type/reverse_link_phrase:965
+msgid "artistic director"
+msgstr ""
+
+#: DB:link_type/link_phrase:965
+msgid "artistic director for"
+msgstr ""
+
+#: DB:link_type/name:135 DB:link_type/name:62
+msgid "artists and repertoire"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1081
+msgid "artists and repertoire persons"
+msgstr ""
+
+#: DB:link_type/link_phrase:1081 DB:link_type/name:1081
+msgid "artists and repertoire position"
+msgstr ""
+
+#: DB:link_type/name:993 DB:link_type/name:1170
+msgid "artwork"
+msgstr ""
+
+#: DB:link_attribute_type/name:526
+msgid "assistant"
+msgstr ""
+
+#: DB:link_attribute_type/name:527
+msgid "associate"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:926
+msgid "associated groups"
+msgstr ""
+
+#: DB:link_type/name:1090
+msgid "associated instrument"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:11
+msgid "associated singles/EPs"
+msgstr ""
+
+#: DB:link_type/link_phrase:926 DB:link_type/name:926
+msgid "associated with"
+msgstr ""
+
+#: DB:link_type/name:140 DB:link_type/name:31
+msgid "audio"
+msgstr ""
+
+#: DB:link_type/name:1186 DB:link_type/name:1187
+msgid "audio director"
+msgstr ""
+
+#: DB:link_type/name:795 DB:link_type/reverse_link_phrase:795
+msgid "available at"
+msgstr ""
+
+#: DB:link_type/link_phrase:795
+msgid "available releases"
+msgstr ""
+
+#: DB:link_type/link_phrase:1094 DB:link_type/name:1094
+msgid "award ceremony"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1094
+msgid "award ceremony for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1137
+msgid "bachelor’s degree"
+msgstr ""
+
+#: DB:link_attribute_type/description:12 DB:link_attribute_type/name:12
+msgid "background vocals"
+msgstr ""
+
+#: DB:link_type/name:727 DB:link_type/name:726
+msgid "balance"
+msgstr ""
+
+#: DB:link_type/name:1092 DB:link_type/name:718 DB:link_type/name:719
+msgid "bandcamp"
+msgstr ""
+
+#: DB:link_type/name:861 DB:link_type/name:862 DB:link_type/name:860
+msgid "bandsintown"
+msgstr ""
+
+#: DB:link_attribute_type/description:6 DB:link_attribute_type/name:6
+msgid "baritone vocals"
+msgstr ""
+
+#: DB:link_type/name:314
+msgid "based on"
+msgstr ""
+
+#: DB:link_attribute_type/description:7 DB:link_attribute_type/name:7
+msgid "bass vocals"
+msgstr ""
+
+#: DB:link_attribute_type/description:231 DB:link_attribute_type/name:231
+msgid "bass-baritone vocals"
+msgstr ""
+
+#: DB:link_type/link_phrase:182
+msgid "biographies"
+msgstr ""
+
+#: DB:link_type/name:182
+msgid "biography"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:182
+msgid "biography of"
+msgstr ""
+
+#: DB:link_type/name:224 DB:link_type/name:199 DB:link_type/name:627
+msgid "blog"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:224 DB:link_type/reverse_link_phrase:199
+#: DB:link_type/reverse_link_phrase:627
+msgid "blog of"
+msgstr ""
+
+#: DB:link_type/link_phrase:224 DB:link_type/link_phrase:199
+#: DB:link_type/link_phrase:627
+msgid "blogs"
+msgstr ""
+
+#: DB:link_attribute_type/name:516
+msgid "bonus"
+msgstr ""
+
+#: DB:link_type/link_phrase:23 DB:link_type/link_phrase:134
+#: DB:link_type/name:23 DB:link_type/name:134
+#: DB:link_type/reverse_link_phrase:23 DB:link_type/reverse_link_phrase:134
+msgid "booking"
+msgstr ""
+
+#: DB:link_type/name:929 DB:link_type/reverse_link_phrase:929
+msgid "booklet editor"
+msgstr ""
+
+#: DB:link_type/link_phrase:929
+msgid "booklet editor for"
+msgstr ""
+
+#: DB:link_type/link_phrase:66 DB:link_type/link_phrase:205
+#: DB:link_type/name:205 DB:link_type/reverse_link_phrase:205
+#: DB:link_type/long_link_phrase:205
+msgid "business association"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:66
+msgid "business association with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:75 DB:link_type/long_link_phrase:255
+msgid "can be downloaded for free at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:254 DB:link_type/long_link_phrase:74
+msgid "can be purchased for download at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:79
+msgid "can be purchased for mail-order at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
+msgid "can be streamed at"
+msgstr ""
+
+#: DB:link_attribute_type/name:921
+msgid "cancelled"
+msgstr ""
+
+#: DB:link_type/name:1165
+msgid "carillonneur"
+msgstr ""
+
+#: DB:link_type/link_phrase:212 DB:link_type/reverse_link_phrase:212
+msgid "catalog of records"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:201
+msgid "catalog reissued by"
+msgstr ""
+
+#: DB:link_type/name:212
+msgid "catalog site"
+msgstr ""
+
+#: DB:link_type/link_phrase:751 DB:link_type/name:751
+#: DB:link_type/long_link_phrase:751
+msgid "catalogued"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:751
+msgid "cataloguer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:750
+msgid "catalogues work of"
+msgstr ""
+
+#: DB:link_attribute_type/name:1223
+msgid "chamber music"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:735
+msgid "child of"
+msgstr ""
+
+#: DB:link_type/link_phrase:735 DB:link_type/name:735
+msgid "children"
+msgstr ""
+
+#: DB:link_attribute_type/description:13 DB:link_attribute_type/name:13
+msgid "choir vocals"
+msgstr ""
+
+#: DB:link_attribute_type/name:1224
+msgid "choral conducting"
+msgstr ""
+
+#: DB:link_type/name:152 DB:link_type/name:53
+msgid "chorus master"
+msgstr ""
+
+#: DB:link_attribute_type/name:1204
+msgid "classical music"
+msgstr ""
+
+#: DB:link_attribute_type/name:424
+msgid "co"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:102
+msgid "collaborated {minor:minorly} {additional:additionally} on"
+msgstr ""
+
+#: DB:link_type/name:102
+msgid "collaboration"
+msgstr ""
+
+#: DB:link_type/link_phrase:1176 DB:link_type/link_phrase:1177
+#: DB:link_type/name:1176 DB:link_type/name:1177
+msgid "commentary"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1176 DB:link_type/reverse_link_phrase:1177
+msgid "commentary for"
+msgstr ""
+
+#: DB:link_type/link_phrase:890 DB:link_type/link_phrase:889
+#: DB:link_type/link_phrase:892 DB:link_type/link_phrase:891
+#: DB:link_type/name:890 DB:link_type/name:889 DB:link_type/name:892
+#: DB:link_type/name:891 DB:link_type/long_link_phrase:890
+#: DB:link_type/long_link_phrase:889 DB:link_type/long_link_phrase:892
+#: DB:link_type/long_link_phrase:891
+msgid "commissioned"
+msgstr ""
+
+#: DB:link_type/name:228
+msgid "compilation"
+msgstr ""
+
+#: DB:link_type/link_phrase:228
+msgid "compilation of"
+msgstr ""
+
+#: DB:link_type/link_phrase:48 DB:link_type/link_phrase:147
+#: DB:link_type/long_link_phrase:48 DB:link_type/long_link_phrase:147
+msgid "compiled"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:228
+msgid "compiled in"
+msgstr ""
+
+#: DB:link_type/name:48 DB:link_type/name:147
+#: DB:link_type/reverse_link_phrase:48 DB:link_type/reverse_link_phrase:147
+msgid "compiler"
+msgstr ""
+
+#: DB:link_type/name:876
+msgid "composed at"
+msgstr ""
+
+#: DB:link_type/name:875
+msgid "composed in"
+msgstr ""
+
+#: DB:link_type/name:55 DB:link_type/name:168
+msgid "composer"
+msgstr ""
+
+#: DB:link_type/name:937 DB:link_type/name:855
+msgid "composer-in-residence"
+msgstr ""
+
+#: DB:link_type/link_phrase:937 DB:link_type/link_phrase:855
+msgid "composer-in-residence at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:937 DB:link_type/reverse_link_phrase:855
+msgid "composers-in-residence"
+msgstr ""
+
+#: DB:link_attribute_type/name:1126 DB:link_type/link_phrase:58
+#: DB:link_type/link_phrase:170 DB:link_type/name:58 DB:link_type/name:170
+#: DB:link_type/reverse_link_phrase:58 DB:link_type/reverse_link_phrase:170
+#: DB:link_type/long_link_phrase:58 DB:link_type/long_link_phrase:170
+msgid "composition"
+msgstr ""
+
+#: DB:link_type/name:760 DB:link_type/name:759
+msgid "concertmaster"
+msgstr ""
+
+#: DB:link_attribute_type/name:1130
+msgid "conducting"
+msgstr ""
+
+#: DB:link_type/name:806 DB:link_type/name:46 DB:link_type/name:151
+msgid "conductor"
+msgstr ""
+
+#: DB:link_type/link_phrase:806
+msgid "conductor at"
+msgstr ""
+
+#: DB:link_type/name:305
+msgid "conductor position"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:806
+msgid "conductors"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:925
+msgid "connected with"
+msgstr ""
+
+#: DB:link_type/link_phrase:739
+msgid "consists of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1008
+msgid "contains music recorded during"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:83 DB:link_type/long_link_phrase:258
+msgid "contains samples from the IMDb entry at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:154 DB:link_type/reverse_link_phrase:49
+msgid "contains {additional} samples by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:231
+msgid "contains {additional} samples from"
+msgstr ""
+
+#: DB:link_attribute_type/name:1227
+msgid "contemporary music"
+msgstr ""
+
+#: DB:link_type/link_phrase:119 DB:link_type/name:119
+#: DB:link_type/reverse_link_phrase:119 DB:link_type/long_link_phrase:119
+msgid "contract"
+msgstr ""
+
+#: DB:link_type/link_phrase:948 DB:link_type/link_phrase:949
+msgid "contracted arrangement for"
+msgstr ""
+
+#: DB:link_type/link_phrase:952
+msgid "contracted manufacturing for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1183
+msgid "contracted mastered for"
+msgstr ""
+
+#: DB:link_type/link_phrase:946 DB:link_type/link_phrase:947
+msgid "contracted mixing for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1178
+msgid "contracted remixing for"
+msgstr ""
+
+#: DB:link_type/link_phrase:945 DB:link_type/link_phrase:944
+#: DB:link_type/name:945 DB:link_type/name:944
+#: DB:link_type/reverse_link_phrase:945 DB:link_type/reverse_link_phrase:944
+#: DB:link_type/long_link_phrase:945 DB:link_type/long_link_phrase:944
+msgid "contracted tasks"
+msgstr ""
+
+#: DB:link_type/link_phrase:951 DB:link_type/link_phrase:950
+msgid "contracted {co:co-}{executive:executive }production for"
+msgstr ""
+
+#: DB:link_attribute_type/description:230 DB:link_attribute_type/name:230
+msgid "contralto vocals"
+msgstr ""
+
+#: DB:link_type/name:708 DB:link_type/name:709
+msgid "copyright"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:708 DB:link_type/reverse_link_phrase:709
+msgid "copyrighted (©) by"
+msgstr ""
+
+#: DB:link_attribute_type/name:1349
+msgid "counterpoint"
+msgstr ""
+
+#: DB:link_attribute_type/description:8 DB:link_attribute_type/name:8
+msgid "countertenor vocals"
+msgstr ""
+
+#: DB:link_attribute_type/name:567 DB:link_type/name:15
+msgid "cover"
+msgstr ""
+
+#: DB:link_type/link_phrase:78
+msgid "cover art"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:78
+msgid "cover art for"
+msgstr ""
+
+#: DB:link_type/name:78
+msgid "cover art link"
+msgstr ""
+
+#: DB:link_type/name:12 DB:link_type/name:4 DB:link_type/long_link_phrase:12
+msgid "covers and versions"
+msgstr ""
+
+#: DB:link_type/link_phrase:12 DB:link_type/link_phrase:4
+#: DB:link_type/reverse_link_phrase:12 DB:link_type/reverse_link_phrase:4
+#: DB:link_type/long_link_phrase:4
+msgid "covers or other versions"
+msgstr ""
+
+#: DB:link_type/name:63 DB:link_type/name:146
+msgid "creative direction"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:115
+msgid "creative persons"
+msgstr ""
+
+#: DB:link_type/link_phrase:115 DB:link_type/name:115
+msgid "creative position"
+msgstr ""
+
+#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
+msgid "crowdfunding"
+msgstr ""
+
+#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
+#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
+#: DB:link_type/reverse_link_phrase:908
+msgid "crowdfunding page"
+msgstr ""
+
+#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
+#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
+#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
+msgid "crowdfunding page for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:969
+msgid "cut the lacquer for"
+msgstr ""
+
+#: DB:link_type/name:868 DB:link_type/reverse_link_phrase:983
+#: DB:link_type/reverse_link_phrase:846 DB:link_type/reverse_link_phrase:922
+#: DB:link_type/reverse_link_phrase:914 DB:link_type/reverse_link_phrase:868
+msgid "dedicated to"
+msgstr ""
+
+#: DB:link_type/link_phrase:983 DB:link_type/link_phrase:846
+#: DB:link_type/link_phrase:922 DB:link_type/link_phrase:914
+msgid "dedicated works"
+msgstr ""
+
+#: DB:link_type/name:983 DB:link_type/name:846 DB:link_type/name:922
+#: DB:link_type/name:914
+msgid "dedication"
+msgstr ""
+
+#: DB:link_type/link_phrase:868
+msgid "dedications"
+msgstr ""
+
+#: DB:link_type/name:737
+msgid "derivation"
+msgstr ""
+
+#: DB:link_type/link_phrase:737
+msgid "derivations"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:737
+msgid "derived from"
+msgstr ""
+
+#: DB:link_type/name:928 DB:link_type/name:1171
+msgid "design"
+msgstr ""
+
+#: DB:link_type/name:19 DB:link_type/name:130
+msgid "design/illustration"
+msgstr ""
+
+#: DB:link_type/link_phrase:88 DB:link_type/link_phrase:171
+#: DB:link_type/name:88 DB:link_type/name:171
+#: DB:link_type/reverse_link_phrase:88 DB:link_type/reverse_link_phrase:171
+#: DB:link_type/long_link_phrase:88 DB:link_type/long_link_phrase:171
+msgid "discography"
+msgstr ""
+
+#: DB:link_type/link_phrase:288 DB:link_type/link_phrase:1169
+#: DB:link_type/name:288 DB:link_type/name:1169
+msgid "discography entry"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:288 DB:link_type/reverse_link_phrase:1169
+msgid "discography entry for"
+msgstr ""
+
+#: DB:link_type/name:184
+msgid "discography page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:184
+msgid "discography page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:184
+msgid "discography pages"
+msgstr ""
+
+#: DB:link_type/name:1089 DB:link_type/name:180 DB:link_type/name:76
+#: DB:link_type/name:217 DB:link_type/name:90 DB:link_type/name:747
+#: DB:link_type/name:705 DB:link_type/name:971
+msgid "discogs"
+msgstr ""
+
+#: DB:link_type/link_phrase:361 DB:link_type/name:361
+#: DB:link_type/long_link_phrase:361
+msgid "distributed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:361
+msgid "distributed by"
+msgstr ""
+
+#: DB:link_type/link_phrase:203
+msgid "distributor for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:203
+msgid "distributors"
+msgstr ""
+
+#: DB:link_attribute_type/name:1139
+msgid "doctoral degree"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:105
+msgid "does/did {instrument} support for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:107
+msgid "does/did {vocal:%|vocals} support for"
+msgstr ""
+
+#: DB:link_type/link_phrase:75 DB:link_type/link_phrase:255
+#: DB:link_type/name:958 DB:link_type/name:75 DB:link_type/name:177
+#: DB:link_type/name:255 DB:link_type/name:274
+msgid "download for free"
+msgstr ""
+
+#: DB:link_type/link_phrase:958 DB:link_type/link_phrase:177
+msgid "download music for free"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:959 DB:link_type/reverse_link_phrase:254
+#: DB:link_type/reverse_link_phrase:74 DB:link_type/reverse_link_phrase:176
+msgid "download purchase page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:912
+msgid "download purchase page for the score of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:274
+msgid "download score for free"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:238
+msgid "earliest release"
+msgstr ""
+
+#: DB:link_attribute_type/name:1131
+msgid "early music"
+msgstr ""
+
+#: DB:link_type/name:309
+msgid "edit"
+msgstr ""
+
+#: DB:link_type/link_phrase:309
+msgid "edit of"
+msgstr ""
+
+#: DB:link_type/name:819 DB:link_type/name:820
+msgid "edited at"
+msgstr ""
+
+#: DB:link_type/name:822 DB:link_type/name:821
+msgid "edited in"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:929
+msgid "edited the booklet of"
+msgstr ""
+
+#: DB:link_type/name:144 DB:link_type/name:38
+msgid "editor"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:309
+msgid "edits"
+msgstr ""
+
+#: DB:link_type/link_phrase:925 DB:link_type/name:925
+msgid "educational institution connection"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:924
+msgid "educators"
+msgstr ""
+
+#: DB:link_attribute_type/name:1352
+msgid "electroacoustic music"
+msgstr ""
+
+#: DB:link_attribute_type/name:1127
+msgid "electronic music"
+msgstr ""
+
+#: DB:link_attribute_type/name:617
+msgid "emeritus"
+msgstr ""
+
+#: DB:link_type/name:1084 DB:link_type/name:28 DB:link_type/name:138
+msgid "engineer"
+msgstr ""
+
+#: DB:link_type/link_phrase:120 DB:link_type/name:120 DB:link_type/name:701
+msgid "engineer position"
+msgstr ""
+
+#: DB:link_type/link_phrase:701
+msgid "engineer position at"
+msgstr ""
+
+#: DB:link_type/link_phrase:1084
+msgid "engineered"
+msgstr ""
+
+#: DB:link_type/name:813 DB:link_type/name:812
+msgid "engineered at"
+msgstr ""
+
+#: DB:link_type/name:814 DB:link_type/name:815
+msgid "engineered in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1084 DB:link_type/reverse_link_phrase:120
+#: DB:link_type/reverse_link_phrase:701
+msgid "engineers"
+msgstr ""
+
+#: DB:link_attribute_type/name:1094
+msgid "eponymous"
+msgstr ""
+
+#: DB:link_type/link_phrase:1003 DB:link_type/name:1003
+#: DB:link_type/reverse_link_phrase:1003 DB:link_type/long_link_phrase:1003
+msgid "event artists"
+msgstr ""
+
+#: DB:link_attribute_type/name:425
+msgid "executive"
+msgstr ""
+
+#: DB:link_type/link_phrase:1188 DB:link_type/reverse_link_phrase:214
+#: DB:link_type/reverse_link_phrase:172 DB:link_type/reverse_link_phrase:1189
+#: DB:link_type/reverse_link_phrase:1190 DB:link_type/reverse_link_phrase:1191
+msgid "fan page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:214 DB:link_type/link_phrase:172
+#: DB:link_type/link_phrase:1189 DB:link_type/link_phrase:1190
+#: DB:link_type/link_phrase:1191 DB:link_type/reverse_link_phrase:1188
+msgid "fan pages"
+msgstr ""
+
+#: DB:link_type/name:214 DB:link_type/name:172 DB:link_type/name:1189
+#: DB:link_type/name:1190 DB:link_type/name:1188 DB:link_type/name:1191
+msgid "fanpage"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1011 DB:link_type/reverse_link_phrase:1012
+msgid "field recordings"
+msgstr ""
+
+#: DB:link_type/name:1011 DB:link_type/name:1012
+msgid "field recordist"
+msgstr ""
+
+#: DB:link_type/link_phrase:1011 DB:link_type/link_phrase:1012
+msgid "field recordist for"
+msgstr ""
+
+#: DB:link_type/name:238
+msgid "first track release"
+msgstr ""
+
+#: DB:link_attribute_type/name:1133
+msgid "folk music"
+msgstr ""
+
+#: DB:link_type/link_phrase:832 DB:link_type/link_phrase:116
+#: DB:link_type/link_phrase:895 DB:link_type/link_phrase:1004
+#: DB:link_type/long_link_phrase:832 DB:link_type/long_link_phrase:116
+#: DB:link_type/long_link_phrase:895 DB:link_type/long_link_phrase:1004
+msgid "founded"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:895
+msgid "founded by"
+msgstr ""
+
+#: DB:link_type/name:832 DB:link_type/name:895 DB:link_type/name:1004
+msgid "founder"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:832 DB:link_type/reverse_link_phrase:116
+#: DB:link_type/reverse_link_phrase:1004
+msgid "founders"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:958 DB:link_type/reverse_link_phrase:75
+#: DB:link_type/reverse_link_phrase:177 DB:link_type/reverse_link_phrase:255
+msgid "free download page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:274
+msgid "free download page for the score of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:997 DB:link_type/reverse_link_phrase:194
+msgid "free music streaming page for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
+msgid "free music {video} streaming page for"
+msgstr ""
+
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
+#: DB:link_type/name:194
+msgid "free streaming"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1088 DB:link_type/reverse_link_phrase:752
+msgid "from"
+msgstr ""
+
+#: DB:link_type/link_phrase:1096 DB:link_type/name:1096
+msgid "fusion of"
+msgstr ""
+
+#: DB:link_type/name:1088
+msgid "genre origin"
+msgstr ""
+
+#: DB:link_type/link_phrase:1088
+msgid "genres"
+msgstr ""
+
+#: DB:link_type/name:934 DB:link_type/name:713
+msgid "geonames"
+msgstr ""
+
+#: DB:link_type/link_phrase:957 DB:link_type/link_phrase:257
+#: DB:link_type/link_phrase:73 DB:link_type/link_phrase:1091
+#: DB:link_type/link_phrase:187 DB:link_type/name:957 DB:link_type/name:257
+#: DB:link_type/name:73 DB:link_type/name:1091 DB:link_type/name:187
+#: DB:link_type/reverse_link_phrase:957 DB:link_type/reverse_link_phrase:257
+#: DB:link_type/reverse_link_phrase:73 DB:link_type/reverse_link_phrase:1091
+#: DB:link_type/reverse_link_phrase:187 DB:link_type/long_link_phrase:957
+#: DB:link_type/long_link_phrase:257 DB:link_type/long_link_phrase:73
+#: DB:link_type/long_link_phrase:1091 DB:link_type/long_link_phrase:187
+msgid "get the music"
+msgstr ""
+
+#: DB:link_type/link_phrase:911 DB:link_type/name:911
+#: DB:link_type/reverse_link_phrase:911 DB:link_type/long_link_phrase:911
+msgid "get the score"
+msgstr ""
+
+#: DB:link_type/link_phrase:955 DB:link_type/name:955
+#: DB:link_type/long_link_phrase:955
+msgid "glass mastered"
+msgstr ""
+
+#: DB:link_type/name:954 DB:link_type/reverse_link_phrase:954
+msgid "glass mastered at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:955
+msgid "glass mastered by"
+msgstr ""
+
+#: DB:link_type/link_phrase:954
+msgid "glass mastering location for"
+msgstr ""
+
+#: DB:link_type/name:1172 DB:link_type/name:125 DB:link_type/name:27
+msgid "graphic design"
+msgstr ""
+
+#: DB:link_attribute_type/name:194
+msgid "guest"
+msgstr ""
+
+#: DB:link_type/name:800
+msgid "guest performer"
+msgstr ""
+
+#: DB:link_type/link_phrase:800 DB:link_type/long_link_phrase:800
+msgid "guest performer at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:800
+msgid "guest performers"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:115
+msgid "had a creative position at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:162
+msgid "had a miscellaneous role on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:117
+msgid "had a producer position at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:121
+msgid "had a recording contract with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1081
+msgid "had an artists and repertoire position at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:120
+msgid "had an engineer position at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:936
+msgid "had tribute event"
+msgstr ""
+
+#: DB:link_attribute_type/name:1019
+msgid "half"
+msgstr ""
+
+#: DB:link_attribute_type/name:1350
+msgid "harmony"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:77
+msgid "has Amazon ASIN"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1131 DB:link_type/long_link_phrase:1130
+msgid "has Apple Music page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1092 DB:link_type/long_link_phrase:718
+#: DB:link_type/long_link_phrase:719
+msgid "has Bandcamp page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:919
+msgid "has CD Baby page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:311 DB:link_type/long_link_phrase:310
+#: DB:link_type/long_link_phrase:920 DB:link_type/long_link_phrase:1001
+msgid "has VIAF ID at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1080
+msgid "has YouTube Music channel at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:190
+msgid "has a BBC Music page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:861 DB:link_type/long_link_phrase:862
+#: DB:link_type/long_link_phrase:860
+msgid "has a Bandsintown page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:851 DB:link_type/long_link_phrase:852
+#: DB:link_type/long_link_phrase:853 DB:link_type/long_link_phrase:1167
+#: DB:link_type/long_link_phrase:850
+msgid "has a BookBrainz page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:981
+msgid "has a CPDL page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1089 DB:link_type/long_link_phrase:180
+#: DB:link_type/long_link_phrase:76 DB:link_type/long_link_phrase:217
+#: DB:link_type/long_link_phrase:90 DB:link_type/long_link_phrase:747
+#: DB:link_type/long_link_phrase:705
+msgid "has a Discogs page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:934 DB:link_type/long_link_phrase:713
+msgid "has a Geonames page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:840 DB:link_type/long_link_phrase:837
+#: DB:link_type/long_link_phrase:839 DB:link_type/long_link_phrase:838
+msgid "has a Last.fm page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:215 DB:link_type/long_link_phrase:462
+#: DB:link_type/long_link_phrase:189
+msgid "has a Myspace page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:174
+msgid "has a PureVolume page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:308 DB:link_type/long_link_phrase:976
+#: DB:link_type/long_link_phrase:977 DB:link_type/long_link_phrase:307
+msgid "has a SecondHandSongs page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:786 DB:link_type/long_link_phrase:785
+#: DB:link_type/long_link_phrase:787
+msgid "has a Songkick page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:870 DB:link_type/long_link_phrase:291
+#: DB:link_type/long_link_phrase:290 DB:link_type/long_link_phrase:940
+msgid "has a SoundCloud page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:86 DB:link_type/long_link_phrase:191
+#: DB:link_type/long_link_phrase:210 DB:link_type/long_link_phrase:788
+#: DB:link_type/long_link_phrase:1013
+msgid "has a VGMdb page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1087 DB:link_type/long_link_phrase:353
+#: DB:link_type/long_link_phrase:749 DB:link_type/long_link_phrase:594
+#: DB:link_type/long_link_phrase:354 DB:link_type/long_link_phrase:790
+#: DB:link_type/long_link_phrase:352 DB:link_type/long_link_phrase:733
+#: DB:link_type/long_link_phrase:358
+msgid "has a Wikidata page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:179 DB:link_type/long_link_phrase:595
+#: DB:link_type/long_link_phrase:355 DB:link_type/long_link_phrase:744
+#: DB:link_type/long_link_phrase:216 DB:link_type/long_link_phrase:731
+#: DB:link_type/long_link_phrase:89 DB:link_type/long_link_phrase:789
+msgid "has a Wikipedia page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:182
+msgid "has a biography page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:224 DB:link_type/long_link_phrase:199
+#: DB:link_type/long_link_phrase:627
+msgid "has a blog at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:212
+msgid "has a catalog of records at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
+#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
+msgid "has a crowdfunding page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:288 DB:link_type/long_link_phrase:1169
+msgid "has a discography entry at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:184
+msgid "has a discography page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:214 DB:link_type/long_link_phrase:172
+#: DB:link_type/long_link_phrase:1189 DB:link_type/long_link_phrase:1190
+#: DB:link_type/long_link_phrase:1191
+msgid "has a fan page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:226
+msgid "has a karaoke version"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:213
+msgid "has a logo at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:129 DB:link_type/long_link_phrase:25
+#: DB:link_type/long_link_phrase:998 DB:link_type/long_link_phrase:999
+msgid "has a miscellaneous role on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1086 DB:link_type/long_link_phrase:753
+#: DB:link_type/long_link_phrase:82 DB:link_type/long_link_phrase:222
+#: DB:link_type/long_link_phrase:188 DB:link_type/long_link_phrase:306
+#: DB:link_type/long_link_phrase:561 DB:link_type/long_link_phrase:746
+#: DB:link_type/long_link_phrase:96 DB:link_type/long_link_phrase:803
+msgid "has a page in a database at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:901 DB:link_type/long_link_phrase:900
+#: DB:link_type/long_link_phrase:898 DB:link_type/long_link_phrase:899
+#: DB:link_type/long_link_phrase:897
+msgid "has a patronage page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:173 DB:link_type/long_link_phrase:396
+#: DB:link_type/long_link_phrase:732
+msgid "has a picture at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:842 DB:link_type/long_link_phrase:94
+msgid "has a review page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1083
+msgid "has a schedule at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:811 DB:link_type/long_link_phrase:816
+#: DB:link_type/long_link_phrase:817 DB:link_type/long_link_phrase:938
+msgid "has a setlist.fm page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:784 DB:link_type/long_link_phrase:783
+#: DB:link_type/long_link_phrase:218 DB:link_type/long_link_phrase:429
+#: DB:link_type/long_link_phrase:192
+msgid "has a social networking page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:287
+msgid "has a standalone website at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1193 DB:link_type/long_link_phrase:1194
+#: DB:link_type/long_link_phrase:1195 DB:link_type/long_link_phrase:1196
+#: DB:link_type/long_link_phrase:1197
+msgid "has a ticketing page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:755 DB:link_type/long_link_phrase:284
+#: DB:link_type/long_link_phrase:283 DB:link_type/long_link_phrase:285
+#: DB:link_type/long_link_phrase:1093
+msgid "has an Allmusic page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:313 DB:link_type/long_link_phrase:178
+#: DB:link_type/long_link_phrase:97 DB:link_type/long_link_phrase:706
+msgid "has an IMDb page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:754
+msgid "has an IMSLP page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1192
+msgid "has an art gallery at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:707
+msgid "has an interview at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:791 DB:link_type/long_link_phrase:792
+#: DB:link_type/long_link_phrase:193 DB:link_type/long_link_phrase:225
+#: DB:link_type/long_link_phrase:528
+msgid "has an official YouTube channel at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:745 DB:link_type/long_link_phrase:782
+#: DB:link_type/long_link_phrase:183 DB:link_type/long_link_phrase:219
+#: DB:link_type/long_link_phrase:363
+msgid "has an official homepage at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:804 DB:link_type/long_link_phrase:304
+#: DB:link_type/long_link_phrase:805 DB:link_type/long_link_phrase:303
+#: DB:link_type/long_link_phrase:495
+msgid "has an official video channel at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:185
+msgid "has an online community page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:350
+msgid "has arrangement"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1094
+msgid "has award ceremony"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:66
+msgid "has business association with"
+msgstr ""
+
+#: DB:link_type/link_phrase:750 DB:link_type/name:750
+msgid "has catalogue"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:735
+msgid "has child"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:78
+msgid "has cover art at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:737
+msgid "has derived instrument"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1096
+msgid "has fusion genres"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:916
+msgid "has hybrids"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:725
+msgid "has imprint"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1097
+msgid "has influences of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:984 DB:link_type/long_link_phrase:211
+msgid "has its history presented at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:93 DB:link_type/long_link_phrase:197
+#: DB:link_type/long_link_phrase:982
+msgid "has lyrics available at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:857
+msgid "has music video"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:316
+msgid "has orchestration"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:739 DB:link_type/long_link_phrase:717
+#: DB:link_type/long_link_phrase:356 DB:link_type/long_link_phrase:281
+msgid "has part"
+msgstr ""
+
+#: DB:link_type/link_phrase:743 DB:link_type/reverse_link_phrase:802
+#: DB:link_type/reverse_link_phrase:742 DB:link_type/reverse_link_phrase:740
+#: DB:link_type/reverse_link_phrase:741 DB:link_type/reverse_link_phrase:996
+#: DB:link_type/long_link_phrase:818
+msgid "has parts"
+msgstr ""
+
+#: DB:link_type/link_phrase:723 DB:link_type/long_link_phrase:723
+msgid "has personal label"
+msgstr ""
+
+#: DB:link_type/link_phrase:724 DB:link_type/long_link_phrase:724
+msgid "has personal publisher"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:808
+msgid "has poster at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:230
+msgid "has remixes"
+msgstr ""
+
+#: DB:link_type/link_phrase:315 DB:link_type/long_link_phrase:315
+msgid "has revision"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:729
+msgid "has show notes at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1095
+msgid "has subgenre"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:823
+msgid "has subseries"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:736
+msgid "has subtype"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:69
+msgid "has {additional} samples taken from"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:110
+msgid "has {half:half-}{step}sibling"
+msgstr ""
+
+#: DB:link_type/link_phrase:794 DB:link_type/name:794 DB:link_type/name:995
+#: DB:link_type/reverse_link_phrase:995
+msgid "held at"
+msgstr ""
+
+#: DB:link_type/link_phrase:793 DB:link_type/reverse_link_phrase:794
+msgid "held events"
+msgstr ""
+
+#: DB:link_type/name:793 DB:link_type/name:1085
+#: DB:link_type/reverse_link_phrase:793 DB:link_type/reverse_link_phrase:1085
+msgid "held in"
+msgstr ""
+
+#: DB:link_type/link_phrase:984 DB:link_type/link_phrase:211
+msgid "history page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:984 DB:link_type/reverse_link_phrase:211
+msgid "history page for"
+msgstr ""
+
+#: DB:link_type/name:984 DB:link_type/name:211
+msgid "history site"
+msgstr ""
+
+#: DB:link_type/link_phrase:708 DB:link_type/link_phrase:709
+#: DB:link_type/long_link_phrase:708 DB:link_type/long_link_phrase:709
+msgid "holds copyright (©) for"
+msgstr ""
+
+#: DB:link_type/link_phrase:867 DB:link_type/link_phrase:711
+#: DB:link_type/link_phrase:710 DB:link_type/link_phrase:869
+#: DB:link_type/long_link_phrase:867 DB:link_type/long_link_phrase:711
+#: DB:link_type/long_link_phrase:710 DB:link_type/long_link_phrase:869
+msgid "holds phonographic copyright (℗) for"
+msgstr ""
+
+#: DB:link_type/name:801
+msgid "host"
+msgstr ""
+
+#: DB:link_type/link_phrase:801 DB:link_type/long_link_phrase:801
+msgid "host at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:801
+msgid "hosts"
+msgstr ""
+
+#: DB:link_type/link_phrase:916 DB:link_type/name:916
+msgid "hybrid of"
+msgstr ""
+
+#: DB:link_type/name:927 DB:link_type/name:1173
+msgid "illustration"
+msgstr ""
+
+#: DB:link_type/description:732 DB:link_type/name:173 DB:link_type/name:396
+#: DB:link_type/name:732
+msgid "image"
+msgstr ""
+
+#: DB:link_type/name:725
+msgid "imprint"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:725
+msgid "imprint of"
+msgstr ""
+
+#: DB:link_type/link_phrase:725
+msgid "imprints"
+msgstr ""
+
+#: DB:link_attribute_type/name:1134
+msgid "improvisation"
+msgstr ""
+
+#: DB:link_type/link_phrase:894 DB:link_type/name:894
+msgid "included in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:894
+msgid "includes"
+msgstr ""
+
+#: DB:link_type/link_phrase:1097 DB:link_type/name:1097
+msgid "influenced by"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1097
+msgid "influenced genres"
+msgstr ""
+
+#: DB:link_type/description:734 DB:link_type/link_phrase:734
+#: DB:link_type/name:734 DB:link_type/reverse_link_phrase:734
+#: DB:link_type/long_link_phrase:734
+msgid "information page"
+msgstr ""
+
+#: DB:link_type/link_phrase:975 DB:link_type/link_phrase:1000
+#: DB:link_type/reverse_link_phrase:973 DB:link_type/reverse_link_phrase:972
+#: DB:link_type/reverse_link_phrase:974
+msgid "inspired the name of"
+msgstr ""
+
+#: DB:link_attribute_type/name:14 DB:link_type/name:44 DB:link_type/name:148
+msgid "instrument"
+msgstr ""
+
+#: DB:link_type/name:41 DB:link_type/name:158 DB:link_type/name:282
+msgid "instrument arranger"
+msgstr ""
+
+#: DB:link_type/name:752
+msgid "instrument origin"
+msgstr ""
+
+#: DB:link_type/name:986 DB:link_type/name:987
+msgid "instrument technician"
+msgstr ""
+
+#: DB:link_attribute_type/name:580
+msgid "instrumental"
+msgstr ""
+
+#: DB:link_type/name:105
+msgid "instrumental supporting musician"
+msgstr ""
+
+#: DB:link_type/link_phrase:752
+msgid "instruments"
+msgstr ""
+
+#: DB:link_type/name:707
+msgid "interview"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:707
+msgid "interview with"
+msgstr ""
+
+#: DB:link_type/link_phrase:707
+msgid "interviews"
+msgstr ""
+
+#: DB:link_type/link_phrase:896 DB:link_type/name:896 DB:link_type/name:918
+#: DB:link_type/reverse_link_phrase:918 DB:link_type/long_link_phrase:896
+msgid "invented"
+msgstr ""
+
+#: DB:link_type/link_phrase:918 DB:link_type/reverse_link_phrase:896
+msgid "invented by"
+msgstr ""
+
+#: DB:link_type/name:112
+msgid "involved with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:227 DB:link_type/long_link_phrase:8
+msgid "is a DJ-mix of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:228
+msgid "is a compilation of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1096
+msgid "is a fusion of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:916
+msgid "is a hybrid of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:17
+msgid "is a live performance of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:10 DB:link_type/long_link_phrase:232
+msgid "is a mash-up of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:239
+msgid "is a medley of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:730
+msgid "is a page in a database for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:802 DB:link_type/long_link_phrase:742
+#: DB:link_type/long_link_phrase:740 DB:link_type/long_link_phrase:741
+#: DB:link_type/long_link_phrase:996
+msgid "is a part of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:6 DB:link_type/long_link_phrase:236
+msgid "is a remaster of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:230 DB:link_type/long_link_phrase:9
+msgid "is a remix of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:11
+msgid "is a single/EP which was taken from"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:728
+msgid "is a tribute to"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:278
+msgid ""
+"is a {live} {medley:medley including a} {partial} {instrumental} {cover} "
+"{karaoke} recording of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:15
+msgid "is a {translated} {parody} cover of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:309
+msgid "is an edit of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:926
+msgid "is associated with"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:314
+msgid "is based on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:925
+msgid "is connected to the educational institution"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:894
+msgid "is included in"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:302 DB:link_type/long_link_phrase:301
+msgid "is licensed under"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:973 DB:link_type/long_link_phrase:972
+#: DB:link_type/long_link_phrase:974
+msgid "is named after"
+msgstr ""
+
+#: DB:link_type/name:108
+msgid "is person"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:738
+msgid "is related to"
+msgstr ""
+
+#: DB:link_type/link_phrase:314 DB:link_type/long_link_phrase:314
+msgid "is the basis for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:238
+msgid "is the earliest release of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:241
+msgid "is the earliest version of {translated} {parody}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:2
+msgid "is the original for the transliterated/translated track listing"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:349
+msgid "is the rights society associated with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:109
+msgid "is the {step}parent of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:722
+msgid "is/was a subgroup of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:104
+msgid "is/was a supporting artist for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:965
+msgid "is/was artistic director for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:203
+msgid "is/was distributing the catalog of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:111
+msgid "is/was married to"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:201
+msgid "is/was reissuing the catalog of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:112
+msgid "is/was romantically involved with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:200
+msgid "is/was the parent label of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:103
+msgid "is/was {additional:an|a} {additional} {original} {eponymous} member of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:305
+msgid ""
+"is/was {assistant:an|a} {assistant} {principal} {guest} conductor {emeritus} "
+"for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1132
+msgid "jazz"
+msgstr ""
+
+#: DB:link_attribute_type/name:1261 DB:link_type/name:226
+msgid "karaoke"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:226
+msgid "karaoke version of"
+msgstr ""
+
+#: DB:link_type/link_phrase:226
+msgid "karaoke versions"
+msgstr ""
+
+#: DB:link_type/name:203
+msgid "label distribution"
+msgstr ""
+
+#: DB:link_type/name:116
+msgid "label founder"
+msgstr ""
+
+#: DB:link_type/name:200
+msgid "label ownership"
+msgstr ""
+
+#: DB:link_type/name:201
+msgid "label reissue"
+msgstr ""
+
+#: DB:link_type/name:202
+msgid "label rename"
+msgstr ""
+
+#: DB:link_type/link_phrase:969 DB:link_type/name:969
+#: DB:link_type/reverse_link_phrase:969
+msgid "lacquer cut"
+msgstr ""
+
+#: DB:link_type/name:968 DB:link_type/reverse_link_phrase:968
+msgid "lacquer cut at"
+msgstr ""
+
+#: DB:link_type/name:967 DB:link_type/reverse_link_phrase:967
+msgid "lacquer cut in"
+msgstr ""
+
+#: DB:link_type/link_phrase:967 DB:link_type/link_phrase:968
+msgid "lacquer cut location for"
+msgstr ""
+
+#: DB:link_type/name:840 DB:link_type/name:837 DB:link_type/name:839
+#: DB:link_type/name:838
+msgid "last.fm"
+msgstr ""
+
+#: DB:link_type/link_phrase:238
+msgid "later releases"
+msgstr ""
+
+#: DB:link_type/link_phrase:241
+msgid "later {translated} {parody} versions"
+msgstr ""
+
+#: DB:link_type/name:796 DB:link_type/name:797
+msgid "launch event"
+msgstr ""
+
+#: DB:link_type/link_phrase:796 DB:link_type/link_phrase:797
+msgid "launch event for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:796 DB:link_type/reverse_link_phrase:797
+msgid "launch events"
+msgstr ""
+
+#: DB:link_attribute_type/name:4
+msgid "lead vocals"
+msgstr ""
+
+#: DB:link_type/link_phrase:142 DB:link_type/name:22 DB:link_type/name:142
+#: DB:link_type/reverse_link_phrase:142
+msgid "legal representation"
+msgstr ""
+
+#: DB:link_attribute_type/name:1135
+msgid "level of studies"
+msgstr ""
+
+#: DB:link_type/name:57 DB:link_type/name:169
+msgid "librettist"
+msgstr ""
+
+#: DB:link_type/name:880
+msgid "libretto written at"
+msgstr ""
+
+#: DB:link_type/name:879
+msgid "libretto written in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:880
+msgid "libretto {additional:additionally} written at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:879
+msgid "libretto {additional:additionally} written in"
+msgstr ""
+
+#: DB:link_type/link_phrase:302 DB:link_type/link_phrase:301
+#: DB:link_type/name:302 DB:link_type/name:939 DB:link_type/name:301
+#: DB:link_type/reverse_link_phrase:939
+msgid "license"
+msgstr ""
+
+#: DB:link_type/link_phrase:939 DB:link_type/reverse_link_phrase:302
+#: DB:link_type/reverse_link_phrase:301
+msgid "license for"
+msgstr ""
+
+#: DB:link_type/link_phrase:712 DB:link_type/link_phrase:1010
+#: DB:link_type/long_link_phrase:712 DB:link_type/long_link_phrase:1010
+msgid "licensed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:712 DB:link_type/reverse_link_phrase:1010
+msgid "licensed from"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:833
+msgid "licensed to"
+msgstr ""
+
+#: DB:link_type/name:833
+msgid "licensee"
+msgstr ""
+
+#: DB:link_type/link_phrase:833
+msgid "licensee for"
+msgstr ""
+
+#: DB:link_type/name:712 DB:link_type/name:1010
+msgid "licensor"
+msgstr ""
+
+#: DB:link_type/name:24
+msgid "liner notes"
+msgstr ""
+
+#: DB:link_attribute_type/name:578
+msgid "live"
+msgstr ""
+
+#: DB:link_type/name:17
+msgid "live performance"
+msgstr ""
+
+#: DB:link_type/link_phrase:17
+msgid "live performance of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:17
+msgid "live performances"
+msgstr ""
+
+#: DB:link_type/link_phrase:995 DB:link_type/link_phrase:1085
+msgid "location for"
+msgstr ""
+
+#: DB:link_type/name:213
+msgid "logo"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:213
+msgid "logo of"
+msgstr ""
+
+#: DB:link_type/link_phrase:213
+msgid "logos"
+msgstr ""
+
+#: DB:link_type/name:1047
+msgid "lyrical quotation"
+msgstr ""
+
+#: DB:link_type/name:56 DB:link_type/name:165
+msgid "lyricist"
+msgstr ""
+
+#: DB:link_type/name:93 DB:link_type/name:271 DB:link_type/name:197
+#: DB:link_type/name:982
+msgid "lyrics"
+msgstr ""
+
+#: DB:link_type/link_phrase:93 DB:link_type/link_phrase:197
+#: DB:link_type/link_phrase:982 DB:link_type/reverse_link_phrase:271
+msgid "lyrics page"
+msgstr ""
+
+#: DB:link_type/link_phrase:271 DB:link_type/reverse_link_phrase:93
+#: DB:link_type/reverse_link_phrase:197 DB:link_type/reverse_link_phrase:982
+msgid "lyrics page for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1047
+msgid "lyrics quoted in"
+msgstr ""
+
+#: DB:link_type/name:878
+msgid "lyrics written at"
+msgstr ""
+
+#: DB:link_type/name:877
+msgid "lyrics written in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:960 DB:link_type/reverse_link_phrase:175
+#: DB:link_type/reverse_link_phrase:79
+msgid "mail-order purchase page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:913
+msgid "mail-order purchase page for the score of"
+msgstr ""
+
+#: DB:link_type/name:798
+msgid "main performer"
+msgstr ""
+
+#: DB:link_type/link_phrase:798
+msgid "main performer at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:798
+msgid "main performers"
+msgstr ""
+
+#: DB:link_type/link_phrase:360 DB:link_type/name:360
+#: DB:link_type/long_link_phrase:360
+msgid "manufactured"
+msgstr ""
+
+#: DB:link_type/name:953 DB:link_type/reverse_link_phrase:953
+msgid "manufactured at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:360
+msgid "manufactured by"
+msgstr ""
+
+#: DB:link_type/name:952 DB:link_type/reverse_link_phrase:952
+msgid "manufactured for"
+msgstr ""
+
+#: DB:link_type/name:835 DB:link_type/reverse_link_phrase:835
+msgid "manufactured in"
+msgstr ""
+
+#: DB:link_type/link_phrase:835 DB:link_type/link_phrase:953
+msgid "manufacturing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:848 DB:link_type/name:848
+#: DB:link_type/long_link_phrase:848
+msgid "marketed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:848
+msgid "marketed by"
+msgstr ""
+
+#: DB:link_type/link_phrase:111 DB:link_type/name:111
+#: DB:link_type/reverse_link_phrase:111
+msgid "married"
+msgstr ""
+
+#: DB:link_type/link_phrase:10 DB:link_type/link_phrase:232
+msgid "mash-up of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:10 DB:link_type/reverse_link_phrase:232
+msgid "mash-ups"
+msgstr ""
+
+#: DB:link_type/name:10 DB:link_type/name:232
+msgid "mashes up"
+msgstr ""
+
+#: DB:link_type/name:697
+msgid "mastered at"
+msgstr ""
+
+#: DB:link_type/name:1183 DB:link_type/reverse_link_phrase:1183
+msgid "mastered for"
+msgstr ""
+
+#: DB:link_type/name:756
+msgid "mastered in"
+msgstr ""
+
+#: DB:link_type/name:136 DB:link_type/name:42
+msgid "mastering"
+msgstr ""
+
+#: DB:link_type/name:704
+msgid "mastering engineer position"
+msgstr ""
+
+#: DB:link_type/link_phrase:704
+msgid "mastering engineer position at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:704
+msgid "mastering engineers"
+msgstr ""
+
+#: DB:link_attribute_type/name:1136
+msgid "master’s degree"
+msgstr ""
+
+#: DB:link_attribute_type/name:1060
+msgid "meane vocals"
+msgstr ""
+
+#: DB:link_attribute_type/name:568
+msgid "medium"
+msgstr ""
+
+#: DB:link_attribute_type/name:570
+msgid "medium 1"
+msgstr ""
+
+#: DB:link_attribute_type/name:569
+msgid "medium 2"
+msgstr ""
+
+#: DB:link_attribute_type/name:571
+msgid "medium 3"
+msgstr ""
+
+#: DB:link_attribute_type/name:577
+msgid "medium 4"
+msgstr ""
+
+#: DB:link_attribute_type/name:576
+msgid "medium 5"
+msgstr ""
+
+#: DB:link_attribute_type/name:575
+msgid "medium 6"
+msgstr ""
+
+#: DB:link_attribute_type/name:574
+msgid "medium 7"
+msgstr ""
+
+#: DB:link_attribute_type/name:573
+msgid "medium 8"
+msgstr ""
+
+#: DB:link_attribute_type/name:572
+msgid "medium 9"
+msgstr ""
+
+#: DB:link_attribute_type/name:750 DB:link_type/name:239
+msgid "medley"
+msgstr ""
+
+#: DB:link_type/link_phrase:239
+msgid "medley of"
+msgstr ""
+
+#: DB:link_type/name:103
+msgid "member of band"
+msgstr ""
+
+#: DB:link_attribute_type/description:9 DB:link_attribute_type/name:9
+msgid "mezzo-soprano vocals"
+msgstr ""
+
+#: DB:link_attribute_type/name:2
+msgid "minor"
+msgstr ""
+
+#: DB:link_type/name:162 DB:link_type/name:129 DB:link_type/name:25
+#: DB:link_type/name:998 DB:link_type/name:999
+msgid "misc"
+msgstr ""
+
+#: DB:link_type/link_phrase:162 DB:link_type/link_phrase:129
+#: DB:link_type/link_phrase:25 DB:link_type/link_phrase:998
+#: DB:link_type/link_phrase:999
+msgid "miscellaneous roles"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:162 DB:link_type/reverse_link_phrase:129
+#: DB:link_type/reverse_link_phrase:25 DB:link_type/reverse_link_phrase:998
+#: DB:link_type/reverse_link_phrase:999
+msgid "miscellaneous support"
+msgstr ""
+
+#: DB:link_type/name:26 DB:link_type/name:143
+msgid "mix"
+msgstr ""
+
+#: DB:link_type/name:43 DB:link_type/name:155
+msgid "mix-DJ"
+msgstr ""
+
+#: DB:link_type/name:694 DB:link_type/name:696
+msgid "mixed at"
+msgstr ""
+
+#: DB:link_type/name:946 DB:link_type/name:947
+#: DB:link_type/reverse_link_phrase:946 DB:link_type/reverse_link_phrase:947
+msgid "mixed for"
+msgstr ""
+
+#: DB:link_type/name:757 DB:link_type/name:758
+msgid "mixed in"
+msgstr ""
+
+#: DB:link_type/name:703
+msgid "mixing engineer position"
+msgstr ""
+
+#: DB:link_type/link_phrase:703
+msgid "mixing engineer position at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:703
+msgid "mixing engineers"
+msgstr ""
+
+#: DB:link_attribute_type/name:1031
+msgid "movement"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:958 DB:link_type/long_link_phrase:177
+msgid "music can be downloaded for free at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:959 DB:link_type/long_link_phrase:176
+msgid "music can be purchased for download at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:960 DB:link_type/long_link_phrase:175
+msgid "music can be purchased for mail-order at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:997 DB:link_type/long_link_phrase:194
+msgid "music can be streamed for free at"
+msgstr ""
+
+#: DB:link_attribute_type/name:1202
+msgid "music education"
+msgstr ""
+
+#: DB:link_attribute_type/name:1348
+msgid "music history"
+msgstr ""
+
+#: DB:link_attribute_type/name:1201
+msgid "music production"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1046
+msgid "music quoted in"
+msgstr ""
+
+#: DB:link_attribute_type/name:1222
+msgid "music theory"
+msgstr ""
+
+#: DB:link_attribute_type/name:1203
+msgid "music therapy"
+msgstr ""
+
+#: DB:link_type/name:857
+msgid "music video"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:857
+msgid "music video for"
+msgstr ""
+
+#: DB:link_type/link_phrase:857
+msgid "music videos"
+msgstr ""
+
+#: DB:link_type/name:1046
+msgid "musical quotation"
+msgstr ""
+
+#: DB:link_type/link_phrase:106 DB:link_type/reverse_link_phrase:106
+#: DB:link_type/long_link_phrase:106
+msgid "musical relationship"
+msgstr ""
+
+#: DB:link_type/name:106
+msgid "musical relationships"
+msgstr ""
+
+#: DB:link_attribute_type/name:1221
+msgid "musical theatre"
+msgstr ""
+
+#: DB:link_attribute_type/name:1141
+msgid "musicology"
+msgstr ""
+
+#: DB:link_type/name:215 DB:link_type/name:462 DB:link_type/name:189
+msgid "myspace"
+msgstr ""
+
+#: DB:link_type/link_phrase:973 DB:link_type/link_phrase:972
+#: DB:link_type/link_phrase:974 DB:link_type/name:973 DB:link_type/name:972
+#: DB:link_type/name:975 DB:link_type/name:974 DB:link_type/name:1000
+#: DB:link_type/reverse_link_phrase:975 DB:link_type/reverse_link_phrase:1000
+msgid "named after"
+msgstr ""
+
+#: DB:link_type/link_phrase:935 DB:link_type/name:935
+#: DB:link_type/reverse_link_phrase:935 DB:link_type/long_link_phrase:935
+msgid "non-performing relationships"
+msgstr ""
+
+#: DB:link_attribute_type/name:788 DB:link_attribute_type/name:1032
+msgid "number"
+msgstr ""
+
+#: DB:link_type/name:745 DB:link_type/name:782 DB:link_type/name:183
+#: DB:link_type/name:363 DB:link_type/name:287
+msgid "official homepage"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:745 DB:link_type/reverse_link_phrase:782
+#: DB:link_type/reverse_link_phrase:183 DB:link_type/reverse_link_phrase:219
+#: DB:link_type/reverse_link_phrase:363
+msgid "official homepage for"
+msgstr ""
+
+#: DB:link_type/link_phrase:745 DB:link_type/link_phrase:782
+#: DB:link_type/link_phrase:183 DB:link_type/link_phrase:219
+#: DB:link_type/link_phrase:363
+msgid "official homepages"
+msgstr ""
+
+#: DB:link_type/name:219
+msgid "official site"
+msgstr ""
+
+#: DB:link_type/link_phrase:185
+msgid "online communities"
+msgstr ""
+
+#: DB:link_type/name:185
+msgid "online community"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:185
+msgid "online community page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:841 DB:link_type/link_phrase:221
+#: DB:link_type/link_phrase:660 DB:link_type/name:841 DB:link_type/name:221
+#: DB:link_type/name:660 DB:link_type/reverse_link_phrase:841
+#: DB:link_type/reverse_link_phrase:221 DB:link_type/reverse_link_phrase:660
+#: DB:link_type/long_link_phrase:841 DB:link_type/long_link_phrase:221
+#: DB:link_type/long_link_phrase:660
+msgid "online data"
+msgstr ""
+
+#: DB:link_attribute_type/name:1220
+msgid "opera"
+msgstr ""
+
+#: DB:link_attribute_type/name:1053
+msgid "optional"
+msgstr ""
+
+#: DB:link_type/name:807
+msgid "orchestra"
+msgstr ""
+
+#: DB:link_type/link_phrase:807
+msgid "orchestra at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:150 DB:link_type/long_link_phrase:45
+msgid "orchestra {additional:additionally} performed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:807
+msgid "orchestras"
+msgstr ""
+
+#: DB:link_type/name:316
+msgid "orchestration"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:316
+msgid "orchestration of"
+msgstr ""
+
+#: DB:link_type/link_phrase:316
+msgid "orchestrations"
+msgstr ""
+
+#: DB:link_type/name:40 DB:link_type/name:164 DB:link_type/name:300
+msgid "orchestrator"
+msgstr ""
+
+#: DB:link_type/name:856
+msgid "organist"
+msgstr ""
+
+#: DB:link_attribute_type/name:525
+msgid "original"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:836
+msgid "originally scheduled as"
+msgstr ""
+
+#: DB:link_attribute_type/name:1225 DB:link_attribute_type/name:1128
+msgid "other"
+msgstr ""
+
+#: DB:link_type/link_phrase:1086 DB:link_type/link_phrase:753
+#: DB:link_type/link_phrase:730 DB:link_type/link_phrase:82
+#: DB:link_type/link_phrase:273 DB:link_type/link_phrase:222
+#: DB:link_type/link_phrase:188 DB:link_type/link_phrase:306
+#: DB:link_type/link_phrase:561 DB:link_type/link_phrase:746
+#: DB:link_type/link_phrase:96 DB:link_type/link_phrase:803
+#: DB:link_type/name:1086 DB:link_type/name:753 DB:link_type/name:730
+#: DB:link_type/name:82 DB:link_type/name:273 DB:link_type/name:222
+#: DB:link_type/name:188 DB:link_type/name:306 DB:link_type/name:561
+#: DB:link_type/name:746 DB:link_type/name:96 DB:link_type/name:803
+#: DB:link_type/reverse_link_phrase:1086 DB:link_type/reverse_link_phrase:753
+#: DB:link_type/reverse_link_phrase:730 DB:link_type/reverse_link_phrase:82
+#: DB:link_type/reverse_link_phrase:273 DB:link_type/reverse_link_phrase:222
+#: DB:link_type/reverse_link_phrase:188 DB:link_type/reverse_link_phrase:306
+#: DB:link_type/reverse_link_phrase:561 DB:link_type/reverse_link_phrase:746
+#: DB:link_type/reverse_link_phrase:96 DB:link_type/reverse_link_phrase:803
+msgid "other databases"
+msgstr ""
+
+#: DB:link_type/name:241
+msgid "other version"
+msgstr ""
+
+#: DB:link_type/link_phrase:233 DB:link_type/name:233
+#: DB:link_type/reverse_link_phrase:233 DB:link_type/long_link_phrase:233
+msgid "other versions"
+msgstr ""
+
+#: DB:link_attribute_type/name:461
+msgid "other vocals"
+msgstr ""
+
+#: DB:link_type/name:988 DB:link_type/name:989 DB:link_type/name:991
+#: DB:link_type/reverse_link_phrase:988 DB:link_type/reverse_link_phrase:989
+#: DB:link_type/reverse_link_phrase:991
+msgid "owner"
+msgstr ""
+
+#: DB:link_type/link_phrase:990 DB:link_type/name:990
+#: DB:link_type/reverse_link_phrase:990 DB:link_type/long_link_phrase:990
+msgid "ownership"
+msgstr ""
+
+#: DB:link_type/link_phrase:988 DB:link_type/link_phrase:989
+#: DB:link_type/link_phrase:991 DB:link_type/long_link_phrase:988
+#: DB:link_type/long_link_phrase:989 DB:link_type/long_link_phrase:991
+msgid "owns"
+msgstr ""
+
+#: DB:link_type/name:109
+msgid "parent"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:200
+msgid "parent label"
+msgstr ""
+
+#: DB:link_attribute_type/name:511
+msgid "parody"
+msgstr ""
+
+#: DB:link_type/link_phrase:802 DB:link_type/link_phrase:742
+#: DB:link_type/link_phrase:740 DB:link_type/link_phrase:741
+#: DB:link_type/link_phrase:996 DB:link_type/name:802 DB:link_type/name:356
+#: DB:link_type/name:743 DB:link_type/name:742 DB:link_type/name:740
+#: DB:link_type/name:741 DB:link_type/name:996
+#: DB:link_type/reverse_link_phrase:739 DB:link_type/reverse_link_phrase:818
+#: DB:link_type/reverse_link_phrase:717 DB:link_type/reverse_link_phrase:356
+#: DB:link_type/reverse_link_phrase:281 DB:link_type/reverse_link_phrase:743
+msgid "part of"
+msgstr ""
+
+#: DB:link_attribute_type/name:1033
+msgid "part of collection"
+msgstr ""
+
+#: DB:link_type/name:1
+msgid "part of set"
+msgstr ""
+
+#: DB:link_attribute_type/name:579
+msgid "partial"
+msgstr ""
+
+#: DB:link_type/link_phrase:818 DB:link_type/link_phrase:717
+#: DB:link_type/link_phrase:356 DB:link_type/link_phrase:281
+#: DB:link_type/name:739 DB:link_type/name:818 DB:link_type/name:717
+#: DB:link_type/name:281
+msgid "parts"
+msgstr ""
+
+#: DB:link_type/name:901 DB:link_type/name:900 DB:link_type/name:898
+#: DB:link_type/name:899 DB:link_type/name:897
+msgid "patronage"
+msgstr ""
+
+#: DB:link_type/link_phrase:901 DB:link_type/link_phrase:900
+#: DB:link_type/link_phrase:898 DB:link_type/link_phrase:899
+#: DB:link_type/link_phrase:897
+msgid "patronage page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:901 DB:link_type/reverse_link_phrase:900
+#: DB:link_type/reverse_link_phrase:898 DB:link_type/reverse_link_phrase:899
+#: DB:link_type/reverse_link_phrase:897
+msgid "patronage page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:34 DB:link_type/link_phrase:122
+#: DB:link_type/name:34 DB:link_type/name:122 DB:link_type/name:278
+#: DB:link_type/reverse_link_phrase:34 DB:link_type/reverse_link_phrase:122
+#: DB:link_type/long_link_phrase:34 DB:link_type/long_link_phrase:122
+msgid "performance"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:108
+msgid "performance name of"
+msgstr ""
+
+#: DB:link_type/link_phrase:887 DB:link_type/name:887
+msgid "performance of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:887
+msgid "performed at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:292
+msgid "performed the voice of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:152 DB:link_type/long_link_phrase:53
+msgid "performed {additional} {assistant} chorus master on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:44 DB:link_type/long_link_phrase:148
+msgid "performed {additional} {guest} {solo} {instrument:%|instruments} on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:60 DB:link_type/long_link_phrase:149
+msgid "performed {additional} {guest} {solo} {vocal:%|vocals} on"
+msgstr ""
+
+#: DB:link_type/name:51 DB:link_type/name:156
+msgid "performer"
+msgstr ""
+
+#: DB:link_type/name:150 DB:link_type/name:45
+msgid "performing orchestra"
+msgstr ""
+
+#: DB:link_type/link_phrase:108 DB:link_type/long_link_phrase:108
+msgid "performs as"
+msgstr ""
+
+#: DB:link_type/name:723
+msgid "personal label"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:723
+msgid "personal label for"
+msgstr ""
+
+#: DB:link_type/name:724
+msgid "personal publisher"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:724
+msgid "personal publisher for"
+msgstr ""
+
+#: DB:link_type/link_phrase:113 DB:link_type/name:113
+#: DB:link_type/reverse_link_phrase:113 DB:link_type/long_link_phrase:113
+msgid "personal relationship"
+msgstr ""
+
+#: DB:link_type/name:867 DB:link_type/name:711 DB:link_type/name:710
+#: DB:link_type/name:869
+msgid "phonographic copyright"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:867 DB:link_type/reverse_link_phrase:711
+#: DB:link_type/reverse_link_phrase:710 DB:link_type/reverse_link_phrase:869
+msgid "phonographic copyright (℗) by"
+msgstr ""
+
+#: DB:link_type/name:123 DB:link_type/name:1175 DB:link_type/name:20
+msgid "photography"
+msgstr ""
+
+#: DB:link_type/link_phrase:173 DB:link_type/link_phrase:396
+#: DB:link_type/link_phrase:732
+msgid "picture"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:173 DB:link_type/reverse_link_phrase:396
+#: DB:link_type/reverse_link_phrase:732
+msgid "picture of"
+msgstr ""
+
+#: DB:link_type/link_phrase:915 DB:link_type/name:915
+msgid "podcast feed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:915
+msgid "podcast feed for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1200
+msgid "popular / rock music"
+msgstr ""
+
+#: DB:link_type/link_phrase:808 DB:link_type/name:808
+msgid "poster"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:808
+msgid "poster for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1219
+msgid "postgraduate"
+msgstr ""
+
+#: DB:link_attribute_type/name:1353
+msgid "pre"
+msgstr ""
+
+#: DB:link_type/name:845 DB:link_type/name:716 DB:link_type/name:715
+#: DB:link_type/name:956
+msgid "premiere"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:845 DB:link_type/reverse_link_phrase:716
+msgid "premiered at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:956
+msgid "premiered by"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:715
+msgid "premiered in"
+msgstr ""
+
+#: DB:link_type/link_phrase:845
+msgid "premieres"
+msgstr ""
+
+#: DB:link_type/link_phrase:716 DB:link_type/link_phrase:715
+msgid "premieres hosted"
+msgstr ""
+
+#: DB:link_type/name:1168 DB:link_type/reverse_link_phrase:1168
+msgid "presented"
+msgstr ""
+
+#: DB:link_type/link_phrase:1168
+msgid "presented by"
+msgstr ""
+
+#: DB:link_type/link_phrase:942 DB:link_type/name:942
+#: DB:link_type/long_link_phrase:942
+msgid "pressed"
+msgstr ""
+
+#: DB:link_type/name:941 DB:link_type/reverse_link_phrase:941
+msgid "pressed at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:942
+msgid "pressed by"
+msgstr ""
+
+#: DB:link_type/link_phrase:941
+msgid "pressing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:834 DB:link_type/name:834
+msgid "previous attribution"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1
+msgid "previous disc"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:834
+msgid "previously attributed to"
+msgstr ""
+
+#: DB:link_type/link_phrase:714 DB:link_type/name:714
+msgid "primary concert venue"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:714
+msgid "primary concert venue of"
+msgstr ""
+
+#: DB:link_attribute_type/name:618
+msgid "principal"
+msgstr ""
+
+#: DB:link_type/link_phrase:985 DB:link_type/name:985
+#: DB:link_type/long_link_phrase:985
+msgid "printed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:985
+msgid "printed by"
+msgstr ""
+
+#: DB:link_type/name:849 DB:link_type/reverse_link_phrase:849
+msgid "printed in"
+msgstr ""
+
+#: DB:link_type/link_phrase:849
+msgid "printing location for"
+msgstr ""
+
+#: DB:link_type/name:825 DB:link_type/name:824
+msgid "produced at"
+msgstr ""
+
+#: DB:link_type/name:951 DB:link_type/name:950
+msgid "produced for"
+msgstr ""
+
+#: DB:link_type/name:827 DB:link_type/name:826
+msgid "produced in"
+msgstr ""
+
+#: DB:link_type/link_phrase:154 DB:link_type/link_phrase:49
+msgid "produced material that was {additional:additionally} sampled in"
+msgstr ""
+
+#: DB:link_type/name:141 DB:link_type/name:30
+msgid "producer"
+msgstr ""
+
+#: DB:link_type/link_phrase:117 DB:link_type/name:117
+msgid "producer position"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:117
+msgid "producers"
+msgstr ""
+
+#: DB:link_type/link_phrase:256 DB:link_type/link_phrase:160
+#: DB:link_type/link_phrase:59 DB:link_type/link_phrase:72
+#: DB:link_type/name:256 DB:link_type/name:160 DB:link_type/name:59
+#: DB:link_type/name:72 DB:link_type/reverse_link_phrase:256
+#: DB:link_type/reverse_link_phrase:160 DB:link_type/reverse_link_phrase:59
+#: DB:link_type/reverse_link_phrase:72 DB:link_type/long_link_phrase:256
+#: DB:link_type/long_link_phrase:160 DB:link_type/long_link_phrase:59
+#: DB:link_type/long_link_phrase:72
+msgid "production"
+msgstr ""
+
+#: DB:link_type/name:37 DB:link_type/name:132
+msgid "programming"
+msgstr ""
+
+#: DB:link_type/link_phrase:359 DB:link_type/name:359
+#: DB:link_type/long_link_phrase:359
+msgid "promoted"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:359
+msgid "promoted by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:135 DB:link_type/long_link_phrase:62
+msgid "provided artist & repertoire support for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:23 DB:link_type/long_link_phrase:134
+msgid "provided booking for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:142
+msgid "provided legal representation for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
+msgid "provided {additional} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:993 DB:link_type/long_link_phrase:1170
+msgid "provided {additional} artwork on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:63 DB:link_type/long_link_phrase:146
+msgid "provided {additional} creative direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1171
+msgid "provided {additional} design on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:19 DB:link_type/long_link_phrase:130
+msgid "provided {additional} design/illustration on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1172 DB:link_type/long_link_phrase:125
+#: DB:link_type/long_link_phrase:27
+msgid "provided {additional} graphic design on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:927 DB:link_type/long_link_phrase:1173
+msgid "provided {additional} illustration on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:22
+msgid "provided {additional} legal representation for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
+#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
+#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
+#: DB:link_type/long_link_phrase:127
+msgid "published"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:206 DB:link_type/reverse_link_phrase:127
+msgid "publisher"
+msgstr ""
+
+#: DB:link_type/link_phrase:933 DB:link_type/name:933
+#: DB:link_type/long_link_phrase:933
+msgid "publishes series"
+msgstr ""
+
+#: DB:link_type/name:206 DB:link_type/name:127 DB:link_type/name:161
+#: DB:link_type/name:66 DB:link_type/name:208 DB:link_type/name:32
+msgid "publishing"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:933
+msgid "publishing label"
+msgstr ""
+
+#: DB:link_type/link_phrase:254 DB:link_type/link_phrase:74
+#: DB:link_type/name:912 DB:link_type/name:959 DB:link_type/name:254
+#: DB:link_type/name:74 DB:link_type/name:176
+msgid "purchase for download"
+msgstr ""
+
+#: DB:link_type/link_phrase:79 DB:link_type/name:960 DB:link_type/name:175
+#: DB:link_type/name:79 DB:link_type/name:913
+msgid "purchase for mail-order"
+msgstr ""
+
+#: DB:link_type/link_phrase:959 DB:link_type/link_phrase:176
+msgid "purchase music for download"
+msgstr ""
+
+#: DB:link_type/link_phrase:960 DB:link_type/link_phrase:175
+msgid "purchase music for mail-order"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:912
+msgid "purchase score for download"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:913
+msgid "purchase score for mail-order"
+msgstr ""
+
+#: DB:link_type/name:174
+msgid "purevolume"
+msgstr ""
+
+#: DB:link_type/link_phrase:1047 DB:link_type/long_link_phrase:1047
+msgid "quotes lyrics from"
+msgstr ""
+
+#: DB:link_type/link_phrase:1046 DB:link_type/long_link_phrase:1046
+msgid "quotes music from"
+msgstr ""
+
+#: DB:link_attribute_type/name:952
+msgid "re"
+msgstr ""
+
+#: DB:link_type/link_phrase:917 DB:link_type/long_link_phrase:917
+msgid "reconstructed"
+msgstr ""
+
+#: DB:link_type/name:917 DB:link_type/reverse_link_phrase:917
+msgid "reconstructed by"
+msgstr ""
+
+#: DB:link_type/name:809 DB:link_type/name:810 DB:link_type/name:693
+#: DB:link_type/name:695 DB:link_type/reverse_link_phrase:809
+#: DB:link_type/reverse_link_phrase:810
+msgid "recorded at"
+msgstr ""
+
+#: DB:link_type/link_phrase:1006 DB:link_type/link_phrase:1007
+#: DB:link_type/link_phrase:1008 DB:link_type/name:1006 DB:link_type/name:1007
+#: DB:link_type/name:1008
+msgid "recorded during"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1011 DB:link_type/long_link_phrase:1012
+msgid "recorded field recordings for"
+msgstr ""
+
+#: DB:link_type/name:698 DB:link_type/name:699
+msgid "recorded in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1008
+msgid "recorded music series"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1006
+msgid "recorded recordings"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1007
+msgid "recorded release groups"
+msgstr ""
+
+#: DB:link_type/name:36 DB:link_type/name:128
+msgid "recording"
+msgstr ""
+
+#: DB:link_type/name:121
+msgid "recording contract"
+msgstr ""
+
+#: DB:link_type/name:702
+msgid "recording engineer position"
+msgstr ""
+
+#: DB:link_type/link_phrase:702
+msgid "recording engineer position at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:702
+msgid "recording engineers"
+msgstr ""
+
+#: DB:link_type/link_phrase:809 DB:link_type/link_phrase:810
+msgid "recording location for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:239
+msgid "referred to in medleys"
+msgstr ""
+
+#: DB:link_type/link_phrase:201
+msgid "reissuing the catalog of"
+msgstr ""
+
+#: DB:link_type/link_phrase:738 DB:link_type/reverse_link_phrase:738
+msgid "related instruments"
+msgstr ""
+
+#: DB:link_type/name:738
+msgid "related to"
+msgstr ""
+
+#: DB:link_type/link_phrase:3
+msgid "released in support of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:943
+msgid "relocated from"
+msgstr ""
+
+#: DB:link_type/link_phrase:943 DB:link_type/name:943
+#: DB:link_type/long_link_phrase:943
+msgid "relocated to"
+msgstr ""
+
+#: DB:link_type/name:6 DB:link_type/name:236
+msgid "remaster"
+msgstr ""
+
+#: DB:link_type/link_phrase:6 DB:link_type/link_phrase:236
+msgid "remaster of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:6
+msgid "remastered versions"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:236
+msgid "remasters"
+msgstr ""
+
+#: DB:link_type/name:230 DB:link_type/name:9
+msgid "remix"
+msgstr ""
+
+#: DB:link_type/link_phrase:230 DB:link_type/link_phrase:9
+msgid "remix of"
+msgstr ""
+
+#: DB:link_type/name:829 DB:link_type/name:828
+msgid "remixed at"
+msgstr ""
+
+#: DB:link_type/name:1178 DB:link_type/reverse_link_phrase:1178
+msgid "remixed for"
+msgstr ""
+
+#: DB:link_type/name:831 DB:link_type/name:830
+msgid "remixed in"
+msgstr ""
+
+#: DB:link_type/name:153 DB:link_type/name:47
+msgid "remixer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:9
+msgid "remixes"
+msgstr ""
+
+#: DB:link_type/link_phrase:50 DB:link_type/link_phrase:157
+#: DB:link_type/link_phrase:13 DB:link_type/link_phrase:234
+#: DB:link_type/name:50 DB:link_type/name:157 DB:link_type/name:13
+#: DB:link_type/name:234 DB:link_type/reverse_link_phrase:50
+#: DB:link_type/reverse_link_phrase:157 DB:link_type/reverse_link_phrase:13
+#: DB:link_type/reverse_link_phrase:234 DB:link_type/long_link_phrase:50
+#: DB:link_type/long_link_phrase:157 DB:link_type/long_link_phrase:13
+#: DB:link_type/long_link_phrase:234
+msgid "remixes and compilations"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:202 DB:link_type/reverse_link_phrase:1079
+msgid "renamed from"
+msgstr ""
+
+#: DB:link_type/link_phrase:202 DB:link_type/link_phrase:1079
+msgid "renamed into"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1009
+msgid "replaced"
+msgstr ""
+
+#: DB:link_type/link_phrase:1009 DB:link_type/name:1009
+msgid "replaced by"
+msgstr ""
+
+#: DB:link_type/link_phrase:836 DB:link_type/name:836
+msgid "rescheduled as"
+msgstr ""
+
+#: DB:link_type/link_phrase:1164 DB:link_type/name:1164
+#: DB:link_type/reverse_link_phrase:1164 DB:link_type/long_link_phrase:1164
+msgid "residence position"
+msgstr ""
+
+#: DB:link_type/link_phrase:994
+msgid "residencies"
+msgstr ""
+
+#: DB:link_type/name:994
+msgid "residency"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:994
+msgid "residency by"
+msgstr ""
+
+#: DB:link_type/name:842 DB:link_type/name:94
+msgid "review"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:842 DB:link_type/reverse_link_phrase:94
+msgid "review page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:842 DB:link_type/link_phrase:94
+msgid "reviews"
+msgstr ""
+
+#: DB:link_type/link_phrase:844 DB:link_type/long_link_phrase:844
+msgid "revised"
+msgstr ""
+
+#: DB:link_type/name:882 DB:link_type/reverse_link_phrase:882
+msgid "revised at"
+msgstr ""
+
+#: DB:link_type/name:844 DB:link_type/reverse_link_phrase:844
+msgid "revised by"
+msgstr ""
+
+#: DB:link_type/name:881 DB:link_type/reverse_link_phrase:881
+msgid "revised in"
+msgstr ""
+
+#: DB:link_type/link_phrase:881 DB:link_type/link_phrase:882
+msgid "revising location for"
+msgstr ""
+
+#: DB:link_type/name:315 DB:link_type/reverse_link_phrase:315
+msgid "revision of"
+msgstr ""
+
+#: DB:link_type/name:349 DB:link_type/reverse_link_phrase:349
+msgid "rights society"
+msgstr ""
+
+#: DB:link_type/link_phrase:349
+msgid "rights society associated with"
+msgstr ""
+
+#: DB:link_type/link_phrase:112 DB:link_type/reverse_link_phrase:112
+msgid "romantically involved with"
+msgstr ""
+
+#: DB:link_type/link_phrase:83 DB:link_type/link_phrase:258
+msgid "samples IMDb entry"
+msgstr ""
+
+#: DB:link_type/name:154 DB:link_type/name:49
+msgid "samples from artist"
+msgstr ""
+
+#: DB:link_type/name:69 DB:link_type/name:231
+msgid "samples material"
+msgstr ""
+
+#: DB:link_type/link_phrase:1083 DB:link_type/name:1083
+msgid "schedule"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1083
+msgid "schedule for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1166 DB:link_type/name:1166
+msgid "school director at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1166
+msgid "school directors"
+msgstr ""
+
+#: DB:link_type/name:308 DB:link_type/name:976 DB:link_type/name:977
+#: DB:link_type/name:307 DB:link_type/name:280
+msgid "secondhandsongs"
+msgstr ""
+
+#: DB:link_type/link_phrase:811 DB:link_type/link_phrase:816
+#: DB:link_type/link_phrase:817 DB:link_type/link_phrase:938
+msgid "setlist.fm"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:811 DB:link_type/reverse_link_phrase:816
+#: DB:link_type/reverse_link_phrase:817 DB:link_type/reverse_link_phrase:938
+msgid "setlist.fm page for"
+msgstr ""
+
+#: DB:link_type/name:811 DB:link_type/name:816 DB:link_type/name:817
+#: DB:link_type/name:938
+msgid "setlistfm"
+msgstr ""
+
+#: DB:link_type/link_phrase:729 DB:link_type/name:729
+msgid "show notes"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:729
+msgid "show notes for"
+msgstr ""
+
+#: DB:link_type/name:110
+msgid "sibling"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:121
+msgid "signed"
+msgstr ""
+
+#: DB:link_type/link_phrase:121
+msgid "signed by"
+msgstr ""
+
+#: DB:link_attribute_type/name:1199
+msgid "singing"
+msgstr ""
+
+#: DB:link_type/name:11
+msgid "single from"
+msgstr ""
+
+#: DB:link_type/link_phrase:11
+msgid "single/EP which was taken from"
+msgstr ""
+
+#: DB:link_type/name:784 DB:link_type/name:783 DB:link_type/name:218
+#: DB:link_type/name:429 DB:link_type/name:192
+msgid "social network"
+msgstr ""
+
+#: DB:link_type/link_phrase:784 DB:link_type/link_phrase:783
+#: DB:link_type/link_phrase:218 DB:link_type/link_phrase:429
+#: DB:link_type/link_phrase:192
+msgid "social networking"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:784 DB:link_type/reverse_link_phrase:783
+#: DB:link_type/reverse_link_phrase:218 DB:link_type/reverse_link_phrase:429
+#: DB:link_type/reverse_link_phrase:192
+msgid "social networking page for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1351
+msgid "solfeggio"
+msgstr ""
+
+#: DB:link_attribute_type/name:596
+msgid "solo"
+msgstr ""
+
+#: DB:link_type/name:289
+msgid "songfacts"
+msgstr ""
+
+#: DB:link_type/name:786 DB:link_type/name:785 DB:link_type/name:787
+msgid "songkick"
+msgstr ""
+
+#: DB:link_attribute_type/description:10 DB:link_attribute_type/name:10
+msgid "soprano vocals"
+msgstr ""
+
+#: DB:link_type/name:133 DB:link_type/name:29
+msgid "sound"
+msgstr ""
+
+#: DB:link_type/name:870 DB:link_type/name:291 DB:link_type/name:290
+#: DB:link_type/name:940
+msgid "soundcloud"
+msgstr ""
+
+#: DB:link_attribute_type/name:561
+msgid "spoken vocals"
+msgstr ""
+
+#: DB:link_type/link_phrase:287
+msgid "standalone website"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:287
+msgid "standalone website for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1020
+msgid "step"
+msgstr ""
+
+#: DB:link_type/link_phrase:997 DB:link_type/link_phrase:194
+msgid "stream for free"
+msgstr ""
+
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
+msgid "stream {video} for free"
+msgstr ""
+
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
+msgid "streaming"
+msgstr ""
+
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
+msgid "streaming page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
+msgid "streaming page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:847 DB:link_type/reverse_link_phrase:923
+msgid "students"
+msgstr ""
+
+#: DB:link_type/link_phrase:923 DB:link_type/name:923
+#: DB:link_type/long_link_phrase:923
+msgid "studied at"
+msgstr ""
+
+#: DB:link_attribute_type/name:1310
+msgid "sub"
+msgstr ""
+
+#: DB:link_type/name:1095
+msgid "subgenre"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1095
+msgid "subgenre of"
+msgstr ""
+
+#: DB:link_type/link_phrase:1095
+msgid "subgenres"
+msgstr ""
+
+#: DB:link_type/name:722
+msgid "subgroup"
+msgstr ""
+
+#: DB:link_type/link_phrase:722
+msgid "subgroup of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:722
+msgid "subgroups"
+msgstr ""
+
+#: DB:link_attribute_type/name:1125
+msgid "subject"
+msgstr ""
+
+#: DB:link_type/link_phrase:823 DB:link_type/name:823
+msgid "subseries"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:823
+msgid "subseries of"
+msgstr ""
+
+#: DB:link_type/link_phrase:200
+msgid "subsidiaries"
+msgstr ""
+
+#: DB:link_type/name:736
+msgid "subtype"
+msgstr ""
+
+#: DB:link_type/link_phrase:736
+msgid "subtypes"
+msgstr ""
+
+#: DB:link_type/name:799
+msgid "support act"
+msgstr ""
+
+#: DB:link_type/link_phrase:799
+msgid "support act at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:799
+msgid "support acts"
+msgstr ""
+
+#: DB:link_type/name:932 DB:link_type/reverse_link_phrase:932
+msgid "supporting DJ"
+msgstr ""
+
+#: DB:link_type/link_phrase:932
+msgid "supporting DJ at"
+msgstr ""
+
+#: DB:link_type/link_phrase:104
+msgid "supporting artist for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:104
+msgid "supporting artists"
+msgstr ""
+
+#: DB:link_type/name:104
+msgid "supporting musician"
+msgstr ""
+
+#: DB:link_type/name:3
+msgid "supporting release"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:3
+msgid "supporting releases"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:105
+msgid "supporting {instrument} by"
+msgstr ""
+
+#: DB:link_type/link_phrase:105
+msgid "supporting {instrument} for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1150
+msgid "task"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:847
+msgid "taught"
+msgstr ""
+
+#: DB:link_type/link_phrase:893 DB:link_type/link_phrase:924
+#: DB:link_type/name:924 DB:link_type/long_link_phrase:893
+#: DB:link_type/long_link_phrase:924
+msgid "taught at"
+msgstr ""
+
+#: DB:link_type/name:847 DB:link_type/name:893
+msgid "teacher"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:847 DB:link_type/reverse_link_phrase:893
+msgid "teachers"
+msgstr ""
+
+#: DB:link_attribute_type/description:11 DB:link_attribute_type/name:11
+msgid "tenor vocals"
+msgstr ""
+
+#: DB:link_type/name:1193 DB:link_type/name:1194 DB:link_type/name:1195
+#: DB:link_type/name:1196 DB:link_type/name:1197
+msgid "ticketing"
+msgstr ""
+
+#: DB:link_type/link_phrase:1193 DB:link_type/link_phrase:1194
+#: DB:link_type/link_phrase:1195 DB:link_type/link_phrase:1196
+#: DB:link_type/link_phrase:1197
+msgid "ticketing page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1193 DB:link_type/reverse_link_phrase:1194
+#: DB:link_type/reverse_link_phrase:1195 DB:link_type/reverse_link_phrase:1196
+#: DB:link_type/reverse_link_phrase:1197
+msgid "ticketing page for"
+msgstr ""
+
+#: DB:link_attribute_type/name:830
+msgid "time"
+msgstr ""
+
+#: DB:link_type/name:859
+msgid "tour"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:859
+msgid "tour by"
+msgstr ""
+
+#: DB:link_type/name:888
+msgid "tour in support of"
+msgstr ""
+
+#: DB:link_type/link_phrase:859
+msgid "tours"
+msgstr ""
+
+#: DB:link_type/name:1179
+msgid "transfer"
+msgstr ""
+
+#: DB:link_type/name:1182
+msgid "transferred at"
+msgstr ""
+
+#: DB:link_type/name:1181
+msgid "transferred in"
+msgstr ""
+
+#: DB:link_type/name:2
+msgid "transl-tracklisting"
+msgstr ""
+
+#: DB:link_attribute_type/name:517 DB:link_type/link_phrase:871
+msgid "translated"
+msgstr ""
+
+#: DB:link_type/name:883 DB:link_type/reverse_link_phrase:883
+msgid "translated at"
+msgstr ""
+
+#: DB:link_type/name:884
+msgid "translated in"
+msgstr ""
+
+#: DB:link_type/name:1082
+msgid "translated version"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1082
+msgid "translated version of"
+msgstr ""
+
+#: DB:link_type/link_phrase:1082
+msgid "translated versions"
+msgstr ""
+
+#: DB:link_attribute_type/name:1018 DB:link_type/name:871 DB:link_type/name:872
+msgid "translator"
+msgstr ""
+
+#: DB:link_attribute_type/name:477
+msgid "transliterated"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:2
+msgid "transliterated/translated track listing of"
+msgstr ""
+
+#: DB:link_type/link_phrase:2
+msgid "transliterated/translated track listings"
+msgstr ""
+
+#: DB:link_attribute_type/name:834
+msgid "treble vocals"
+msgstr ""
+
+#: DB:link_type/name:728 DB:link_type/name:65 DB:link_type/name:970
+msgid "tribute"
+msgstr ""
+
+#: DB:link_type/link_phrase:65 DB:link_type/link_phrase:970
+msgid "tribute albums"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:728
+msgid "tribute artists"
+msgstr ""
+
+#: DB:link_type/link_phrase:936
+msgid "tribute events"
+msgstr ""
+
+#: DB:link_type/link_phrase:728 DB:link_type/name:936
+#: DB:link_type/reverse_link_phrase:936 DB:link_type/reverse_link_phrase:65
+#: DB:link_type/reverse_link_phrase:970
+msgid "tribute to"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:736
+msgid "type of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1090
+msgid "used in"
+msgstr ""
+
+#: DB:link_type/link_phrase:1090
+msgid "used instruments"
+msgstr ""
+
+#: DB:link_type/name:86 DB:link_type/name:191 DB:link_type/name:210
+#: DB:link_type/name:788 DB:link_type/name:992 DB:link_type/name:1013
+msgid "vgmdb"
+msgstr ""
+
+#: DB:link_attribute_type/name:582 DB:link_type/link_phrase:1184
+#: DB:link_type/link_phrase:961 DB:link_type/name:1184 DB:link_type/name:961
+#: DB:link_type/reverse_link_phrase:1184 DB:link_type/reverse_link_phrase:961
+#: DB:link_type/long_link_phrase:1184 DB:link_type/long_link_phrase:961
+msgid "video"
+msgstr ""
+
+#: DB:link_type/name:858
+msgid "video appearance"
+msgstr ""
+
+#: DB:link_type/link_phrase:804 DB:link_type/link_phrase:304
+#: DB:link_type/link_phrase:805 DB:link_type/link_phrase:303
+#: DB:link_type/link_phrase:495 DB:link_type/name:804 DB:link_type/name:304
+#: DB:link_type/name:805 DB:link_type/name:303 DB:link_type/name:495
+msgid "video channel"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:804 DB:link_type/reverse_link_phrase:304
+#: DB:link_type/reverse_link_phrase:805 DB:link_type/reverse_link_phrase:303
+#: DB:link_type/reverse_link_phrase:495
+msgid "video channel for"
+msgstr ""
+
+#: DB:link_type/name:962 DB:link_type/name:1185
+msgid "video director"
+msgstr ""
+
+#: DB:link_type/name:963 DB:link_type/name:966
+msgid "video shot at"
+msgstr ""
+
+#: DB:link_type/name:964
+msgid "video shot in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:858
+msgid "visual appearances"
+msgstr ""
+
+#: DB:link_attribute_type/name:3 DB:link_type/name:60 DB:link_type/name:149
+msgid "vocal"
+msgstr ""
+
+#: DB:link_type/name:296 DB:link_type/name:298 DB:link_type/name:294
+msgid "vocal arranger"
+msgstr ""
+
+#: DB:link_type/name:107
+msgid "vocal supporting musician"
+msgstr ""
+
+#: DB:link_type/name:292
+msgid "voice actor"
+msgstr ""
+
+#: DB:link_type/link_phrase:292
+msgid "voice of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:292
+msgid "voiced by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1163
+msgid "was a VJ at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:937 DB:link_type/long_link_phrase:855
+msgid "was a composer-in-residence at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:806
+msgid "was a conductor at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:796 DB:link_type/long_link_phrase:797
+msgid "was a launch event for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:798
+msgid "was a main performer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:887
+msgid "was a performance of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1166
+msgid "was a school director at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:799
+msgid "was a support act at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:932
+msgid "was a supporting DJ at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1084
+msgid "was an engineer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:807
+msgid "was an orchestra at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:890 DB:link_type/reverse_link_phrase:889
+#: DB:link_type/reverse_link_phrase:892 DB:link_type/reverse_link_phrase:891
+msgid "was commissioned by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:794
+msgid "was held at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1006 DB:link_type/long_link_phrase:1007
+msgid "was recorded during"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:3
+msgid "was released in support of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:202 DB:link_type/long_link_phrase:1079
+msgid "was renamed into"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1009
+msgid "was replaced by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:836
+msgid "was rescheduled as"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:760 DB:link_type/long_link_phrase:759
+msgid "was the {guest} concertmaster for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:986 DB:link_type/long_link_phrase:987
+msgid "was the {instrument:%|instruments} technician for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:36 DB:link_type/long_link_phrase:128
+msgid "was {additional} {assistant} {associate} {co:co-}recording engineer for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1186 DB:link_type/long_link_phrase:1187
+msgid "was {assistant} audio director for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1165
+msgid "was {assistant} carillonneur at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:856
+msgid "was {assistant} organist at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:962 DB:link_type/long_link_phrase:1185
+msgid "was {assistant} video director for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1151
+msgid "whistling"
+msgstr ""
+
+#: DB:link_type/name:1087 DB:link_type/name:351 DB:link_type/name:353
+#: DB:link_type/name:749 DB:link_type/name:594 DB:link_type/name:354
+#: DB:link_type/name:790 DB:link_type/name:352 DB:link_type/name:733
+#: DB:link_type/name:358
+msgid "wikidata"
+msgstr ""
+
+#: DB:link_type/name:179 DB:link_type/name:595 DB:link_type/name:355
+#: DB:link_type/name:744 DB:link_type/name:279 DB:link_type/name:216
+#: DB:link_type/name:731 DB:link_type/name:89 DB:link_type/name:789
+msgid "wikipedia"
+msgstr ""
+
+#: DB:link_attribute_type/name:1346
+msgid "wind/brass conducting"
+msgstr ""
+
+#: DB:link_type/link_phrase:1002 DB:link_type/name:1002
+#: DB:link_type/reverse_link_phrase:1002 DB:link_type/long_link_phrase:1002
+msgid "work cataloguing"
+msgstr ""
+
+#: DB:link_type/name:921 DB:link_type/reverse_link_phrase:921
+msgid "work list entry"
+msgstr ""
+
+#: DB:link_type/link_phrase:921
+msgid "work list entry for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:704
+msgid "works as a mastering engineer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:703
+msgid "works as a mixing engineer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:702
+msgid "works as a recording engineer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:701
+msgid "works as an engineer at"
+msgstr ""
+
+#: DB:link_type/link_phrase:956
+msgid "works premiered"
+msgstr ""
+
+#: DB:link_type/name:54 DB:link_type/name:167
+msgid "writer"
+msgstr ""
+
+#: DB:link_type/name:874
+msgid "written at"
+msgstr ""
+
+#: DB:link_type/name:873
+msgid "written in"
+msgstr ""
+
+#: DB:link_type/name:791 DB:link_type/name:792 DB:link_type/name:193
+#: DB:link_type/name:225 DB:link_type/name:528
+msgid "youtube"
+msgstr ""
+
+#: DB:link_type/name:1080
+msgid "youtube music"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:886
+msgid "{additional:additionally} arranged at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:885
+msgid "{additional:additionally} arranged in"
+msgstr ""
+
+#: DB:link_type/link_phrase:55 DB:link_type/link_phrase:168
+#: DB:link_type/long_link_phrase:55 DB:link_type/long_link_phrase:168
+msgid "{additional:additionally} composed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:876
+msgid "{additional:additionally} composed at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:875
+msgid "{additional:additionally} composed in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:819 DB:link_type/reverse_link_phrase:820
+msgid "{additional:additionally} edited at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:822 DB:link_type/reverse_link_phrase:821
+msgid "{additional:additionally} edited in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:813 DB:link_type/reverse_link_phrase:812
+msgid "{additional:additionally} engineered at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:814 DB:link_type/reverse_link_phrase:815
+msgid "{additional:additionally} engineered in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:694 DB:link_type/reverse_link_phrase:696
+msgid "{additional:additionally} mixed at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:757 DB:link_type/reverse_link_phrase:758
+msgid "{additional:additionally} mixed in"
+msgstr ""
+
+#: DB:link_type/link_phrase:40 DB:link_type/link_phrase:164
+#: DB:link_type/link_phrase:300 DB:link_type/long_link_phrase:40
+#: DB:link_type/long_link_phrase:164 DB:link_type/long_link_phrase:300
+msgid "{additional:additionally} orchestrated"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:40
+msgid "{additional:additionally} orchestrator"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:825 DB:link_type/reverse_link_phrase:824
+msgid "{additional:additionally} produced at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:827 DB:link_type/reverse_link_phrase:826
+msgid "{additional:additionally} produced in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:693 DB:link_type/reverse_link_phrase:695
+msgid "{additional:additionally} recorded at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:698 DB:link_type/reverse_link_phrase:699
+msgid "{additional:additionally} recorded in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:829 DB:link_type/reverse_link_phrase:828
+msgid "{additional:additionally} remixed at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:831 DB:link_type/reverse_link_phrase:830
+msgid "{additional:additionally} remixed in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:69 DB:link_type/reverse_link_phrase:231
+msgid "{additional:additionally} sampled by"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:963 DB:link_type/reverse_link_phrase:966
+msgid "{additional:additionally} shot at"
+msgstr ""
+
+#: DB:link_type/link_phrase:966
+msgid "{additional:additionally} shot for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:964
+msgid "{additional:additionally} shot in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1182
+msgid "{additional:additionally} transferred at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1181
+msgid "{additional:additionally} transferred in"
+msgstr ""
+
+#: DB:link_type/link_phrase:872 DB:link_type/long_link_phrase:871
+#: DB:link_type/long_link_phrase:872
+msgid "{additional:additionally} translated"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:884
+msgid "{additional:additionally} translated in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:874
+msgid "{additional:additionally} written at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:873
+msgid "{additional:additionally} written in"
+msgstr ""
+
+#: DB:link_type/link_phrase:54 DB:link_type/link_phrase:167
+#: DB:link_type/long_link_phrase:54 DB:link_type/long_link_phrase:167
+msgid "{additional:additionally} wrote"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:57 DB:link_type/long_link_phrase:169
+msgid "{additional:additionally} wrote the libretto for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:56 DB:link_type/long_link_phrase:165
+msgid "{additional:additionally} wrote the lyrics for"
+msgstr ""
+
+#: DB:link_type/link_phrase:46 DB:link_type/link_phrase:151
+#: DB:link_type/long_link_phrase:46 DB:link_type/long_link_phrase:151
+msgid "{additional:additionally} {assistant} conducted"
+msgstr ""
+
+#: DB:link_type/link_phrase:153 DB:link_type/link_phrase:47
+#: DB:link_type/long_link_phrase:153 DB:link_type/long_link_phrase:47
+msgid "{additional:additionally} {assistant} remixed"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:37 DB:link_type/long_link_phrase:132
+msgid ""
+"{additional:additionally} {assistant} {associate} programmed {instrument:% "
+"on}"
+msgstr ""
+
+#: DB:link_type/link_phrase:140 DB:link_type/link_phrase:31
+#: DB:link_type/long_link_phrase:140 DB:link_type/long_link_phrase:31
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}audio engineered"
+msgstr ""
+
+#: DB:link_type/link_phrase:727 DB:link_type/link_phrase:726
+#: DB:link_type/long_link_phrase:727 DB:link_type/long_link_phrase:726
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}balance engineered"
+msgstr ""
+
+#: DB:link_type/link_phrase:144 DB:link_type/link_phrase:38
+#: DB:link_type/long_link_phrase:144 DB:link_type/long_link_phrase:38
+msgid "{additional:additionally} {assistant} {associate} {co:co-}edited"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:136
+msgid "{additional:additionally} {assistant} {associate} {co:co-}mastered"
+msgstr ""
+
+#: DB:link_type/link_phrase:26 DB:link_type/link_phrase:143
+#: DB:link_type/long_link_phrase:26 DB:link_type/long_link_phrase:143
+msgid "{additional:additionally} {assistant} {associate} {co:co-}mixed"
+msgstr ""
+
+#: DB:link_type/link_phrase:133 DB:link_type/link_phrase:29
+#: DB:link_type/long_link_phrase:133 DB:link_type/long_link_phrase:29
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}sound engineered"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1179
+msgid "{additional:additionally} {assistant} {associate} {co:co-}transferred"
+msgstr ""
+
+#: DB:link_type/link_phrase:28 DB:link_type/link_phrase:138
+#: DB:link_type/long_link_phrase:28 DB:link_type/long_link_phrase:138
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}{executive:"
+"executive }engineered"
+msgstr ""
+
+#: DB:link_type/link_phrase:141 DB:link_type/link_phrase:30
+#: DB:link_type/long_link_phrase:141 DB:link_type/long_link_phrase:30
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}{executive:"
+"executive }produced"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:42
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}{pre:pre-}{re}"
+"mastered"
+msgstr ""
+
+#: DB:link_type/link_phrase:295 DB:link_type/link_phrase:297
+#: DB:link_type/link_phrase:293 DB:link_type/long_link_phrase:295
+#: DB:link_type/long_link_phrase:297 DB:link_type/long_link_phrase:293
+msgid "{additional:additionally} {associate} {co:co-}arranged"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:41 DB:link_type/long_link_phrase:158
+#: DB:link_type/long_link_phrase:282
+msgid ""
+"{additional:additionally} {associate} {co:co-}arranged {instrument:%|"
+"instruments} on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:296 DB:link_type/long_link_phrase:298
+#: DB:link_type/long_link_phrase:294
+msgid ""
+"{additional:additionally} {associate} {co:co-}arranged {vocal:%|vocals} on"
+msgstr ""
+
+#: DB:link_type/link_phrase:41 DB:link_type/link_phrase:158
+#: DB:link_type/link_phrase:282
+msgid ""
+"{additional:additionally} {associate} {instrument:%|instruments} {co:co-}"
+"arranged"
+msgstr ""
+
+#: DB:link_type/link_phrase:296 DB:link_type/link_phrase:298
+#: DB:link_type/link_phrase:294
+msgid "{additional:additionally} {associate} {vocal:%|vocals} {co:co-}arranged"
+msgstr ""
+
+#: DB:link_type/link_phrase:51 DB:link_type/link_phrase:156
+#: DB:link_type/long_link_phrase:51 DB:link_type/long_link_phrase:156
+msgid "{additional:additionally} {guest} {solo} performed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:697
+msgid "{additional:additionally} {pre:pre-}{re}mastered at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:756
+msgid "{additional:additionally} {pre:pre-}{re}mastered in"
+msgstr ""
+
+#: DB:link_type/link_phrase:885 DB:link_type/link_phrase:886
+msgid "{additional} arranging location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
+msgid "{additional} art direction"
+msgstr ""
+
+#: DB:link_type/link_phrase:993 DB:link_type/link_phrase:1170
+#: DB:link_type/reverse_link_phrase:993 DB:link_type/reverse_link_phrase:1170
+msgid "{additional} artwork"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:55 DB:link_type/reverse_link_phrase:168
+msgid "{additional} composer"
+msgstr ""
+
+#: DB:link_type/link_phrase:875 DB:link_type/link_phrase:876
+msgid "{additional} composing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:63 DB:link_type/link_phrase:146
+#: DB:link_type/reverse_link_phrase:63 DB:link_type/reverse_link_phrase:146
+msgid "{additional} creative direction"
+msgstr ""
+
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
+msgid "{additional} design"
+msgstr ""
+
+#: DB:link_type/link_phrase:19 DB:link_type/link_phrase:130
+#: DB:link_type/reverse_link_phrase:19 DB:link_type/reverse_link_phrase:130
+msgid "{additional} design/illustration"
+msgstr ""
+
+#: DB:link_type/link_phrase:822 DB:link_type/link_phrase:821
+#: DB:link_type/link_phrase:819 DB:link_type/link_phrase:820
+msgid "{additional} editing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:814 DB:link_type/link_phrase:815
+#: DB:link_type/link_phrase:813 DB:link_type/link_phrase:812
+msgid "{additional} engineering location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1172 DB:link_type/link_phrase:125
+#: DB:link_type/link_phrase:27 DB:link_type/reverse_link_phrase:1172
+#: DB:link_type/reverse_link_phrase:125 DB:link_type/reverse_link_phrase:27
+msgid "{additional} graphic design"
+msgstr ""
+
+#: DB:link_type/link_phrase:927 DB:link_type/link_phrase:1173
+#: DB:link_type/reverse_link_phrase:927 DB:link_type/reverse_link_phrase:1173
+msgid "{additional} illustration"
+msgstr ""
+
+#: DB:link_type/link_phrase:22 DB:link_type/reverse_link_phrase:22
+msgid "{additional} legal representation"
+msgstr ""
+
+#: DB:link_type/link_phrase:57 DB:link_type/reverse_link_phrase:57
+#: DB:link_type/reverse_link_phrase:169
+msgid "{additional} librettist"
+msgstr ""
+
+#: DB:link_type/link_phrase:169
+msgid "{additional} libretto"
+msgstr ""
+
+#: DB:link_type/link_phrase:879 DB:link_type/link_phrase:880
+msgid "{additional} libretto writing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:24 DB:link_type/reverse_link_phrase:24
+msgid "{additional} liner notes {translator}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:56 DB:link_type/reverse_link_phrase:165
+msgid "{additional} lyricist"
+msgstr ""
+
+#: DB:link_type/link_phrase:56 DB:link_type/link_phrase:165
+msgid "{additional} lyrics"
+msgstr ""
+
+#: DB:link_type/link_phrase:877 DB:link_type/link_phrase:878
+msgid "{additional} lyrics writing location for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:878
+msgid "{additional} lyrics written at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:877
+msgid "{additional} lyrics written in"
+msgstr ""
+
+#: DB:link_type/link_phrase:757 DB:link_type/link_phrase:758
+#: DB:link_type/link_phrase:694 DB:link_type/link_phrase:696
+msgid "{additional} mixing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:150 DB:link_type/link_phrase:45
+#: DB:link_type/reverse_link_phrase:150 DB:link_type/reverse_link_phrase:45
+msgid "{additional} orchestra"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:164 DB:link_type/reverse_link_phrase:300
+msgid "{additional} orchestrator"
+msgstr ""
+
+#: DB:link_type/link_phrase:123 DB:link_type/link_phrase:1175
+#: DB:link_type/link_phrase:20 DB:link_type/reverse_link_phrase:123
+#: DB:link_type/reverse_link_phrase:1175 DB:link_type/reverse_link_phrase:20
+msgid "{additional} photography"
+msgstr ""
+
+#: DB:link_type/link_phrase:827 DB:link_type/link_phrase:826
+#: DB:link_type/link_phrase:825 DB:link_type/link_phrase:824
+msgid "{additional} producing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:698 DB:link_type/link_phrase:693
+#: DB:link_type/link_phrase:695 DB:link_type/link_phrase:699
+msgid "{additional} recording location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:831 DB:link_type/link_phrase:830
+#: DB:link_type/link_phrase:829 DB:link_type/link_phrase:828
+msgid "{additional} remixing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:231
+msgid "{additional} samples"
+msgstr ""
+
+#: DB:link_type/link_phrase:69
+msgid "{additional} samples from"
+msgstr ""
+
+#: DB:link_type/link_phrase:963 DB:link_type/link_phrase:964
+msgid "{additional} shooting location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1181 DB:link_type/link_phrase:1182
+msgid "{additional} transferring location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:883 DB:link_type/link_phrase:884
+msgid "{additional} translating location for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:871 DB:link_type/reverse_link_phrase:872
+msgid "{additional} translator"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:54 DB:link_type/reverse_link_phrase:167
+msgid "{additional} writer"
+msgstr ""
+
+#: DB:link_type/link_phrase:873 DB:link_type/link_phrase:874
+msgid "{additional} writing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
+#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
+#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
+msgid "{additional} {assistant} chorus master"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:46 DB:link_type/reverse_link_phrase:151
+msgid "{additional} {assistant} conductor"
+msgstr ""
+
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
+msgid "{additional} {assistant} remixer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:140 DB:link_type/reverse_link_phrase:31
+msgid "{additional} {assistant} {associate} {co:co-}audio engineer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:727 DB:link_type/reverse_link_phrase:726
+msgid "{additional} {assistant} {associate} {co:co-}balance engineer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:144 DB:link_type/reverse_link_phrase:38
+msgid "{additional} {assistant} {associate} {co:co-}editor"
+msgstr ""
+
+#: DB:link_type/link_phrase:136 DB:link_type/reverse_link_phrase:136
+msgid "{additional} {assistant} {associate} {co:co-}mastering"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:26 DB:link_type/reverse_link_phrase:143
+msgid "{additional} {assistant} {associate} {co:co-}mixer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:36 DB:link_type/reverse_link_phrase:128
+msgid "{additional} {assistant} {associate} {co:co-}recording engineer"
+msgstr ""
+
+#: DB:link_type/link_phrase:36 DB:link_type/link_phrase:128
+msgid "{additional} {assistant} {associate} {co:co-}recording engineer for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:133 DB:link_type/reverse_link_phrase:29
+msgid "{additional} {assistant} {associate} {co:co-}sound engineer"
+msgstr ""
+
+#: DB:link_type/link_phrase:1179
+msgid "{additional} {assistant} {associate} {co:co-}transferred"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1179
+msgid "{additional} {assistant} {associate} {co:co-}transferrer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:28 DB:link_type/reverse_link_phrase:138
+msgid ""
+"{additional} {assistant} {associate} {co:co-}{executive:executive }engineer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:141 DB:link_type/reverse_link_phrase:30
+msgid ""
+"{additional} {assistant} {associate} {co:co-}{executive:executive }producer"
+msgstr ""
+
+#: DB:link_type/link_phrase:42 DB:link_type/reverse_link_phrase:42
+msgid "{additional} {assistant} {associate} {co:co-}{pre:pre-}{re}mastering"
+msgstr ""
+
+#: DB:link_type/link_phrase:37 DB:link_type/link_phrase:132
+#: DB:link_type/reverse_link_phrase:37 DB:link_type/reverse_link_phrase:132
+msgid "{additional} {assistant} {associate} {instrument} programming"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:295 DB:link_type/reverse_link_phrase:297
+#: DB:link_type/reverse_link_phrase:293
+msgid "{additional} {associate} {co:co-}arranger"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:41 DB:link_type/reverse_link_phrase:158
+#: DB:link_type/reverse_link_phrase:282
+msgid "{additional} {associate} {instrument:%|instruments} {co:co-}arranger"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:296 DB:link_type/reverse_link_phrase:298
+#: DB:link_type/reverse_link_phrase:294
+msgid "{additional} {associate} {vocal:%|vocals} {co:co-}arranger"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:51 DB:link_type/reverse_link_phrase:156
+msgid "{additional} {guest} {solo} performer"
+msgstr ""
+
+#: DB:link_type/link_phrase:44 DB:link_type/link_phrase:148
+#: DB:link_type/reverse_link_phrase:44 DB:link_type/reverse_link_phrase:148
+msgid "{additional} {guest} {solo} {instrument:%|instruments}"
+msgstr ""
+
+#: DB:link_type/link_phrase:60 DB:link_type/link_phrase:149
+#: DB:link_type/reverse_link_phrase:60 DB:link_type/reverse_link_phrase:149
+msgid "{additional} {guest} {solo} {vocal:%|vocals}"
+msgstr ""
+
+#: DB:link_type/link_phrase:102
+msgid "{additional} {minor} collaborator on"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:102
+msgid "{additional} {minor} collaborators"
+msgstr ""
+
+#: DB:link_type/link_phrase:103
+msgid "{additional} {original} {eponymous} member of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:103
+msgid "{additional} {original} {eponymous} members"
+msgstr ""
+
+#: DB:link_type/link_phrase:756 DB:link_type/link_phrase:697
+msgid "{additional} {pre:pre-}{re}mastering location for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:888
+msgid "{anniversary:anniversary tour for|tour in support of}"
+msgstr ""
+
+#: DB:link_type/link_phrase:888
+msgid "{anniversary:anniversary tours|supporting tours}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1186 DB:link_type/reverse_link_phrase:1187
+msgid "{assistant} audio director"
+msgstr ""
+
+#: DB:link_type/link_phrase:1186 DB:link_type/link_phrase:1187
+msgid "{assistant} audio director for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1165
+msgid "{assistant} carillonneur"
+msgstr ""
+
+#: DB:link_type/link_phrase:1165
+msgid "{assistant} carillonneur at"
+msgstr ""
+
+#: DB:link_type/link_phrase:856
+msgid "{assistant} organist at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:856
+msgid "{assistant} organists"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:962 DB:link_type/reverse_link_phrase:1185
+msgid "{assistant} video director"
+msgstr ""
+
+#: DB:link_type/link_phrase:962 DB:link_type/link_phrase:1185
+msgid "{assistant} video director for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:305
+msgid "{assistant} {principal} {guest} conductor {emeritus}"
+msgstr ""
+
+#: DB:link_type/link_phrase:305
+msgid "{assistant} {principal} {guest} conductor {emeritus} for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1
+msgid "{bonus:bonus|next} disc"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1
+msgid "{bonus:may be|is} part of a set, the next disc in the set is"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:951 DB:link_type/reverse_link_phrase:950
+msgid "{co:co-}{executive:executive }produced for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:750
+msgid "{entity1} catalogues the work of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:154 DB:link_type/long_link_phrase:49
+msgid "{entity1} contains {additional} samples by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:312
+msgid "{entity1} has VIAF ID at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:854
+msgid "{entity1} has a BookBrainz page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:971
+msgid "{entity1} has a Discogs page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:280
+msgid "{entity1} has a SecondHandSongs page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:289
+msgid "{entity1} has a Songfacts page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:992
+msgid "{entity1} has a VGMdb page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:351
+msgid "{entity1} has a Wikidata page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:279
+msgid "{entity1} has a Wikipedia page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:908
+msgid "{entity1} has a crowdfunding page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1188
+msgid "{entity1} has a fan page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:273
+msgid "{entity1} has a page in a database at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:921
+msgid "{entity1} has a work list entry at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:286
+msgid "{entity1} has an Allmusic page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:843
+msgid "{entity1} has an IMDb page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:271
+msgid "{entity1} has lyrics available at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:123 DB:link_type/long_link_phrase:1175
+#: DB:link_type/long_link_phrase:20
+msgid "{entity1} has {additional} photography by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:918
+msgid "{entity1} invented {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:915
+msgid "{entity1} is a feed for podcast {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1088
+msgid "{entity1} is a genre from {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:743
+msgid "{entity1} is a part of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:994
+msgid "{entity1} is a residency by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:859
+msgid "{entity1} is a tour by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1082
+msgid "{entity1} is a translated version of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:65 DB:link_type/long_link_phrase:970
+msgid "{entity1} is a tribute to {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:752
+msgid "{entity1} is an instrument from {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1176 DB:link_type/long_link_phrase:1177
+msgid "{entity1} is commentary for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1090
+msgid "{entity1} is commonly used in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:983 DB:link_type/long_link_phrase:846
+#: DB:link_type/long_link_phrase:922 DB:link_type/long_link_phrase:914
+#: DB:link_type/long_link_phrase:868
+msgid "{entity1} is dedicated to {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:939
+msgid "{entity1} is licensed under {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:975 DB:link_type/long_link_phrase:1000
+msgid "{entity1} is named after {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:357
+msgid "{entity1} is/was an anthem of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:714
+msgid "{entity1} is/was the primary concert venue of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1168
+msgid "{entity1} presented {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:866 DB:link_type/long_link_phrase:865
+msgid "{entity1} was arranged at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:948 DB:link_type/long_link_phrase:949
+msgid "{entity1} was arranged for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:864 DB:link_type/long_link_phrase:863
+msgid "{entity1} was arranged in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:795
+msgid "{entity1} was available at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:954
+msgid "{entity1} was glass mastered at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:995 DB:link_type/long_link_phrase:1085
+msgid "{entity1} was held at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:793
+msgid "{entity1} was held in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:833
+msgid "{entity1} was licensed to {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:953
+msgid "{entity1} was manufactured at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:952
+msgid "{entity1} was manufactured for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:835
+msgid "{entity1} was manufactured in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1183
+msgid "{entity1} was mastered for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:946 DB:link_type/long_link_phrase:947
+msgid "{entity1} was mixed for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:845 DB:link_type/long_link_phrase:716
+msgid "{entity1} was premiered at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:956
+msgid "{entity1} was premiered by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:715
+msgid "{entity1} was premiered in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:941
+msgid "{entity1} was pressed at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:834
+msgid "{entity1} was previously attributed to {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:849
+msgid "{entity1} was printed in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:809 DB:link_type/long_link_phrase:810
+msgid "{entity1} was recorded at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1178
+msgid "{entity1} was remixed for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:882
+msgid "{entity1} was revised at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:881
+msgid "{entity1} was revised in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:886
+msgid "{entity1} was {additional:additionally} arranged at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:885
+msgid "{entity1} was {additional:additionally} arranged in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:876
+msgid "{entity1} was {additional:additionally} composed at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:875
+msgid "{entity1} was {additional:additionally} composed in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:819 DB:link_type/long_link_phrase:820
+msgid "{entity1} was {additional:additionally} edited at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:822 DB:link_type/long_link_phrase:821
+msgid "{entity1} was {additional:additionally} edited in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:813 DB:link_type/long_link_phrase:812
+msgid "{entity1} was {additional:additionally} engineered at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:814 DB:link_type/long_link_phrase:815
+msgid "{entity1} was {additional:additionally} engineered in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:694 DB:link_type/long_link_phrase:696
+msgid "{entity1} was {additional:additionally} mixed at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:757 DB:link_type/long_link_phrase:758
+msgid "{entity1} was {additional:additionally} mixed in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:825 DB:link_type/long_link_phrase:824
+msgid "{entity1} was {additional:additionally} produced at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:827 DB:link_type/long_link_phrase:826
+msgid "{entity1} was {additional:additionally} produced in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:693 DB:link_type/long_link_phrase:695
+msgid "{entity1} was {additional:additionally} recorded at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:698 DB:link_type/long_link_phrase:699
+msgid "{entity1} was {additional:additionally} recorded in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:829 DB:link_type/long_link_phrase:828
+msgid "{entity1} was {additional:additionally} remixed at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:831 DB:link_type/long_link_phrase:830
+msgid "{entity1} was {additional:additionally} remixed in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:963 DB:link_type/long_link_phrase:966
+msgid "{entity1} was {additional:additionally} shot at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:964
+msgid "{entity1} was {additional:additionally} shot in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1181 DB:link_type/long_link_phrase:1182
+msgid "{entity1} was {additional:additionally} transferred at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:883
+msgid "{entity1} was {additional:additionally} translated at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:884
+msgid "{entity1} was {additional:additionally} translated in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:874
+msgid "{entity1} was {additional:additionally} written at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:873
+msgid "{entity1} was {additional:additionally} written in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:697
+msgid ""
+"{entity1} was {additional:additionally} {pre:pre-}{re}mastered at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:756
+msgid ""
+"{entity1} was {additional:additionally} {pre:pre-}{re}mastered in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:888
+msgid ""
+"{entity1} was {anniversary:an anniversary tour for|a tour in support of} "
+"{entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:951 DB:link_type/long_link_phrase:950
+msgid "{entity1} was {co:co-}{executive:executive }produced for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:967 DB:link_type/long_link_phrase:968
+msgid "{entity1}'s lacquer was cut in {entity0}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:760 DB:link_type/reverse_link_phrase:759
+msgid "{guest} concertmaster"
+msgstr ""
+
+#: DB:link_type/link_phrase:760 DB:link_type/link_phrase:759
+msgid "{guest} concertmaster for"
+msgstr ""
+
+#: DB:link_type/link_phrase:110 DB:link_type/reverse_link_phrase:110
+msgid "{half:half-}{step}siblings"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:986 DB:link_type/reverse_link_phrase:987
+msgid "{instrument:%|instruments} technician"
+msgstr ""
+
+#: DB:link_type/link_phrase:986 DB:link_type/link_phrase:987
+msgid "{instrument:%|instruments} technician for"
+msgstr ""
+
+#: DB:link_type/link_phrase:278
+msgid ""
+"{live} {medley:medley including a} {partial} {instrumental} {cover} "
+"{karaoke} recording of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:278
+msgid ""
+"{live} {medley:medleys including} {partial} {instrumental} {cover} {karaoke} "
+"recordings"
+msgstr ""
+
+#: DB:link_type/link_phrase:109
+msgid "{step}children"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:109
+msgid "{step}parents"
+msgstr ""
+
+#: DB:link_type/link_phrase:161 DB:link_type/link_phrase:208
+#: DB:link_type/link_phrase:32 DB:link_type/link_phrase:362
+#: DB:link_type/long_link_phrase:161 DB:link_type/long_link_phrase:208
+#: DB:link_type/long_link_phrase:32 DB:link_type/long_link_phrase:362
+msgid "{sub:sub-}published"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:161 DB:link_type/reverse_link_phrase:208
+#: DB:link_type/reverse_link_phrase:32 DB:link_type/reverse_link_phrase:362
+msgid "{sub:sub-}publisher"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:15
+msgid "{translated} {parody:parodies|covers}"
+msgstr ""
+
+#: DB:link_type/link_phrase:15
+msgid "{translated} {parody:parody|cover} of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:241
+msgid "{translated} {parody} version of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:24
+msgid "{translator:translated|wrote} {additional} liner notes for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
+msgid "{video} can be streamed for free at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:107
+msgid "{vocal:%|vocals} support by"
+msgstr ""
+
+#: DB:link_type/link_phrase:107
+msgid "{vocal:%|vocals} support for"
+msgstr ""
diff --git a/po/relationships.et.po b/po/relationships.et.po
index 839e9d99258..576b01354e2 100644
--- a/po/relationships.et.po
+++ b/po/relationships.et.po
@@ -50,10 +50,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -307,6 +307,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -337,10 +343,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -491,14 +493,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -870,7 +872,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1073,8 +1075,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1213,7 +1215,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1236,7 +1238,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1584,8 +1586,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1650,8 +1652,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1730,8 +1732,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1754,8 +1756,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1880,16 +1882,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1907,8 +1909,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2235,9 +2237,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2470,18 +2472,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2568,9 +2570,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2799,8 +2801,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2839,8 +2841,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2946,8 +2948,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2967,8 +2969,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2979,8 +2981,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3268,7 +3270,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3277,7 +3279,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3285,13 +3287,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3301,7 +3318,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3309,28 +3326,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3338,7 +3340,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3387,9 +3389,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3427,9 +3429,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3446,9 +3448,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3493,9 +3495,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3615,14 +3617,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3633,8 +3635,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3644,8 +3646,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4073,8 +4075,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4369,15 +4371,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4385,8 +4387,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4688,11 +4690,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4928,8 +4930,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6512,7 +6514,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6524,7 +6525,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6545,6 +6546,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6991,22 +7000,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7776,8 +7785,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7799,8 +7807,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7938,6 +7945,10 @@ msgstr "{additional} autor"
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7947,6 +7958,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8538,7 +8553,7 @@ msgstr "{translated:tõlgitud} {parody}versioon teosest"
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.fi.po b/po/relationships.fi.po
index 79bd170a8b1..d9203ac4ae8 100644
--- a/po/relationships.fi.po
+++ b/po/relationships.fi.po
@@ -74,10 +74,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -336,6 +336,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -366,10 +372,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -520,14 +522,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -900,7 +902,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1103,8 +1105,8 @@ msgstr "Viittaa tämän teoksen Wikipedia-sivuun."
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1243,7 +1245,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1269,9 +1271,8 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
-"Tämä määrite ilmaisee suoratoistettavan sisällön olevan videota, eikä ääntä."
#: DB:link_attribute_type/description:788
msgid "This attribute indicates the number of an entity in a series."
@@ -1618,8 +1619,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1684,8 +1685,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1764,8 +1765,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1788,8 +1789,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1914,16 +1915,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1941,8 +1942,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2269,9 +2270,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2504,18 +2505,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2602,9 +2603,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2833,8 +2834,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2873,8 +2874,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2980,8 +2981,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -3001,8 +3002,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -3013,8 +3014,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3296,7 +3297,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3305,7 +3306,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3313,13 +3314,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3329,7 +3345,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3337,28 +3353,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3366,7 +3367,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3415,9 +3416,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3455,9 +3456,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3474,9 +3475,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3521,9 +3522,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3643,14 +3644,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3661,8 +3662,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3672,8 +3673,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4101,8 +4102,8 @@ msgstr "ostettavisssa ladattavaksi osoitteesta"
msgid "can be purchased for mail-order at"
msgstr "ostettavissa postimyynnitse osoitteesta"
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4397,15 +4398,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4413,8 +4414,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4716,11 +4717,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4956,8 +4957,8 @@ msgstr "omaa kataloogin äänitteistä"
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6540,7 +6541,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6552,7 +6552,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6573,6 +6573,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -7019,22 +7027,22 @@ msgstr ""
msgid "stream for free"
msgstr "suoratoistettavissa ilmaiseksi"
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr "suoratoistettavissa {video} ilmaiseksi"
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr "suoratoisto"
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr "suoratoistosivu"
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr "suoratoistosivu kohteelle"
@@ -7805,8 +7813,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr "{additional} taiteellinen johtaminen"
@@ -7828,8 +7835,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr "{additional:lisäksi} taiteellinen johtaminen"
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7967,6 +7973,10 @@ msgstr "{additional} tekijä"
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7976,6 +7986,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8570,7 +8584,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr "{video} suoratoistettavissa ilmaiseksi osoitteessa"
@@ -8582,6 +8596,13 @@ msgstr ""
msgid "{vocal:%|vocals} support for"
msgstr ""
+#~ msgid ""
+#~ "This attribute indicates that the streamable content is not audio but "
+#~ "video."
+#~ msgstr ""
+#~ "Tämä määrite ilmaisee suoratoistettavan sisällön olevan videota, eikä "
+#~ "ääntä."
+
#~ msgid "performed {additional} chorus master on"
#~ msgstr "toimi {additional} kuorojohtajana"
diff --git a/po/relationships.fr.po b/po/relationships.fr.po
index decc6640928..8106ab24267 100644
--- a/po/relationships.fr.po
+++ b/po/relationships.fr.po
@@ -40,7 +40,7 @@
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
-"PO-Revision-Date: 2023-09-28 12:27+0000\n"
+"PO-Revision-Date: 2023-11-10 20:27+0000\n"
"Last-Translator: yvanzo \n"
"Language-Team: French \n"
@@ -50,7 +50,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
"1000000 == 0) ? 1 : 2);\n"
-"X-Generator: Weblate 5.0.2\n"
+"X-Generator: Weblate 5.1\n"
#: DB:link_attribute_type/description:1355
msgid "A performance-centered, usually one to three year postgraduate program."
@@ -102,11 +102,19 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
-msgstr ""
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
+msgstr ""
+"Une page de réseau social est la page de profil d’un artiste sur un réseau social dont le contenu ne peut être publié que par les artistes "
+"eux-mêmes (ou par leurs agents). Les autres personnes peuvent créer leur "
+"propre profil et interagir avec les artistes, par exemple en les ajoutant "
+"comme amis ou en commentant les contenus qu’ils ont publié. Exemples de "
+"pages : les pages et profils Facebook, les utilisateurs Last.fm ainsi que "
+"les comptes Twitter/X, Instagram et Flickr."
#: DB:link_type/description:783
msgid ""
@@ -116,9 +124,9 @@ msgid ""
"Facebook pages and event entries, and accounts on Twitter, Instagram and "
"Flickr."
msgstr ""
-"Une page de réseau social est la page d’un événement sur un réseau social "
-"dont le contenu ne peut être publié que par des personnes impliquées dans "
+"Une page de réseau social est la page d’un événement sur un réseau social"
+"a> dont le contenu ne peut être publié que par des personnes impliquées dans "
"cet événement. Des exemples sont les pages Facebook, et les comptes Twitter, "
"Instagram et Flickr."
@@ -388,6 +396,14 @@ msgstr ""
"artiste qui s’applique normalement à des artistes solo bien qu’elle puisse "
"parfois s’appliquer à des groupes. "
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+"Indique une page qui passe en revue la parution (ou le groupe de parution) "
+"en question, que ce soit sous forme écrite, audio, ou vidéo."
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -424,12 +440,6 @@ msgid "Indicates a webpage that reviews the event in question."
msgstr ""
"Indique une page Web qui propose une critique de l’événement en question."
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-"Indique une page Web qui propose une critique de la parution (groupe de) en "
-"question."
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -615,19 +625,19 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"Indique le compositeur pour cette parution, c.-à-d. l’artiste qui a écrit la "
-"musique (pas nécessairement les paroles)."
+"Indique le compositeur pour cette parution, c’est-à-dire l’artiste qui a "
+"écrit la musique (mais pas nécessairement les paroles)."
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"Indique le compositeur pour cette œuvre, c.-à-d. l’artiste qui a écrit la "
-"musique (pas nécessairement les paroles)."
+"Indique le compositeur pour cette œuvre, c’est-à-dire l’artiste qui a écrit "
+"la musique (mais pas nécessairement les paroles)."
#: DB:link_type/description:845
msgid "Indicates the event where the work had its first performance"
@@ -1064,11 +1074,9 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
-"Relie un événement à un DJ ayant un rôle de soutien (par exemple, DJing "
-"entre les artistes, ou pour finir la nuit après un concert)."
#: DB:link_type/description:800
msgid ""
@@ -1191,62 +1199,80 @@ msgid ""
"Points to the Wikidata page for this area, and will be used to fetch "
"Wikipedia summaries"
msgstr ""
+"Dirige vers la page Wikidata pour cette région, et sert à récupérer les "
+"extraits de Wikipédia"
#: DB:link_type/description:352
msgid ""
"Points to the Wikidata page for this artist, and will be used to fetch "
"Wikipedia summaries"
msgstr ""
+"Dirige vers la page Wikidata pour cet artiste, et sert à récupérer les "
+"extraits de Wikipédia"
#: DB:link_type/description:790
msgid ""
"Points to the Wikidata page for this event, and will be used to fetch "
"Wikipedia summaries"
msgstr ""
+"Dirige vers la page Wikidata pour cet événement, et sert à récupérer les "
+"extraits de Wikipédia"
#: DB:link_type/description:1087
msgid ""
"Points to the Wikidata page for this genre, and will be used to fetch "
"Wikipedia summaries"
msgstr ""
+"Dirige vers la page Wikidata pour ce genre, et sert à récupérer les extraits "
+"de Wikipédia"
#: DB:link_type/description:733
msgid ""
"Points to the Wikidata page for this instrument, and will be used to fetch "
"Wikipedia summaries"
msgstr ""
+"Dirige vers la page Wikidata pour cet instrument, et sert à récupérer les "
+"extraits de Wikipédia"
#: DB:link_type/description:354
msgid ""
"Points to the Wikidata page for this label, and will be used to fetch "
"Wikipedia summaries"
msgstr ""
+"Dirige vers la page Wikidata pour ce label, et sert à récupérer les extraits "
+"de Wikipédia"
#: DB:link_type/description:594
msgid ""
"Points to the Wikidata page for this place, and will be used to fetch "
"Wikipedia summaries"
msgstr ""
+"Dirige vers la page Wikidata pour ce lieu, et sert à récupérer les extraits "
+"de Wikipédia"
#: DB:link_type/description:353
msgid ""
"Points to the Wikidata page for this release group, and will be used to "
"fetch Wikipedia summaries"
msgstr ""
-"Dirige vers la page Wikidata pour ce groupe de parution, et sera utilisée "
-"pour afficher les images et les contenus Wikipédia liés."
+"Dirige vers la page Wikidata pour ce groupe de parution, et sert à récupérer "
+"les extraits de Wikipédia"
#: DB:link_type/description:749
msgid ""
"Points to the Wikidata page for this series, and will be used to fetch "
"Wikipedia summaries"
msgstr ""
+"Dirige vers la page Wikidata pour cette série, et sert à récupérer les "
+"extraits de Wikipédia"
#: DB:link_type/description:351
msgid ""
"Points to the Wikidata page for this work, and will be used to fetch "
"Wikipedia summaries"
msgstr ""
+"Dirige vers la page Wikidata pour cette œuvre, et sert à récupérer les "
+"extraits de Wikipédia"
#: DB:link_type/description:89
msgid "Points to the Wikipedia page for this album."
@@ -1283,8 +1309,8 @@ msgstr "Dirige vers la page Wikipédia pour cette œuvre."
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1433,10 +1459,8 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
-"Cet attribut indique un membre qui a donné son nom au groupe et sans lequel "
-"ce groupe n’existerait pas (p. ex. Miles Davis -> Miles Davis Sextet)."
#: DB:link_attribute_type/description:511
msgid ""
@@ -1463,10 +1487,8 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
-"Cet attribut indique que le contenu du flux n’est pas de l’audio mais de la "
-"vidéo."
#: DB:link_attribute_type/description:788
msgid "This attribute indicates the number of an entity in a series."
@@ -1908,11 +1930,9 @@ msgstr "Ceci indique qu’une personne est, ou était, le chef d’un orchestre.
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
-"Ceci indique qu’une personne est, ou était, le directeur artistique d’un "
-"groupe (par exemple une compagnie de ballet ou d’opéra)."
#: DB:link_type/description:137
msgid ""
@@ -2001,11 +2021,9 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
-"Ceci indique qu’une œuvre est composée de plusieurs parties (p. ex. une "
-"suite orchestrale divisée en mouvements). "
#: DB:link_type/description:858
msgid ""
@@ -2104,8 +2122,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -2134,11 +2152,9 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
-"Ceci indique qu’un enregistrement n’est pas une œuvre entière, p. ex. des "
-"extraits, une conclusion etc."
#: DB:link_attribute_type/description:578
msgid "This indicates that the recording is of a live performance."
@@ -2253,8 +2269,9 @@ msgid ""
"label, nor as mastering engineering."
msgstr ""
"Indique l’organisation qui a réalisé la matrice en verre d’une parution. Ce "
-"n’est pas le même concept que celui de label discographique, ou que celui de chef opérateur de matriçage."
+"n’est pas le même concept que celui de label discographique, ou que celui de chef opérateur de "
+"matriçage."
#: DB:link_type/description:989
msgid ""
@@ -2277,24 +2294,24 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
"Ceci indique l’organisation qui distribue (ou gère la distribution).\n"
"\n"
-"Ce n’est pas le même concept que le label discographique."
+"Ce n’est pas le même concept que le label discographique."
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
"Ceci indique l’organisation qui fabrique (ou gère la fabrication).\n"
-"Ce n’est pas le même concept que le label discographique."
+"Ce n’est pas le même concept que le label discographique."
#: DB:link_type/description:848
msgid ""
@@ -2302,8 +2319,8 @@ msgid ""
"strong> the same concept as the record label."
msgstr ""
"Indique l’organisation qui s’occupe de la mise en marché d’une parution. Ce "
-"n’est pas le même concept que le label discographique."
+"n’est pas le même concept que le label discographique."
#: DB:link_type/description:985
msgid ""
@@ -2317,13 +2334,13 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
"Ceci indique l’organisation qui promeut (ou gère la promotion) d’une "
"parution.\n"
-"Ce n’est pas le même concept que le label discographique."
+"Ce n’est pas le même concept que le label discographique."
#: DB:link_type/description:362
msgid ""
@@ -2754,13 +2771,13 @@ msgstr "Ceci est utilisé pour relier des œuvres à leurs enregistrements."
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
-"Ceci est utilisé pour spécifier qu’un artiste a collaboré sur un projet à court-terme, dans les cas où les "
-"crédits d’artiste ne peuvent être utilisés."
+"Ceci est utilisé pour spécifier qu’un artiste a collaboré sur un projet à court-terme, dans "
+"les cas où les crédits d’artiste ne peuvent être utilisés."
#: DB:link_type/description:1047
msgid ""
@@ -2814,10 +2831,10 @@ msgid ""
"includes remixed versions of all (or most of) the tracks in the other "
"release group."
msgstr ""
-"Ceci relie un groupe de parution de remix au groupe de parution source et est utilisé pour indiquer que "
-"le groupe de parution inclut des versions remixées de toutes (ou presque) "
-"les pistes de l’autre groupe de parution."
+"Ceci relie un groupe de parution de remix au groupe de parution source et est "
+"utilisé pour indiquer que le groupe de parution inclut des versions remixées "
+"de toutes (ou presque) les pistes de l’autre groupe de parution."
#: DB:link_type/description:230
msgid ""
@@ -2847,7 +2864,7 @@ msgstr ""
#: DB:link_type/description:1092
msgid "This links a genre to its page at Bandcamp."
-msgstr ""
+msgstr "Cecie relie un genre à sa page sur Bandcamp."
#: DB:link_type/description:1095
msgid "This links a genre to its subgenres."
@@ -2888,7 +2905,7 @@ msgstr ""
#: DB:link_type/description:1130
msgid "This links a label to its page at Apple Music."
-msgstr ""
+msgstr "Ceci relie un label à sa page sur Apple Music."
#: DB:link_type/description:719
msgid "This links a label to its page at Bandcamp."
@@ -3046,18 +3063,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
"Relie un groupe de parution à un artiste pour indiquer que c’est un album "
"hommage. Les albums hommage ont souvent un titre comme « Hommage à Artiste » "
@@ -3173,22 +3190,19 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
-"Indique pour une série son profil (par exemple pour un festival) ou le "
-"projet correspondant (par exemple pour une tournée ou une compilation) sur "
-"un site de financement participatif tel que Kickstarter ou Indiegogo."
#: DB:link_type/description:97
msgid ""
"This links a soundtrack release group to the IMDb page for the movie, show or game of which it is a soundtrack."
msgstr ""
-"Ceci relie un groupe de parution de bande originale à la page IMDb pour le film, spectacle ou jeu dont il est "
-"la bande originale."
+"Ceci relie un groupe de parution de bande originale à la page IMDb pour le film, spectacle ou jeu dont "
+"il est la bande originale."
#: DB:link_type/description:992
msgid ""
@@ -3197,10 +3211,10 @@ msgid ""
"community project dedicated to cataloguing the music of video games and "
"anime."
msgstr ""
-"Ce type de relation relie une œuvre à la page correspondante sur VGMdb pour le film, le spectacle ou le jeu dont "
-"elle est la bande-son. VGMdb est un projet communautaire dédié au catalogage "
-"de la musique de jeux vidéo et d’animes."
+"Ce type de relation relie une œuvre à la page correspondante sur VGMdb pour le film, le spectacle ou le jeu "
+"dont elle est la bande-son. VGMdb est un projet communautaire dédié au "
+"catalogage de la musique de jeux vidéo et d’animes."
#: DB:link_type/description:843
msgid ""
@@ -3346,7 +3360,7 @@ msgstr "Ceci relie un artiste à sa chaîne sur YouTube Music."
#: DB:link_type/description:1131
msgid "This links an artist to its page at Apple Music."
-msgstr ""
+msgstr "Ceci relie un artiste à sa page sur Apple Music."
#: DB:link_type/description:718
msgid "This links an artist to its page at Bandcamp."
@@ -3450,8 +3464,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
"Ceci relie un entité à l’entrée équivalente dans une autre base de données. "
"Veuillez respecter la work."
+"This links different revisions of the same work."
msgstr ""
-"Ceci relie différentes révisions de la même œuvre."
+"Ceci relie différentes révisions de la même œuvre."
#: DB:link_type/description:212
msgid "This links to a catalog or list of records published by the label."
@@ -3658,8 +3672,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
"Cette relation décrit une URL où des paroles peuvent être trouvées pour cet "
"artiste. Seul les sites de la whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
"Cette relation décrit une URL où des paroles peuvent être trouvées pour "
"cette œuvre. Seul les sites de la \n"
"For individual songs, see the recording-work performance relationship type."
msgstr ""
-"Ce type de relation est utilisé pour indiquer qu’un groupe de parution est "
-"une reprise d’un autre groupe de parution, c.-à-d. quand un artiste fait une "
-"nouvelle interprétation de l’album d’un autre artiste."
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -4102,13 +4113,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr "Ce type de relation est utilisé pour relier un label à son blogue."
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -4120,72 +4146,30 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
-"Ce type de relation est utilisé pour relier une parution à un site où ses "
-"pistes peuvent être légalement écoutées en flux continu en contrepartie d’un "
-"abonnement payant, p. ex. Tidal.\n"
-"\n"
-"Si le site permet l’écoute gratuite, utilisez « diffusion gratuite en flux "
-"continu » à la place."
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-"Ce type de relation est utilisé pour relier une parution à un site où les "
-"pistes peuvent être légalement et gratuitement écoutées en flux continu, p. "
-"ex. Spotify."
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-"Ce type de relation est utilisé pour relier une piste à un site où la piste "
-"peut être légalement écoutée en flux continu en contrepartie d’un abonnement "
-"payant, p. ex. Tidal.\n"
-"\n"
-"Si le site permet l’écoute gratuite, utilisez « diffusion gratuite en flux "
-"continu » à la place."
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
-"Ce type de relation est utilisé pour relier une piste à un site où la piste "
-"peut être légalement et gratuitement écoutée en flux continu, tel que "
-"Spotify pour les pistes audio ou YouTube pour les vidéos."
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
-"Ce type de relation est utilisé pour relier un artiste à un site où sa "
-"musique peut être légalement écoutée en flux continu en contrepartie d’un "
-"abonnement payant, p. ex. Tidal.\n"
-"\n"
-"Si le site permet l’écoute gratuite, utilisez « diffusion gratuite en flux "
-"continu » à la place."
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
-"Ce type de relation est utilisé pour relier un artiste à un site où sa "
-"musique peut être légalement et gratuitement écoutée en flux continu, p. ex. "
-"Spotify."
#: DB:link_type/description:199
msgid "This relationship type is used to link an artist to their blog."
@@ -4245,13 +4229,13 @@ msgstr "Ce type de relation relie un label à sa page Myspace."
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
-"Ce type de relation relie un label à sa page correspondante sur VGMdb. VGMdb est un projet communautaire dédié au "
-"catalogage de la musique de jeux vidéo et d’animes."
+"Ce type de relation relie un label à sa page correspondante sur VGMdb. VGMdb est un projet communautaire "
+"dédié au catalogage de la musique de jeux vidéo et d’animes."
#: DB:link_type/description:838
msgid ""
@@ -4265,6 +4249,9 @@ msgid ""
"page at VGMdb. VGMdb is a community "
"project dedicated to cataloguing the music of video games and anime."
msgstr ""
+"Ceci relie un lieu (généralement un studio) à sa page sur VGMdb. VGMdb est un projet communautaire dédié au "
+"catalogage de music de jeux vidéos et d’animés."
#: DB:link_type/description:861
msgid ""
@@ -4292,13 +4279,13 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
-"Ce type de relation relie une parution à sa page correspondante sur VGMdb. VGMdb est un projet communautaire dédié au "
-"catalogage de la musique de jeux vidéo et d’animes."
+"Ce type de relation relie une parution à sa page correspondante sur VGMdb. VGMdb est un projet communautaire "
+"dédié au catalogage de la musique de jeux vidéo et d’animes."
#: DB:link_type/description:938
msgid ""
@@ -4316,13 +4303,13 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
-"Ce type de relation relie un artiste à sa page correspondante sur VGMdb. VGMdb est un projet communautaire dédié au "
-"catalogage de la musique de jeux vidéo et d’animes."
+"Ce type de relation relie un artiste à sa page correspondante sur VGMdb. VGMdb est un projet communautaire "
+"dédié au catalogage de la musique de jeux vidéo et d’animes."
#: DB:link_type/description:862
msgid ""
@@ -4378,13 +4365,13 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
-"Ce type de relation relie un événement à sa page correspondante sur VGMdb. VGMdb est un projet communautaire dédié au "
-"catalogage de la musique de jeux vidéo et d’animes."
+"Ce type de relation relie un événement à sa page correspondante sur VGMdb. VGMdb est un projet communautaire "
+"dédié au catalogage de la musique de jeux vidéo et d’animes."
#: DB:link_type/description:860
msgid ""
@@ -4535,14 +4522,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
"Utilisez cette relation pour les crédits du type : « Enregistrement a été "
"arrangé par X pour Label »."
@@ -4557,8 +4544,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -4570,8 +4557,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
"Utilisez cette relation pour les crédits du type : « Enregistrement a été "
"produit par X pour Label »."
@@ -5015,8 +5002,8 @@ msgstr "peut être acheté pour téléchargement sur"
msgid "can be purchased for mail-order at"
msgstr "peut être acheté par correspondance sur"
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr "diffusée en flux continu à"
@@ -5026,7 +5013,7 @@ msgstr "annulée"
#: DB:link_type/name:1165
msgid "carillonneur"
-msgstr ""
+msgstr "carillonneur"
#: DB:link_type/link_phrase:212 DB:link_type/reverse_link_phrase:212
msgid "catalog of records"
@@ -5312,15 +5299,15 @@ msgid "creative position"
msgstr "poste créatif"
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr "financement participatif"
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr "page de financement participatif"
@@ -5328,8 +5315,8 @@ msgstr "page de financement participatif"
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr "page de financement participatif pour"
@@ -5631,11 +5618,11 @@ msgstr "page de téléchargement gratuit pour la partition de"
msgid "free music streaming page for"
msgstr "page de diffusion gratuite en flux continu de la musique de"
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr "page de diffusion {video:vidéo} gratuite en flux continu pour"
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr "diffusion gratuite en flux continu"
@@ -5756,7 +5743,7 @@ msgstr "a un ASIN d’Amazon"
#: DB:link_type/long_link_phrase:1131 DB:link_type/long_link_phrase:1130
msgid "has Apple Music page at"
-msgstr ""
+msgstr "a une page Apple Music à"
#: DB:link_type/long_link_phrase:1092 DB:link_type/long_link_phrase:718
#: DB:link_type/long_link_phrase:719
@@ -5847,7 +5834,7 @@ msgstr "a une page VGMdb sur"
#: DB:link_type/long_link_phrase:352 DB:link_type/long_link_phrase:733
#: DB:link_type/long_link_phrase:358
msgid "has a Wikidata page at"
-msgstr "a une page Wikidata sur"
+msgstr "a une page Wikidata à"
#: DB:link_type/long_link_phrase:179 DB:link_type/long_link_phrase:595
#: DB:link_type/long_link_phrase:355 DB:link_type/long_link_phrase:744
@@ -5871,8 +5858,8 @@ msgstr "a un catalogue de disques à"
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr "a une page de financement participatif à"
@@ -5949,7 +5936,7 @@ msgstr "a un site Web autonome à"
#: DB:link_type/long_link_phrase:1195 DB:link_type/long_link_phrase:1196
#: DB:link_type/long_link_phrase:1197
msgid "has a ticketing page at"
-msgstr ""
+msgstr "a une page de billetterie à"
#: DB:link_type/long_link_phrase:755 DB:link_type/long_link_phrase:284
#: DB:link_type/long_link_phrase:283 DB:link_type/long_link_phrase:285
@@ -7466,7 +7453,6 @@ msgid "provided legal representation for"
msgstr "a assuré la représentation juridique pour"
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr "a assuré la direction artistique {additional:supplémentaire} sur"
@@ -7478,7 +7464,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr "a assuré la direction créative {additional:supplémentaire} sur"
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr "a assuré la conception {additional:supplémentaire} sur"
@@ -7499,6 +7485,14 @@ msgstr "a assuré l’illustration {additional:supplémentaire} sur"
msgid "provided {additional} legal representation for"
msgstr "a assuré la représentation juridique {additional:supplémentaire} pour"
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -7945,22 +7939,22 @@ msgstr "par alliance"
msgid "stream for free"
msgstr "diffuse gratuitement en flux continu la musique de"
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr "diffusion gratuite en flux {video:vidéo} continu"
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr "diffusion en flux continu"
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr "page de diffusion en flux continu"
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr "page de diffusion en flux continu pour"
@@ -8102,19 +8096,19 @@ msgstr "voix de ténor"
#: DB:link_type/name:1193 DB:link_type/name:1194 DB:link_type/name:1195
#: DB:link_type/name:1196 DB:link_type/name:1197
msgid "ticketing"
-msgstr ""
+msgstr "billetterie"
#: DB:link_type/link_phrase:1193 DB:link_type/link_phrase:1194
#: DB:link_type/link_phrase:1195 DB:link_type/link_phrase:1196
#: DB:link_type/link_phrase:1197
msgid "ticketing page"
-msgstr ""
+msgstr "page de billetterie"
#: DB:link_type/reverse_link_phrase:1193 DB:link_type/reverse_link_phrase:1194
#: DB:link_type/reverse_link_phrase:1195 DB:link_type/reverse_link_phrase:1196
#: DB:link_type/reverse_link_phrase:1197
msgid "ticketing page for"
-msgstr ""
+msgstr "page de billetterie pour"
#: DB:link_attribute_type/name:830
msgid "time"
@@ -8392,7 +8386,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:1165
msgid "was {assistant} carillonneur at"
-msgstr ""
+msgstr "était {assistant} carillonneur à"
#: DB:link_type/long_link_phrase:856
msgid "was {assistant} organist at"
@@ -8747,8 +8741,7 @@ msgid "{additional} arranging location for"
msgstr "lieu {additional:supplémentaire} d’arrangement de"
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr "direction artistique {additional:supplémentaire}"
@@ -8770,8 +8763,7 @@ msgstr "lieu {additional:supplémentaire} de composition de"
msgid "{additional} creative direction"
msgstr "direction créative {additional:supplémentaire}"
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr "conception {additional:supplémentaire}"
@@ -8910,6 +8902,10 @@ msgstr "auteur {additional:supplémentaire}"
msgid "{additional} writing location for"
msgstr "lieu {additional:supplémentaire} d’écriture de"
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -8919,6 +8915,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -9072,11 +9072,11 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:1165
msgid "{assistant} carillonneur"
-msgstr ""
+msgstr "{assistant} carillonneur"
#: DB:link_type/link_phrase:1165
msgid "{assistant} carillonneur at"
-msgstr ""
+msgstr "{assistant} carillonneur à"
#: DB:link_type/link_phrase:856
msgid "{assistant} organist at"
@@ -9165,7 +9165,7 @@ msgstr "{entity1} a une page de financement participatif à {entity0}"
#: DB:link_type/long_link_phrase:1188
msgid "{entity1} has a fan page at {entity0}"
-msgstr ""
+msgstr "{entity1} a une page de fan à {entity0}"
#: DB:link_type/long_link_phrase:273
msgid "{entity1} has a page in a database at {entity0}"
@@ -9553,7 +9553,7 @@ msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
"{translator:traducteur|a rédigé} des notes {additional:complémentaires} à"
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr " est diffusé gratuitement en flux {video:vidéo} continu à"
@@ -9565,6 +9565,159 @@ msgstr "{vocal:%|voix} de soutien par"
msgid "{vocal:%|vocals} support for"
msgstr "{vocal:%|voix} de soutien pour"
+#~ msgid "Indicates a webpage that reviews the release (group) in question."
+#~ msgstr ""
+#~ "Indique une page Web qui propose une critique de la parution (groupe de) "
+#~ "en question."
+
+#~ msgid ""
+#~ "Indicates the composer for this release, i.e. the artist who wrote the "
+#~ "music (not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Indique le compositeur pour cette parution, c.-à-d. l’artiste qui a écrit "
+#~ "la musique (pas nécessairement les paroles)."
+
+#~ msgid ""
+#~ "Indicates the composer for this work, i.e. the artist who wrote the music "
+#~ "(not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Indique le compositeur pour cette œuvre, c.-à-d. l’artiste qui a écrit la "
+#~ "musique (pas nécessairement les paroles)."
+
+#~ msgid ""
+#~ "Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+#~ "between artists, or closing the night after a concert)."
+#~ msgstr ""
+#~ "Relie un événement à un DJ ayant un rôle de soutien (par exemple, DJing "
+#~ "entre les artistes, ou pour finir la nuit après un concert)."
+
+#~ msgid ""
+#~ "This attribute indicates a member the band is named after and without "
+#~ "which it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+#~ msgstr ""
+#~ "Cet attribut indique un membre qui a donné son nom au groupe et sans "
+#~ "lequel ce groupe n’existerait pas (p. ex. Miles Davis -> Miles Davis "
+#~ "Sextet)."
+
+#~ msgid ""
+#~ "This attribute indicates that the streamable content is not audio but "
+#~ "video."
+#~ msgstr ""
+#~ "Cet attribut indique que le contenu du flux n’est pas de l’audio mais de "
+#~ "la vidéo."
+
+#~ msgid ""
+#~ "This indicates that a person is, or was, the artistic director of a group "
+#~ "(e.g. a ballet/opera company)."
+#~ msgstr ""
+#~ "Ceci indique qu’une personne est, ou était, le directeur artistique d’un "
+#~ "groupe (par exemple une compagnie de ballet ou d’opéra)."
+
+#~ msgid ""
+#~ "This indicates that a work is made up of multiple parts (e.g. an "
+#~ "orchestral suite broken into movements)"
+#~ msgstr ""
+#~ "Ceci indique qu’une œuvre est composée de plusieurs parties (p. ex. une "
+#~ "suite orchestrale divisée en mouvements). "
+
+#~ msgid ""
+#~ "This indicates that the recording is not of the entire work, e.g. "
+#~ "excerpts from, conclusion of, etc."
+#~ msgstr ""
+#~ "Ceci indique qu’un enregistrement n’est pas une œuvre entière, p. ex. des "
+#~ "extraits, une conclusion etc."
+
+#~ msgid ""
+#~ "This links a series to its profile (e.g. for a festival) or project (e.g. "
+#~ "for a specific tour, or for compiling a classical catalogue) at a "
+#~ "crowdfunding site like Kickstarter or Indiegogo."
+#~ msgstr ""
+#~ "Indique pour une série son profil (par exemple pour un festival) ou le "
+#~ "projet correspondant (par exemple pour une tournée ou une compilation) "
+#~ "sur un site de financement participatif tel que Kickstarter ou Indiegogo."
+
+#~ msgid ""
+#~ "This relationship indicates that a person was a teacher at an event (e.g. "
+#~ "a masterclass)."
+#~ msgstr ""
+#~ "Cette relation indique qu’une personne était un professeur à un "
+#~ "événement, tel qu’un cours de maître (ou « master class ») par exemple."
+
+#~ msgid ""
+#~ "This relationship type is used to indicate that a release group is a "
+#~ "cover version of another release group, i.e. when an artist performs a "
+#~ "new rendition of another artist's album.
\n"
+#~ "For individual songs, see the recording-work performance relationship type."
+#~ msgstr ""
+#~ "Ce type de relation est utilisé pour indiquer qu’un groupe de parution "
+#~ "est une reprise d’un autre groupe de parution, c.-à-d. quand un artiste "
+#~ "fait une nouvelle interprétation de l’album d’un autre artiste."
+
+#~ msgid ""
+#~ "This relationship type is used to link a release to a site where the "
+#~ "tracks can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Ce type de relation est utilisé pour relier une parution à un site où ses "
+#~ "pistes peuvent être légalement écoutées en flux continu en contrepartie "
+#~ "d’un abonnement payant, p. ex. Tidal.\n"
+#~ "\n"
+#~ "Si le site permet l’écoute gratuite, utilisez « diffusion gratuite en "
+#~ "flux continu » à la place."
+
+#~ msgid ""
+#~ "This relationship type is used to link a release to a site where the "
+#~ "tracks can be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "Ce type de relation est utilisé pour relier une parution à un site où les "
+#~ "pistes peuvent être légalement et gratuitement écoutées en flux continu, "
+#~ "p. ex. Spotify."
+
+#~ msgid ""
+#~ "This relationship type is used to link a track to a site where the track "
+#~ "can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Ce type de relation est utilisé pour relier une piste à un site où la "
+#~ "piste peut être légalement écoutée en flux continu en contrepartie d’un "
+#~ "abonnement payant, p. ex. Tidal.\n"
+#~ "\n"
+#~ "Si le site permet l’écoute gratuite, utilisez « diffusion gratuite en "
+#~ "flux continu » à la place."
+
+#~ msgid ""
+#~ "This relationship type is used to link a track to a site where the track "
+#~ "can be legally streamed for free, such as Spotify for audio tracks or "
+#~ "YouTube for videos."
+#~ msgstr ""
+#~ "Ce type de relation est utilisé pour relier une piste à un site où la "
+#~ "piste peut être légalement et gratuitement écoutée en flux continu, tel "
+#~ "que Spotify pour les pistes audio ou YouTube pour les vidéos."
+
+#~ msgid ""
+#~ "This relationship type is used to link an artist to a site where music "
+#~ "can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Ce type de relation est utilisé pour relier un artiste à un site où sa "
+#~ "musique peut être légalement écoutée en flux continu en contrepartie d’un "
+#~ "abonnement payant, p. ex. Tidal.\n"
+#~ "\n"
+#~ "Si le site permet l’écoute gratuite, utilisez « diffusion gratuite en "
+#~ "flux continu » à la place."
+
+#~ msgid ""
+#~ "This relationship type is used to link an artist to a site where music "
+#~ "can be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "Ce type de relation est utilisé pour relier un artiste à un site où sa "
+#~ "musique peut être légalement et gratuitement écoutée en flux continu, p. "
+#~ "ex. Spotify."
+
#~ msgid "performed {additional} chorus master on"
#~ msgstr "était chef de chœur {additional:supplémentaire} sur"
diff --git a/po/relationships.gl.po b/po/relationships.gl.po
index 17d9b3f5fc6..059f0037280 100644
--- a/po/relationships.gl.po
+++ b/po/relationships.gl.po
@@ -46,10 +46,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -303,6 +303,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -333,10 +339,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -487,14 +489,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -866,7 +868,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1069,8 +1071,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1207,7 +1209,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1230,7 +1232,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1578,8 +1580,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1644,8 +1646,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1724,8 +1726,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1748,8 +1750,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1874,16 +1876,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1901,8 +1903,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2229,9 +2231,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2464,18 +2466,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2562,9 +2564,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2793,8 +2795,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2833,8 +2835,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2940,8 +2942,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2961,8 +2963,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2973,8 +2975,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3256,7 +3258,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3265,7 +3267,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3273,13 +3275,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3289,7 +3306,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3297,28 +3314,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3326,7 +3328,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3375,9 +3377,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3415,9 +3417,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3434,9 +3436,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3481,9 +3483,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3603,14 +3605,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3621,8 +3623,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3632,8 +3634,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4061,8 +4063,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4357,15 +4359,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4373,8 +4375,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4676,11 +4678,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4916,8 +4918,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6500,7 +6502,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6512,7 +6513,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6533,6 +6534,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6979,22 +6988,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7763,8 +7772,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7786,8 +7794,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7925,6 +7932,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7934,6 +7945,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8525,7 +8540,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.he.po b/po/relationships.he.po
index c1a136a9d17..c99002184ef 100644
--- a/po/relationships.he.po
+++ b/po/relationships.he.po
@@ -59,10 +59,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -329,6 +329,12 @@ msgstr ""
"ציון מוזיקאי שתומך ווקאלית לאורך זמן באמן אחר באלבומים ו / או בקונצרטים. זהו "
"קשר אדם-אמן, שבדרך כלל חל על אמני סולו ידועים, לעיתים יכול לחול על הרכבים."
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -360,10 +366,6 @@ msgstr "ציון אח או אחות של אמן עם הורה משותף אחד
msgid "Indicates a webpage that reviews the event in question."
msgstr "ציון עמוד מרשתת המבקר את הארוע המדובר."
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr "ציון עמוד מרשתת המבקר את ההוצאה (הרכב) המדוברים."
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr "ציון עמוד מרשתת ממנו ניתן להוריד הוצאות של חברת תקליטים בחינם."
@@ -527,17 +529,15 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"ציון מלחין ההוצאה, כלומר, האמן שכתב את המוזיקה (אך לא בהכרך את התַּמְלִיל)."
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"ציון מלחין היצירה, כלומר, האמן שכתב את המוזיקה (אך לא בהכרך את התַּמְלִיל)."
#: DB:link_type/description:845
msgid "Indicates the event where the work had its first performance"
@@ -921,11 +921,9 @@ msgstr "קישור ארוע לאחד מקטעי התמיכה (מוכר גם כק
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
-"קישור ארוע לדי.ג'י שהופיו בו בתפקיד תומך (כלומר השמעות בין אמנים, או סגירת "
-"ערכב לאחר ההופעה)."
#: DB:link_type/description:800
msgid ""
@@ -1130,8 +1128,8 @@ msgstr "הפניה לעמוד ויקיפדיה של יצירה זו."
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1268,10 +1266,8 @@ msgstr "ציון הופעת אמן 'אורח' כאשר האמן המבצע, לר
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
-"תכונה זו מציינת חבר להקה, שהלהקה נקראת על שמו ובלעדיו היא לא הייתה קיימת "
-"(למשל מיילס דייוויס - & gt; סקסטט מיילס דייוויס)"
#: DB:link_attribute_type/description:511
msgid ""
@@ -1295,8 +1291,8 @@ msgstr "תכונה זו מציינת את עובדת היות האמן חבר מ
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
-msgstr "התכונה מציינת שהתוכן הניתן להזרמה אינו שמע אלא חוזי."
+"This attribute indicates that the content is not audio (or text) but video."
+msgstr ""
#: DB:link_attribute_type/description:788
msgid "This attribute indicates the number of an entity in a series."
@@ -1465,8 +1461,8 @@ msgid ""
msgstr ""
"תאור מהנדס שאחראי לחיבור רכיבים שונים בהקלטת השמע, או להפצה מחודשת של חומרים "
"שהוקלטו במפגשים. בדרך כלל, משני או נוסף לעבודה שביצע מהנדס הערבול. בכלל זה "
-"גם התאמה של רצועה ארוכה לרצף בן 3 דקות, כך שתתאים לתכנית רדיו (\"עריכת רדיו"
-"\")."
+"גם התאמה של רצועה ארוכה לרצף בן 3 דקות, כך שתתאים לתכנית רדיו (\"עריכת "
+"רדיו\")."
#: DB:link_type/description:133 DB:link_type/description:29
msgid ""
@@ -1693,9 +1689,9 @@ msgstr "ציון שאדם הוא מנצח בהרכב."
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
-msgstr "ציון שאדם היה מנהל אמנותי של הרכב (כלומר, בלט/אופרה)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
+msgstr ""
#: DB:link_type/description:137
msgid ""
@@ -1737,8 +1733,8 @@ msgstr ""
" ציון שההקלטה היא ליקוט של מספר הקלטות אחרות. חל על הקלטה ארוכה שמכילה מספר "
"שירים אחד אחרי השני, בהו לא נעשה שינוי חומרי השמע מהקלטות המקור. אם הרצועות "
"נקטעות או משתלבות זו בזו, נכון יותר יהיה לזכות את האדם הזה כ־סוג קשר־גומלין ערבול די־"
-"ג'י."
+"relationship/451076df-61cf-46ab-9921-555cab2f050d\">סוג קשר־גומלין ערבול "
+"די־ג'י."
#: DB:link_type/description:894
msgid ""
@@ -1771,9 +1767,9 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
-msgstr "ציון שיצירה הורכבה מחלקים רבים (כלומר, מערכה תזמורתית חולקה לתנועות) "
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
+msgstr ""
#: DB:link_type/description:858
msgid ""
@@ -1859,8 +1855,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1887,9 +1883,9 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
-msgstr "ציון שההקלטה אינה היצירה המלאה, כלומר, קטעים מ־ מסכנות של, וכו'."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
+msgstr ""
#: DB:link_attribute_type/description:578
msgid "This indicates that the recording is of a live performance."
@@ -2022,8 +2018,8 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
"ציון הארגון שהפיץ (או התקשר עם חברת הפצה). שונה ממושג חברת התקליטים,"
@@ -2032,8 +2028,8 @@ msgstr ""
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
"ציון הארגון שייצר (או התקשר עם חברת ייצור). שונה ממושג חברת התקליטים."
@@ -2051,14 +2047,14 @@ msgid ""
"This indicates the organization that printed a release. This is not"
"strong> the same concept as the record label."
msgstr ""
-"ציון הארגון שהדפיס את ההוצאה. זה לא אותו מושג כמו חברת התקליטים."
+"ציון הארגון שהדפיס את ההוצאה. זה לא אותו מושג כמו חברת התקליטים."
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
"ציון הארגון שקידמה (או התקשר עם חברת קידום). שונה ממושג חברת התקליטים."
@@ -2069,8 +2065,8 @@ msgid ""
"not the same concept as the record "
"label."
msgstr ""
-"ציון הארגון ששחרר הוצאה. שונה ממושג חברת התקליטים."
+"ציון הארגון ששחרר הוצאה. שונה ממושג חברת התקליטים."
#: DB:link_type/description:300
msgid ""
@@ -2258,8 +2254,8 @@ msgid ""
"This is used to indicate that the release group is a mash-up mash-up of two (or more) other release groups."
msgstr ""
-"משמש לציון עובדת היות קבוצת הוצאה תערובתשל שתים (או יותר קבוצות הוצאה אחרות."
+"משמש לציון עובדת היות קבוצת הוצאה תערובתשל שתים (או יותר קבוצות הוצאה אחרות."
#: DB:link_type/description:227
msgid ""
@@ -2335,10 +2331,11 @@ msgid ""
"relationship/9162dedd-790c-446c-838e-240f877dbfe2\">DJ-mixer for "
"crediting the person who created the DJ-mix."
msgstr ""
-"משמש לקישור קבוצת הוצאה המכילה גרסתערבול די־ג'י של הוצאה לקבוצת ההוצאה המכילה את הוצאת המקור. ראו ערבול די־ג'י"
-"a>המזכה את האדם שיצר את ערבול די־ג'י."
+"משמש לקישור קבוצת הוצאה המכילה גרסתערבול די־ג'י של הוצאה לקבוצת ההוצאה המכילה את "
+"הוצאת המקור. ראו ערבול די־ג'יהמזכה את "
+"האדם שיצר את ערבול די־ג'י."
#: DB:link_type/description:284
msgid ""
@@ -2437,9 +2434,9 @@ msgstr "משמש לקישור יצירה להקלטות שלה."
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
"משמש לציון ש־אמן שיתף פעולה "
"במיזם קצר טווח, למקרים בהם לא ניתן להשתמש במזכי אמנים."
@@ -2706,18 +2703,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
"קישור קבוצת הוצאה לאמן, לציין שמדובר אלבום הוקרה. אלבומי הוקרה נקראים לעתים "
"קרובות תתואר \"מחווה לאמן\", מכילים כיסויים לשירים של האמן המוקר, מבוצעים "
@@ -2821,12 +2818,10 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
-"קישור סדרה לפרופיל (למשל, לפסטיבל) או מיזם (למשל, סיבוב הופעות או הכנת קטלוג "
-"קלאסי) לאתר גיוס-המונים כגון קיקסטארט או אינדיגוגו."
#: DB:link_type/description:97
msgid ""
@@ -3071,8 +3066,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
"קישור ישות לרשומת ישות זהה במסד נתונים אחר. נא לכבד את הרשימה הלבנה."
@@ -3119,8 +3114,8 @@ msgstr "קישור לאמנים בקשרי נשואין עם אמנים אחרי
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
"קישור גרסאות שונות של אותה יצירה."
@@ -3172,10 +3167,11 @@ msgid ""
"artistically important way. It may, however, result in recordings that "
"differ in length by a few seconds."
msgstr ""
-"קישור בין שני הוצאות, שהאחת היא חידוש עוקת-האבשל השנייה. מתבצע לרוב כדי לשפר את איכות השמע או להתאמו "
-"לציוד השמעה חדיש ומתקדם יותר. התהליך בדרך כלל אינו כרוך בשינוי המוזיקה בצורה "
-"מהותית מבחינה אמנותית. עם זאת, עשוי לגרום לשינויים בארכי זמן ההקלטות."
+"קישור בין שני הוצאות, שהאחת היא חידוש עוקת-האבשל השנייה. מתבצע לרוב כדי לשפר "
+"את איכות השמע או להתאמו לציוד השמעה חדיש ומתקדם יותר. התהליך בדרך כלל אינו "
+"כרוך בשינוי המוזיקה בצורה מהותית מבחינה אמנותית. עם זאת, עשוי לגרום לשינויים "
+"בארכי זמן ההקלטות."
#: DB:link_type/description:110
msgid "This links two siblings (brothers or sisters)."
@@ -3196,8 +3192,8 @@ msgid ""
"Virtual_International_Authority_File\">more information on Wikipedia)"
msgstr ""
"הפניה לעמוד VIAF של אמן זה. VIAF הוא מיזם "
-"בינלאומי להנגשת קובץ הרשאות משותף לספריות ברחבי העולם. קובץ ההרשאות דומה ל־"
-"MBID לספריות. (מידע נוסף בויקיפדיה)"
#: DB:link_type/description:311
@@ -3257,11 +3253,11 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
-"קשר־גומלין המתאר מען url בו ניתן למצוא תַּמְלִיל לאמן. מורשים רק אתרים שברשימת ההיתרים."
+"קשר־גומלין המתאר מען url בו ניתן למצוא תַּמְלִיל לאמן. מורשים רק אתרים שברשימת ההיתרים."
#: DB:link_type/description:982
msgid ""
@@ -3270,8 +3266,8 @@ msgid ""
"Relationships/URLs/Lyrics_whitelist\">whitelist are permitted."
msgstr ""
"קשר־גומלין המתאר מען url בו ניתן למצוא תַּמְלִיל חברת תקליטים (לרוב כמפרסם). "
-"מורשים רק אתרים שברשימת ההיתרים."
+"מורשים רק אתרים שברשימת ההיתרים."
#: DB:link_type/description:93
msgid ""
@@ -3286,8 +3282,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
"קשר־גומלין המתאר מען url בו ניתן למצוא תַּמְלִיל ליצירה. מורשים רק אתרים שברשימת ההיתרים."
@@ -3300,9 +3296,9 @@ msgstr "קשר־גומלין זה מציין שאמן זוכה כעורך הסִ
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
-msgstr "קשר־גומלין זה מציין אדם שהיה מורה/בארוע (כלומר בכיתת אמן)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
+msgstr ""
#: DB:link_type/description:847
msgid ""
@@ -3381,9 +3377,9 @@ msgid ""
"for release groups."
msgstr ""
"קשר־הגומלין הזה הוצא משימוש, מכיוון שהשימוש בו כמעט תמיד היה שגוי. כדי לציין "
-"שהקלטה בהוצאה מכילה דגימות שנלקחו מתוך סרט, הצגה או משחק, יש להשתמש קשר־"
-"גומלין מען url הקלטה. אם אינכם יודעים באילו הקלטות משתמשים בדגימות, אנא ציין "
-"זאת בביאור.\n"
+"שהקלטה בהוצאה מכילה דגימות שנלקחו מתוך סרט, הצגה או משחק, יש להשתמש "
+"קשר־גומלין מען url הקלטה. אם אינכם יודעים באילו הקלטות משתמשים בדגימות, אנא "
+"ציין זאת בביאור.\n"
"
\n"
"לציון שהוצאה היא רצועת שמע, נא להשתמש ב־סוג קשר־גומלין IMDB "
@@ -3601,8 +3597,8 @@ msgid ""
"be merged."
msgstr ""
"סוג קשר־גומלין זה הוצא משימוש! נא למזג שיפורי איכות עותקי-"
-"אב שונים."
+"Recording#Recordings_with_Different_Mastering\">נא למזג שיפורי איכות "
+"עותקי-אב שונים."
#: DB:link_type/description:238
msgid ""
@@ -3645,20 +3641,16 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
msgstr ""
-"סוג קשר־גומלין זה משמש לציון שקבוצת הוצאה היא גרסת כיסוי של קבוצת הוצאה "
-"אחרת, לדוגמה. כאשר אמן מבצע ביצוע חדש של אלבום של אמן אחר.
\n"
-"לשירים יְחִידָנִיים, ראו סוג קשר ביצועה יצירת הקלטה."
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3666,15 +3658,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
-"סוג קשר־גומלין זה משמש לקישור חברת תקליטים לאתר ממנו ניתן להזרים את הרצועות "
-"באופן חוקי בחינם, כגון ספוטיפיי."
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr "סוג קשר־גומלין משמש לקשור חברת תקליטים לבלוג שלה."
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3686,63 +3691,30 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
-"סוג קשר־גומלין זה משמש לקישור הוצאה לאתר ממנו ניתן להזרים את הרצועות באופן "
-"חוקי תמורת דמי מנוי, לדוגמה טידאל. \n"
-"\n"
-"אם האתר מאפשר הזרמה חינמית, נא להשתמש ב 'זרמה חינמית' במקום זאת."
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-"משמש לקישור הוצאה לאתר ממנו ניתן להזרים את הרצועות באופן חוקי בחינם, כגון "
-"ספוטיפיי."
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-"סוג קשר־גומלין זה משמש לקישור רצועה לאתר ממנו ניתן להזרים את הרצועות באופן "
-"חוקי תמורת דמי מנוי, לדוגמה טידאל.\n"
-"\n"
-"אם האתר מאפשר הזרמה חינמית, נא להשתמש ב 'זרמה חינמית' במקום זאת."
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
-"סוג קשר־גומלין זה משמש לקישור רצועה לאתר ממנו ניתן להזרים את הרצועות באופן "
-"חוקי בחינם, כמו ספוטיפיי לרצועות שמע ויוטיוב לוידאו."
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
-"סוג קשר־גומלין זה משמש לקישור אמן לאתר ממנו ניתן להזרים את הרצועות באופן "
-"חוקי תמורת דמי מנוי, לדוגמה טידאל. \n"
-"\n"
-"אם האתר מאפשר הזרמה חינמית, נא להשתמש ב 'זרמה חינמית' במקום זאת."
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
-"סוג קשר־גומלין זה משמש לקישור אמן לאתר ממנו ניתן להזרים את הרצועות באופן "
-"חוקי בחינם, כגון ספוטיפיי."
#: DB:link_type/description:199
msgid "This relationship type is used to link an artist to their blog."
@@ -3798,9 +3770,9 @@ msgstr "סוג קשר־גומלין זה מקשר חברת תקליטים לעמ
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"סוג קשר־גומלין זה מקשר חברת תקליטים לעמוד מתאים ב־VGMdb. מיזם קהילתי המוקדש לקטלוג מוזיקת משחקים ואנימה."
@@ -3840,9 +3812,9 @@ msgstr "סוג קשר־גומלין זה מקשר מקום לעמוד המתאי
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"סוג קשר־גומלין זה מקשר הוצאה לעמוד מתאים ב־VGMdb. מיזם קהילתי המוקדש לקטלוג מוזיקת משחקים ואנימה."
@@ -3861,9 +3833,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"סוג קשר־גומלין זה מקשר אמן לעמוד מתאים ב־VGMdb. מיזם קהילתי המוקדש לקטלוג מוזיקת משחקים ואנימה."
@@ -3914,9 +3886,9 @@ msgstr "סוג קשר־גומלין זה מקשר ארוע לכרזת הפרסו
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"סוג קשר־גומלין זה מקשר ארוע לעמוד מתאים ב־VGMdb. מיזם קהילתי המוקדש לקטלוג מוזיקת משחקים ואנימה."
@@ -4049,14 +4021,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
"שימוש בקשר־גומלין זה למזכים כגון \"הוצאה עובדה על־ידי X עבור חברת תקליטים\""
@@ -4069,8 +4041,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -4081,8 +4053,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
"שימוש בקשר־גומלין זה למזכים כגון \"הוצאה הופקה על־ידי X עבור חברת תקליטים\""
@@ -4519,8 +4491,8 @@ msgstr "ניתן לרכישה בהורדה מ־"
msgid "can be purchased for mail-order at"
msgstr "ניתן לרכישה בהזמנת דוא\"ל ב־"
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr "ניתן להזרמה ב־"
@@ -4815,15 +4787,15 @@ msgid "creative position"
msgstr "משרת ניהול יצירתי"
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr "גיוס־המונים"
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr "עמוד גיוס־המונים"
@@ -4831,8 +4803,8 @@ msgstr "עמוד גיוס־המונים"
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr "עמוד גיוס־המונים ל־"
@@ -5134,11 +5106,11 @@ msgstr "עמוד הורדות חינמי לתווים של"
msgid "free music streaming page for"
msgstr "עמוד הזרמת מוזיקה חינמי עבור"
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr "עמוד הזרמת מוזיקה {video} עבור"
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr "הזרמה חופשית"
@@ -5374,8 +5346,8 @@ msgstr "קיים קטלוג הקלטות ב־"
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr "קיים עמוד גיוס־המונים ב־"
@@ -6962,7 +6934,6 @@ msgid "provided legal representation for"
msgstr "ייצוג משפטי ל־"
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr "{additional} נהול אמנותי ב־"
@@ -6974,7 +6945,7 @@ msgstr "provided {additional} תמונות עטיפה ב־"
msgid "provided {additional} creative direction on"
msgstr " {additional} נהול יצירתי ב־"
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr "{additional} עיצוב ב־"
@@ -6995,6 +6966,14 @@ msgstr "{additional} איור ב־"
msgid "provided {additional} legal representation for"
msgstr "{additional} ייצוג משפטי ל־"
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -7441,22 +7420,22 @@ msgstr "צעד"
msgid "stream for free"
msgstr "הזרמת חינמית"
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr "הזרמת (חוזי) חינמית"
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr "הזרמה"
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr "עמוד הזרמה"
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr "עמוד הזרמה ל־"
@@ -8232,8 +8211,7 @@ msgid "{additional} arranging location for"
msgstr "{additional} אתר עיבוד ל־"
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr "{additional} ניהול אמנותי"
@@ -8255,8 +8233,7 @@ msgstr "{additional} אתר הלחנה של"
msgid "{additional} creative direction"
msgstr "{additional} ניהול יצירתי"
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr "{additional} עיצוב"
@@ -8394,6 +8371,10 @@ msgstr "{additional} כותב"
msgid "{additional} writing location for"
msgstr "{additional} אתר כתיבה ל־"
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -8403,6 +8384,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8998,7 +8983,7 @@ msgstr "{translated} {parody} גרסה של"
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr "{translator:translated|wrote} {additional} lהערות אלבום עבור"
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr "(חוזי) ניתן להזרים בחינם מ"
@@ -9010,6 +8995,143 @@ msgstr "תמיכה על־ידי {vocal:%|vocals}"
msgid "{vocal:%|vocals} support for"
msgstr "תמיכה עבור {vocal:%|vocals}"
+#~ msgid "Indicates a webpage that reviews the release (group) in question."
+#~ msgstr "ציון עמוד מרשתת המבקר את ההוצאה (הרכב) המדוברים."
+
+#~ msgid ""
+#~ "Indicates the composer for this release, i.e. the artist who wrote the "
+#~ "music (not necessarily the lyrics)."
+#~ msgstr ""
+#~ "ציון מלחין ההוצאה, כלומר, האמן שכתב את המוזיקה (אך לא בהכרך את התַּמְלִיל)."
+
+#~ msgid ""
+#~ "Indicates the composer for this work, i.e. the artist who wrote the music "
+#~ "(not necessarily the lyrics)."
+#~ msgstr ""
+#~ "ציון מלחין היצירה, כלומר, האמן שכתב את המוזיקה (אך לא בהכרך את התַּמְלִיל)."
+
+#~ msgid ""
+#~ "Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+#~ "between artists, or closing the night after a concert)."
+#~ msgstr ""
+#~ "קישור ארוע לדי.ג'י שהופיו בו בתפקיד תומך (כלומר השמעות בין אמנים, או "
+#~ "סגירת ערכב לאחר ההופעה)."
+
+#~ msgid ""
+#~ "This attribute indicates a member the band is named after and without "
+#~ "which it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+#~ msgstr ""
+#~ "תכונה זו מציינת חבר להקה, שהלהקה נקראת על שמו ובלעדיו היא לא הייתה קיימת "
+#~ "(למשל מיילס דייוויס - & gt; סקסטט מיילס דייוויס)"
+
+#~ msgid ""
+#~ "This attribute indicates that the streamable content is not audio but "
+#~ "video."
+#~ msgstr "התכונה מציינת שהתוכן הניתן להזרמה אינו שמע אלא חוזי."
+
+#~ msgid ""
+#~ "This indicates that a person is, or was, the artistic director of a group "
+#~ "(e.g. a ballet/opera company)."
+#~ msgstr "ציון שאדם היה מנהל אמנותי של הרכב (כלומר, בלט/אופרה)."
+
+#~ msgid ""
+#~ "This indicates that a work is made up of multiple parts (e.g. an "
+#~ "orchestral suite broken into movements)"
+#~ msgstr ""
+#~ "ציון שיצירה הורכבה מחלקים רבים (כלומר, מערכה תזמורתית חולקה לתנועות) "
+
+#~ msgid ""
+#~ "This indicates that the recording is not of the entire work, e.g. "
+#~ "excerpts from, conclusion of, etc."
+#~ msgstr "ציון שההקלטה אינה היצירה המלאה, כלומר, קטעים מ־ מסכנות של, וכו'."
+
+#~ msgid ""
+#~ "This links a series to its profile (e.g. for a festival) or project (e.g. "
+#~ "for a specific tour, or for compiling a classical catalogue) at a "
+#~ "crowdfunding site like Kickstarter or Indiegogo."
+#~ msgstr ""
+#~ "קישור סדרה לפרופיל (למשל, לפסטיבל) או מיזם (למשל, סיבוב הופעות או הכנת "
+#~ "קטלוג קלאסי) לאתר גיוס-המונים כגון קיקסטארט או אינדיגוגו."
+
+#~ msgid ""
+#~ "This relationship indicates that a person was a teacher at an event (e.g. "
+#~ "a masterclass)."
+#~ msgstr "קשר־גומלין זה מציין אדם שהיה מורה/בארוע (כלומר בכיתת אמן)."
+
+#~ msgid ""
+#~ "This relationship type is used to indicate that a release group is a "
+#~ "cover version of another release group, i.e. when an artist performs a "
+#~ "new rendition of another artist's album.
\n"
+#~ "For individual songs, see the recording-work performance relationship type."
+#~ msgstr ""
+#~ "סוג קשר־גומלין זה משמש לציון שקבוצת הוצאה היא גרסת כיסוי של קבוצת הוצאה "
+#~ "אחרת, לדוגמה. כאשר אמן מבצע ביצוע חדש של אלבום של אמן אחר.
\n"
+#~ "לשירים יְחִידָנִיים, ראו סוג קשר ביצועה יצירת הקלטה."
+
+#~ msgid ""
+#~ "This relationship type is used to link a label to a site where music can "
+#~ "be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "סוג קשר־גומלין זה משמש לקישור חברת תקליטים לאתר ממנו ניתן להזרים את "
+#~ "הרצועות באופן חוקי בחינם, כגון ספוטיפיי."
+
+#~ msgid ""
+#~ "This relationship type is used to link a release to a site where the "
+#~ "tracks can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "סוג קשר־גומלין זה משמש לקישור הוצאה לאתר ממנו ניתן להזרים את הרצועות "
+#~ "באופן חוקי תמורת דמי מנוי, לדוגמה טידאל. \n"
+#~ "\n"
+#~ "אם האתר מאפשר הזרמה חינמית, נא להשתמש ב 'זרמה חינמית' במקום זאת."
+
+#~ msgid ""
+#~ "This relationship type is used to link a release to a site where the "
+#~ "tracks can be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "משמש לקישור הוצאה לאתר ממנו ניתן להזרים את הרצועות באופן חוקי בחינם, כגון "
+#~ "ספוטיפיי."
+
+#~ msgid ""
+#~ "This relationship type is used to link a track to a site where the track "
+#~ "can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "סוג קשר־גומלין זה משמש לקישור רצועה לאתר ממנו ניתן להזרים את הרצועות "
+#~ "באופן חוקי תמורת דמי מנוי, לדוגמה טידאל.\n"
+#~ "\n"
+#~ "אם האתר מאפשר הזרמה חינמית, נא להשתמש ב 'זרמה חינמית' במקום זאת."
+
+#~ msgid ""
+#~ "This relationship type is used to link a track to a site where the track "
+#~ "can be legally streamed for free, such as Spotify for audio tracks or "
+#~ "YouTube for videos."
+#~ msgstr ""
+#~ "סוג קשר־גומלין זה משמש לקישור רצועה לאתר ממנו ניתן להזרים את הרצועות "
+#~ "באופן חוקי בחינם, כמו ספוטיפיי לרצועות שמע ויוטיוב לוידאו."
+
+#~ msgid ""
+#~ "This relationship type is used to link an artist to a site where music "
+#~ "can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "סוג קשר־גומלין זה משמש לקישור אמן לאתר ממנו ניתן להזרים את הרצועות באופן "
+#~ "חוקי תמורת דמי מנוי, לדוגמה טידאל. \n"
+#~ "\n"
+#~ "אם האתר מאפשר הזרמה חינמית, נא להשתמש ב 'זרמה חינמית' במקום זאת."
+
+#~ msgid ""
+#~ "This relationship type is used to link an artist to a site where music "
+#~ "can be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "סוג קשר־גומלין זה משמש לקישור אמן לאתר ממנו ניתן להזרים את הרצועות באופן "
+#~ "חוקי בחינם, כגון ספוטיפיי."
+
#~ msgid "performed {additional} chorus master on"
#~ msgstr "performed {additional} נהול מקהלה ב־"
diff --git a/po/relationships.hr.po b/po/relationships.hr.po
index 54f8e56e930..b1449edb9f9 100644
--- a/po/relationships.hr.po
+++ b/po/relationships.hr.po
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#: DB:link_attribute_type/description:1355
msgid "A performance-centered, usually one to three year postgraduate program."
@@ -47,10 +47,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -304,6 +304,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -334,10 +340,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -488,14 +490,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -867,7 +869,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1070,8 +1072,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1208,7 +1210,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1231,7 +1233,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1579,8 +1581,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1645,8 +1647,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1725,8 +1727,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1749,8 +1751,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1875,16 +1877,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1902,8 +1904,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2230,9 +2232,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2465,18 +2467,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2563,9 +2565,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2794,8 +2796,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2834,8 +2836,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2941,8 +2943,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2962,8 +2964,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2974,8 +2976,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3257,7 +3259,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3266,7 +3268,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3274,13 +3276,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3290,7 +3307,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3298,28 +3315,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3327,7 +3329,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3376,9 +3378,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3416,9 +3418,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3435,9 +3437,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3482,9 +3484,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3604,14 +3606,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3622,8 +3624,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3633,8 +3635,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4062,8 +4064,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4358,15 +4360,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4374,8 +4376,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4677,11 +4679,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4917,8 +4919,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6501,7 +6503,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6513,7 +6514,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6534,6 +6535,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6980,22 +6989,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7764,8 +7773,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7787,8 +7795,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7926,6 +7933,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7935,6 +7946,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8526,7 +8541,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.hu.po b/po/relationships.hu.po
index 4ca7662a3d5..bffc8900d5f 100644
--- a/po/relationships.hu.po
+++ b/po/relationships.hu.po
@@ -46,10 +46,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -303,6 +303,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -333,10 +339,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -487,14 +489,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -866,7 +868,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1069,8 +1071,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1207,7 +1209,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1230,7 +1232,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1578,8 +1580,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1644,8 +1646,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1724,8 +1726,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1748,8 +1750,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1874,16 +1876,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1901,8 +1903,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2229,9 +2231,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2464,18 +2466,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2562,9 +2564,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2793,8 +2795,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2833,8 +2835,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2940,8 +2942,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2961,8 +2963,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2973,8 +2975,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3256,7 +3258,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3265,7 +3267,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3273,13 +3275,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3289,7 +3306,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3297,28 +3314,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3326,7 +3328,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3375,9 +3377,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3415,9 +3417,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3434,9 +3436,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3481,9 +3483,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3603,14 +3605,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3621,8 +3623,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3632,8 +3634,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4061,8 +4063,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4357,15 +4359,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4373,8 +4375,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4676,11 +4678,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4916,8 +4918,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6500,7 +6502,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6512,7 +6513,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6533,6 +6534,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6979,22 +6988,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7763,8 +7772,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7786,8 +7794,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7925,6 +7932,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7934,6 +7945,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8525,7 +8540,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.id.po b/po/relationships.id.po
index cdfef79df69..e5f69bb2d8b 100644
--- a/po/relationships.id.po
+++ b/po/relationships.id.po
@@ -46,10 +46,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -303,6 +303,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -333,10 +339,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -487,14 +489,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -866,7 +868,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1069,8 +1071,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1207,7 +1209,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1230,7 +1232,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1578,8 +1580,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1644,8 +1646,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1724,8 +1726,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1748,8 +1750,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1874,16 +1876,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1901,8 +1903,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2229,9 +2231,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2464,18 +2466,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2562,9 +2564,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2793,8 +2795,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2833,8 +2835,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2940,8 +2942,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2961,8 +2963,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2973,8 +2975,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3256,7 +3258,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3265,7 +3267,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3273,13 +3275,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3289,7 +3306,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3297,28 +3314,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3326,7 +3328,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3375,9 +3377,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3415,9 +3417,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3434,9 +3436,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3481,9 +3483,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3603,14 +3605,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3621,8 +3623,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3632,8 +3634,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4061,8 +4063,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4357,15 +4359,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4373,8 +4375,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4676,11 +4678,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4916,8 +4918,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6500,7 +6502,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6512,7 +6513,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6533,6 +6534,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6979,22 +6988,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7763,8 +7772,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7786,8 +7794,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7925,6 +7932,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7934,6 +7945,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8525,7 +8540,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.it.po b/po/relationships.it.po
index 0aaae148c99..8c4d4955cdb 100644
--- a/po/relationships.it.po
+++ b/po/relationships.it.po
@@ -19,7 +19,7 @@
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
-"PO-Revision-Date: 2023-09-23 15:27+0000\n"
+"PO-Revision-Date: 2023-11-06 02:27+0000\n"
"Last-Translator: \"salo.rock\" \n"
"Language-Team: Italian social network"
-"a>, dove solo persone che sono legate all'etichetta possono postare "
+"Una pagina di social network è la pagina di un'etichetta su un social "
+"network, dove solo persone che sono legate all'etichetta possono postare "
"contenuti. Alcuni esempi sono pagine Facebook e account su Twitter, "
"Instagram e Flickr."
@@ -58,10 +58,11 @@ msgid ""
"people involved with the series can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"Una pagina di social network è la pagina di una serie su un social network"
-"a>, dove solo persone che sono legate alla serie possono postare contenuti. "
-"Alcuni esempi sono pagine Facebook e account su Twitter, Instagram e Flickr."
+"Una pagina di social network è la pagina di una serie su un social "
+"network, dove solo persone che sono legate alla serie possono postare "
+"contenuti. Alcuni esempi sono pagine Facebook e account su Twitter, "
+"Instagram e Flickr."
#: DB:link_type/description:429
msgid ""
@@ -80,10 +81,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
"Una pagina di social network è la pagina di artista su un social network, "
@@ -101,11 +102,11 @@ msgid ""
"Facebook pages and event entries, and accounts on Twitter, Instagram and "
"Flickr."
msgstr ""
-"Una pagina di social network è la pagina di un evento su un social network"
-"a>, dove solo persone che sono legate all'evento possono postare contenuti. "
-"Alcuni esempi sono pagine ed eventi Facebook e account su Twitter, Instagram "
-"e Flickr."
+"Una pagina di social network è la pagina di un evento su un social "
+"network, dove solo persone che sono legate all'evento possono postare "
+"contenuti. Alcuni esempi sono pagine ed eventi Facebook e account su "
+"Twitter, Instagram e Flickr."
#: DB:link_type/link_phrase:77 DB:link_type/reverse_link_phrase:77
msgid "ASIN"
@@ -369,6 +370,14 @@ msgstr ""
"applica ad artisti solisti famosi, anche se a volte si può applicare ai "
"gruppi."
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+"Indica una pagina che recensisce il gruppo di pubblicazioni o la "
+"pubblicazione in questione, che sia in forma testuale, audio o video."
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr "Indica una pagina con il programma ufficiale di una serie di eventi."
@@ -402,12 +411,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr "Indica una pagina web che recensisce l'evento in questione."
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-"Indica una pagina web che recensisce la pubblicazione (gruppo di "
-"pubblicazioni) in questione."
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -591,18 +594,18 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"Indica il compositore di questa pubblicazione, ovvero l'artista che ha "
-"scritto la musica (non necessariamente i testi)."
+"Indica il compositore di questa pubblicazione, cioè l'artista che ha scritto "
+"la musica (non necessariamente i testi)."
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"Indica il compositore di quest'opera, ovvero l'artista che ha scritto la "
+"Indica il compositore di quest'opera, cioè l'artista che ha scritto la "
"musica (non necessariamente i testi)."
#: DB:link_type/description:845
@@ -1049,11 +1052,11 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
"Collega un evento a un DJ che ha partecipato in un ruolo di supporto (per "
-"es. esibendosi nell'intermezzo tra artisti o chiudendo la serata dopo un "
+"esempio esibendosi nell'intermezzo tra artisti o chiudendo la serata dopo un "
"concerto)."
#: DB:link_type/description:800
@@ -1289,12 +1292,12 @@ msgstr "Indica la pagina di Wikipedia su quest'opera."
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
"Gli editori vanno aggiunti al livello delle opere. Ricorda che non"
-"strong> sono la stessa cosa dell'etichetta discografica."
+"strong> sono la stessa cosa dell'etichetta discografica."
#: DB:link_type/link_phrase:174
msgid "PureVolume"
@@ -1455,10 +1458,10 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
"Questo attributo indica un membro che dà il nome alla band e senza il quale "
-"essa non esisterebbe (per es. Miles Davis -> Miles Davis Sextet)."
+"essa non esisterebbe (per esempio Miles Davis -> Miles Davis Sextet)."
#: DB:link_attribute_type/description:511
msgid ""
@@ -1487,10 +1490,9 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
-"Questo attributo indica che il contenuto disponibile in streaming non è "
-"audio ma video."
+"Questo attributo indica che il contenuto non è audio (o testuale) ma video."
#: DB:link_attribute_type/description:788
msgid "This attribute indicates the number of an entity in a series."
@@ -1727,8 +1729,8 @@ msgstr ""
"Indica un tecnico responsabile per l'utilizzo di una console di missaggio "
"per mixare una traccia registrata in un unico brano musicale adatto alla "
"pubblicazione. Per il remissaggio, utilizza remixer."
+"relationship/7950be4d-13a3-48e7-906b-5af562e39544\" "
+"target=\"_blank\">remixer."
#: DB:link_type/description:26
msgid ""
@@ -1978,11 +1980,11 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
"Indica che una persona è, o è stata, il direttore artistico di un gruppo "
-"(per es. una compagnia di balletto/d'opera)."
+"(per esempio una compagnia di balletto/d'opera)."
#: DB:link_type/description:137
msgid ""
@@ -2071,11 +2073,11 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
-"Indica che un'opera è composta di più parti (per es. una suite per orchestra "
-"divisa in movimenti)."
+"Indica che un'opera è composta di più parti (per esempio una suite per "
+"orchestra divisa in movimenti)."
#: DB:link_type/description:858
msgid ""
@@ -2176,8 +2178,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
"Indica che il gruppo ha avuto più direttori d'orchestra o più musicisti "
"dello strumento selezionato che erano diretti da questo artista. Ciò è "
@@ -2212,10 +2214,10 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
-"Indica che la registrazione non è dell'intera opera, per es. brani da, "
+"Indica che la registrazione non è dell'intera opera, per esempio brani da, "
"conclusione di, ecc."
#: DB:link_attribute_type/description:578
@@ -2374,8 +2376,8 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
"Indica l'organizzazione che si occupa direttamente della distribuzione (o "
"che stipula contratti di distribuzione). \n"
@@ -2387,8 +2389,8 @@ msgstr ""
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
"Indica l'organizzazione che si occupa direttamente della fabbricazione (o "
"che stipula contratti di fabbricazione).\n"
@@ -2416,8 +2418,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
"Indica l'organizzazione che si occupa direttamente della promozione (o che "
"stipula contratti di promozione) per una pubblicazione. Non "
@@ -2662,10 +2664,11 @@ msgid ""
"relationship/28338ee6-d578-485a-bb53-61dbfd7c6545\">DJ-mixer for "
"crediting the person who created the DJ-mix."
msgstr ""
-"Serve a collegare una registrazione mixata da DJ a ciascuna delle registrazioni originali. Utilizza DJ mixer per "
-"accreditare la persona che ha creato il DJ mix."
+"Serve a collegare una registrazione mixata da DJ a ciascuna delle registrazioni "
+"originali. Utilizza DJ mixer per accreditare la persona che ha creato il "
+"DJ mix."
#: DB:link_type/description:1093
msgid "This is used to link a genre to its corresponding page on Allmusic."
@@ -2865,9 +2868,9 @@ msgstr "Serve a collegare le opere alle loro registrazioni."
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
"Serve a indicare che un artista "
"ha collaborato su un progetto di breve durata, in quei casi in cui non è "
@@ -2941,10 +2944,11 @@ msgid ""
"includes remixed versions of all (or most of) the tracks in the other "
"release group."
msgstr ""
-"Collega un gruppo di pubblicazioni remix al gruppo di pubblicazioni originale e serve a indicare che il "
-"gruppo di pubblicazioni comprende versioni remixate di tutte le (o della "
-"maggior parte delle) tracce nell'altro gruppo di pubblicazioni."
+"Collega un gruppo di pubblicazioni remix al gruppo di pubblicazioni originale e "
+"serve a indicare che il gruppo di pubblicazioni comprende versioni remixate "
+"di tutte le (o della maggior parte delle) tracce nell'altro gruppo di "
+"pubblicazioni."
#: DB:link_type/description:230
msgid ""
@@ -3178,23 +3182,23 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
"Collega un gruppo di pubblicazioni all'artista a cui è dedicato. Si "
"riferisce a dediche come per es. \"Questo album è dedicato alla memoria di "
"Artista\". Per album tributo che contengono cover dell'artista, utilizza la "
-"relazione tributo."
+"relazione tributo."
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
"Collega un gruppo di pubblicazioni a un artista per indicare che si tratta "
"di un album tributo. Gli album tributo hanno spesso un titolo simile a \"Un "
@@ -3316,22 +3320,22 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
-"Collega una serie al suo profilo (per es. se si tratta di un festival) o "
-"progetto (per es. se si tratta di uno specifico tour o di compilare un "
-"catalogo di musica classica) su un sito di crowdfunding come Kickstarter o "
-"Indiegogo."
+"Collega una serie alla sua pagina di profilo (per esempio, nel caso di un "
+"festival) o alla sua pagina di progetto (per esempio, nel caso di uno "
+"specifico tour o della compilazione di un catalogo di musica classica) su un "
+"sito di crowdfunding come Kickstarter o Indiegogo."
#: DB:link_type/description:97
msgid ""
"This links a soundtrack release group to the IMDb page for the movie, show or game of which it is a soundtrack."
msgstr ""
-"Collega il gruppo di pubblicazioni di una colonna sonora alla pagina IMDb del film, serie o gioco di cui è la "
+"Collega il gruppo di pubblicazioni di una colonna sonora alla pagina IMDb del film, serie o gioco di cui è la "
"colonna sonora."
#: DB:link_type/description:992
@@ -3530,8 +3534,8 @@ msgid ""
"This links an artist to that artist's page at BBC Music."
msgstr ""
-"Collega un artista alla sua pagina su BBC Music."
+"Collega un artista alla sua pagina su BBC Music."
#: DB:link_type/description:174
msgid "This links an artist to the equivalent entry at PureVolume."
@@ -3568,7 +3572,7 @@ msgid ""
"href=\"/relationship/40dff87a-e475-4aa6-b615-9935b564d756\">editor "
"relationship type."
msgstr ""
-"Collega un edit (ovvero una versione rivista) alla sua registrazione "
+"Collega un edit (cioè una versione rivista) alla sua registrazione "
"originale. Per questa relazione, un \"edit\" può essere una versione "
"radiofonica (\"radio edit\", cioè una versione di circa 3 minuti che rende "
"una traccia più lunga adatta ad essere riprodotta radiofonicamente), o una "
@@ -3593,12 +3597,12 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
"Collega un'entità alla voce rispettiva su un altro database. Assicurati di "
-"rispettare la whitelist."
+"rispettare la whitelist."
#: DB:link_type/description:804
msgid ""
@@ -3643,11 +3647,11 @@ msgstr "Collega artisti che hanno avuto legami matrimoniali."
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
-"Collega diverse revisioni della stessa opera."
+"Collega diverse revisioni della stessa opera."
#: DB:link_type/description:212
msgid "This links to a catalog or list of records published by the label."
@@ -3801,8 +3805,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
"Questa relazione indica un URL a cui è possibile trovare i testi "
"dell'artista. Solo i siti presenti nella whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
"Questa relazione indica un URL a cui è possibile trovare i testi dell'opera. "
"Solo i siti presenti nella
\n"
-"Per indicare che la pubblicazione è una colonna sonora, utilizza il tipo di relazione "
-"IMDB per gruppi di pubblicazioni."
+"Per indicare che la pubblicazione è una colonna sonora, utilizza il tipo di "
+"relazione IMDB per gruppi di pubblicazioni."
#: DB:link_type/description:206
msgid ""
@@ -4200,8 +4204,9 @@ msgstr ""
"all'indirizzo specificato.\n"
"
\n"
"Per indicare che la registrazione forma parte di una colonna sonora, "
-"utilizza il tipo di relazione IMDB per gruppi di pubblicazioni."
+"utilizza il tipo di relazione IMDB "
+"per gruppi di pubblicazioni."
#: DB:link_type/description:236
msgid ""
@@ -4256,7 +4261,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -4270,13 +4275,13 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
"Questo tipo di relazione serve a collegare un'etichetta a un sito su cui la "
-"sua musica è disponibile in streaming a pagamento in modo legale, per es. "
-"Apple Music.\n"
+"sua musica è disponibile in streaming in modo legale dietro pagamento di un "
+"abbonamento, per esempio Apple Music.\n"
"\n"
"Se il sito permette lo streaming gratuito, utilizza la relazione \"streaming "
"gratuito\"."
@@ -4284,10 +4289,10 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
"Questo tipo di relazione serve a collegare un'etichetta a un sito su cui la "
-"sua musica è disponibile in streaming gratuito in modo legale, per es. "
+"sua musica è disponibile in streaming gratuito in modo legale, per esempio "
"Spotify."
#: DB:link_type/description:224
@@ -4296,6 +4301,30 @@ msgstr ""
"Questo tipo di relazione può essere usato per collegare un'etichetta al suo "
"blog."
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+"Questo tipo di relazione serve a collegare una registrazione a un sito su "
+"cui è disponibile in streaming in modo legale dietro pagamento di un "
+"abbonamento, per esempio Tidal.\n"
+"\n"
+"Se il sito permette lo streaming gratuito, utilizza la relazione \"streaming "
+"gratuito\"."
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+"Questo tipo di relazione serve a collegare una registrazione a un sito su "
+"cui è disponibile in streaming gratuito in modo legale, come Spotify per le "
+"tracce audio o YouTube per i video."
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -4307,13 +4336,13 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
"Questo tipo di relazione serve a collegare una pubblicazione a un sito su "
-"cui le tracce sono disponibili in streaming a pagamento in modo legale, per "
-"es. Tidal.\n"
+"cui le tracce sono disponibili in streaming in modo legale dietro pagamento "
+"di un abbonamento, per esempio Tidal.\n"
"\n"
"Se il sito permette lo streaming gratuito, utilizza la relazione \"streaming "
"gratuito\"."
@@ -4321,46 +4350,22 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
+"can be legally streamed for free, such as Spotify."
msgstr ""
"Questo tipo di relazione serve a collegare una pubblicazione a un sito su "
-"cui le tracce sono disponibili in streaming gratuito in modo legale, per es. "
-"Spotify."
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-"Questo tipo di relazione serve a collegare una traccia a un sito su cui la "
-"traccia è disponibile in streaming a pagamento in modo legale, per es. "
-"Tidal.\n"
-"\n"
-"Se il sito permette lo streaming gratuito, utilizza la relazione \"streaming "
-"gratuito\"."
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
-msgstr ""
-"Questo tipo di relazione serve a collegare una traccia a un sito su cui la "
-"traccia è disponibile in streaming gratuito in modo legale, come Spotify per "
-"le tracce audio o YouTube per i video."
+"cui le tracce sono disponibili in streaming gratuito in modo legale, per "
+"esempio Spotify."
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
"Questo tipo di relazione serve a collegare un artista a un sito su cui la "
-"sua musica è disponibile in streaming a pagamento in modo legale, per es. "
-"Tidal.\n"
+"sua musica è disponibile in streaming in modo legale dietro pagamento di un "
+"abbonamento, per esempio Tidal.\n"
"\n"
"Se il sito permette lo streaming gratuito, utilizza la relazione \"streaming "
"gratuito\"."
@@ -4368,10 +4373,10 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
"Questo tipo di relazione serve a collegare un artista a un sito su cui la "
-"sua musica è disponibile in streaming gratuito in modo legale, per es. "
+"sua musica è disponibile in streaming gratuito in modo legale, per esempio "
"Spotify."
#: DB:link_type/description:199
@@ -4435,9 +4440,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"Questo tipo di relazione collega un'etichetta alla sua pagina corrispondente "
"su VGMdb. VGMdb è un progetto di comunità "
@@ -4491,9 +4496,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"Questo tipo di relazione collega una pubblicazione alla sua pagina "
"corrispondente su VGMdb. VGMdb è un "
@@ -4517,9 +4522,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"Questo tipo di relazione collega un artista alla sua pagina corrispondente "
"su VGMdb. VGMdb è un progetto di comunità "
@@ -4583,9 +4588,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"Questo tipo di relazione collega un evento alla sua pagina corrispondente su "
"VGMdb. VGMdb è un progetto di comunità "
@@ -4748,16 +4753,16 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
"Usa questa relazione per accreditamenti come \"Registrazione remixata da X "
"per Etichetta\""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
"Usa questa relazione per accreditamenti come \"Pubblicazione arrangiata da X "
"per Etichetta\""
@@ -4772,8 +4777,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
"Usa questa relazione per accreditamenti come \"Pubblicazione masterizzata da "
"X per Etichetta\""
@@ -4787,8 +4792,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
"Usa questa relazione per accreditamenti come \"Pubblicazione prodotta da X "
"per Etichetta\""
@@ -5235,8 +5240,8 @@ msgstr "scaricabile a pagamento su"
msgid "can be purchased for mail-order at"
msgstr "acquistabile per corrispondenza su"
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr "disponibile in streaming su"
@@ -5532,15 +5537,15 @@ msgid "creative position"
msgstr "posizione creativa"
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr "crowdfunding"
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr "pagina di crowdfunding"
@@ -5548,8 +5553,8 @@ msgstr "pagina di crowdfunding"
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr "pagina di crowdfunding per"
@@ -5851,11 +5856,11 @@ msgstr "pagina di download gratuito per la partitura di"
msgid "free music streaming page for"
msgstr "pagina di streaming musicale gratuito per"
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr "pagina di streaming {video} musicale gratuito per"
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr "streaming gratuito"
@@ -6091,8 +6096,8 @@ msgstr "ha un catalogo delle registrazioni su"
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr "ha una pagina di crowdfunding su"
@@ -7432,6 +7437,8 @@ msgstr "si è esibito come doppiatore di"
#: DB:link_type/long_link_phrase:152 DB:link_type/long_link_phrase:53
msgid "performed {additional} {assistant} chorus master on"
msgstr ""
+"si è esibito come {assistant:assistente} maestro del coro {additional:"
+"aggiunto} su"
#: DB:link_type/long_link_phrase:44 DB:link_type/long_link_phrase:148
msgid "performed {additional} {guest} {solo} {instrument:%|instruments} on"
@@ -7687,7 +7694,6 @@ msgid "provided legal representation for"
msgstr "ha fornito rappresentanza legale per"
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr "ha fornito direzione artistica {additional:aggiuntiva} su"
@@ -7699,7 +7705,7 @@ msgstr "ha curato le copertine {additional:in aggiunta} di"
msgid "provided {additional} creative direction on"
msgstr "ha fornito direzione creativa {additional:aggiuntiva} su"
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr "ha curato la grafica {additional:in aggiunta} di"
@@ -7720,6 +7726,16 @@ msgstr "ha curato le illustrazioni {additional:aggiuntive} di"
msgid "provided {additional} legal representation for"
msgstr "ha fornito rappresentanza legale {additional:aggiuntiva} per"
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+"ha fornito {assistant:assistenza alla} direzione artistica {additional:"
+"aggiuntiva} su"
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -8166,22 +8182,22 @@ msgstr "-astro (senza legame di sangue)"
msgid "stream for free"
msgstr "streaming gratuito"
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr "streaming {video} gratuito"
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr "streaming"
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr "pagina di streaming"
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr "pagina di streaming di"
@@ -8835,6 +8851,7 @@ msgstr "ha scritto il testo {additional:in aggiunta} per"
#: DB:link_type/long_link_phrase:46 DB:link_type/long_link_phrase:151
msgid "{additional:additionally} {assistant} conducted"
msgstr ""
+"è stato {assistant:assistente} direttore d'orchestra {additional:aggiunto} su"
#: DB:link_type/link_phrase:153 DB:link_type/link_phrase:47
#: DB:link_type/long_link_phrase:153 DB:link_type/long_link_phrase:47
@@ -8847,7 +8864,7 @@ msgid ""
"on}"
msgstr ""
"è stato un {assistant:assistente} programmatore {associate:associato} "
-"{additional:aggiunto} {instrument:% su}"
+"{additional:aggiunto} {instrument:%} su"
#: DB:link_type/link_phrase:140 DB:link_type/link_phrase:31
#: DB:link_type/long_link_phrase:140 DB:link_type/long_link_phrase:31
@@ -8984,8 +9001,7 @@ msgid "{additional} arranging location for"
msgstr "luogo {additional:aggiuntivo} di arrangiamento per"
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr "direzione artistica {additional:aggiuntiva}"
@@ -9007,8 +9023,7 @@ msgstr "luogo {additional:aggiuntivo} di composizione per"
msgid "{additional} creative direction"
msgstr "direzione creativa {additional:aggiuntiva}"
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr "grafica {additional:aggiuntiva}"
@@ -9146,13 +9161,22 @@ msgstr "autore {additional:aggiunto}"
msgid "{additional} writing location for"
msgstr "luogo {additional:aggiuntivo} di scrittura per"
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+"{assistant:assistenza alla} direzione artistica {additional:aggiuntiva}"
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
-msgstr ""
+msgstr "{assistant:assistente} maestro del coro {additional:aggiunto}"
#: DB:link_type/reverse_link_phrase:46 DB:link_type/reverse_link_phrase:151
msgid "{additional} {assistant} conductor"
+msgstr "{assistant:assistente} direttore d'orchestra {additional:aggiunto}"
+
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
msgstr ""
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
@@ -9804,7 +9828,7 @@ msgstr ""
"{translator:ha tradotto|ha scritto} le note di libretto {additional:"
"aggiuntive} per"
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr "{video} disponibile in streaming gratuito su"
@@ -9816,6 +9840,202 @@ msgstr "supporto {vocal:%|vocali} da parte di"
msgid "{vocal:%|vocals} support for"
msgstr "supporto {vocal:%|vocali} per"
+#~ msgid ""
+#~ "A social network page is an artist's own profile page on a social network which only they (or their "
+#~ "management) can post content to. Other people can create their own "
+#~ "profiles and interact with the artist, e.g. by adding them as a friend or "
+#~ "by commenting on the things that they post. Examples include Facebook "
+#~ "pages and profiles, Last.fm users and accounts on Twitter, Instagram and "
+#~ "Flickr."
+#~ msgstr ""
+#~ "Una pagina di social network è la pagina di artista su un social network, dove solo l'artista (o chi lo "
+#~ "gestisce) può postare contenuti. Altre persone possono creare i loro "
+#~ "profili e interagire con l'artista, ad esempio aggiungendoli come amici o "
+#~ "commentando le cose che posta. Alcuni esempi sono pagine e profili "
+#~ "Facebook, utenti Last.fm e account su Twitter, Instagram e Flickr."
+
+#~ msgid "Indicates a webpage that reviews the release (group) in question."
+#~ msgstr ""
+#~ "Indica una pagina web che recensisce la pubblicazione (gruppo di "
+#~ "pubblicazioni) in questione."
+
+#~ msgid ""
+#~ "Indicates the composer for this release, i.e. the artist who wrote the "
+#~ "music (not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Indica il compositore di questa pubblicazione, ovvero l'artista che ha "
+#~ "scritto la musica (non necessariamente i testi)."
+
+#~ msgid ""
+#~ "Indicates the composer for this work, i.e. the artist who wrote the music "
+#~ "(not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Indica il compositore di quest'opera, ovvero l'artista che ha scritto la "
+#~ "musica (non necessariamente i testi)."
+
+#~ msgid ""
+#~ "Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+#~ "between artists, or closing the night after a concert)."
+#~ msgstr ""
+#~ "Collega un evento a un DJ che ha partecipato in un ruolo di supporto (per "
+#~ "es. esibendosi nell'intermezzo tra artisti o chiudendo la serata dopo un "
+#~ "concerto)."
+
+#~ msgid ""
+#~ "This attribute indicates a member the band is named after and without "
+#~ "which it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+#~ msgstr ""
+#~ "Questo attributo indica un membro che dà il nome alla band e senza il "
+#~ "quale essa non esisterebbe (per es. Miles Davis -> Miles Davis Sextet)."
+
+#~ msgid ""
+#~ "This attribute indicates that the streamable content is not audio but "
+#~ "video."
+#~ msgstr ""
+#~ "Questo attributo indica che il contenuto disponibile in streaming non è "
+#~ "audio ma video."
+
+#~ msgid ""
+#~ "This indicates that a person is, or was, the artistic director of a group "
+#~ "(e.g. a ballet/opera company)."
+#~ msgstr ""
+#~ "Indica che una persona è, o è stata, il direttore artistico di un gruppo "
+#~ "(per es. una compagnia di balletto/d'opera)."
+
+#~ msgid ""
+#~ "This indicates that a work is made up of multiple parts (e.g. an "
+#~ "orchestral suite broken into movements)"
+#~ msgstr ""
+#~ "Indica che un'opera è composta di più parti (per es. una suite per "
+#~ "orchestra divisa in movimenti)."
+
+#~ msgid ""
+#~ "This indicates that the recording is not of the entire work, e.g. "
+#~ "excerpts from, conclusion of, etc."
+#~ msgstr ""
+#~ "Indica che la registrazione non è dell'intera opera, per es. brani da, "
+#~ "conclusione di, ecc."
+
+#~ msgid ""
+#~ "This links a series to its profile (e.g. for a festival) or project (e.g. "
+#~ "for a specific tour, or for compiling a classical catalogue) at a "
+#~ "crowdfunding site like Kickstarter or Indiegogo."
+#~ msgstr ""
+#~ "Collega una serie al suo profilo (per es. se si tratta di un festival) o "
+#~ "progetto (per es. se si tratta di uno specifico tour o di compilare un "
+#~ "catalogo di musica classica) su un sito di crowdfunding come Kickstarter "
+#~ "o Indiegogo."
+
+#~ msgid ""
+#~ "This relationship indicates that a person was a teacher at an event (e.g. "
+#~ "a masterclass)."
+#~ msgstr ""
+#~ "Questa relazione indica che una persona ha insegnato in un evento (per "
+#~ "es. un corso di perfezionamento)."
+
+#~ msgid ""
+#~ "This relationship type is used to indicate that a release group is a "
+#~ "cover version of another release group, i.e. when an artist performs a "
+#~ "new rendition of another artist's album.
\n"
+#~ "For individual songs, see the recording-work performance relationship type."
+#~ msgstr ""
+#~ "Questo tipo di relazione serve a indicare che un gruppo di pubblicazioni "
+#~ "è una cover di un altro gruppo di pubblicazioni, cioè che un artista ha "
+#~ "eseguito una nuova interpretazione dell'album di un altro artista.
\n"
+#~ "Per canzoni singole, utilizza il tipo di relazione esecuzione registrazione-"
+#~ "opera."
+
+#~ msgid ""
+#~ "This relationship type is used to link a label to a site where music can "
+#~ "be legally streamed for a subscription fee, e.g. Apple Music.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Questo tipo di relazione serve a collegare un'etichetta a un sito su cui "
+#~ "la sua musica è disponibile in streaming a pagamento in modo legale, per "
+#~ "es. Apple Music.\n"
+#~ "\n"
+#~ "Se il sito permette lo streaming gratuito, utilizza la relazione "
+#~ "\"streaming gratuito\"."
+
+#~ msgid ""
+#~ "This relationship type is used to link a label to a site where music can "
+#~ "be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "Questo tipo di relazione serve a collegare un'etichetta a un sito su cui "
+#~ "la sua musica è disponibile in streaming gratuito in modo legale, per es. "
+#~ "Spotify."
+
+#~ msgid ""
+#~ "This relationship type is used to link a release to a site where the "
+#~ "tracks can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Questo tipo di relazione serve a collegare una pubblicazione a un sito su "
+#~ "cui le tracce sono disponibili in streaming a pagamento in modo legale, "
+#~ "per es. Tidal.\n"
+#~ "\n"
+#~ "Se il sito permette lo streaming gratuito, utilizza la relazione "
+#~ "\"streaming gratuito\"."
+
+#~ msgid ""
+#~ "This relationship type is used to link a release to a site where the "
+#~ "tracks can be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "Questo tipo di relazione serve a collegare una pubblicazione a un sito su "
+#~ "cui le tracce sono disponibili in streaming gratuito in modo legale, per "
+#~ "es. Spotify."
+
+#~ msgid ""
+#~ "This relationship type is used to link a track to a site where the track "
+#~ "can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Questo tipo di relazione serve a collegare una traccia a un sito su cui "
+#~ "la traccia è disponibile in streaming a pagamento in modo legale, per es. "
+#~ "Tidal.\n"
+#~ "\n"
+#~ "Se il sito permette lo streaming gratuito, utilizza la relazione "
+#~ "\"streaming gratuito\"."
+
+#~ msgid ""
+#~ "This relationship type is used to link a track to a site where the track "
+#~ "can be legally streamed for free, such as Spotify for audio tracks or "
+#~ "YouTube for videos."
+#~ msgstr ""
+#~ "Questo tipo di relazione serve a collegare una traccia a un sito su cui "
+#~ "la traccia è disponibile in streaming gratuito in modo legale, come "
+#~ "Spotify per le tracce audio o YouTube per i video."
+
+#~ msgid ""
+#~ "This relationship type is used to link an artist to a site where music "
+#~ "can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Questo tipo di relazione serve a collegare un artista a un sito su cui la "
+#~ "sua musica è disponibile in streaming a pagamento in modo legale, per es. "
+#~ "Tidal.\n"
+#~ "\n"
+#~ "Se il sito permette lo streaming gratuito, utilizza la relazione "
+#~ "\"streaming gratuito\"."
+
+#~ msgid ""
+#~ "This relationship type is used to link an artist to a site where music "
+#~ "can be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "Questo tipo di relazione serve a collegare un artista a un sito su cui la "
+#~ "sua musica è disponibile in streaming gratuito in modo legale, per es. "
+#~ "Spotify."
+
#~ msgid "performed {additional} chorus master on"
#~ msgstr "si è esibito come maestro del coro {additional:aggiunto} su"
diff --git a/po/relationships.ja.po b/po/relationships.ja.po
index 7a1a6566e2d..acfae9385f9 100644
--- a/po/relationships.ja.po
+++ b/po/relationships.ja.po
@@ -13,18 +13,20 @@
# Shunsuke Shimizu , 2016,2019
# 和田篤 , 2019
# 和田篤 , 2019
+# julian45 , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
-"PO-Revision-Date: 2012-05-24 18:50+0000\n"
-"Last-Translator: David Papenburg, 2022\n"
-"Language-Team: Japanese (http://app.transifex.com/musicbrainz/musicbrainz/"
-"language/ja/)\n"
+"PO-Revision-Date: 2023-10-27 01:27+0000\n"
+"Last-Translator: julian45 \n"
+"Language-Team: Japanese \n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.1\n"
#: DB:link_attribute_type/description:1355
msgid "A performance-centered, usually one to three year postgraduate program."
@@ -37,12 +39,11 @@ msgid ""
"people involved with the label can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"ソーシャルネットワークページは、レーベルの関係者のみが投稿可能な、SNS上に"
-"あるレーベル自身のページです。Facebookページや、twitter、Instagram、Flickrの"
-"アカウントなどが例として挙げられます。"
+"ソーシャルネットワークページは、レーベルの関係者のみが投稿可能な、SNS"
+"a>上にあるレーベル自身のページです。Facebookページや、twitter、Instagram、"
+"Flickrのアカウントなどが例として挙げられます。"
#: DB:link_type/description:784
msgid ""
@@ -51,12 +52,11 @@ msgid ""
"people involved with the series can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"ソーシャルネットワークページは、シリーズの関係者のみが投稿可能な、SNS上に"
-"あるシリーズに関するページです。Facebookページや、twitter、Instagram、Flickr"
-"のアカウントなどが例として挙げられます。"
+"ソーシャルネットワークページは、シリーズの関係者のみが投稿可能な、SNS"
+"a>上にあるシリーズに関するページです。Facebookページや、twitter、Instagram、"
+"Flickrのアカウントなどが例として挙げられます。"
#: DB:link_type/description:429
msgid ""
@@ -65,22 +65,21 @@ msgid ""
"people involved with the place can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"ソーシャルネットワークページは、場所の関係者のみが投稿可能な、SNS上に"
-"ある場所自身のページです。Facebookページや、twitter、Instagram、Flickrのアカ"
-"ウントなどが例として挙げられます。"
+"ソーシャルネットワークページは、場所の関係者のみが投稿可能な、SNS"
+"a>上にある場所自身のページです。Facebookページや、twitter、Instagram、Flickr"
+"のアカウントなどが例として挙げられます。"
#: DB:link_type/description:192
msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -91,11 +90,10 @@ msgid ""
"Facebook pages and event entries, and accounts on Twitter, Instagram and "
"Flickr."
msgstr ""
-"ソーシャルネットワークページは、イベントの関係者のみが投稿可能な、SNS上に"
-"あるイベント自体のページです。Facebookのページやイベント項目、twitter、"
+"ソーシャルネットワークページは、イベントの関係者のみが投稿可能な、SNS"
+"a>上にあるイベント自体のページです。Facebookのページやイベント項目、twitter、"
"Instagram、Flickrのアカウントなどが例として挙げられます。"
#: DB:link_type/link_phrase:77 DB:link_type/reverse_link_phrase:77
@@ -358,6 +356,12 @@ msgstr ""
"トをしているミュージシャンを意味します。一般的には有名なソロアーティスト、場"
"合によってはグループに適用される person-to-artist の関連です。"
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -390,10 +394,6 @@ msgstr "アーティストに共通の親が1人しかない兄弟を示す"
msgid "Indicates a webpage that reviews the event in question."
msgstr "イベントについてレビューするWebページを示します。"
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr "リリース(グループ)についてレビューするWebページを示します。"
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr "レーベルのリリースを無料でダウンロードできるウェブページを示す。"
@@ -563,19 +563,15 @@ msgstr "初めて演奏した作品の演奏者を示す。主にクラシック
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"このリリースの作曲家、つまり(歌詞を書いたかに関わらず)音楽を書いた人を示し"
-"ます。"
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"この作品の作曲家、つまり(歌詞を書いたかに関わらず)音楽を書いた人を示しま"
-"す。"
#: DB:link_type/description:845
msgid "Indicates the event where the work had its first performance"
@@ -996,11 +992,9 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
-"脇役として登場したDJ(アーティスト間のDJ、コンサート後の夜の締めくくりなど)"
-"のイベントへリンクする。"
#: DB:link_type/description:800
msgid ""
@@ -1209,8 +1203,8 @@ msgstr "この作品のWikipediaページを指します。"
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1353,10 +1347,8 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
-"本属性は、バンド名に名前が付けられ、その人なしでは存在しなかった重要メンバー"
-"を示す(例:Miles Davis-&gt; Miles Davis Sextet)"
#: DB:link_attribute_type/description:511
msgid ""
@@ -1382,10 +1374,8 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
-"本属性は、ストリーミング可能なコンテンツがオーディオではなくビデオであること"
-"を示す。"
#: DB:link_attribute_type/description:788
msgid "This attribute indicates the number of an entity in a series."
@@ -1811,11 +1801,9 @@ msgstr "これは、個人がグループの指揮者である (であった
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
-"これは、ある人物がグループ(バレエ/オペラ会社など)の芸術監督である(であっ"
-"た) ことを示す。"
#: DB:link_type/description:137
msgid ""
@@ -1900,11 +1888,9 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
-"これは、作品が複数のパーツで構成されていることを示す(例:オーケストラスイー"
-"トが楽章単位で分割されている)"
#: DB:link_type/description:858
msgid ""
@@ -2000,8 +1986,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -2028,9 +2014,9 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
-msgstr "これは、録音が完全版ではなく、抜粋や追完などであることを意味します。"
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
+msgstr ""
#: DB:link_attribute_type/description:578
msgid "This indicates that the recording is of a live performance."
@@ -2168,8 +2154,8 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
"これは、配布(または配布を委託する)組織を示す。\n"
"\n"
@@ -2180,8 +2166,8 @@ msgstr ""
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
"これは、製造(または製造を委託する)組織を示す。\n"
"これはレコードレーベルと同じ概念ではない"
@@ -2206,8 +2192,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
"これは、リリースをプロモートする(またはプロモート契約する)組織を示す。 これ"
"はレコードレーベルと同じ概念ではない"
@@ -2630,9 +2616,9 @@ msgstr "これは、作品をそれらのレコーディングにリンクする
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
"これは、アーティストクレジットが使用不可能な場合に、アーティストが短期プロジェクトで共同作業したことを指定す"
@@ -2915,18 +2901,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
"アーティストに対しリリースグループをリンクし、トリビュートアルバムであること"
"を示す。 トリビュートアルバムには、「アーティストへのトリビュート」という形式"
@@ -3037,13 +3023,10 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
-"KickstarterやIndiegogoなどのクラウドファンディングサイトで、シリーズをそのプ"
-"ロフィール(フェスティバルなど)もしくはプロジェクト(特定のツアーやクラシッ"
-"クカタログの編集など)にリンクする。"
#: DB:link_type/description:97
msgid ""
@@ -3303,8 +3286,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
"エンティティを別のデータベースの同等のエントリにリンクする。 ホワイトリストとして記載の"
@@ -3352,9 +3335,10 @@ msgstr "既婚のアーティストをリンクする。"
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
-msgstr "同一作品の別リビジョンをリンクする。"
+"This links different revisions of the same work."
+msgstr ""
+"同一作品の別リビジョンをリンクする。"
#: DB:link_type/description:212
msgid "This links to a catalog or list of records published by the label."
@@ -3492,8 +3476,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
"この関係は、アーティストの歌詞を見つけることができるURLを表す。 ホワイトリスト内にあるサ"
@@ -3515,15 +3499,15 @@ msgid ""
"found. Only sites on the whitelist are permitted."
msgstr ""
-"この関係は、リリースグループの歌詞を見つけることができるURLを表す。 ホワイトリスト内にある"
-"サイトのみが許可される。"
+"この関係は、リリースグループの歌詞を見つけることができるURLを表す。 ホワイトリスト内"
+"にあるサイトのみが許可される。"
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
"この関係は、作品の歌詞を見つけることができるURLを表す。 ホワイトリスト内にあるサイトのみが"
@@ -3539,11 +3523,9 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
-"この関係は、ある人がイベント(マスタークラスなど)の指導者であったことを示"
-"す。"
#: DB:link_type/description:847
msgid ""
@@ -3893,22 +3875,16 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
msgstr ""
-"この関係タイプは、リリースグループが別のリリースグループのカバーバージョンで"
-"あることを示すために使用される。つまり、アーティストが別のアーティストのアル"
-"バムの新しいレンディションを実行する場合である。
\n"
-"個々の曲については、レコーディング作業パフォーマンスの関係タイプを参照の"
-"こと。"
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3916,15 +3892,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
-"この関係タイプは、音楽を合法的に無料でストリーミングできるサイト (例えば "
-"Spotify)にラベルをリンクするために使用される。"
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr "この関係タイプは、ラベルをブログにリンクするために使用される。"
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3936,67 +3925,30 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
-"この関係タイプは、サブスクリプション料金でトラックを合法的にストリーミングで"
-"きるサイト (例えば Tidal) にリリースをリンクするために使用される。\n"
-"\n"
-"サイトで無料ストリーミングが許可されている場合は、代わりに「無料ストリーミン"
-"グ」を使用のこと。"
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
+"can be legally streamed for free, such as Spotify."
msgstr ""
-"この関係タイプは、トラックを合法的に無料でストリーミングできるサイト (例え"
-"ば Spotify)にリリースをリンクするために使用される。"
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-"この関係タイプは、サブスクリプション料金でトラックを合法的にストリーミングで"
-"きるサイト (例えば Tidal) にトラックをリンクするために使用される。\n"
-"\n"
-"サイトで無料ストリーミングが許可されている場合は、代わりに「無料ストリーミン"
-"グ」を使用のこと。"
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
-msgstr ""
-"この関係タイプは、オーディオトラックの場合 Spotify 、ビデオの場合 YouTube な"
-"ど、トラックを合法的に無料でストリーミングできるサイトにトラックをリンクする"
-"ために使用される。"
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
-"この関係タイプは、アーティストを、サブスクリプション料金で合法的に音楽をスト"
-"リーミングできるサイト (例えば Tidal) にリンクするために使用される。\n"
-"\n"
-"サイトで無料ストリーミングが許可されている場合は、代わりに「無料ストリーミン"
-"グ」を使用のこと。"
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
-"この関係タイプは、アーティストを、音楽を合法的に無料でストリーミングできるサ"
-"イト (例えば Spotify) にリンクするために使用される。"
#: DB:link_type/description:199
msgid "This relationship type is used to link an artist to their blog."
@@ -4056,9 +4008,9 @@ msgstr "この関係タイプは、レーベルをMyspaceページへリンク
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"この関係タイプは、レーベルを VGMdb の対応す"
"るページにリンクする。 VGMdb は、ビデオゲームやアニメの音楽をカタログ化するこ"
@@ -4099,9 +4051,9 @@ msgstr "この関係タイプは、場所を対応するsetlist.fmページへ
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"この関係タイプは、リリースを VGMdb の対応す"
"るページにリンクする。 VGMdb は、ビデオゲームやアニメの音楽をカタログ化するこ"
@@ -4123,9 +4075,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"この関係タイプは、アーティストを VGMdb の対"
"応するページにリンクする。 VGMdb は、ビデオゲームやアニメの音楽をカタログ化す"
@@ -4180,9 +4132,9 @@ msgstr "この関係タイプは、イベントをそのイベントの販促ポ
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"この関係タイプは、イベントを VGMdb の対応す"
"るページにリンクする。 VGMdb は、ビデオゲームやアニメの音楽をカタログ化するこ"
@@ -4301,7 +4253,7 @@ msgid ""
msgstr ""
"これは、誰かが共同[役割](共同プロデューサー、共同エンジニアなど)- 一般的に"
"特定の活動に依存する特定の意味を持っていますが、単に「何人かの人々が協力して"
-"いた」とは異なる - としてクレジットされている場合にのみ使用のこと。 "
+"いた」とは異なる - としてクレジットされている場合にのみ使用のこと。"
#: DB:link_type/description:949
msgid ""
@@ -4328,14 +4280,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
"この関係は、「リリースはレーベルのX によってアレンジされた」などのクレジット"
"に使用する。"
@@ -4350,8 +4302,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -4363,8 +4315,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
"「リリースはレーベルの X によってプロデュースされた」などのクレジットにこの関"
"係を使用する"
@@ -4803,8 +4755,8 @@ msgstr "をダウンロード販売しているURLは"
msgid "can be purchased for mail-order at"
msgstr "を通信販売しているURLは"
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr "の曲を配信しているURLは"
@@ -5099,15 +5051,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr "クラウドファンディング"
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr "クラウドファンディングページ"
@@ -5115,8 +5067,8 @@ msgstr "クラウドファンディングページ"
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr "クラウドファンディングページ"
@@ -5418,11 +5370,11 @@ msgstr "楽譜の無料ダウンロードページ"
msgid "free music streaming page for"
msgstr "無料楽曲配信ページ"
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr "{video}の無料楽曲配信ページ"
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -5658,8 +5610,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr "のクラウドファンディングページ"
@@ -7246,7 +7198,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -7258,7 +7209,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -7279,6 +7230,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -7725,22 +7684,22 @@ msgstr ""
msgid "stream for free"
msgstr "無料配信"
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr "{video}無料配信"
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr "ストリーミングページ"
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr "次のストリーミングページ"
@@ -8522,8 +8481,7 @@ msgid "{additional} arranging location for"
msgstr "ここで{additional:補助的に}編曲された作品"
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr "{additional:補助的な}アートディレクション"
@@ -8545,8 +8503,7 @@ msgstr "ここで{additional:補助的に}作曲された作品"
msgid "{additional} creative direction"
msgstr "{additional:補助的な}クリエイティブディレクション"
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr "{additional:補助的な}デザイン"
@@ -8685,6 +8642,10 @@ msgstr "{additional:補助的な}作者"
msgid "{additional} writing location for"
msgstr "ここで{additional:補助的に}制作された作品"
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -8694,6 +8655,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -9296,7 +9261,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr "{video}の無料配信先"
@@ -9308,6 +9273,160 @@ msgstr ""
msgid "{vocal:%|vocals} support for"
msgstr ""
+#~ msgid "Indicates a webpage that reviews the release (group) in question."
+#~ msgstr "リリース(グループ)についてレビューするWebページを示します。"
+
+#~ msgid ""
+#~ "Indicates the composer for this release, i.e. the artist who wrote the "
+#~ "music (not necessarily the lyrics)."
+#~ msgstr ""
+#~ "このリリースの作曲家、つまり(歌詞を書いたかに関わらず)音楽を書いた人を示"
+#~ "します。"
+
+#~ msgid ""
+#~ "Indicates the composer for this work, i.e. the artist who wrote the music "
+#~ "(not necessarily the lyrics)."
+#~ msgstr ""
+#~ "この作品の作曲家、つまり(歌詞を書いたかに関わらず)音楽を書いた人を示しま"
+#~ "す。"
+
+#~ msgid ""
+#~ "Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+#~ "between artists, or closing the night after a concert)."
+#~ msgstr ""
+#~ "脇役として登場したDJ(アーティスト間のDJ、コンサート後の夜の締めくくりな"
+#~ "ど)のイベントへリンクする。"
+
+#~ msgid ""
+#~ "This attribute indicates a member the band is named after and without "
+#~ "which it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+#~ msgstr ""
+#~ "本属性は、バンド名に名前が付けられ、その人なしでは存在しなかった重要メン"
+#~ "バーを示す(例:Miles Davis-&gt; Miles Davis Sextet)"
+
+#~ msgid ""
+#~ "This attribute indicates that the streamable content is not audio but "
+#~ "video."
+#~ msgstr ""
+#~ "本属性は、ストリーミング可能なコンテンツがオーディオではなくビデオであるこ"
+#~ "とを示す。"
+
+#~ msgid ""
+#~ "This indicates that a person is, or was, the artistic director of a group "
+#~ "(e.g. a ballet/opera company)."
+#~ msgstr ""
+#~ "これは、ある人物がグループ(バレエ/オペラ会社など)の芸術監督である(で"
+#~ "あった) ことを示す。"
+
+#~ msgid ""
+#~ "This indicates that a work is made up of multiple parts (e.g. an "
+#~ "orchestral suite broken into movements)"
+#~ msgstr ""
+#~ "これは、作品が複数のパーツで構成されていることを示す(例:オーケストラス"
+#~ "イートが楽章単位で分割されている)"
+
+#~ msgid ""
+#~ "This indicates that the recording is not of the entire work, e.g. "
+#~ "excerpts from, conclusion of, etc."
+#~ msgstr ""
+#~ "これは、録音が完全版ではなく、抜粋や追完などであることを意味します。"
+
+#~ msgid ""
+#~ "This links a series to its profile (e.g. for a festival) or project (e.g. "
+#~ "for a specific tour, or for compiling a classical catalogue) at a "
+#~ "crowdfunding site like Kickstarter or Indiegogo."
+#~ msgstr ""
+#~ "KickstarterやIndiegogoなどのクラウドファンディングサイトで、シリーズをその"
+#~ "プロフィール(フェスティバルなど)もしくはプロジェクト(特定のツアーやクラ"
+#~ "シックカタログの編集など)にリンクする。"
+
+#~ msgid ""
+#~ "This relationship indicates that a person was a teacher at an event (e.g. "
+#~ "a masterclass)."
+#~ msgstr ""
+#~ "この関係は、ある人がイベント(マスタークラスなど)の指導者であったことを示"
+#~ "す。"
+
+#~ msgid ""
+#~ "This relationship type is used to indicate that a release group is a "
+#~ "cover version of another release group, i.e. when an artist performs a "
+#~ "new rendition of another artist's album.
\n"
+#~ "For individual songs, see the recording-work performance relationship type."
+#~ msgstr ""
+#~ "この関係タイプは、リリースグループが別のリリースグループのカバーバージョン"
+#~ "であることを示すために使用される。つまり、アーティストが別のアーティストの"
+#~ "アルバムの新しいレンディションを実行する場合である。
\n"
+#~ "個々の曲については、レコーディング作業パフォーマンスの関係タイプを参照"
+#~ "のこと。"
+
+#~ msgid ""
+#~ "This relationship type is used to link a label to a site where music can "
+#~ "be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "この関係タイプは、音楽を合法的に無料でストリーミングできるサイト (例えば "
+#~ "Spotify)にラベルをリンクするために使用される。"
+
+#~ msgid ""
+#~ "This relationship type is used to link a release to a site where the "
+#~ "tracks can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "この関係タイプは、サブスクリプション料金でトラックを合法的にストリーミング"
+#~ "できるサイト (例えば Tidal) にリリースをリンクするために使用される。\n"
+#~ "\n"
+#~ "サイトで無料ストリーミングが許可されている場合は、代わりに「無料ストリーミ"
+#~ "ング」を使用のこと。"
+
+#~ msgid ""
+#~ "This relationship type is used to link a release to a site where the "
+#~ "tracks can be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "この関係タイプは、トラックを合法的に無料でストリーミングできるサイト (例"
+#~ "えば Spotify)にリリースをリンクするために使用される。"
+
+#~ msgid ""
+#~ "This relationship type is used to link a track to a site where the track "
+#~ "can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "この関係タイプは、サブスクリプション料金でトラックを合法的にストリーミング"
+#~ "できるサイト (例えば Tidal) にトラックをリンクするために使用される。\n"
+#~ "\n"
+#~ "サイトで無料ストリーミングが許可されている場合は、代わりに「無料ストリーミ"
+#~ "ング」を使用のこと。"
+
+#~ msgid ""
+#~ "This relationship type is used to link a track to a site where the track "
+#~ "can be legally streamed for free, such as Spotify for audio tracks or "
+#~ "YouTube for videos."
+#~ msgstr ""
+#~ "この関係タイプは、オーディオトラックの場合 Spotify 、ビデオの場合 YouTube "
+#~ "など、トラックを合法的に無料でストリーミングできるサイトにトラックをリンク"
+#~ "するために使用される。"
+
+#~ msgid ""
+#~ "This relationship type is used to link an artist to a site where music "
+#~ "can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "この関係タイプは、アーティストを、サブスクリプション料金で合法的に音楽をス"
+#~ "トリーミングできるサイト (例えば Tidal) にリンクするために使用される。\n"
+#~ "\n"
+#~ "サイトで無料ストリーミングが許可されている場合は、代わりに「無料ストリーミ"
+#~ "ング」を使用のこと。"
+
+#~ msgid ""
+#~ "This relationship type is used to link an artist to a site where music "
+#~ "can be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "この関係タイプは、アーティストを、音楽を合法的に無料でストリーミングできる"
+#~ "サイト (例えば Spotify) にリンクするために使用される。"
+
#~ msgid "{additional} conductor"
#~ msgstr "{additional:補助的な}指揮者"
diff --git a/po/relationships.ko.po b/po/relationships.ko.po
index e234c1e4aa5..42aac623af7 100644
--- a/po/relationships.ko.po
+++ b/po/relationships.ko.po
@@ -47,10 +47,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -304,6 +304,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -334,10 +340,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -488,14 +490,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -867,7 +869,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1070,8 +1072,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1208,7 +1210,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1231,7 +1233,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1579,8 +1581,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1645,8 +1647,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1725,8 +1727,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1749,8 +1751,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1875,16 +1877,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1902,8 +1904,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2230,9 +2232,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2465,18 +2467,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2563,9 +2565,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2794,8 +2796,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2834,8 +2836,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2941,8 +2943,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2962,8 +2964,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2974,8 +2976,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3257,7 +3259,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3266,7 +3268,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3274,13 +3276,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3290,7 +3307,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3298,28 +3315,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3327,7 +3329,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3376,9 +3378,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3416,9 +3418,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3435,9 +3437,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3482,9 +3484,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3604,14 +3606,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3622,8 +3624,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3633,8 +3635,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4062,8 +4064,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4358,15 +4360,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4374,8 +4376,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4677,11 +4679,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4917,8 +4919,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6501,7 +6503,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6513,7 +6514,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6534,6 +6535,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6980,22 +6989,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7764,8 +7773,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7787,8 +7795,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7926,6 +7933,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7935,6 +7946,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8526,7 +8541,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.lt.po b/po/relationships.lt.po
index 4807934e8f9..4ea4fb0c96a 100644
--- a/po/relationships.lt.po
+++ b/po/relationships.lt.po
@@ -1,13 +1,14 @@
#
# Translators:
# Vaclovas lntas (Vac.) , 2023
+# "Vac31." , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
-"PO-Revision-Date: 2012-05-24 18:50+0000\n"
-"Last-Translator: Vaclovas lntas (Vac.) , 2023\n"
-"Language-Team: Lithuanian (http://app.transifex.com/musicbrainz/musicbrainz/"
-"language/lt/)\n"
+"PO-Revision-Date: 2023-10-14 18:27+0000\n"
+"Last-Translator: \"Vac31.\" \n"
+"Language-Team: Lithuanian \n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -15,10 +16,13 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < "
"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? "
"1 : n % 1 != 0 ? 2: 3);\n"
+"X-Generator: Weblate 5.0.2\n"
#: DB:link_attribute_type/description:1355
msgid "A performance-centered, usually one to three year postgraduate program."
msgstr ""
+"Į atlikimą orientuota, paprastai vienų-trejų metų trukmės antrosios pakopos "
+"studijų programa."
#: DB:link_type/description:218
msgid ""
@@ -27,10 +31,11 @@ msgid ""
"people involved with the label can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"Socialinio tinklo puslapis − tai serijos leidyklos puslapis socialiniame tinkle, "
-"kuriame turinį gali skelbti tik su leidykla susiję asmenys. Pavyzdžiui, "
-"„Facebook“ puslapiai, paskyros „Twitter“, „Instagram“ ir „Flickr“."
+"Socialinio tinklo puslapis − tai nuosavas leidyklos puslapis "
+"socialiniame tinkle, kuriame turinį gali skelbti tik su leidykla susiję "
+"asmenys. Pavyzdžiai – Facebook puslapiai, paskyros Twitter, Instagram ir "
+"Flickr."
#: DB:link_type/description:784
msgid ""
@@ -41,8 +46,8 @@ msgid ""
msgstr ""
"Socialinio tinklo puslapis − tai serijos puslapis socialiniame tinkle, "
-"kuriame turinį gali skelbti tik su serija susiję asmenys. Pavyzdžiui, "
-"„Facebook“ puslapiai, paskyros „Twitter“, „Instagram“ ir „Flickr“."
+"kuriame turinį gali skelbti tik su serija susiję žmonės. Pavyzdžiai – "
+"Facebook puslapiai, paskyros Twitter, Instagram ir Flickr."
#: DB:link_type/description:429
msgid ""
@@ -51,28 +56,21 @@ msgid ""
"people involved with the place can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"Socialinio tinklo puslapis − tai serijos puslapis socialiniame tinkle, "
-"kuriame turinį gali skelbti tik su vieta susiję asmenys. Pavyzdžiui, "
-"„Facebook“ puslapiai, paskyros „Twitter“, „Instagram“ ir „Flickr“."
+"kuriame turinį gali skelbti tik su vieta susiję žmonės. Pavyzdžiui – "
+"Facebook puslapiai, paskyros Twitter, Instagram ir Flickr."
#: DB:link_type/description:192
msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
-msgstr ""
-"Socialinio tinklo puslapis – tai atlikėjo profilio puslapis socialiniame tinkle, kuriame turinį gali skelbti tik jie (arba jų "
-"vadovybė). Kiti žmonės gali susikurti savo profilius ir bendrauti su "
-"atlikėju, pvz., įtraukti juos į draugus arba komentuoti dalykus, kuriuos jie "
-"skelbia. Pavyzdžiui, „Facebook“ puslapiai ir profiliai, „Last.fm“ naudotojai "
-"ir „Twitter“, „Instagram“, „Flickr“ paskyros."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
+msgstr ""
#: DB:link_type/description:783
msgid ""
@@ -84,8 +82,8 @@ msgid ""
msgstr ""
"Socialinio tinklo puslapis − tai renginio puslapis socialiniame tinkle, "
-"kuriame turinį gali skelbti tik su renginiu susiję asmenys. Pavyzdžiui, "
-"„Facebook“ puslapiai, paskyros „Twitter“, „Instagram“ ir „Flickr“."
+"kuriame turinį gali skelbti tik su renginiu susiję žmonės. Pavyzdžiai – "
+"Facebook puslapiai, paskyros Twitter, Instagram ir Flickr."
#: DB:link_type/link_phrase:77 DB:link_type/reverse_link_phrase:77
msgid "ASIN"
@@ -95,53 +93,53 @@ msgstr "ASIN"
#: DB:link_type/link_phrase:283 DB:link_type/link_phrase:285
#: DB:link_type/link_phrase:1093 DB:link_type/reverse_link_phrase:286
msgid "Allmusic"
-msgstr ""
+msgstr "Allmusic"
#: DB:link_type/link_phrase:286 DB:link_type/reverse_link_phrase:755
#: DB:link_type/reverse_link_phrase:284 DB:link_type/reverse_link_phrase:283
#: DB:link_type/reverse_link_phrase:285 DB:link_type/reverse_link_phrase:1093
msgid "Allmusic page for"
-msgstr ""
+msgstr "Allmusic puslapis, skirtas"
#: DB:link_type/link_phrase:1131 DB:link_type/link_phrase:1130
msgid "Apple Music"
-msgstr ""
+msgstr "Apple Music"
#: DB:link_type/reverse_link_phrase:1131 DB:link_type/reverse_link_phrase:1130
msgid "Apple Music page for"
-msgstr ""
+msgstr "Apple Music puslapis, skirtas"
#: DB:link_type/link_phrase:190
msgid "BBC Music"
-msgstr ""
+msgstr "BBC Music"
#: DB:link_type/name:190
msgid "BBC Music page"
-msgstr ""
+msgstr "BBC Music puslapis"
#: DB:link_type/reverse_link_phrase:190
msgid "BBC Music page for"
-msgstr ""
+msgstr "BBC Music puslapis, skirtas"
#: DB:link_type/link_phrase:1092 DB:link_type/link_phrase:718
#: DB:link_type/link_phrase:719
msgid "Bandcamp"
-msgstr ""
+msgstr "Bandcamp"
#: DB:link_type/reverse_link_phrase:1092 DB:link_type/reverse_link_phrase:718
#: DB:link_type/reverse_link_phrase:719
msgid "Bandcamp page for"
-msgstr ""
+msgstr "Bandcamp puslapis, skirtas"
#: DB:link_type/link_phrase:861 DB:link_type/link_phrase:862
#: DB:link_type/link_phrase:860
msgid "Bandsintown"
-msgstr ""
+msgstr "Bandsintown"
#: DB:link_type/reverse_link_phrase:861 DB:link_type/reverse_link_phrase:862
#: DB:link_type/reverse_link_phrase:860
msgid "Bandsintown page for"
-msgstr ""
+msgstr "Bandsintown puslapis, skirtas"
#: DB:link_type/link_phrase:851 DB:link_type/link_phrase:852
#: DB:link_type/link_phrase:853 DB:link_type/link_phrase:1167
@@ -149,114 +147,124 @@ msgstr ""
#: DB:link_type/name:853 DB:link_type/name:1167 DB:link_type/name:854
#: DB:link_type/name:850 DB:link_type/reverse_link_phrase:854
msgid "BookBrainz"
-msgstr ""
+msgstr "BookBrainz"
#: DB:link_type/link_phrase:854 DB:link_type/reverse_link_phrase:851
#: DB:link_type/reverse_link_phrase:852 DB:link_type/reverse_link_phrase:853
#: DB:link_type/reverse_link_phrase:1167 DB:link_type/reverse_link_phrase:850
msgid "BookBrainz page for"
-msgstr ""
+msgstr "BookBrainz puslapis, skirtas"
#: DB:link_type/link_phrase:919 DB:link_type/name:919
msgid "CD Baby"
-msgstr ""
+msgstr "CD Baby"
#: DB:link_type/reverse_link_phrase:919
msgid "CD Baby page for"
-msgstr ""
+msgstr "CD Baby puslapis, skirtas"
#: DB:link_type/link_phrase:981 DB:link_type/name:981
msgid "CPDL"
-msgstr ""
+msgstr "CPDL"
#: DB:link_type/reverse_link_phrase:981
msgid "CPDL page for"
-msgstr ""
+msgstr "CPDL puslapis, skirtas"
#: DB:link_type/name:227 DB:link_type/name:8
msgid "DJ-mix"
-msgstr ""
+msgstr "DJ miksas"
#: DB:link_type/link_phrase:227 DB:link_type/link_phrase:8
msgid "DJ-mix of"
-msgstr ""
+msgstr "DJ miksas iš"
#: DB:link_type/link_phrase:155 DB:link_type/long_link_phrase:155
msgid "DJ-mixed"
-msgstr ""
+msgstr "DJ sumiksuotas"
#: DB:link_type/reverse_link_phrase:8
msgid "DJ-mixed versions"
-msgstr ""
+msgstr "DJ sumiksuotos versijos"
#: DB:link_type/long_link_phrase:43
msgid "DJ-mixed {medium:% of}"
-msgstr ""
+msgstr "DJ sumiksuotas {medium:% iš}"
#: DB:link_type/link_phrase:43
msgid "DJ-mixed {medium}"
-msgstr ""
+msgstr "DJ sumiksuotas {medium}"
#: DB:link_type/reverse_link_phrase:155
msgid "DJ-mixer"
-msgstr ""
+msgstr "DJ mikseris (-ė)"
#: DB:link_type/reverse_link_phrase:43
msgid "DJ-mixer {medium}"
-msgstr ""
+msgstr "DJ mikseris (-ė) {laikmena}"
#: DB:link_type/reverse_link_phrase:227
msgid "DJ-mixes"
-msgstr ""
+msgstr "DJ miksai"
#: DB:link_type/description:704
msgid ""
"Describes the fact a person was contracted by a place as a mastering "
"engineer."
msgstr ""
+"Apibūdina faktą, kad su asmeniu buvo sudaryta sutartis su vieta kaip "
+"masteringo inžinieriumi."
#: DB:link_type/description:703
msgid ""
"Describes the fact a person was contracted by a place as a mixing engineer."
msgstr ""
+"Apibūdina faktą, kad su asmeniu buvo sudaryta sutartis su vieta kaip "
+"miksavimo inžinieriumi."
#: DB:link_type/description:702
msgid ""
"Describes the fact a person was contracted by a place as a recording "
"engineer."
msgstr ""
+"Apibūdina faktą, kad su asmeniu buvo sudaryta sutartis su vieta kaip įrašymo "
+"inžinieriumi."
#: DB:link_type/description:701
msgid "Describes the fact a person was contracted by a place as an engineer."
msgstr ""
+"Apibūdina faktą, kad su asmeniu buvo sudaryta sutartis su vieta kaip "
+"inžinieriumi."
#: DB:link_type/description:357
msgid "Designates that a work is or was the anthem for an area"
-msgstr ""
+msgstr "Nurodo, kad kūrinys yra arba buvo vietovės himnas"
#: DB:link_type/description:356
msgid "Designates that one area is contained by another."
-msgstr ""
+msgstr "Nurodo, kad viena vietovė apima kitą."
#: DB:link_type/link_phrase:1089 DB:link_type/link_phrase:180
#: DB:link_type/link_phrase:76 DB:link_type/link_phrase:217
#: DB:link_type/link_phrase:90 DB:link_type/link_phrase:747
#: DB:link_type/link_phrase:705 DB:link_type/reverse_link_phrase:971
msgid "Discogs"
-msgstr ""
+msgstr "Discogs"
#: DB:link_type/link_phrase:971 DB:link_type/reverse_link_phrase:1089
#: DB:link_type/reverse_link_phrase:180 DB:link_type/reverse_link_phrase:76
#: DB:link_type/reverse_link_phrase:217 DB:link_type/reverse_link_phrase:90
#: DB:link_type/reverse_link_phrase:747 DB:link_type/reverse_link_phrase:705
msgid "Discogs page for"
-msgstr ""
+msgstr "Discogs puslapis, skirtas"
#: DB:link_attribute_type/description:1020
msgid ""
"For indicating the step-spouse of the artist's parent, or the sibling "
"relationship with the children of such a spouse"
msgstr ""
+"Nurodant atlikėjo patėvio sutuoktinį arba brolių ir seserų santykį su tokio "
+"sutuoktinio vaikais"
#: DB:link_attribute_type/description:580
msgid ""
@@ -264,18 +272,22 @@ msgid ""
"relevant to this recording. Examples include instrumental arrangements, or "
"\"beats\" from hip-hop songs which may be reused with different lyrics."
msgstr ""
+"Kūriniams, kurie turi dainų žodžius, tai reiškia, kad tie dainų žodžiai nėra "
+"susiję su šiuo įrašu. Pavyzdžiai – instrumentinės aranžuotės arba hiphopo "
+"dainų „ritmai“, kurie gali būti pakartotinai naudojami su kitais dainų "
+"žodžiais."
#: DB:link_type/link_phrase:934 DB:link_type/link_phrase:713
msgid "Geonames"
-msgstr ""
+msgstr "Geonames"
#: DB:link_type/reverse_link_phrase:934 DB:link_type/reverse_link_phrase:713
msgid "Geonames page for"
-msgstr ""
+msgstr "Geonames puslapis, skirtas"
#: DB:link_type/name:83 DB:link_type/name:258
msgid "IMDB samples"
-msgstr ""
+msgstr "IMDB mėginiai"
#: DB:link_type/link_phrase:313 DB:link_type/link_phrase:178
#: DB:link_type/link_phrase:97 DB:link_type/link_phrase:706
@@ -283,35 +295,37 @@ msgstr ""
#: DB:link_type/name:97 DB:link_type/name:706
#: DB:link_type/reverse_link_phrase:843
msgid "IMDb"
-msgstr ""
+msgstr "IMDb"
#: DB:link_type/reverse_link_phrase:83 DB:link_type/reverse_link_phrase:258
msgid "IMDb entry sampled in"
-msgstr ""
+msgstr "IMDb įrašas, paimtas iš"
#: DB:link_type/link_phrase:843 DB:link_type/reverse_link_phrase:313
#: DB:link_type/reverse_link_phrase:178 DB:link_type/reverse_link_phrase:97
#: DB:link_type/reverse_link_phrase:706
msgid "IMDb page for"
-msgstr ""
+msgstr "IMDb puslapis, skirtas"
#: DB:link_type/link_phrase:754 DB:link_type/name:754
msgid "IMSLP"
-msgstr ""
+msgstr "IMSLP"
#: DB:link_type/reverse_link_phrase:754
msgid "IMSLP page for"
-msgstr ""
+msgstr "IMSLP puslapis, skirtas"
#: DB:link_attribute_type/description:516
msgid "Indicates a bonus disc"
-msgstr ""
+msgstr "Nurodo papildomą diską"
#: DB:link_type/description:162
msgid ""
"Indicates a miscellaneous support role. This is usually stated in the liner "
"notes of an album."
msgstr ""
+"Nurodo įvairias pagalbines funkcijas. Paprastai tai nurodoma įvadinėse "
+"albumo užrašuose."
#: DB:link_type/description:105
msgid ""
@@ -320,6 +334,10 @@ msgid ""
"normally applies to well-known solo artists, although it can sometimes apply "
"to groups."
msgstr ""
+"Nurodo muzikantą (-ę), kuris (-i) ilgą laiką daro instrumentinę palaikymą "
+"kitam muzikantui (-ei) albumuose ir (arba) koncertuose. Tai – asmens ir "
+"atlikėjo santykis, kuris paprastai taikomas žinomiems solo atlikėjams, nors "
+"kartais gali būti taikomas ir grupėms."
#: DB:link_type/description:107
msgid ""
@@ -328,48 +346,60 @@ msgid ""
"applies to well-known solo artists, although it can sometimes apply to "
"groups."
msgstr ""
+"Nurodo muzikantą (-ę), kuris (-i) ilgą laiką daro vokalinį palaikymą kitam "
+"muzikantui (-ei) albumuose ir (arba) koncertuose. Tai – asmens ir atlikėjo "
+"santykis, kuris paprastai taikomas žinomiems solo atlikėjams, nors kartais "
+"gali būti taikomas ir grupėms."
+
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
-msgstr ""
+msgstr "Nurodo puslapį su oficialiu renginių serijos tvarkaraščiu."
#: DB:link_type/description:109
msgid "Indicates a parent-child relationship."
-msgstr ""
+msgstr "Nurodo tėvo ir vaiko santykį."
#: DB:link_type/description:396
msgid "Indicates a pictorial image (JPEG, GIF, PNG) of a place"
-msgstr ""
+msgstr "Nurodo vietos (JPEG, GIF, PNG) vaizdą"
#: DB:link_type/description:173
msgid "Indicates a pictorial image (JPEG, GIF, PNG) of an artist."
-msgstr ""
+msgstr "Nurodo atlikėjo (JPEG, GIF, PNG) paveikslėlį."
#: DB:link_type/description:943
msgid ""
"Indicates a place that moved from one location to another, while still being "
"generally considered the same."
msgstr ""
+"Nurodo vietą, kuri persikėlė iš vienos vietos į kitą, tačiau iš esmės vis "
+"dar laikoma ta pačia."
#: DB:link_attribute_type/description:1019
msgid "Indicates a sibling with whom the artist has only one parent in common"
msgstr ""
+"Nurodo brolį ar seserį, su kuriuo (-ia) atlikėjas (-a) turi tik vieną bendrą "
+"tėvą ar motiną"
#: DB:link_type/description:842
msgid "Indicates a webpage that reviews the event in question."
-msgstr ""
-
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
+msgstr "Nurodo tinklalapį, kuriame apžvelgiamas atitinkamas renginys."
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
+"Nurodo tinklalapį, kuriame galima nemokamai atsisiųsti leidyklos leidinius."
#: DB:link_type/description:177
msgid "Indicates a webpage where you can download an artist's work for free."
msgstr ""
+"Nurodo tinklalapį, kuriame galima nemokamai atsisiųsti atlikėjo kūrinį."
#: DB:link_type/description:834
msgid ""
@@ -377,6 +407,9 @@ msgid ""
"attributed to, but who is currently confirmed (or very strongly suspected) "
"not to be the real author."
msgstr ""
+"Nurodo atlikėją (paprastai kompozitorių (-ę)), kuriam (-iai) anksčiau buvo "
+"priskiriamas šis kūrinys, tačiau šiuo metu patvirtinta (arba labai stipriai "
+"įtariama), kad jis (-i) nėra tikrasis autorius (-ė)."
#: DB:link_type/description:104
msgid ""
@@ -385,73 +418,84 @@ msgid ""
"relationship that normally applies to well-known solo artists, although it "
"can sometimes apply to groups."
msgstr ""
+"Nurodo atlikėją, kuris (-i) ilgą laiką daro instrumentinį ar vokalinį "
+"palaikymą kitam atlikėjui albumuose ir (arba) koncertuose. Tai – asmens ir "
+"atlikėjo santykis, paprastai taikoma žinomiems solo atlikėjams, nors kartais "
+"gali būti taikoma ir grupėms."
#: DB:link_type/description:156
msgid "Indicates an artist that performed on this recording."
-msgstr ""
+msgstr "Nurodo atlikėją, kuris (-i) atliko šiame įraše."
#: DB:link_type/description:51
msgid "Indicates an artist that performed on this release."
-msgstr ""
+msgstr "Nurodo atlikėją, kuris (-i) atliko šiame leidinyje."
#: DB:link_type/description:148
msgid ""
"Indicates an artist that performed one or more instruments on this recording."
msgstr ""
+"Nurodo atlikėją, kuris (-i) šiame įraše atliko vieną ar daugiau instrumentų."
#: DB:link_type/description:44
msgid ""
"Indicates an artist that performed one or more instruments on this release."
msgstr ""
+"Nurodo atlikėją, kuris (-i) šiame leidinyje atliko vieną ar daugiau "
+"instrumentų."
#: DB:link_type/description:149
msgid "Indicates an artist that performed vocals on this recording."
-msgstr ""
+msgstr "Nurodo atlikėją, kuris (-i) šiame įraše atliko vokalus."
#: DB:link_type/description:60
msgid "Indicates an artist that performed vocals on this release."
-msgstr ""
+msgstr "Nurodo atlikėją, kuris (-i) šiame leidinyje atliko vokalus."
#: DB:link_type/description:150
msgid "Indicates an orchestra that performed on this recording."
-msgstr ""
+msgstr "Nurodo orkestrą, kuris atliko šiame įraše."
#: DB:link_type/description:45
msgid "Indicates an orchestra that performed on this release."
-msgstr ""
+msgstr "Nurodo orkestrą, kuris atliko šiame leidinyje."
#: DB:link_attribute_type/description:1080
msgid ""
"Indicates how many of a specific instrument an ensemble usually includes."
-msgstr ""
+msgstr "Nurodo, kiek konkretaus instrumento paprastai įtraukia ansamblis."
#: DB:link_type/description:844
msgid ""
"Indicates that an artist revised a work. In most cases, this will be the "
"original composer revising the work at a later date."
msgstr ""
+"Nurodo, kad atlikėjas (-a) pataisė kūrinį. Dažniausiai tai būna pirminis "
+"kompozitorius (-ė), kuris (-i) kūrinį pataisė vėlesnę datą."
#: DB:link_type/description:887
msgid ""
"Indicates that an event was intended as a performance of a specific release "
"group (usually an album)."
msgstr ""
+"Nurodo, kad renginys buvo skirtas konkrečios leidinio grupės (paprastai "
+"albumo) pasirodymui."
#: DB:link_attribute_type/description:567
msgid "Indicates that one entity is a cover of another entity"
-msgstr ""
+msgstr "Nurodo, kad vienas subjektas yra kito subjekto priedanga"
#: DB:link_type/description:996
msgid "Indicates that the artist is part of a series."
-msgstr ""
+msgstr "Nurodo, kad atlikėjas (-a) yra serijos dalis."
#: DB:link_type/description:802
msgid "Indicates that the event is part of a series."
-msgstr ""
+msgstr "Nurodo, kad renginys yra serijos dalis."
#: DB:link_type/description:231
msgid "Indicates that the recording contains samples from another."
-msgstr ""
+msgstr "Nurodo, kad įraše yra kito įrašo pavyzdžių."
#: DB:link_type/description:154
msgid ""
@@ -459,18 +503,21 @@ msgid ""
"artist. Use this only if you really cannot figure out the particular "
"recording that has been sampled."
msgstr ""
+"Nurodo, kad įraše yra nurodyto atlikėjo iš medžiagos pavyzdžių. Naudok tik "
+"tuo atveju, jei tikrai negali nustatyti šio konkretaus įrašo, iš kurio buvo "
+"paimti pavyzdžiai."
#: DB:link_type/description:69
msgid "Indicates that the recording contains samples from this release."
-msgstr ""
+msgstr "Nurodo, kad įraše yra šio leidinio pavyzdžių."
#: DB:link_type/description:740
msgid "Indicates that the recording is part of a series."
-msgstr ""
+msgstr "Nurodo, kad įrašas yra serijos dalis."
#: DB:link_attribute_type/description:1053
msgid "Indicates that the relationship is optional - doesn't always apply."
-msgstr ""
+msgstr "Nurodo, kad sąsajas pasirinktinis – ne visada taikomas."
#: DB:link_type/description:49
msgid ""
@@ -478,54 +525,60 @@ msgid ""
"artist. Use this only if you really cannot figure out the particular "
"recording that has been sampled."
msgstr ""
+"Nurodo, kad leidinyje yra nurodyto atlikėjo iš medžiagos pavyzdžių. Naudok "
+"tik tuo atveju, jei tikrai negali nustatyti šio konkretaus įrašo, iš kurio "
+"buvo paimti pavyzdžiai."
#: DB:link_type/description:742
msgid "Indicates that the release group is part of a series."
-msgstr ""
+msgstr "Nurodo, kad leidinių grupė yra serijos dalis."
#: DB:link_type/description:741
msgid "Indicates that the release is part of a series."
-msgstr ""
+msgstr "Nurodo, kad leidinys yra serijos dalis."
#: DB:link_type/description:743
msgid "Indicates that the work is part of a series."
-msgstr ""
+msgstr "Nurodo, kad kūrinys yra serijos dalis."
#: DB:link_type/description:112
msgid ""
"Indicates that two persons were romantically involved with each other "
"without being married."
msgstr ""
+"Nurodo, kad du asmenys, nesudarę santuokos, buvo susiję romantiškais ryšiais."
#: DB:link_type/description:1085
msgid "Indicates the area an event series was held at."
-msgstr ""
+msgstr "Nurodo vietovę, kurioje vyko renginių serija."
#: DB:link_type/description:715
msgid "Indicates the area where the work had its first performance"
-msgstr ""
+msgstr "Nurodo sritį, kurioje kūrinys buvo pristatytas pirmą kartą"
#: DB:link_type/description:956
msgid ""
"Indicates the artist(s) who gave the first performance of the work; this is "
"usually mostly relevant for classical music"
msgstr ""
+"Nurodo atlikėją (-us), kuris (-ie) pirmą kartą pristatė kūrinį; paprastai "
+"tai dažniausiai aktualu klasikinei muzikai"
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
msgid "Indicates the event where the work had its first performance"
-msgstr ""
+msgstr "Nurodo renginį, kuriame kūrinys buvo pristatytas pirmą kartą"
#: DB:link_type/description:986
msgid ""
@@ -553,15 +606,15 @@ msgstr ""
#: DB:link_type/description:56
msgid "Indicates the lyricist for this release."
-msgstr ""
+msgstr "Nurodo šio leidinio dainų žodžių autorių (-ę)."
#: DB:link_type/description:165
msgid "Indicates the lyricist for this work."
-msgstr ""
+msgstr "Nurodo šio kūrinio dainų žodžių autorių (-ę)."
#: DB:link_type/description:42
msgid "Indicates the mastering engineer for this work."
-msgstr ""
+msgstr "Nurodo šio kūrinio masteringo inžinierių (-ę)."
#: DB:link_type/description:219
msgid "Indicates the official homepage for a label."
@@ -594,7 +647,7 @@ msgstr ""
#: DB:link_type/description:716
msgid "Indicates the place where the work had its first performance"
-msgstr ""
+msgstr "Nurodo vietovę, kurioje kūrinys buvo pristatytas pirmą kartą"
#: DB:link_type/description:32
msgid ""
@@ -602,134 +655,162 @@ msgid ""
"same concept as the record label"
"a>."
msgstr ""
+"Nurodo šio leidinio leidėją. Tai nėrata pati sąvoka kaip įrašų leidykla."
#: DB:link_type/description:161
msgid ""
"Indicates the publisher of this work. This is not the same "
"concept as the record label."
msgstr ""
+"Nurodo šio kūrinio leidėją. Tai nėrata pati sąvoka kaip įrašų leidykla."
#: DB:link_type/description:208
msgid ""
"Indicates the publisher of this work. This is not the same "
"concept as the record label."
msgstr ""
+"Nurodo šio kūrinio leidėją. Tai nėrata pati sąvoka kaip įrašų leidykla."
#: DB:link_type/link_phrase:840 DB:link_type/link_phrase:837
#: DB:link_type/link_phrase:839 DB:link_type/link_phrase:838
msgid "Last.fm"
-msgstr ""
+msgstr "Last.fm"
#: DB:link_type/reverse_link_phrase:840 DB:link_type/reverse_link_phrase:837
#: DB:link_type/reverse_link_phrase:839 DB:link_type/reverse_link_phrase:838
msgid "Last.fm page for"
-msgstr ""
+msgstr "Last.fm puslapis, skirtas"
#: DB:link_attribute_type/description:4
msgid "Lead or solo vocal"
-msgstr ""
+msgstr "Pagrindinis arba solinis vokalas"
#: DB:link_type/description:864
msgid ""
"Links a recording to the area it was arranged in. Use only when the place is "
"unknown!"
msgstr ""
+"Sujungia įrašą su teritorija, kurioje jis buvo suvestas. Naudok tik tada, "
+"kai vieta nežinoma!"
#: DB:link_type/description:821
msgid ""
"Links a recording to the area it was edited in. Use only when the place is "
"unknown!"
msgstr ""
+"Sujungia įrašą su teritorija, kurioje jis buvo redaguotas. Naudok tik tada, "
+"kai vieta nežinoma!"
#: DB:link_type/description:814
msgid ""
"Links a recording to the area it was engineered in. Use only when the place "
"is unknown!"
msgstr ""
+"Sujungia įrašą su teritorija, kurioje jis buvo inžinieriškai sukurtas. "
+"Naudok tik tada, kai vieta nežinoma!"
#: DB:link_type/description:758
msgid ""
"Links a recording to the area it was mixed in. Use only when the place is "
"unknown!"
msgstr ""
+"Sujungia įrašą su teritorija, kurioje jis buvo sumiksuotas. Naudok tik tada, "
+"kai vieta nežinoma!"
#: DB:link_type/description:827
msgid ""
"Links a recording to the area it was produced in. Use only when the place is "
"unknown!"
msgstr ""
+"Sujungia įrašą su teritorija, kurioje jis buvo sukurtas. Naudok tik tada, "
+"kai vieta nežinoma!"
#: DB:link_type/description:698
msgid ""
"Links a recording to the area it was recorded in. Use only when the place is "
"unknown!"
msgstr ""
+"Sujungia įrašą su teritorija, kurioje jis buvo įrašytas. Naudok tik tada, "
+"kai vieta nežinoma!"
#: DB:link_type/description:830
msgid ""
"Links a recording to the area it was remixed in. Use only when the place is "
"unknown!"
msgstr ""
+"Sujungia įrašą su teritorija, kurioje jis buvo suremiksuotas. Naudok tik "
+"tada, kai vieta nežinoma!"
#: DB:link_type/description:809
msgid "Links a recording to the event it was recorded at."
-msgstr ""
+msgstr "Sujungia įrašą su renginiu, kurioje jis buvo įrašytas."
#: DB:link_type/description:1006
msgid ""
"Links a recording to the event series (tour, residency, etc.) it was "
"recorded during."
msgstr ""
+"Sujungia įrašą su renginių serija (turu, rezidencija ir t. t.), kurios metu "
+"jis buvo įrašytas."
#: DB:link_type/description:866
msgid "Links a recording to the place it was arranged at."
-msgstr ""
+msgstr "Sujungia įrašą su vieta, kurioje jis buvo suvestas."
#: DB:link_type/description:819
msgid "Links a recording to the place it was edited at."
-msgstr ""
+msgstr "Sujungia įrašą su vieta, kurioje jis buvo redaguotas."
#: DB:link_type/description:813
msgid "Links a recording to the place it was engineered at."
-msgstr ""
+msgstr "Sujungia įrašą su vieta, kurioje jis buvo inžinieriškai sukurtas."
#: DB:link_type/description:694
msgid "Links a recording to the place it was mixed at."
-msgstr ""
+msgstr "Sujungia įrašą su vieta, kurioje jis buvo sumiksuotas."
#: DB:link_type/description:825
msgid "Links a recording to the place it was produced at."
-msgstr ""
+msgstr "Sujungia įrašą su vieta, kurioje jis buvo sukurtas."
#: DB:link_type/description:693
msgid "Links a recording to the place it was recorded at."
-msgstr ""
+msgstr "Sujungia įrašą su vieta, kurioje jis buvo įrašytas."
#: DB:link_type/description:829
msgid "Links a recording to the place it was remixed at."
-msgstr ""
+msgstr "Sujungia įrašą su vieta, kurioje jis buvo suremiksuotas."
#: DB:link_type/description:1008
msgid ""
"Links a recording, release or release group series to the event series "
"(tour, residency, etc.) it was recorded during."
msgstr ""
+"Sujungia įrašo, leidinio ar leidinių grupės seriją su renginių serija (turu, "
+"rezidencija ir pan.), kurios metu jis buvo įrašytas."
#: DB:link_type/description:1007
msgid ""
"Links a release group to the event series (tour, residency, etc.) it was "
"recorded during."
msgstr ""
+"Sujungia leidinio grupę su renginių serija (turu, rezidencija ir t. t.), "
+"kurios metu jis buvo įrašytas."
#: DB:link_type/description:797
msgid "Links a release group with a launch event for it."
-msgstr ""
+msgstr "Sujungia leidinio grupę su jos išleidimo renginiu."
#: DB:link_type/description:863
msgid ""
"Links a release to the area it was arranged in. Use only when the place is "
"unknown!"
msgstr ""
+"Sujungia leidinį su teritorija, kurioje jis buvo suvestas. Naudok tik tada, "
+"kai vieta nežinoma!"
#: DB:link_type/description:822
msgid ""
@@ -796,18 +877,19 @@ msgstr ""
#: DB:link_type/description:969
msgid "Links a release to the engineer who did the lacquer cutting for it."
msgstr ""
+"Sujungia leidinį su inžinieriumi (-e), kuris (-i) atliko jo lako pjaustymą."
#: DB:link_type/description:810
msgid "Links a release to the event it was recorded at."
-msgstr ""
+msgstr "Sujungia leidinį su renginiu, kuriame jis buvo įrašytas."
#: DB:link_type/description:865
msgid "Links a release to the place it was arranged at."
-msgstr ""
+msgstr "Sujungia leidinį su vieta, kurioje jis buvo suvestas."
#: DB:link_type/description:820
msgid "Links a release to the place it was edited at."
-msgstr ""
+msgstr "Sujungia leidinį su vieta, kurioje jis buvo redaguotas."
#: DB:link_type/description:812
msgid "Links a release to the place it was engineered at."
@@ -872,7 +954,7 @@ msgstr ""
#: DB:link_type/description:823
msgid "Links a series to another series that exists within it."
-msgstr ""
+msgstr "Sujungia seriją su kita joje esančia serija."
#: DB:link_type/description:1094
msgid ""
@@ -892,7 +974,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -953,64 +1035,68 @@ msgstr ""
#: DB:link_type/link_phrase:215 DB:link_type/link_phrase:462
#: DB:link_type/link_phrase:189
msgid "Myspace"
-msgstr ""
+msgstr "Myspace"
#: DB:link_type/reverse_link_phrase:215 DB:link_type/reverse_link_phrase:462
#: DB:link_type/reverse_link_phrase:189
msgid "Myspace page for"
-msgstr ""
+msgstr "Myspace puslapis, skirtas"
#: DB:link_attribute_type/description:461
msgid "Other vocalizations"
-msgstr ""
+msgstr "Kiti vokalizavimai"
#: DB:link_type/description:852
msgid "Points to the BookBrainz page for this artist."
-msgstr ""
+msgstr "Nukreipia į šio atlikėjo BookBrainz puslapį."
#: DB:link_type/description:851
msgid "Points to the BookBrainz page for this label."
-msgstr ""
+msgstr "Nukreipia į šios leidyklos BookBrainz puslapį."
#: DB:link_type/description:853
msgid "Points to the BookBrainz page for this release group."
-msgstr ""
+msgstr "Nukreipia į šios leidinio grupės BookBrainz puslapį."
#: DB:link_type/description:850
msgid "Points to the BookBrainz page for this release."
-msgstr ""
+msgstr "Nukreipia į šio leidinio BookBrainz puslapį."
#: DB:link_type/description:1167
msgid "Points to the BookBrainz page for this series."
-msgstr ""
+msgstr "Nukreipia į šios serijos BookBrainz puslapį."
#: DB:link_type/description:854
msgid "Points to the BookBrainz page for this work."
-msgstr ""
+msgstr "Nukreipia į šio kūrinio BookBrainz puslapį."
#: DB:link_type/description:713
msgid "Points to the Geonames page for this area."
-msgstr ""
+msgstr "Nukreipia į šios srities Geonames puslapį."
#: DB:link_type/description:934
msgid "Points to the Geonames page for this place."
-msgstr ""
+msgstr "Nukreipia į šios vietos Geonames puslapį."
#: DB:link_type/description:706
msgid "Points to the Internet Movie Database page for this place."
-msgstr ""
+msgstr "Nukreipia į Internet Movie Database puslapį šiai vietai."
#: DB:link_type/description:358
msgid ""
"Points to the Wikidata page for this area, and will be used to fetch "
"Wikipedia summaries"
msgstr ""
+"Nukreipia į šios srities Vikiduomenio puslapį, kuris bus naudojamas "
+"Vikipedijos santraukoms gauti"
#: DB:link_type/description:352
msgid ""
"Points to the Wikidata page for this artist, and will be used to fetch "
"Wikipedia summaries"
msgstr ""
+"Nukreipia į šio atlikėjo Vikiduomenio puslapį, kuris bus naudojamas "
+"Vikipedijos santraukoms gauti"
#: DB:link_type/description:790
msgid ""
@@ -1062,106 +1148,111 @@ msgstr ""
#: DB:link_type/description:89
msgid "Points to the Wikipedia page for this album."
-msgstr ""
+msgstr "Nukreipia į šio albumo Vikipedijos puslapį."
#: DB:link_type/description:355
msgid "Points to the Wikipedia page for this area."
-msgstr ""
+msgstr "Nukreipia į šios srities Vikipedijos puslapį."
#: DB:link_type/description:179
msgid "Points to the Wikipedia page for this artist."
-msgstr ""
+msgstr "Nukreipia į šio atlikėjo Vikipedijos puslapį."
#: DB:link_type/description:789
msgid "Points to the Wikipedia page for this event."
-msgstr ""
+msgstr "Nukreipia į šio renginio Vikipedijos puslapį."
#: DB:link_type/description:731
msgid "Points to the Wikipedia page for this instrument."
-msgstr ""
+msgstr "Nukreipia į šio instrumento Vikipedijos puslapį."
#: DB:link_type/description:595
msgid "Points to the Wikipedia page for this place"
-msgstr ""
+msgstr "Nukreipia į šios vietos Vikipedijos puslapį"
#: DB:link_type/description:744
msgid "Points to the Wikipedia page for this series."
-msgstr ""
+msgstr "Nukreipia į šios serijos Vikipedijos puslapį."
#: DB:link_type/description:279
msgid "Points to the Wikipedia page for this work."
-msgstr ""
+msgstr "Nukreipia į šio kūrinio Vikipedijos puslapį."
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
+"Vietoj to leidėjai turėtų būti pridėti prie kūrinių. Atmink, kad tai "
+"nėra ta pati sąvoka kaip įrašų leidykla."
#: DB:link_type/link_phrase:174
msgid "PureVolume"
-msgstr ""
+msgstr "PureVolume"
#: DB:link_type/reverse_link_phrase:174
msgid "PureVolume page for"
-msgstr ""
+msgstr "PureVolume puslapis, skirtas"
#: DB:link_type/link_phrase:308 DB:link_type/link_phrase:976
#: DB:link_type/link_phrase:977 DB:link_type/link_phrase:307
#: DB:link_type/reverse_link_phrase:280
msgid "SecondHandSongs"
-msgstr ""
+msgstr "SecondHandSongs"
#: DB:link_type/link_phrase:280 DB:link_type/reverse_link_phrase:308
#: DB:link_type/reverse_link_phrase:976 DB:link_type/reverse_link_phrase:977
#: DB:link_type/reverse_link_phrase:307
msgid "SecondHandSongs page for"
-msgstr ""
+msgstr "SecondHandSongs puslapis, skirtas"
#: DB:link_type/reverse_link_phrase:289
msgid "Songfacts"
-msgstr ""
+msgstr "Songfacts"
#: DB:link_type/link_phrase:289
msgid "Songfacts page for"
-msgstr ""
+msgstr "Songfacts puslapis, skirtas"
#: DB:link_type/link_phrase:786 DB:link_type/link_phrase:785
#: DB:link_type/link_phrase:787
msgid "Songkick"
-msgstr ""
+msgstr "Songkick"
#: DB:link_type/reverse_link_phrase:786 DB:link_type/reverse_link_phrase:785
#: DB:link_type/reverse_link_phrase:787
msgid "Songkick page for"
-msgstr ""
+msgstr "Songkick puslapis, skirtas"
#: DB:link_type/link_phrase:870 DB:link_type/link_phrase:291
#: DB:link_type/link_phrase:290 DB:link_type/link_phrase:940
msgid "SoundCloud"
-msgstr ""
+msgstr "SoundCloud"
#: DB:link_type/reverse_link_phrase:870 DB:link_type/reverse_link_phrase:291
#: DB:link_type/reverse_link_phrase:290 DB:link_type/reverse_link_phrase:940
msgid "SoundCloud page for"
-msgstr ""
+msgstr "SoundCloud puslapis, skirtas"
#: DB:link_attribute_type/description:1135
msgid ""
"Specifies the level of studies that a student studied towards in an "
"educational institution."
-msgstr ""
+msgstr "Nurodo studijų lygį, kurį studentas (-ė) studijavo švietimo įstaigoje."
#: DB:link_attribute_type/description:1125
msgid ""
"Specifies the subject that was taught by a teacher in an institution and/or "
"to a student."
msgstr ""
+"Nurodo objektą, kurį mokytojas (-a) dėstė institucijoje ir (arba) mokiniui (-"
+"ei)."
#: DB:link_attribute_type/description:561
msgid "Spoken vocals (speech)"
-msgstr ""
+msgstr "Sakytys vokalai (kalba)"
#: DB:link_type/long_link_phrase:880
msgid ""
@@ -1197,23 +1288,27 @@ msgstr ""
#: DB:link_type/description:933
msgid "This allows linking a series to the label who publishes it."
-msgstr ""
+msgstr "Tai leidžia sujungti seriją su leidėją, kuris ją išleidžia."
#: DB:link_attribute_type/description:3
msgid "This attribute describes a type of vocal performance."
-msgstr ""
+msgstr "Šis požymis apibūdina vokalinio atlikimo tipą."
#: DB:link_attribute_type/description:2
msgid ""
"This attribute describes if a particular collaboration was considered equal "
"or minor."
msgstr ""
+"Šis požymis apibūdina, ar konkretus bendradarbiavimas buvo laikomas "
+"lygiaverčiu, ar antraeiliu."
#: DB:link_attribute_type/description:1
msgid ""
"This attribute describes if a particular role was considered normal or "
"additional."
msgstr ""
+"Šis požymis apibūdina, ar tam tikras vaidmuo buvo laikomas įprastu, ar "
+"papildomu."
#: DB:link_attribute_type/description:14
msgid ""
@@ -1223,17 +1318,24 @@ msgid ""
"Can't find an instrument? Request it!"
msgstr ""
+"Šis požymis apibūdina galimus instrumentus, kuriuos galima užfiksuoti kaip "
+"atlikimo dalį.\n"
+"
\n"
+"Negali rasti instrumento? Paprašyk jo!"
#: DB:link_attribute_type/description:194
msgid ""
"This attribute indicates a 'guest' performance where the performer is not "
"usually part of the band."
msgstr ""
+"Šis požymis nurodo „kviestinį“ pasirodymą, kai muzikantas (-ė) paprastai "
+"nėra grupės narys (-ė)."
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1241,12 +1343,15 @@ msgid ""
"This attribute indicates a version with satirical, ironic, or otherwise "
"humorous intent. Parodies in most cases have altered lyrics."
msgstr ""
+"Šis požymis nurodo satyrinę, ironišką ar kitaip humoristinę versiją. "
+"Parodijų dainų žodžiai dažniausiai būna pakeisti."
#: DB:link_attribute_type/description:517
msgid ""
"This attribute indicates a version with the lyrics in a different language "
"than the original."
msgstr ""
+"Šis požymis nurodo versiją su dainų žodžiais kita kalba nei originalo kalba."
#: DB:link_attribute_type/description:525
msgid ""
@@ -1256,7 +1361,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1335,12 +1440,21 @@ msgid ""
"into The Verve Music "
"Group, as Verve continued its existence thereafter as an imprint."
msgstr ""
+"Tai apibūdina situaciją, kai leidykla pakeitė savo pavadinimą dėl estetinių "
+"priežasčių arba po išpirkimo, pardavimo, atskyrimo. Reikėtų būti ypač "
+"atsargiems tais atvejais, kai atliekamos sudėtingos susijungimo, padalijimo "
+"ar pertvarkymo finansinės operacijos. Pavyzdžiui, nėra gera idėja pervadinti "
+"leidyklą „Verve“ "
+"į „The Verve Music "
+"Group“, nes vėliau „Verve“ toliau gyvavo kaip atspaudas."
#: DB:link_type/description:1079
msgid ""
"This describes a situation where an artist (generally a group) changed its "
"name, leading to the start of a new project."
msgstr ""
+"Tai apibūdina situaciją, kai atlikėjas (-a) (paprastai grupė) pakeitė "
+"pavadinimą ir pradėta naują projektą."
#: DB:link_type/description:200
msgid ""
@@ -1350,12 +1464,18 @@ msgid ""
"corporate acquisition of the former label, has become a subdivision of "
"another one."
msgstr ""
+"Tai apibūdina situaciją, kai viena leidykla tam tikru laikotarpiu yra (arba "
+"buvo) kitos leidyklos dukterinė bendrovė. Šis turėtų būti naudojamas "
+"apibūdinti faktą, kad leidykla yra kitos leidyklos padalinys arba, įmonei "
+"įsigijus ankstesnę leidyklą, tapo kitos leidyklos padaliniu."
#: DB:link_type/description:203
msgid ""
"This describes a situation where one label is distributing (part of) another "
"label's catalog, in a country/region of the world, during a period of time."
msgstr ""
+"Tai apibūdina situaciją, kai viena leidykla tam tikrą laikotarpį platina "
+"kitos leidyklos katalogą (jo dalį) tam tikroje pasaulio šalyje arba regione."
#: DB:link_type/description:201
msgid ""
@@ -1369,6 +1489,15 @@ msgid ""
"A bootleg label reissues another label's catalog. \n"
""
msgstr ""
+"Tai apibūdina situaciją, kai viena leidykla savo vardu perleidžia kitos "
+"leidyklos katalogo (dalį). Taip gali atsitikti bent trimis atvejais:\n"
+"\n"
+"- Leidykla tam tikram laikotarpiui įsigyja kitos leidyklos katalogo nuomą "
+"tam tikrame pasaulio regione.
\n"
+"- Leidykla nusiperka teises į nebeegzistuojančios leidyklos katalogą arba "
+"nusiperka leidyklą (su jos katalogu) ir ją išardo.
\n"
+"- Nelegali leidykla perleidžia kitos leidyklos katalogą.
\n"
+"
"
#: DB:link_type/description:140 DB:link_type/description:31
msgid ""
@@ -1427,10 +1556,11 @@ msgstr ""
#: DB:link_type/description:28 DB:link_type/description:138
msgid "This describes an engineer who performed a general engineering role."
msgstr ""
+"Tai apibūdina inžinierių (-ę), atliekantį bendrąsias inžinerines užduotis."
#: DB:link_type/description:103
msgid "This indicates a person is a member of a group."
-msgstr ""
+msgstr "Tai nurodo, kad asmuo yra grupės narys (-ė)."
#: DB:link_type/description:135 DB:link_type/description:62
msgid ""
@@ -1465,30 +1595,37 @@ msgid ""
"publishing label is a small label (usually a subdivision of a larger one) "
"that exclusively handles the rights to works by that artist."
msgstr ""
+"Tai nurodo asmeninę atlikėjo leidėjo leidyklą. Asmeninė leidėjos leidykla – "
+"tai nedidelė leidykla (paprastai didesnės leidyklos padalinys), kuri "
+"išimtinai rūpinasi tik to atlikėjo kūrinių teisėmis."
#: DB:link_type/description:1011
msgid ""
"This indicates a recording engineer that recorded field recordings for the "
"recording."
msgstr ""
+"Tai nurodo įrašo inžinierių (-ę), kuris (-i) įrašinėjo lauko įrašus šiam "
+"įrašui."
#: DB:link_type/description:1012
msgid ""
"This indicates a recording engineer that recorded field recordings for the "
"release."
msgstr ""
+"Tai nurodo įrašo inžinierių (-ę), kuris (-i) įrašinėjo lauko įrašus "
+"leidiniui."
#: DB:link_type/description:1174
msgid "This indicates an agency that did the art direction for the release."
-msgstr ""
+msgstr "Tai nurodo agentūrą, kuri kūrė leidinio meno vadovą."
#: DB:link_type/description:1171
msgid "This indicates an agency who did design for the release."
-msgstr ""
+msgstr "Tai nurodo agentūrą, kuri kūrė leidinio dizainą."
#: DB:link_type/description:1173
msgid "This indicates an agency who did illustration for the release."
-msgstr ""
+msgstr "Tai nurodo agentūrą, kuri atliko leidinio iliustraciją."
#: DB:link_type/description:1172
msgid ""
@@ -1516,17 +1653,19 @@ msgstr ""
#: DB:link_attribute_type/description:921
msgid "This indicates an artist cancelled their appearance at an event."
-msgstr ""
+msgstr "Tai nurodo, kad atlikėjas (-a) atšaukė savo pasirodymą renginyje."
#: DB:link_type/description:917
msgid ""
"This indicates an artist reconstructed a work (usually one where the score "
"was lost) to make it ready for performance."
msgstr ""
+"Tai nurodo, kad atlikėjas (-a) rekonstravo kūrinį (paprastai tokį, kurio "
+"partitūra buvo prarasta), kad paruoštų jį atlikimui."
#: DB:link_type/description:18
msgid "This indicates an artist that did the art direction for the release."
-msgstr ""
+msgstr "Tai nurodo atlikėją, kuris (-i) kūrė leidinio meno vadovą."
#: DB:link_type/description:151
msgid ""
@@ -1604,15 +1743,15 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
msgid ""
"This indicates that a person or agency did the art direction for the "
"recording."
-msgstr ""
+msgstr "Tai nurodo, kad įrašo meno vadovavimą kūrė asmuo arba agentūra."
#: DB:link_type/description:142
msgid ""
@@ -1670,8 +1809,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1750,8 +1889,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1774,8 +1913,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1900,16 +2039,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1927,8 +2066,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2255,9 +2394,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2490,18 +2629,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2588,9 +2727,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2819,8 +2958,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2859,8 +2998,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2966,8 +3105,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2987,8 +3126,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2999,8 +3138,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3282,7 +3421,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3291,7 +3430,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3299,13 +3438,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3315,7 +3469,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3323,28 +3477,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3352,7 +3491,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3401,9 +3540,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3441,9 +3580,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3460,9 +3599,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3507,9 +3646,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3629,14 +3768,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3647,8 +3786,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3658,8 +3797,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -3886,7 +4025,7 @@ msgstr ""
#: DB:link_type/name:137 DB:link_type/name:1174 DB:link_type/name:18
msgid "art direction"
-msgstr ""
+msgstr "meno vadovavimas"
#: DB:link_type/link_phrase:1192
msgid "art galleries"
@@ -4087,8 +4226,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4383,15 +4522,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4399,8 +4538,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4655,65 +4794,65 @@ msgstr ""
#: DB:link_type/name:1011 DB:link_type/name:1012
msgid "field recordist"
-msgstr ""
+msgstr "lauko įrašinėtojas (-a)"
#: DB:link_type/link_phrase:1011 DB:link_type/link_phrase:1012
msgid "field recordist for"
-msgstr ""
+msgstr "lauko įrašinėtojas (-a)"
#: DB:link_type/name:238
msgid "first track release"
-msgstr ""
+msgstr "pirmojo takelio išleidimas"
#: DB:link_attribute_type/name:1133
msgid "folk music"
-msgstr ""
+msgstr "liaudies muzika"
#: DB:link_type/link_phrase:832 DB:link_type/link_phrase:116
#: DB:link_type/link_phrase:895 DB:link_type/link_phrase:1004
#: DB:link_type/long_link_phrase:832 DB:link_type/long_link_phrase:116
#: DB:link_type/long_link_phrase:895 DB:link_type/long_link_phrase:1004
msgid "founded"
-msgstr ""
+msgstr "įkurta"
#: DB:link_type/reverse_link_phrase:895
msgid "founded by"
-msgstr ""
+msgstr "įkūrė"
#: DB:link_type/name:832 DB:link_type/name:895 DB:link_type/name:1004
msgid "founder"
-msgstr ""
+msgstr "įkūrėjas (-a)"
#: DB:link_type/reverse_link_phrase:832 DB:link_type/reverse_link_phrase:116
#: DB:link_type/reverse_link_phrase:1004
msgid "founders"
-msgstr ""
+msgstr "įkūrėjai"
#: DB:link_type/reverse_link_phrase:958 DB:link_type/reverse_link_phrase:75
#: DB:link_type/reverse_link_phrase:177 DB:link_type/reverse_link_phrase:255
msgid "free download page for"
-msgstr ""
+msgstr "nemokamas atsisiuntimo puslapis"
#: DB:link_type/link_phrase:274
msgid "free download page for the score of"
-msgstr ""
+msgstr "nemokamas atsisiuntimo partitūros puslapis"
#: DB:link_type/reverse_link_phrase:997 DB:link_type/reverse_link_phrase:194
msgid "free music streaming page for"
-msgstr ""
+msgstr "nemokamas muzikos srautinės transliacijos puslapis"
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
-msgstr ""
+msgstr "nemokamas muzikos {video} srautinės transliacijos puslapis"
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
-msgstr ""
+msgstr "nemokamas srautinis transliavimas"
#: DB:link_type/reverse_link_phrase:1088 DB:link_type/reverse_link_phrase:752
msgid "from"
-msgstr ""
+msgstr "iš"
#: DB:link_type/link_phrase:1096 DB:link_type/name:1096
msgid "fusion of"
@@ -4721,15 +4860,15 @@ msgstr ""
#: DB:link_type/name:1088
msgid "genre origin"
-msgstr ""
+msgstr "žanro kilmė"
#: DB:link_type/link_phrase:1088
msgid "genres"
-msgstr ""
+msgstr "žanrai"
#: DB:link_type/name:934 DB:link_type/name:713
msgid "geonames"
-msgstr ""
+msgstr "geonames"
#: DB:link_type/link_phrase:957 DB:link_type/link_phrase:257
#: DB:link_type/link_phrase:73 DB:link_type/link_phrase:1091
@@ -4741,12 +4880,12 @@ msgstr ""
#: DB:link_type/long_link_phrase:257 DB:link_type/long_link_phrase:73
#: DB:link_type/long_link_phrase:1091 DB:link_type/long_link_phrase:187
msgid "get the music"
-msgstr ""
+msgstr "gauti muziką"
#: DB:link_type/link_phrase:911 DB:link_type/name:911
#: DB:link_type/reverse_link_phrase:911 DB:link_type/long_link_phrase:911
msgid "get the score"
-msgstr ""
+msgstr "gauti partitūrą"
#: DB:link_type/link_phrase:955 DB:link_type/name:955
#: DB:link_type/long_link_phrase:955
@@ -4759,19 +4898,19 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:955
msgid "glass mastered by"
-msgstr ""
+msgstr "stiklo meistravimas padarė"
#: DB:link_type/link_phrase:954
msgid "glass mastering location for"
-msgstr ""
+msgstr "stiklo meistravimo vieta"
#: DB:link_type/name:1172 DB:link_type/name:125 DB:link_type/name:27
msgid "graphic design"
-msgstr ""
+msgstr "grafinis dizainas"
#: DB:link_attribute_type/name:194
msgid "guest"
-msgstr ""
+msgstr "svečias"
#: DB:link_type/name:800
msgid "guest performer"
@@ -4823,16 +4962,16 @@ msgstr ""
#: DB:link_type/long_link_phrase:77
msgid "has Amazon ASIN"
-msgstr ""
+msgstr "turi Amazon ASIN"
#: DB:link_type/long_link_phrase:1131 DB:link_type/long_link_phrase:1130
msgid "has Apple Music page at"
-msgstr ""
+msgstr "turi Apple Music puslapį"
#: DB:link_type/long_link_phrase:1092 DB:link_type/long_link_phrase:718
#: DB:link_type/long_link_phrase:719
msgid "has Bandcamp page at"
-msgstr ""
+msgstr "turi Bandcamp puslapis"
#: DB:link_type/long_link_phrase:919
msgid "has CD Baby page at"
@@ -4904,13 +5043,13 @@ msgstr ""
#: DB:link_type/long_link_phrase:870 DB:link_type/long_link_phrase:291
#: DB:link_type/long_link_phrase:290 DB:link_type/long_link_phrase:940
msgid "has a SoundCloud page at"
-msgstr ""
+msgstr "turi SoundCloud puslapį"
#: DB:link_type/long_link_phrase:86 DB:link_type/long_link_phrase:191
#: DB:link_type/long_link_phrase:210 DB:link_type/long_link_phrase:788
#: DB:link_type/long_link_phrase:1013
msgid "has a VGMdb page at"
-msgstr ""
+msgstr "turi VGMdb puslapį"
#: DB:link_type/long_link_phrase:1087 DB:link_type/long_link_phrase:353
#: DB:link_type/long_link_phrase:749 DB:link_type/long_link_phrase:594
@@ -4942,8 +5081,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -4991,7 +5130,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:173 DB:link_type/long_link_phrase:396
#: DB:link_type/long_link_phrase:732
msgid "has a picture at"
-msgstr ""
+msgstr "turi nuotrauką"
#: DB:link_type/long_link_phrase:842 DB:link_type/long_link_phrase:94
msgid "has a review page at"
@@ -5085,15 +5224,15 @@ msgstr ""
#: DB:link_type/long_link_phrase:735
msgid "has child"
-msgstr ""
+msgstr "turi vaiką"
#: DB:link_type/long_link_phrase:78
msgid "has cover art at"
-msgstr ""
+msgstr "turi viršelį"
#: DB:link_type/long_link_phrase:737
msgid "has derived instrument"
-msgstr ""
+msgstr "išvedė instrumentą"
#: DB:link_type/reverse_link_phrase:1096
msgid "has fusion genres"
@@ -5105,7 +5244,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:725
msgid "has imprint"
-msgstr ""
+msgstr "turi įspaudą"
#: DB:link_type/long_link_phrase:1097
msgid "has influences of"
@@ -5166,7 +5305,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:1095
msgid "has subgenre"
-msgstr ""
+msgstr "turi subžanrą"
#: DB:link_type/long_link_phrase:823
msgid "has subseries"
@@ -5213,14 +5352,14 @@ msgstr ""
#: DB:link_type/link_phrase:708 DB:link_type/link_phrase:709
#: DB:link_type/long_link_phrase:708 DB:link_type/long_link_phrase:709
msgid "holds copyright (©) for"
-msgstr ""
+msgstr "turi autorines teises (©)"
#: DB:link_type/link_phrase:867 DB:link_type/link_phrase:711
#: DB:link_type/link_phrase:710 DB:link_type/link_phrase:869
#: DB:link_type/long_link_phrase:867 DB:link_type/long_link_phrase:711
#: DB:link_type/long_link_phrase:710 DB:link_type/long_link_phrase:869
msgid "holds phonographic copyright (℗) for"
-msgstr ""
+msgstr "turi fonografijos autorių teises (℗)"
#: DB:link_type/name:801
msgid "host"
@@ -5249,7 +5388,7 @@ msgstr ""
#: DB:link_type/name:725
msgid "imprint"
-msgstr ""
+msgstr "įspaudas"
#: DB:link_type/reverse_link_phrase:725
msgid "imprint of"
@@ -5257,15 +5396,15 @@ msgstr ""
#: DB:link_type/link_phrase:725
msgid "imprints"
-msgstr ""
+msgstr "įspaudai"
#: DB:link_attribute_type/name:1134
msgid "improvisation"
-msgstr ""
+msgstr "improvizacija"
#: DB:link_type/link_phrase:894 DB:link_type/name:894
msgid "included in"
-msgstr ""
+msgstr "įtraukta į"
#: DB:link_type/reverse_link_phrase:894
msgid "includes"
@@ -5334,7 +5473,7 @@ msgstr ""
#: DB:link_type/link_phrase:896 DB:link_type/name:896 DB:link_type/name:918
#: DB:link_type/reverse_link_phrase:918 DB:link_type/long_link_phrase:896
msgid "invented"
-msgstr ""
+msgstr "išrado"
#: DB:link_type/link_phrase:918 DB:link_type/reverse_link_phrase:896
msgid "invented by"
@@ -5392,11 +5531,11 @@ msgstr ""
#: DB:link_type/long_link_phrase:11
msgid "is a single/EP which was taken from"
-msgstr ""
+msgstr "yra singlas/mini albumas, kuris buvo paimtas iš"
#: DB:link_type/long_link_phrase:728
msgid "is a tribute to"
-msgstr ""
+msgstr "yra padėka"
#: DB:link_type/long_link_phrase:278
msgid ""
@@ -5451,7 +5590,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:238
msgid "is the earliest release of"
-msgstr ""
+msgstr "yra anksčiausias leidinys"
#: DB:link_type/long_link_phrase:241
msgid "is the earliest version of {translated} {parody}"
@@ -5513,39 +5652,39 @@ msgstr ""
#: DB:link_attribute_type/name:1132
msgid "jazz"
-msgstr ""
+msgstr "džiazas"
#: DB:link_attribute_type/name:1261 DB:link_type/name:226
msgid "karaoke"
-msgstr ""
+msgstr "karaokė"
#: DB:link_type/reverse_link_phrase:226
msgid "karaoke version of"
-msgstr ""
+msgstr "karaokės versija"
#: DB:link_type/link_phrase:226
msgid "karaoke versions"
-msgstr ""
+msgstr "karaokė versijos"
#: DB:link_type/name:203
msgid "label distribution"
-msgstr ""
+msgstr "leidyklos platinimas"
#: DB:link_type/name:116
msgid "label founder"
-msgstr ""
+msgstr "leidyklos įkūrėjas"
#: DB:link_type/name:200
msgid "label ownership"
-msgstr ""
+msgstr "leidyklos nuosavybė"
#: DB:link_type/name:201
msgid "label reissue"
-msgstr ""
+msgstr "leidyklos pakartotinis leidimas"
#: DB:link_type/name:202
msgid "label rename"
-msgstr ""
+msgstr "leidyklos pervadinimas"
#: DB:link_type/link_phrase:969 DB:link_type/name:969
#: DB:link_type/reverse_link_phrase:969
@@ -5567,15 +5706,15 @@ msgstr ""
#: DB:link_type/name:840 DB:link_type/name:837 DB:link_type/name:839
#: DB:link_type/name:838
msgid "last.fm"
-msgstr ""
+msgstr "last.fm"
#: DB:link_type/link_phrase:238
msgid "later releases"
-msgstr ""
+msgstr "vėlesni leidiniai"
#: DB:link_type/link_phrase:241
msgid "later {translated} {parody} versions"
-msgstr ""
+msgstr "vėlesnės {translated} {parody} versijos"
#: DB:link_type/name:796 DB:link_type/name:797
msgid "launch event"
@@ -5636,15 +5775,15 @@ msgstr ""
#: DB:link_type/link_phrase:712 DB:link_type/link_phrase:1010
#: DB:link_type/long_link_phrase:712 DB:link_type/long_link_phrase:1010
msgid "licensed"
-msgstr ""
+msgstr "licencijuota"
#: DB:link_type/reverse_link_phrase:712 DB:link_type/reverse_link_phrase:1010
msgid "licensed from"
-msgstr ""
+msgstr "licencijuota iš"
#: DB:link_type/reverse_link_phrase:833
msgid "licensed to"
-msgstr ""
+msgstr "licencijuota į"
#: DB:link_type/name:833
msgid "licensee"
@@ -5656,19 +5795,19 @@ msgstr ""
#: DB:link_type/name:712 DB:link_type/name:1010
msgid "licensor"
-msgstr ""
+msgstr "licencijos davėjas"
#: DB:link_type/name:24
msgid "liner notes"
-msgstr ""
+msgstr "linijinės užrašai"
#: DB:link_attribute_type/name:578
msgid "live"
-msgstr ""
+msgstr "gyvai"
#: DB:link_type/name:17
msgid "live performance"
-msgstr ""
+msgstr "gyvas pasirodymas"
#: DB:link_type/link_phrase:17
msgid "live performance of"
@@ -5676,15 +5815,15 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:17
msgid "live performances"
-msgstr ""
+msgstr "gyvi pasirodymai"
#: DB:link_type/link_phrase:995 DB:link_type/link_phrase:1085
msgid "location for"
-msgstr ""
+msgstr "vieta"
#: DB:link_type/name:213
msgid "logo"
-msgstr ""
+msgstr "logotipas"
#: DB:link_type/reverse_link_phrase:213
msgid "logo of"
@@ -5700,17 +5839,17 @@ msgstr ""
#: DB:link_type/name:56 DB:link_type/name:165
msgid "lyricist"
-msgstr ""
+msgstr "dainų tekstų autorius (-ė)"
#: DB:link_type/name:93 DB:link_type/name:271 DB:link_type/name:197
#: DB:link_type/name:982
msgid "lyrics"
-msgstr ""
+msgstr "dainų tekstai"
#: DB:link_type/link_phrase:93 DB:link_type/link_phrase:197
#: DB:link_type/link_phrase:982 DB:link_type/reverse_link_phrase:271
msgid "lyrics page"
-msgstr ""
+msgstr "dainų tekstų puslapis"
#: DB:link_type/link_phrase:271 DB:link_type/reverse_link_phrase:93
#: DB:link_type/reverse_link_phrase:197 DB:link_type/reverse_link_phrase:982
@@ -5753,27 +5892,27 @@ msgstr ""
#: DB:link_type/link_phrase:360 DB:link_type/name:360
#: DB:link_type/long_link_phrase:360
msgid "manufactured"
-msgstr ""
+msgstr "pagamintas"
#: DB:link_type/name:953 DB:link_type/reverse_link_phrase:953
msgid "manufactured at"
-msgstr ""
+msgstr "pagaminta"
#: DB:link_type/reverse_link_phrase:360
msgid "manufactured by"
-msgstr ""
+msgstr "pagamino"
#: DB:link_type/name:952 DB:link_type/reverse_link_phrase:952
msgid "manufactured for"
-msgstr ""
+msgstr "pagaminta"
#: DB:link_type/name:835 DB:link_type/reverse_link_phrase:835
msgid "manufactured in"
-msgstr ""
+msgstr "pagamintas"
#: DB:link_type/link_phrase:835 DB:link_type/link_phrase:953
msgid "manufacturing location for"
-msgstr ""
+msgstr "gamybos vieta"
#: DB:link_type/link_phrase:848 DB:link_type/name:848
#: DB:link_type/long_link_phrase:848
@@ -5815,11 +5954,11 @@ msgstr ""
#: DB:link_type/name:136 DB:link_type/name:42
msgid "mastering"
-msgstr ""
+msgstr "masteringas"
#: DB:link_type/name:704
msgid "mastering engineer position"
-msgstr ""
+msgstr "masteringo inžinieriaus (-ės) pozicija"
#: DB:link_type/link_phrase:704
msgid "mastering engineer position at"
@@ -5843,39 +5982,39 @@ msgstr ""
#: DB:link_attribute_type/name:570
msgid "medium 1"
-msgstr ""
+msgstr "laikmena 1"
#: DB:link_attribute_type/name:569
msgid "medium 2"
-msgstr ""
+msgstr "laikmena 2"
#: DB:link_attribute_type/name:571
msgid "medium 3"
-msgstr ""
+msgstr "laikmena 3"
#: DB:link_attribute_type/name:577
msgid "medium 4"
-msgstr ""
+msgstr "laikmena 4"
#: DB:link_attribute_type/name:576
msgid "medium 5"
-msgstr ""
+msgstr "laikmena 5"
#: DB:link_attribute_type/name:575
msgid "medium 6"
-msgstr ""
+msgstr "laikmena 6"
#: DB:link_attribute_type/name:574
msgid "medium 7"
-msgstr ""
+msgstr "laikmena 7"
#: DB:link_attribute_type/name:573
msgid "medium 8"
-msgstr ""
+msgstr "laikmena 8"
#: DB:link_attribute_type/name:572
msgid "medium 9"
-msgstr ""
+msgstr "laikmena 9"
#: DB:link_attribute_type/name:750 DB:link_type/name:239
msgid "medley"
@@ -5906,62 +6045,62 @@ msgstr ""
#: DB:link_type/link_phrase:25 DB:link_type/link_phrase:998
#: DB:link_type/link_phrase:999
msgid "miscellaneous roles"
-msgstr ""
+msgstr "įvairūs vaidmenys"
#: DB:link_type/reverse_link_phrase:162 DB:link_type/reverse_link_phrase:129
#: DB:link_type/reverse_link_phrase:25 DB:link_type/reverse_link_phrase:998
#: DB:link_type/reverse_link_phrase:999
msgid "miscellaneous support"
-msgstr ""
+msgstr "įvairi pagalba"
#: DB:link_type/name:26 DB:link_type/name:143
msgid "mix"
-msgstr ""
+msgstr "miksas"
#: DB:link_type/name:43 DB:link_type/name:155
msgid "mix-DJ"
-msgstr ""
+msgstr "miksas DJ"
#: DB:link_type/name:694 DB:link_type/name:696
msgid "mixed at"
-msgstr ""
+msgstr "sumiksuotas"
#: DB:link_type/name:946 DB:link_type/name:947
#: DB:link_type/reverse_link_phrase:946 DB:link_type/reverse_link_phrase:947
msgid "mixed for"
-msgstr ""
+msgstr "sumiksuota"
#: DB:link_type/name:757 DB:link_type/name:758
msgid "mixed in"
-msgstr ""
+msgstr "sumiksuoti"
#: DB:link_type/name:703
msgid "mixing engineer position"
-msgstr ""
+msgstr "miksavimo inžinieriaus (-ės) pozicija"
#: DB:link_type/link_phrase:703
msgid "mixing engineer position at"
-msgstr ""
+msgstr "miksavimo inžinieriaus (-ės) pozicija"
#: DB:link_type/reverse_link_phrase:703
msgid "mixing engineers"
-msgstr ""
+msgstr "miksavimo inžinieriai"
#: DB:link_attribute_type/name:1031
msgid "movement"
-msgstr ""
+msgstr "judėjimas"
#: DB:link_type/long_link_phrase:958 DB:link_type/long_link_phrase:177
msgid "music can be downloaded for free at"
-msgstr ""
+msgstr "muziką galima nemokamai atsisiųsti iš"
#: DB:link_type/long_link_phrase:959 DB:link_type/long_link_phrase:176
msgid "music can be purchased for download at"
-msgstr ""
+msgstr "muziką galima nusipirkti atsisiuntimui iš"
#: DB:link_type/long_link_phrase:960 DB:link_type/long_link_phrase:175
msgid "music can be purchased for mail-order at"
-msgstr ""
+msgstr "muziką galima nusipirkti užsakant paštu iš"
#: DB:link_type/long_link_phrase:997 DB:link_type/long_link_phrase:194
msgid "music can be streamed for free at"
@@ -5985,97 +6124,97 @@ msgstr ""
#: DB:link_attribute_type/name:1222
msgid "music theory"
-msgstr ""
+msgstr "muzikos teorija"
#: DB:link_attribute_type/name:1203
msgid "music therapy"
-msgstr ""
+msgstr "muzikos terapija"
#: DB:link_type/name:857
msgid "music video"
-msgstr ""
+msgstr "muzikinis vaizdo įrašas"
#: DB:link_type/reverse_link_phrase:857
msgid "music video for"
-msgstr ""
+msgstr "muzikinis vaizdo įrašas, skirtas"
#: DB:link_type/link_phrase:857
msgid "music videos"
-msgstr ""
+msgstr "muzikiniai vaizdo įrašai"
#: DB:link_type/name:1046
msgid "musical quotation"
-msgstr ""
+msgstr "muzikinė citata"
#: DB:link_type/link_phrase:106 DB:link_type/reverse_link_phrase:106
#: DB:link_type/long_link_phrase:106
msgid "musical relationship"
-msgstr ""
+msgstr "muzikinis santykis"
#: DB:link_type/name:106
msgid "musical relationships"
-msgstr ""
+msgstr "muzikiniai santykiai"
#: DB:link_attribute_type/name:1221
msgid "musical theatre"
-msgstr ""
+msgstr "muzikinis teatras"
#: DB:link_attribute_type/name:1141
msgid "musicology"
-msgstr ""
+msgstr "muzikologija"
#: DB:link_type/name:215 DB:link_type/name:462 DB:link_type/name:189
msgid "myspace"
-msgstr ""
+msgstr "myspace"
#: DB:link_type/link_phrase:973 DB:link_type/link_phrase:972
#: DB:link_type/link_phrase:974 DB:link_type/name:973 DB:link_type/name:972
#: DB:link_type/name:975 DB:link_type/name:974 DB:link_type/name:1000
#: DB:link_type/reverse_link_phrase:975 DB:link_type/reverse_link_phrase:1000
msgid "named after"
-msgstr ""
+msgstr "pavadintas pagal"
#: DB:link_type/link_phrase:935 DB:link_type/name:935
#: DB:link_type/reverse_link_phrase:935 DB:link_type/long_link_phrase:935
msgid "non-performing relationships"
-msgstr ""
+msgstr "neatliekančios santykiai"
#: DB:link_attribute_type/name:788 DB:link_attribute_type/name:1032
msgid "number"
-msgstr ""
+msgstr "numeris"
#: DB:link_type/name:745 DB:link_type/name:782 DB:link_type/name:183
#: DB:link_type/name:363 DB:link_type/name:287
msgid "official homepage"
-msgstr ""
+msgstr "oficialus pagrindinis puslapis"
#: DB:link_type/reverse_link_phrase:745 DB:link_type/reverse_link_phrase:782
#: DB:link_type/reverse_link_phrase:183 DB:link_type/reverse_link_phrase:219
#: DB:link_type/reverse_link_phrase:363
msgid "official homepage for"
-msgstr ""
+msgstr "oficialus pagrindinis puslapis, skirtas"
#: DB:link_type/link_phrase:745 DB:link_type/link_phrase:782
#: DB:link_type/link_phrase:183 DB:link_type/link_phrase:219
#: DB:link_type/link_phrase:363
msgid "official homepages"
-msgstr ""
+msgstr "oficialūs pagrindiniai puslapiai"
#: DB:link_type/name:219
msgid "official site"
-msgstr ""
+msgstr "oficiali svetainė"
#: DB:link_type/link_phrase:185
msgid "online communities"
-msgstr ""
+msgstr "interneto bendruomenės"
#: DB:link_type/name:185
msgid "online community"
-msgstr ""
+msgstr "internetinė bendruomenė"
#: DB:link_type/reverse_link_phrase:185
msgid "online community page for"
-msgstr ""
+msgstr "internetinis bendruomenės puslapis, skirtas"
#: DB:link_type/link_phrase:841 DB:link_type/link_phrase:221
#: DB:link_type/link_phrase:660 DB:link_type/name:841 DB:link_type/name:221
@@ -6084,19 +6223,19 @@ msgstr ""
#: DB:link_type/long_link_phrase:841 DB:link_type/long_link_phrase:221
#: DB:link_type/long_link_phrase:660
msgid "online data"
-msgstr ""
+msgstr "internetiniai duomenys"
#: DB:link_attribute_type/name:1220
msgid "opera"
-msgstr ""
+msgstr "opera"
#: DB:link_attribute_type/name:1053
msgid "optional"
-msgstr ""
+msgstr "pasirinktinai"
#: DB:link_type/name:807
msgid "orchestra"
-msgstr ""
+msgstr "orkestras"
#: DB:link_type/link_phrase:807
msgid "orchestra at"
@@ -6104,15 +6243,15 @@ msgstr ""
#: DB:link_type/long_link_phrase:150 DB:link_type/long_link_phrase:45
msgid "orchestra {additional:additionally} performed"
-msgstr ""
+msgstr "orkestras {additional:papildomai} atliko"
#: DB:link_type/reverse_link_phrase:807
msgid "orchestras"
-msgstr ""
+msgstr "orkestrai"
#: DB:link_type/name:316
msgid "orchestration"
-msgstr ""
+msgstr "orkestravimas"
#: DB:link_type/reverse_link_phrase:316
msgid "orchestration of"
@@ -6140,7 +6279,7 @@ msgstr ""
#: DB:link_attribute_type/name:1225 DB:link_attribute_type/name:1128
msgid "other"
-msgstr ""
+msgstr "kiti"
#: DB:link_type/link_phrase:1086 DB:link_type/link_phrase:753
#: DB:link_type/link_phrase:730 DB:link_type/link_phrase:82
@@ -6159,37 +6298,37 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:561 DB:link_type/reverse_link_phrase:746
#: DB:link_type/reverse_link_phrase:96 DB:link_type/reverse_link_phrase:803
msgid "other databases"
-msgstr ""
+msgstr "kitos duomenų bazės"
#: DB:link_type/name:241
msgid "other version"
-msgstr ""
+msgstr "kita versija"
#: DB:link_type/link_phrase:233 DB:link_type/name:233
#: DB:link_type/reverse_link_phrase:233 DB:link_type/long_link_phrase:233
msgid "other versions"
-msgstr ""
+msgstr "kitos versijos"
#: DB:link_attribute_type/name:461
msgid "other vocals"
-msgstr ""
+msgstr "kiti vokalai"
#: DB:link_type/name:988 DB:link_type/name:989 DB:link_type/name:991
#: DB:link_type/reverse_link_phrase:988 DB:link_type/reverse_link_phrase:989
#: DB:link_type/reverse_link_phrase:991
msgid "owner"
-msgstr ""
+msgstr "savininkas (-ė)"
#: DB:link_type/link_phrase:990 DB:link_type/name:990
#: DB:link_type/reverse_link_phrase:990 DB:link_type/long_link_phrase:990
msgid "ownership"
-msgstr ""
+msgstr "nuosavybė"
#: DB:link_type/link_phrase:988 DB:link_type/link_phrase:989
#: DB:link_type/link_phrase:991 DB:link_type/long_link_phrase:988
#: DB:link_type/long_link_phrase:989 DB:link_type/long_link_phrase:991
msgid "owns"
-msgstr ""
+msgstr "priklauso"
#: DB:link_type/name:109
msgid "parent"
@@ -6236,42 +6375,42 @@ msgstr ""
#: DB:link_type/name:901 DB:link_type/name:900 DB:link_type/name:898
#: DB:link_type/name:899 DB:link_type/name:897
msgid "patronage"
-msgstr ""
+msgstr "mecenatystė"
#: DB:link_type/link_phrase:901 DB:link_type/link_phrase:900
#: DB:link_type/link_phrase:898 DB:link_type/link_phrase:899
#: DB:link_type/link_phrase:897
msgid "patronage page"
-msgstr ""
+msgstr "mecenavimo puslapis"
#: DB:link_type/reverse_link_phrase:901 DB:link_type/reverse_link_phrase:900
#: DB:link_type/reverse_link_phrase:898 DB:link_type/reverse_link_phrase:899
#: DB:link_type/reverse_link_phrase:897
msgid "patronage page for"
-msgstr ""
+msgstr "mecenavimo puslapis, skirtas"
#: DB:link_type/link_phrase:34 DB:link_type/link_phrase:122
#: DB:link_type/name:34 DB:link_type/name:122 DB:link_type/name:278
#: DB:link_type/reverse_link_phrase:34 DB:link_type/reverse_link_phrase:122
#: DB:link_type/long_link_phrase:34 DB:link_type/long_link_phrase:122
msgid "performance"
-msgstr ""
+msgstr "atlikimas"
#: DB:link_type/reverse_link_phrase:108
msgid "performance name of"
-msgstr ""
+msgstr "atlikimo pavadinimas"
#: DB:link_type/link_phrase:887 DB:link_type/name:887
msgid "performance of"
-msgstr ""
+msgstr "atlikimas"
#: DB:link_type/reverse_link_phrase:887
msgid "performed at"
-msgstr ""
+msgstr "atlikta"
#: DB:link_type/long_link_phrase:292
msgid "performed the voice of"
-msgstr ""
+msgstr "atliko balsą"
#: DB:link_type/long_link_phrase:152 DB:link_type/long_link_phrase:53
msgid "performed {additional} {assistant} chorus master on"
@@ -6321,50 +6460,50 @@ msgstr ""
#: DB:link_type/name:867 DB:link_type/name:711 DB:link_type/name:710
#: DB:link_type/name:869
msgid "phonographic copyright"
-msgstr ""
+msgstr "fonografijos autorių teisės"
#: DB:link_type/reverse_link_phrase:867 DB:link_type/reverse_link_phrase:711
#: DB:link_type/reverse_link_phrase:710 DB:link_type/reverse_link_phrase:869
msgid "phonographic copyright (℗) by"
-msgstr ""
+msgstr "fonografines autorių teises (℗)"
#: DB:link_type/name:123 DB:link_type/name:1175 DB:link_type/name:20
msgid "photography"
-msgstr ""
+msgstr "fotografija"
#: DB:link_type/link_phrase:173 DB:link_type/link_phrase:396
#: DB:link_type/link_phrase:732
msgid "picture"
-msgstr ""
+msgstr "nuotrauka"
#: DB:link_type/reverse_link_phrase:173 DB:link_type/reverse_link_phrase:396
#: DB:link_type/reverse_link_phrase:732
msgid "picture of"
-msgstr ""
+msgstr "nuotrauka"
#: DB:link_type/link_phrase:915 DB:link_type/name:915
msgid "podcast feed"
-msgstr ""
+msgstr "tinklalaidės kanalas"
#: DB:link_type/reverse_link_phrase:915
msgid "podcast feed for"
-msgstr ""
+msgstr "tinklalaidės kanalas, skirtas"
#: DB:link_attribute_type/name:1200
msgid "popular / rock music"
-msgstr ""
+msgstr "populiarioji / roko muzika"
#: DB:link_type/link_phrase:808 DB:link_type/name:808
msgid "poster"
-msgstr ""
+msgstr "plakatas"
#: DB:link_type/reverse_link_phrase:808
msgid "poster for"
-msgstr ""
+msgstr "plakatas, skirtas"
#: DB:link_attribute_type/name:1219
msgid "postgraduate"
-msgstr ""
+msgstr "antrosios pakopos studijos"
#: DB:link_attribute_type/name:1353
msgid "pre"
@@ -6373,35 +6512,35 @@ msgstr ""
#: DB:link_type/name:845 DB:link_type/name:716 DB:link_type/name:715
#: DB:link_type/name:956
msgid "premiere"
-msgstr ""
+msgstr "premjera"
#: DB:link_type/reverse_link_phrase:845 DB:link_type/reverse_link_phrase:716
msgid "premiered at"
-msgstr ""
+msgstr "premjeruota"
#: DB:link_type/reverse_link_phrase:956
msgid "premiered by"
-msgstr ""
+msgstr "premjera atliko"
#: DB:link_type/reverse_link_phrase:715
msgid "premiered in"
-msgstr ""
+msgstr "premjeruotas"
#: DB:link_type/link_phrase:845
msgid "premieres"
-msgstr ""
+msgstr "premjeros"
#: DB:link_type/link_phrase:716 DB:link_type/link_phrase:715
msgid "premieres hosted"
-msgstr ""
+msgstr "premjeros surengtos"
#: DB:link_type/name:1168 DB:link_type/reverse_link_phrase:1168
msgid "presented"
-msgstr ""
+msgstr "pristatyta"
#: DB:link_type/link_phrase:1168
msgid "presented by"
-msgstr ""
+msgstr "pristatė"
#: DB:link_type/link_phrase:942 DB:link_type/name:942
#: DB:link_type/long_link_phrase:942
@@ -6526,9 +6665,8 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
-msgstr ""
+msgstr "pateikė {additional:papildomą} meno vadovavimą"
#: DB:link_type/long_link_phrase:993 DB:link_type/long_link_phrase:1170
msgid "provided {additional} artwork on"
@@ -6538,7 +6676,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6559,6 +6697,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -7005,22 +7151,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7789,10 +7935,9 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
-msgstr ""
+msgstr "{additional:papildomas} meno vadovavimas"
#: DB:link_type/link_phrase:993 DB:link_type/link_phrase:1170
#: DB:link_type/reverse_link_phrase:993 DB:link_type/reverse_link_phrase:1170
@@ -7812,8 +7957,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7951,6 +8095,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7960,6 +8108,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8551,7 +8703,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
@@ -8562,3 +8714,45 @@ msgstr ""
#: DB:link_type/link_phrase:107
msgid "{vocal:%|vocals} support for"
msgstr ""
+
+#~ msgid ""
+#~ "A social network page is an artist's own profile page on a social network which only they (or their "
+#~ "management) can post content to. Other people can create their own "
+#~ "profiles and interact with the artist, e.g. by adding them as a friend or "
+#~ "by commenting on the things that they post. Examples include Facebook "
+#~ "pages and profiles, Last.fm users and accounts on Twitter, Instagram and "
+#~ "Flickr."
+#~ msgstr ""
+#~ "Socialinio tinklo puslapis – tai atlikėjo profilio puslapis socialiniame tinkle, kuriame turinį gali skelbti "
+#~ "tik jie (arba jų valdyba). Kiti žmonės gali susikurti savo profilius ir "
+#~ "bendrauti su atlikėju, pvz., pridėti juos į draugus arba komentuoti "
+#~ "dalykus, kuriuos jie skelbia. Pavyzdžiui – Facebook puslapiai ir "
+#~ "profiliai, Last.fm naudotojai ir Twitter, Instagram, Flickr paskyros."
+
+#~ msgid "Indicates a webpage that reviews the release (group) in question."
+#~ msgstr "Nurodo tinklalapį, kuris apžvelgia atitinkamą leidinį (grupę)."
+
+#~ msgid ""
+#~ "Indicates the composer for this release, i.e. the artist who wrote the "
+#~ "music (not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Nurodo šio leidinio kompozitorių (-ę), t. y. atlikėją, kuris (-i) parašė "
+#~ "muziką (nebūtinai dainų žodžius)."
+
+#~ msgid ""
+#~ "Indicates the composer for this work, i.e. the artist who wrote the music "
+#~ "(not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Nurodo šio kūrinio kompozitorių (-ę), t. y. atlikėją, kuris (-i) parašė "
+#~ "muziką (nebūtinai dainų žodžius)."
+
+#~ msgid ""
+#~ "This attribute indicates a member the band is named after and without "
+#~ "which it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+#~ msgstr ""
+#~ "Šis požymis nurodo narį, kurio vardu pavadinta grupė ir be kurio ji "
+#~ "neegzistuotų (pvz., Miles Davis -> Miles Davis Sextet)"
diff --git a/po/relationships.mr.po b/po/relationships.mr.po
index 2293b2d0df7..737d2139151 100644
--- a/po/relationships.mr.po
+++ b/po/relationships.mr.po
@@ -46,10 +46,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -303,6 +303,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -333,10 +339,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -487,14 +489,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -866,7 +868,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1069,8 +1071,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1207,7 +1209,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1230,7 +1232,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1578,8 +1580,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1644,8 +1646,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1724,8 +1726,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1748,8 +1750,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1874,16 +1876,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1901,8 +1903,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2229,9 +2231,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2464,18 +2466,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2562,9 +2564,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2793,8 +2795,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2833,8 +2835,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2940,8 +2942,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2961,8 +2963,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2973,8 +2975,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3256,7 +3258,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3265,7 +3267,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3273,13 +3275,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3289,7 +3306,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3297,28 +3314,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3326,7 +3328,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3375,9 +3377,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3415,9 +3417,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3434,9 +3436,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3481,9 +3483,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3603,14 +3605,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3621,8 +3623,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3632,8 +3634,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4061,8 +4063,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4357,15 +4359,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4373,8 +4375,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4676,11 +4678,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4916,8 +4918,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6500,7 +6502,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6512,7 +6513,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6533,6 +6534,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6979,22 +6988,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7763,8 +7772,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7786,8 +7794,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7925,6 +7932,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7934,6 +7945,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8525,7 +8540,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.nb.po b/po/relationships.nb.po
index d44de93c481..7affca899b3 100644
--- a/po/relationships.nb.po
+++ b/po/relationships.nb.po
@@ -47,10 +47,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -304,6 +304,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -334,10 +340,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -488,14 +490,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -867,7 +869,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1070,8 +1072,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1208,7 +1210,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1231,7 +1233,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1579,8 +1581,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1645,8 +1647,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1725,8 +1727,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1749,8 +1751,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1875,16 +1877,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1902,8 +1904,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2230,9 +2232,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2465,18 +2467,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2563,9 +2565,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2794,8 +2796,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2834,8 +2836,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2941,8 +2943,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2962,8 +2964,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2974,8 +2976,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3257,7 +3259,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3266,7 +3268,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3274,13 +3276,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3290,7 +3307,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3298,28 +3315,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3327,7 +3329,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3376,9 +3378,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3416,9 +3418,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3435,9 +3437,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3482,9 +3484,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3604,14 +3606,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3622,8 +3624,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3633,8 +3635,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4062,8 +4064,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4358,15 +4360,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4374,8 +4376,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4677,11 +4679,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4917,8 +4919,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6501,7 +6503,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6513,7 +6514,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6534,6 +6535,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6980,22 +6989,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7764,8 +7773,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7787,8 +7795,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7926,6 +7933,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7935,6 +7946,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8526,7 +8541,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.nl.po b/po/relationships.nl.po
index ab9aae210c3..c549b73fa5b 100644
--- a/po/relationships.nl.po
+++ b/po/relationships.nl.po
@@ -48,11 +48,11 @@ msgid ""
"people involved with the series can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"Een sociaalnetwerkpagina is een pagina voor een serie op een sociaal netwerk "
-"waar alleen mensen die bij de serie betrokken zijn, dingen kunnen plaatsen. "
-"Voorbeelden zijn Facebook-pagina’s en accounts op Twitter, Instagram of "
-"Flickr."
+"Een sociaalnetwerkpagina is een pagina voor een serie op een sociaal netwerk"
+"a> waar alleen mensen die bij de serie betrokken zijn, dingen kunnen "
+"plaatsen. Voorbeelden zijn Facebook-pagina’s en accounts op Twitter, "
+"Instagram of Flickr."
#: DB:link_type/description:429
msgid ""
@@ -61,29 +61,22 @@ msgid ""
"people involved with the place can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"Een sociaalnetwerkpagina is een pagina van een plaats op een sociaal netwerk "
-"waar alleen mensen die bij de plasts betrokken zijn, dingen kunnen plaatsen. "
-"Voorbeelden zijn Facebook-pagina’s en accounts op Twitter, Instagram of "
-"Flickr."
+"Een sociaalnetwerkpagina is een pagina van een plaats op een sociaal netwerk"
+"a> waar alleen mensen die bij de plasts betrokken zijn, dingen kunnen "
+"plaatsen. Voorbeelden zijn Facebook-pagina’s en accounts op Twitter, "
+"Instagram of Flickr."
#: DB:link_type/description:192
msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
-msgstr ""
-"Een sociaalnetwerkpagina is een pagina van een artiest op een sociaal netwerk waar alleen mensen die bij de artiest betrokken zijn, "
-"dingen kunnen plaatsen. Anderen met een profiel op dat sociale netwerk "
-"kunnen de pagina van de artiest als vriend toevoegen of reageren op de "
-"berichten van de artiest. Voorbeelden zijn Facebook-pagina’s en accounts op "
-"Twitter, Instagram of Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
+msgstr ""
#: DB:link_type/description:783
msgid ""
@@ -93,9 +86,9 @@ msgid ""
"Facebook pages and event entries, and accounts on Twitter, Instagram and "
"Flickr."
msgstr ""
-"Een sociaalnetwerkpagina is een pagina van een evenement op een sociaal netwerk "
-"waar alleen mensen die bij het evenement betrokken zijn, dingen kunnen "
+"Een sociaalnetwerkpagina is een pagina van een evenement op een sociaal netwerk"
+"a> waar alleen mensen die bij het evenement betrokken zijn, dingen kunnen "
"plaatsen. Voorbeelden zijn Facebook-pagina’s en accounts op Twitter, "
"Instagram of Flickr."
@@ -358,6 +351,12 @@ msgstr ""
"relatie tussen personen en artiesten en wordt meestal gebruikt voor bekende "
"solo-artiesten, maar soms ook voor groepen."
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -393,11 +392,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr "Verwijst naar een internetpagina met een recensie van het evenement."
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-"Verwijst naar een internetpagina met een recensie van de uitgave(groep)."
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -582,19 +576,15 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"Geeft een componist voor deze uitgave aan, d.w.z. de persoon die de muziek "
-"(maar niet altijd ook de tekst) schreef."
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"Geeft de componist voor deze compositie aan, d.w.z. die persoon die de "
-"muziek (maar niet altijd ook de tekst) schreef."
#: DB:link_type/description:845
msgid "Indicates the event where the work had its first performance"
@@ -686,8 +676,8 @@ msgid ""
"a>."
msgstr ""
"Dit geeft de uitgever van deze uitgave aan. Dit is niet "
-"hetzelfde concept als de platenmaatschappij."
+"hetzelfde concept als de platenmaatschappij."
#: DB:link_type/description:161
msgid ""
@@ -695,8 +685,8 @@ msgid ""
"concept as the record label."
msgstr ""
"Dit geeft de uitgever van deze compositie aan. Dit is niet "
-"hetzelfde concept als de platenmaatschappij."
+"hetzelfde concept als de platenmaatschappij."
#: DB:link_type/description:208
msgid ""
@@ -1037,11 +1027,9 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
-"Deze relatie koppelt een evenement aan een dj die er een ondersteunende rol "
-"had (bijv. dj’en tussen optredens, of de avond na een concert afsluiten)."
#: DB:link_type/description:800
msgid ""
@@ -1273,8 +1261,8 @@ msgstr "Verwijst naar de Wikipediapagina over deze compositie."
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
"Uitgevers moeten aan de composities worden toegevoegd. Vergeet niet dat dit "
"niet hetzelfde concept is als de remixer."
+"relationship/7950be4d-13a3-48e7-906b-5af562e39544\" "
+"target=\"_blank\">remixer."
#: DB:link_type/description:26
msgid ""
@@ -1924,11 +1908,9 @@ msgstr "Dit geeft aan dat een persoon de dirigent van een groep is of was."
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
-"Dit geeft aan dat een persoon de artistiek leider van een groep is (of was), "
-"bijvoorbeeld een ballet- of opera-gezelschap."
#: DB:link_type/description:137
msgid ""
@@ -2018,11 +2000,9 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
-"Dit geeft aan dat een compositie uit meerdere delen bestaat (bijv. een "
-"orkestsuite die in delen is opgedeeld)."
#: DB:link_type/description:858
msgid ""
@@ -2124,8 +2104,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
"Deze eigenschap geeft aan dat de groep meerdere dirigenten of meerdere "
"leidende bespelers van het geselecteerde instrument heeft. Dit wordt meestal "
@@ -2158,11 +2138,9 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
-"Dit geeft aan dat de opname niet van de hele compositie is, bijv. een "
-"passage of de conclusie."
#: DB:link_attribute_type/description:578
msgid "This indicates that the recording is of a live performance."
@@ -2314,25 +2292,25 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
"Dit geeft de organisatie aan die distribueert (of laat distribueren).\n"
"\n"
-"Dit is niet hetzelfde concept als een platenmaatschappij."
+"Dit is niet hetzelfde concept als een platenmaatschappij."
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
"Dit geeft de organisatie aan die fabriceert (of laat fabriceren).\n"
"\n"
-"Dit is niet hetzelfde concept als een platenmaatschappij."
+"Dit is niet hetzelfde concept als een platenmaatschappij."
#: DB:link_type/description:848
msgid ""
@@ -2340,8 +2318,8 @@ msgid ""
"strong> the same concept as the record label."
msgstr ""
"Dit geeft de organisatie aan die een uitgave in de markt heeft gezet. Dit is "
-"niet hetzelfde concept als de platenmaatschappij."
+"niet hetzelfde concept als de platenmaatschappij."
#: DB:link_type/description:985
msgid ""
@@ -2355,13 +2333,13 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
"Dit geeft de organisatie aan die een uitgave promoot (of laat promoten).\n"
"\n"
-"Dit is niet hetzelfde concept als een platenmaatschappij."
+"Dit is niet hetzelfde concept als een platenmaatschappij."
#: DB:link_type/description:362
msgid ""
@@ -2451,8 +2429,8 @@ msgstr ""
"Dit geeft de persoon aan die de opnames selecteerde en de volgorde van een "
"compilatie bepaalde. Dit is van toepassing op een lang nummer dat meerdere "
"nummers bevat. Als de opnames in elkaar overlopen, kan deze persoon beter "
-"als mix-dj worden beschreven."
+"als mix-dj worden beschreven."
#: DB:link_type/description:942
msgid ""
@@ -2461,8 +2439,8 @@ msgid ""
"label."
msgstr ""
"Deze relatie geeft de perserij aan die een uitgave heeft geperst. Dit is "
-"nie hetzelfde concept als de platenmaatschappij."
+"nie hetzelfde concept als de platenmaatschappij."
#: DB:link_attribute_type/description:1310
msgid ""
@@ -2579,16 +2557,16 @@ msgid ""
"This is used to indicate that the recording is a mash-up of two (or more) other recordings."
msgstr ""
-"Dit geeft aan dat de opname een mash-up van twee (of meer) andere opnames is."
+"Dit geeft aan dat de opname een mash-up van twee (of meer) andere opnames is."
#: DB:link_type/description:10
msgid ""
"This is used to indicate that the release group is a mash-up mash-up of two (or more) other release groups."
msgstr ""
-"Dit geeft aan dat de uitgavegroep een mash-up van twee (of meer) andere uitgavegroepen is."
+"Dit geeft aan dat de uitgavegroep een mash-up van twee (of meer) andere uitgavegroepen is."
#: DB:link_type/description:227
msgid ""
@@ -2782,13 +2760,13 @@ msgstr "Deze relatie koppelt composities aan bijbehorende opnames."
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
-"Dit wordt gebruikt om aan te geven dat een artiest samenwerkte in een kortdurend project, als de naam "
-"van het project niet te splitsen is in de samenwerkende artiesten."
+"Dit wordt gebruikt om aan te geven dat een artiest samenwerkte in een kortdurend project, als de "
+"naam van het project niet te splitsen is in de samenwerkende artiesten."
#: DB:link_type/description:1047
msgid ""
@@ -3091,8 +3069,8 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
"Dit koppelt een uitgavegroep aan de artiest waar de uitgavegroep aan "
"opgedragen is. Dit is voor opdrachten zoals “Dit album is opgedragen ter "
@@ -3103,11 +3081,11 @@ msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
"Deze relatie koppelt een uitgavegroep aan een artiest om aan te geven dat "
"het een hommage aan de artiest is. Deze albums hebben vaak een titel in de "
@@ -3226,22 +3204,18 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
-"Deze relatie koppelt een serie aan haar profiel (bijvoorbeeld voor een "
-"festival) of project (bijvoorbeeld voor een specifieke tour, of het "
-"samenstellen van een klassieke catalogus) op een crowdfundingwebsite zoals "
-"Kickstarter of Indiegogo."
#: DB:link_type/description:97
msgid ""
"This links a soundtrack release group to the IMDb page for the movie, show or game of which it is a soundtrack."
msgstr ""
-"Deze relatie koppelt een uitgavegroep van een soundtrack aan een IMDb-pagina over de film, show of het spel "
+"Deze relatie koppelt een uitgavegroep van een soundtrack aan een IMDb-pagina over de film, show of het spel "
"waarvan het een soundtrack is."
#: DB:link_type/description:992
@@ -3261,8 +3235,8 @@ msgid ""
"This links a soundtrack work to the IMDb"
"a> page for the movie, show or game of which it is a soundtrack."
msgstr ""
-"Deze relatie koppelt een compositie voor een soundtrack aan een IMDb-pagina over de film, show of het spel "
+"Deze relatie koppelt een compositie voor een soundtrack aan een IMDb-pagina over de film, show of het spel "
"waarvan het een soundtrack is."
#: DB:link_type/description:722
@@ -3469,8 +3443,8 @@ msgid ""
"This links an artist to that artist's page at BBC Music."
msgstr ""
-"Deze relatie koppelt een artiest aan zijnBBC Music-pagina."
+"Deze relatie koppelt een artiest aan zijnBBC Music-pagina."
#: DB:link_type/description:174
msgid "This links an artist to the equivalent entry at PureVolume."
@@ -3528,8 +3502,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
"Deze relatie koppelt een object aan zijn pagina in een andere database. "
"Respecteer hierbij de work."
+"This links different revisions of the same work."
msgstr ""
-"Deze relatie koppelt verschillende revisies van dezelfde compositie."
+"Deze relatie koppelt verschillende revisies van dezelfde compositie."
#: DB:link_type/description:212
msgid "This links to a catalog or list of records published by the label."
@@ -3653,8 +3627,8 @@ msgstr "Deze relatie koppelt twee broers of zussen."
msgid ""
"This links two versions of a work."
msgstr ""
-"Deze relatie koppelt twee versies van een compositie."
+"Deze relatie koppelt twee versies van een compositie."
#: DB:link_type/description:310
msgid ""
@@ -3740,8 +3714,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
"Deze relatie beschrijft een URL waarop de teksten van de artiest kunnen "
"worden gevonden. Alleen internetpagina’s op de whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
"Deze relatie beschrijft een URL waarop de tekst van de compositie kunnen "
"worden gevonden. Alleen internetpagina’s op de phonographic copyright holder "
"for this recording, usually indicated with a ℗ symbol."
msgstr ""
-"Deze relatie geeft aan dat de platenmaatschappij de houder van het fonografisch "
-"auteursrecht op deze opname is. Meestal wordt dit met © aangegeven."
+"Deze relatie geeft aan dat de platenmaatschappij de houder van het fonografisch auteursrecht op deze "
+"opname is. Meestal wordt dit met © aangegeven."
#: DB:link_type/description:711
msgid ""
@@ -3867,9 +3840,10 @@ msgid ""
"wiki/Sound_recording_copyright_symbol\">phonographic copyright holder "
"for this release, usually indicated with a ℗ symbol."
msgstr ""
-"Deze relatie geeft aan dat de platenmaatschappij de houder van het fonografisch "
-"auteursrecht op deze uitgave is. Meestal wordt dit met ℗ aangegeven."
+"Deze relatie geeft aan dat de platenmaatschappij de houder van het fonografisch auteursrecht op deze "
+"uitgave is. Meestal wordt dit met ℗ aangegeven."
#: DB:link_type/description:708
msgid ""
@@ -3896,9 +3870,9 @@ msgstr ""
"samples bevat van een film, tv-programma of spel. Vermeld het in de "
"aantekening als je niet weet welke opname(s) de samples gebruiken.\n"
"
\n"
-"Gebruik de IMDB-relatie voor uitgavegroepen om aan te geven dat deze uitgave een "
-"soundtrack is."
+"Gebruik de IMDB-relatie voor "
+"uitgavegroepen om aan te geven dat deze uitgave een soundtrack is."
#: DB:link_type/description:206
msgid ""
@@ -4121,9 +4095,10 @@ msgid ""
msgstr ""
"Deze relatie geeft aan dat de opname samples bevat die afkomstig zijn van "
"een film, show of spel, met een pagina op IMDB op die URL.
\n"
-"Gebruik de IMDB-relatie voor uitgavegroepen om aan te geven dat de opname deel "
-"uitmaakt van een soundtrack."
+"Gebruik de IMDB-relatie voor "
+"uitgavegroepen om aan te geven dat de opname deel uitmaakt van een "
+"soundtrack."
#: DB:link_type/description:236
msgid ""
@@ -4176,42 +4151,45 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
msgstr ""
-"Deze relatie wordt gebruikt om aan te geven dat een uitgavegroep een "
-"coverversie van een andere uitgavegroep is, bijvoorbeeld als een artiest een "
-"nieuwe versie van het album van een andere artiest maakt.
\n"
-"Zie voor individuele nummers de relatie voor de uitvoering van een compositie."
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
-"Deze relatie wordt gebruikt om een platenmaatschappij te koppelen aan een "
-"website waarop geabonneerde gebruikers muziek van de artiest kunnen "
-"luisteren, zoals Apple Music.\n"
-"\n"
-"Als de streams gratis zijn, moet je ‘gratis streamen’ gebruiken."
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
-"Deze relatie wordt gebruikt om een platenmaatschappij te koppelen aan een "
-"website waarop muziek gratis legaal kan worden geluisterd, zoals Spotify."
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr "Deze relatie koppelt een platenmaatschappij aan haar weblog."
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -4223,65 +4201,30 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
-"Deze relatie wordt gebruikt om een uitgave te koppelen aan een website "
-"waarop geabonneerde gebruikers de uitgave kunnen luisteren, zoals Tidal.\n"
-"\n"
-"Als de streams gratis zijn, moet je ‘gratis streamen’ gebruiken."
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-"Deze relatie wordt gebruikt om een uitgave te koppelen aan een website "
-"waarop de nummers gratis legaal kunnen worden beluisterd, zoals Spotify."
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
+"can be legally streamed for free, such as Spotify."
msgstr ""
-"Deze relatie wordt gebruikt om een nummer te koppelen aan een website waarop "
-"geabonneerde gebruikers het nummer kunnen luisteren, zoals Tidal.\n"
-"\n"
-"Als de streams gratis zijn, moet je ‘gratis streamen’ gebruiken."
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
-msgstr ""
-"Deze relatie wordt gebruikt om een nummer te koppelen aan een website waarop "
-"het nummer gratis legaal kan worden beluisterd, zoals Spotify voor audio of "
-"Youtube voor video’s."
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
-"Deze relatie wordt gebruikt om een artiest te koppelen aan een website "
-"waarop geabonneerde gebruikers muziek van de artiest kunnen luisteren, zoals "
-"Tidal.\n"
-"\n"
-"Als de streams gratis zijn, moet je ‘gratis streamen’ gebruiken."
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
-"Deze relatie wordt gebruikt om een artiest te koppelen aan een website "
-"waarop muziek gratis legaal kan worden geluisterd, zoals Spotify."
#: DB:link_type/description:199
msgid "This relationship type is used to link an artist to their blog."
@@ -4342,9 +4285,9 @@ msgstr "Deze relatie koppelt een platenmaatschappij aan haar Myspace-pagina."
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"Deze relatie koppelt een platenmaatschappij aan haar VGMdb-pagina. VGMdb is een gemeenschappelijk project dat is "
@@ -4361,8 +4304,8 @@ msgid ""
"page at VGMdb. VGMdb is a community "
"project dedicated to cataloguing the music of video games and anime."
msgstr ""
-"Deze relatie koppelt een plaats (meestal een studio) aan zijn VGMdb-pagina. VGMdb is een gemeenschappelijk "
+"Deze relatie koppelt een plaats (meestal een studio) aan zijn VGMdb-pagina. VGMdb is een gemeenschappelijk "
"project dat is toegewijd aan het catalogiseren van muziek uit "
"computerspellen en anime."
@@ -4389,9 +4332,9 @@ msgstr "Deze relatie koppelt een plaats aan zijn setlist.fm-pagina."
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"Deze relatie koppelt een uitgave aan zijn VGMdb-pagina. VGMdb is een gemeenschappelijk project dat is toegewijd "
@@ -4412,9 +4355,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"Deze relatie koppelt een artiest aan zijn VGMdb-pagina. VGMdb is een gemeenschappelijk project dat is toegewijd "
@@ -4466,9 +4409,9 @@ msgstr "Deze relatie koppelt een evenement aan een affiche voor het evenement."
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
"Deze relatie koppelt een evenement aan zijn VGMdb-pagina. VGMdb is een gemeenschappelijk project dat is toegewijd "
@@ -4578,8 +4521,8 @@ msgid ""
"wikipedia.org/wiki/Number_opera\">separated in numbers, to specify what "
"parts are numbers (as opposed to spoken dialog or other non-numbered parts)."
msgstr ""
-"Gebruik dit voor opera’s en soortgelijke composities die in in nummers zijn "
+"Gebruik dit voor opera’s en soortgelijke composities die in in nummers zijn "
"onderverdeeld om aan te geven welke delen nummers zijn (in tegenstelling "
"tot gesproken dialogen en andere niet-genummerde delen)."
@@ -4620,14 +4563,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
"Gebruik deze relatie voor vermeldingen zoals “Uitgave werd door X voor "
"Platenmaatschappij Y gearrangeerd.”"
@@ -4642,8 +4585,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -4655,8 +4598,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
"Gebruik deze relatie voor vermeldingen zoals “Uitgave werd door X voor "
"Platenmaatschappij Y geproduceerd.”"
@@ -5104,8 +5047,8 @@ msgstr "kan tegen betaling worden gedownload van"
msgid "can be purchased for mail-order at"
msgstr "kan per post worden besteld op"
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr "kan worden gestreamd op"
@@ -5401,15 +5344,15 @@ msgid "creative position"
msgstr "creatieve functie"
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr "crowdfunding"
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr "crowdfundingpagina"
@@ -5417,8 +5360,8 @@ msgstr "crowdfundingpagina"
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr "crowdfundingpagina voor"
@@ -5720,11 +5663,11 @@ msgstr "gratis downloadpagina voor de bladmuziek van"
msgid "free music streaming page for"
msgstr "gratis muziekstreamingpagina van"
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr "gratis muziek{video} streamingpagina van"
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr "gratis streamen"
@@ -5960,8 +5903,8 @@ msgstr "heeft een catalogus van uitgaven op"
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr "heeft een crowdfundingpagina op"
@@ -7554,7 +7497,6 @@ msgid "provided legal representation for"
msgstr "verzorgde juridische vertegenwoordiging voor"
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr "verzorgde {additional:aanvullende} artistieke leiding op"
@@ -7566,7 +7508,7 @@ msgstr "leverde {additional:aanvullende} kunst voor"
msgid "provided {additional} creative direction on"
msgstr "verzorgde {additional:aanvullende} creatieve leiding op"
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr "verzorgde {aanvullend} het ontwerp voor"
@@ -7587,6 +7529,14 @@ msgstr "verzorgde {aanvullende} illustratie voor"
msgid "provided {additional} legal representation for"
msgstr "verzorgde {additional:aanvullende} juridische vertegenwoordiging voor"
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -8033,22 +7983,22 @@ msgstr "stief"
msgid "stream for free"
msgstr "gratis streamen"
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr "{video:video} gratis streamen"
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr "streaming"
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr "streamingpagina"
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr "streamingpagina van"
@@ -8837,8 +8787,7 @@ msgid "{additional} arranging location for"
msgstr "hier {additional:aanvullend }geschreven"
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr "{additional:aanvullende} artistieke leiding"
@@ -8860,8 +8809,7 @@ msgstr "hier {additional:aanvullend }gecomponeerd"
msgid "{additional} creative direction"
msgstr "{additional:aanvullende} creatieve leiding op"
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr "{aanvullend} ontwerp"
@@ -9003,6 +8951,10 @@ msgstr "{additional:aanvullend} schrijver"
msgid "{additional} writing location for"
msgstr "hier {additional:aanvullend }geschreven"
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -9012,6 +8964,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -9650,7 +9606,7 @@ msgstr "{translated:vertaalde} {parody:parodie}versie van"
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr "{translator:vertaalde|schreef} {additional:aanvullend} het boekje van"
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr "{video} kan gratis worden gestreamd op"
@@ -9662,6 +9618,193 @@ msgstr "{vocal:%|vocale} ondersteuning door"
msgid "{vocal:%|vocals} support for"
msgstr "{vocal:%|vocale} ondersteuning voor"
+#~ msgid ""
+#~ "A social network page is an artist's own profile page on a social network which only they (or their "
+#~ "management) can post content to. Other people can create their own "
+#~ "profiles and interact with the artist, e.g. by adding them as a friend or "
+#~ "by commenting on the things that they post. Examples include Facebook "
+#~ "pages and profiles, Last.fm users and accounts on Twitter, Instagram and "
+#~ "Flickr."
+#~ msgstr ""
+#~ "Een sociaalnetwerkpagina is een pagina van een artiest op een sociaal netwerk waar alleen mensen die bij de "
+#~ "artiest betrokken zijn, dingen kunnen plaatsen. Anderen met een profiel "
+#~ "op dat sociale netwerk kunnen de pagina van de artiest als vriend "
+#~ "toevoegen of reageren op de berichten van de artiest. Voorbeelden zijn "
+#~ "Facebook-pagina’s en accounts op Twitter, Instagram of Flickr."
+
+#~ msgid "Indicates a webpage that reviews the release (group) in question."
+#~ msgstr ""
+#~ "Verwijst naar een internetpagina met een recensie van de uitgave(groep)."
+
+#~ msgid ""
+#~ "Indicates the composer for this release, i.e. the artist who wrote the "
+#~ "music (not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Geeft een componist voor deze uitgave aan, d.w.z. de persoon die de "
+#~ "muziek (maar niet altijd ook de tekst) schreef."
+
+#~ msgid ""
+#~ "Indicates the composer for this work, i.e. the artist who wrote the music "
+#~ "(not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Geeft de componist voor deze compositie aan, d.w.z. die persoon die de "
+#~ "muziek (maar niet altijd ook de tekst) schreef."
+
+#~ msgid ""
+#~ "Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+#~ "between artists, or closing the night after a concert)."
+#~ msgstr ""
+#~ "Deze relatie koppelt een evenement aan een dj die er een ondersteunende "
+#~ "rol had (bijv. dj’en tussen optredens, of de avond na een concert "
+#~ "afsluiten)."
+
+#~ msgid ""
+#~ "This attribute indicates a member the band is named after and without "
+#~ "which it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+#~ msgstr ""
+#~ "Deze eigenschap geeft een lid van de groep aan waarnaar de groep is "
+#~ "vernoemd en zonder wie de groep niet zou bestaan (bijv. Miles Davis -> "
+#~ "Miles Davis Sextet)"
+
+#~ msgid ""
+#~ "This attribute indicates that the streamable content is not audio but "
+#~ "video."
+#~ msgstr ""
+#~ "Deze eigenschap geeft aan dat de streambare inhoud geen audio maar video "
+#~ "is."
+
+#~ msgid ""
+#~ "This indicates that a person is, or was, the artistic director of a group "
+#~ "(e.g. a ballet/opera company)."
+#~ msgstr ""
+#~ "Dit geeft aan dat een persoon de artistiek leider van een groep is (of "
+#~ "was), bijvoorbeeld een ballet- of opera-gezelschap."
+
+#~ msgid ""
+#~ "This indicates that a work is made up of multiple parts (e.g. an "
+#~ "orchestral suite broken into movements)"
+#~ msgstr ""
+#~ "Dit geeft aan dat een compositie uit meerdere delen bestaat (bijv. een "
+#~ "orkestsuite die in delen is opgedeeld)."
+
+#~ msgid ""
+#~ "This indicates that the recording is not of the entire work, e.g. "
+#~ "excerpts from, conclusion of, etc."
+#~ msgstr ""
+#~ "Dit geeft aan dat de opname niet van de hele compositie is, bijv. een "
+#~ "passage of de conclusie."
+
+#~ msgid ""
+#~ "This links a series to its profile (e.g. for a festival) or project (e.g. "
+#~ "for a specific tour, or for compiling a classical catalogue) at a "
+#~ "crowdfunding site like Kickstarter or Indiegogo."
+#~ msgstr ""
+#~ "Deze relatie koppelt een serie aan haar profiel (bijvoorbeeld voor een "
+#~ "festival) of project (bijvoorbeeld voor een specifieke tour, of het "
+#~ "samenstellen van een klassieke catalogus) op een crowdfundingwebsite "
+#~ "zoals Kickstarter of Indiegogo."
+
+#~ msgid ""
+#~ "This relationship indicates that a person was a teacher at an event (e.g. "
+#~ "a masterclass)."
+#~ msgstr ""
+#~ "Deze relatie geeft aan dat een persoon op een evenement les gaf "
+#~ "(bijvoorbeeld een masterclass)."
+
+#~ msgid ""
+#~ "This relationship type is used to indicate that a release group is a "
+#~ "cover version of another release group, i.e. when an artist performs a "
+#~ "new rendition of another artist's album.
\n"
+#~ "For individual songs, see the recording-work performance relationship type."
+#~ msgstr ""
+#~ "Deze relatie wordt gebruikt om aan te geven dat een uitgavegroep een "
+#~ "coverversie van een andere uitgavegroep is, bijvoorbeeld als een artiest "
+#~ "een nieuwe versie van het album van een andere artiest maakt.
\n"
+#~ "Zie voor individuele nummers de relatie voor de uitvoering van een "
+#~ "compositie."
+
+#~ msgid ""
+#~ "This relationship type is used to link a label to a site where music can "
+#~ "be legally streamed for a subscription fee, e.g. Apple Music.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Deze relatie wordt gebruikt om een platenmaatschappij te koppelen aan een "
+#~ "website waarop geabonneerde gebruikers muziek van de artiest kunnen "
+#~ "luisteren, zoals Apple Music.\n"
+#~ "\n"
+#~ "Als de streams gratis zijn, moet je ‘gratis streamen’ gebruiken."
+
+#~ msgid ""
+#~ "This relationship type is used to link a label to a site where music can "
+#~ "be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "Deze relatie wordt gebruikt om een platenmaatschappij te koppelen aan een "
+#~ "website waarop muziek gratis legaal kan worden geluisterd, zoals Spotify."
+
+#~ msgid ""
+#~ "This relationship type is used to link a release to a site where the "
+#~ "tracks can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Deze relatie wordt gebruikt om een uitgave te koppelen aan een website "
+#~ "waarop geabonneerde gebruikers de uitgave kunnen luisteren, zoals Tidal.\n"
+#~ "\n"
+#~ "Als de streams gratis zijn, moet je ‘gratis streamen’ gebruiken."
+
+#~ msgid ""
+#~ "This relationship type is used to link a release to a site where the "
+#~ "tracks can be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "Deze relatie wordt gebruikt om een uitgave te koppelen aan een website "
+#~ "waarop de nummers gratis legaal kunnen worden beluisterd, zoals Spotify."
+
+#~ msgid ""
+#~ "This relationship type is used to link a track to a site where the track "
+#~ "can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Deze relatie wordt gebruikt om een nummer te koppelen aan een website "
+#~ "waarop geabonneerde gebruikers het nummer kunnen luisteren, zoals Tidal.\n"
+#~ "\n"
+#~ "Als de streams gratis zijn, moet je ‘gratis streamen’ gebruiken."
+
+#~ msgid ""
+#~ "This relationship type is used to link a track to a site where the track "
+#~ "can be legally streamed for free, such as Spotify for audio tracks or "
+#~ "YouTube for videos."
+#~ msgstr ""
+#~ "Deze relatie wordt gebruikt om een nummer te koppelen aan een website "
+#~ "waarop het nummer gratis legaal kan worden beluisterd, zoals Spotify voor "
+#~ "audio of Youtube voor video’s."
+
+#~ msgid ""
+#~ "This relationship type is used to link an artist to a site where music "
+#~ "can be legally streamed for a subscription fee, e.g. Tidal.\n"
+#~ "\n"
+#~ "If the site allows free streaming, use \"free streaming\" instead."
+#~ msgstr ""
+#~ "Deze relatie wordt gebruikt om een artiest te koppelen aan een website "
+#~ "waarop geabonneerde gebruikers muziek van de artiest kunnen luisteren, "
+#~ "zoals Tidal.\n"
+#~ "\n"
+#~ "Als de streams gratis zijn, moet je ‘gratis streamen’ gebruiken."
+
+#~ msgid ""
+#~ "This relationship type is used to link an artist to a site where music "
+#~ "can be legally streamed for free, e.g. Spotify."
+#~ msgstr ""
+#~ "Deze relatie wordt gebruikt om een artiest te koppelen aan een website "
+#~ "waarop muziek gratis legaal kan worden geluisterd, zoals Spotify."
+
#~ msgid "performed {additional} chorus master on"
#~ msgstr "treedt op als {additional:aanvullend} koorleider op"
diff --git a/po/relationships.oc.po b/po/relationships.oc.po
index b68c355545d..eacb1b3732c 100644
--- a/po/relationships.oc.po
+++ b/po/relationships.oc.po
@@ -46,10 +46,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -303,6 +303,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -333,10 +339,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -487,14 +489,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -866,7 +868,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1069,8 +1071,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1207,7 +1209,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1230,7 +1232,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1578,8 +1580,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1644,8 +1646,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1724,8 +1726,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1748,8 +1750,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1874,16 +1876,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1901,8 +1903,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2229,9 +2231,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2464,18 +2466,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2562,9 +2564,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2793,8 +2795,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2833,8 +2835,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2940,8 +2942,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2961,8 +2963,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2973,8 +2975,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3256,7 +3258,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3265,7 +3267,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3273,13 +3275,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3289,7 +3306,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3297,28 +3314,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3326,7 +3328,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3375,9 +3377,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3415,9 +3417,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3434,9 +3436,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3481,9 +3483,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3603,14 +3605,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3621,8 +3623,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3632,8 +3634,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4061,8 +4063,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4357,15 +4359,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4373,8 +4375,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4676,11 +4678,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4916,8 +4918,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6500,7 +6502,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6512,7 +6513,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6533,6 +6534,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6979,22 +6988,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7763,8 +7772,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7786,8 +7794,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7925,6 +7932,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7934,6 +7945,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8525,7 +8540,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.pa.po b/po/relationships.pa.po
index 0157eb6436c..c4e09cf2cd6 100644
--- a/po/relationships.pa.po
+++ b/po/relationships.pa.po
@@ -46,10 +46,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -303,6 +303,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -333,10 +339,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -487,14 +489,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -866,7 +868,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1069,8 +1071,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1207,7 +1209,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1230,7 +1232,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1578,8 +1580,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1644,8 +1646,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1724,8 +1726,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1748,8 +1750,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1874,16 +1876,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1901,8 +1903,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2229,9 +2231,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2464,18 +2466,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2562,9 +2564,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2793,8 +2795,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2833,8 +2835,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2940,8 +2942,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2961,8 +2963,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2973,8 +2975,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3256,7 +3258,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3265,7 +3267,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3273,13 +3275,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3289,7 +3306,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3297,28 +3314,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3326,7 +3328,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3375,9 +3377,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3415,9 +3417,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3434,9 +3436,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3481,9 +3483,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3603,14 +3605,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3621,8 +3623,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3632,8 +3634,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4061,8 +4063,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4357,15 +4359,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4373,8 +4375,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4676,11 +4678,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4916,8 +4918,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6500,7 +6502,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6512,7 +6513,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6533,6 +6534,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6979,22 +6988,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7763,8 +7772,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7786,8 +7794,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7925,6 +7932,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7934,6 +7945,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8525,7 +8540,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.pl.po b/po/relationships.pl.po
index 4130ce45ccd..75b86fd767c 100644
--- a/po/relationships.pl.po
+++ b/po/relationships.pl.po
@@ -18,9 +18,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
-"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
-"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
+"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
+"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#: DB:link_attribute_type/description:1355
msgid "A performance-centered, usually one to three year postgraduate program."
@@ -55,10 +55,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -312,6 +312,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -342,10 +348,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -496,14 +498,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -875,7 +877,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1078,8 +1080,8 @@ msgstr "Wskazuje na artykuł w Wikipedii dla tej pracy."
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1216,7 +1218,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1239,7 +1241,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1587,8 +1589,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1653,8 +1655,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1733,8 +1735,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1757,8 +1759,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1883,16 +1885,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1910,8 +1912,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2238,9 +2240,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2473,18 +2475,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2571,9 +2573,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2802,8 +2804,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2842,8 +2844,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2949,8 +2951,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2970,8 +2972,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2982,8 +2984,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3265,7 +3267,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3274,7 +3276,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3282,13 +3284,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3298,7 +3315,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3306,28 +3323,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3335,7 +3337,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3384,9 +3386,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3424,9 +3426,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3443,9 +3445,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3490,9 +3492,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3612,14 +3614,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3630,8 +3632,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3641,8 +3643,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4070,8 +4072,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4366,15 +4368,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4382,8 +4384,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4685,11 +4687,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4925,8 +4927,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6509,7 +6511,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6521,7 +6522,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6542,6 +6543,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6988,22 +6997,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7772,8 +7781,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7795,8 +7803,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7934,6 +7941,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7943,6 +7954,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8534,7 +8549,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.pot b/po/relationships.pot
index 926b5e23a57..46c17c6d1e5 100644
--- a/po/relationships.pot
+++ b/po/relationships.pot
@@ -41,10 +41,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -298,6 +298,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -328,10 +334,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -482,14 +484,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -861,7 +863,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1202,7 +1204,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1225,7 +1227,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1573,8 +1575,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1639,8 +1641,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1743,8 +1745,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -2557,9 +2559,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2968,8 +2970,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3251,7 +3253,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3260,7 +3262,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3268,13 +3270,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3284,7 +3301,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3292,28 +3309,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3321,7 +3323,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -4056,8 +4058,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4352,15 +4354,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4368,8 +4370,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4671,11 +4673,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4911,8 +4913,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6495,7 +6497,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6507,7 +6508,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6528,6 +6529,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6974,22 +6983,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7758,8 +7767,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7781,8 +7789,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7920,6 +7927,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7929,6 +7940,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8520,7 +8535,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.pt.po b/po/relationships.pt.po
index a971d6c54fb..2b220466765 100644
--- a/po/relationships.pt.po
+++ b/po/relationships.pt.po
@@ -47,10 +47,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -304,6 +304,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -334,10 +340,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -488,14 +490,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -867,7 +869,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1070,8 +1072,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1208,7 +1210,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1231,7 +1233,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1579,8 +1581,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1645,8 +1647,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1725,8 +1727,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1749,8 +1751,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1875,16 +1877,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1902,8 +1904,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2230,9 +2232,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2465,18 +2467,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2563,9 +2565,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2794,8 +2796,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2834,8 +2836,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2941,8 +2943,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2962,8 +2964,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2974,8 +2976,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3257,7 +3259,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3266,7 +3268,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3274,13 +3276,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3290,7 +3307,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3298,28 +3315,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3327,7 +3329,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3376,9 +3378,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3416,9 +3418,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3435,9 +3437,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3482,9 +3484,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3604,14 +3606,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3622,8 +3624,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3633,8 +3635,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4062,8 +4064,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4358,15 +4360,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4374,8 +4376,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4677,11 +4679,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4917,8 +4919,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6501,7 +6503,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6513,7 +6514,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6534,6 +6535,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6980,22 +6989,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7764,8 +7773,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7787,8 +7795,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7926,6 +7933,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7935,6 +7946,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8526,7 +8541,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.ro.po b/po/relationships.ro.po
index 7bcbceab622..98c90ba503f 100644
--- a/po/relationships.ro.po
+++ b/po/relationships.ro.po
@@ -48,10 +48,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -305,6 +305,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -335,10 +341,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -489,14 +491,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -868,7 +870,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1071,8 +1073,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1209,7 +1211,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1232,7 +1234,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1580,8 +1582,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1646,8 +1648,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1726,8 +1728,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1750,8 +1752,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1876,16 +1878,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1903,8 +1905,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2231,9 +2233,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2466,18 +2468,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2564,9 +2566,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2795,8 +2797,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2835,8 +2837,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2942,8 +2944,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2963,8 +2965,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2975,8 +2977,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3258,7 +3260,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3267,7 +3269,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3275,13 +3277,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3291,7 +3308,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3299,28 +3316,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3328,7 +3330,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3377,9 +3379,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3417,9 +3419,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3436,9 +3438,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3483,9 +3485,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3605,14 +3607,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3623,8 +3625,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3634,8 +3636,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4063,8 +4065,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4359,15 +4361,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4375,8 +4377,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4678,11 +4680,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4918,8 +4920,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6502,7 +6504,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6514,7 +6515,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6535,6 +6536,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6981,22 +6990,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7765,8 +7774,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7788,8 +7796,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7927,6 +7934,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7936,6 +7947,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8527,7 +8542,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.ru.po b/po/relationships.ru.po
index ddcae6c1f89..53cc8998311 100644
--- a/po/relationships.ru.po
+++ b/po/relationships.ru.po
@@ -15,20 +15,22 @@
# Дмитрий , 2014
# Екатерина Тишина , 2016
# Иван Стасюк , 2016
+# wileyfoxyx , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
-"PO-Revision-Date: 2012-05-24 18:50+0000\n"
-"Last-Translator: Ilya , 2023\n"
-"Language-Team: Russian (http://app.transifex.com/musicbrainz/musicbrainz/"
-"language/ru/)\n"
+"PO-Revision-Date: 2023-11-10 20:27+0000\n"
+"Last-Translator: wileyfoxyx \n"
+"Language-Team: Russian \n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
-"%100>=11 && n%100<=14)? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || ("
+"n%100>=11 && n%100<=14)? 2 : 3);\n"
+"X-Generator: Weblate 5.1\n"
#: DB:link_attribute_type/description:1355
msgid "A performance-centered, usually one to three year postgraduate program."
@@ -41,11 +43,11 @@ msgid ""
"people involved with the label can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"Страница в социальной сети - это собственная страница лейбла в социальной сети"
-"a>, на которой материалы могут быть опубликованы только людьми, связанными с "
-"лейблом. Например, страницы в Facebook, аккаунты в Twitter, Instagram и "
-"Flickr."
+"Страница в социальной сети — это собственная страница лейбла в социальной сети, на которой "
+"материалы могут быть опубликованы только людьми, связанными с лейблом. "
+"Например, страницы в Facebook, аккаунты в Twitter, Instagram и Flickr."
#: DB:link_type/description:784
msgid ""
@@ -54,11 +56,11 @@ msgid ""
"people involved with the series can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"Страница в социальной сети - это страница сериала в социальной сети, на "
-"которой материалы могут быть опубликованы только людьми, связанными с "
-"сериалом. Например, страницы в Facebook, аккаунты в Twitter, Instagram и "
-"Flickr."
+"Страница в социальной сети - это страница сериала в социальной сети, на которой материалы "
+"могут быть опубликованы только людьми, связанными с сериалом. Например, "
+"страницы в Facebook, аккаунты в Twitter, Instagram и Flickr."
#: DB:link_type/description:429
msgid ""
@@ -67,30 +69,22 @@ msgid ""
"people involved with the place can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"Страница в социальной сети - это собственная страница места в социальной сети"
-"a>, на которой материалы могут быть опубликованы только людьми, связанными с "
-"местом. Например, страницы в Facebook, аккаунты в Twitter, Instagram и "
-"Flickr."
+"Страница в социальной сети — это собственная страница места в социальной сети, на которой "
+"материалы могут быть опубликованы только людьми, связанными с местом. "
+"Например, страницы в Facebook, аккаунты в Twitter, Instagram и Flickr."
#: DB:link_type/description:192
msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
-msgstr ""
-"Страница в социальной сети - это собственная страница исполнителя в социальной сети (например, "
-"страницы и профили в Facebook, страницы на Last.fm, аккаунты в Twitter, "
-"Instagram и Flickr), на которой материалы могут быть опубликованы только "
-"самим исполнителем (или его менеджментом). Другие люди могут создать "
-"собственный профиль и взаимодействовать с исполнителем, например, добавив "
-"его в друзья или комментируя опубликованные им сообщения."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
+msgstr ""
#: DB:link_type/description:783
msgid ""
@@ -100,11 +94,11 @@ msgid ""
"Facebook pages and event entries, and accounts on Twitter, Instagram and "
"Flickr."
msgstr ""
-"Страница в социальной сети - это собственная страница мероприятия в социальной сети"
-"a>, на которой материалы могут быть опубликованы только людьми, связанными с "
-"мероприятием. Например, страницы в Facebook, аккаунты в Twitter, Instagram и "
-"Flickr."
+"Страница в социальной сети - это собственная страница мероприятия в социальной "
+"сети, на которой материалы могут быть опубликованы только людьми, "
+"связанными с мероприятием. Например, страницы в Facebook, аккаунты в "
+"Twitter, Instagram и Flickr."
#: DB:link_type/link_phrase:77 DB:link_type/reverse_link_phrase:77
msgid "ASIN"
@@ -140,7 +134,7 @@ msgstr "Страница на BBC Music"
#: DB:link_type/reverse_link_phrase:190
msgid "BBC Music page for"
-msgstr "Страница на BBC Music"
+msgstr "Страница на BBC Music для"
#: DB:link_type/link_phrase:1092 DB:link_type/link_phrase:718
#: DB:link_type/link_phrase:719
@@ -150,7 +144,7 @@ msgstr "Bandcamp"
#: DB:link_type/reverse_link_phrase:1092 DB:link_type/reverse_link_phrase:718
#: DB:link_type/reverse_link_phrase:719
msgid "Bandcamp page for"
-msgstr "Страница на Bandcamp"
+msgstr "Страница на Bandcamp для"
#: DB:link_type/link_phrase:861 DB:link_type/link_phrase:862
#: DB:link_type/link_phrase:860
@@ -160,7 +154,7 @@ msgstr "Bandsintown"
#: DB:link_type/reverse_link_phrase:861 DB:link_type/reverse_link_phrase:862
#: DB:link_type/reverse_link_phrase:860
msgid "Bandsintown page for"
-msgstr "Страница на Bandsintown"
+msgstr "Страница на Bandsintown для"
#: DB:link_type/link_phrase:851 DB:link_type/link_phrase:852
#: DB:link_type/link_phrase:853 DB:link_type/link_phrase:1167
@@ -174,7 +168,7 @@ msgstr "BookBrainz"
#: DB:link_type/reverse_link_phrase:852 DB:link_type/reverse_link_phrase:853
#: DB:link_type/reverse_link_phrase:1167 DB:link_type/reverse_link_phrase:850
msgid "BookBrainz page for"
-msgstr "Страница на BookBrainz"
+msgstr "Страница на BookBrainz для"
#: DB:link_type/link_phrase:919 DB:link_type/name:919
msgid "CD Baby"
@@ -182,7 +176,7 @@ msgstr "CD Baby"
#: DB:link_type/reverse_link_phrase:919
msgid "CD Baby page for"
-msgstr "Страница на CD Baby"
+msgstr "Страница на CD Baby для"
#: DB:link_type/link_phrase:981 DB:link_type/name:981
msgid "CPDL"
@@ -271,7 +265,7 @@ msgstr "Discogs"
#: DB:link_type/reverse_link_phrase:217 DB:link_type/reverse_link_phrase:90
#: DB:link_type/reverse_link_phrase:747 DB:link_type/reverse_link_phrase:705
msgid "Discogs page for"
-msgstr "Страница на Discogs"
+msgstr "Страница на Discogs для"
#: DB:link_attribute_type/description:1020
msgid ""
@@ -365,13 +359,19 @@ msgstr ""
"обычно применимы к популярным сольным артистам, хотя иногда могут относиться "
"и к группам."
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr "Указывает на страницу с официальным расписанием серии мероприятий."
#: DB:link_type/description:109
msgid "Indicates a parent-child relationship."
-msgstr "Indicates a parent-child relationship."
+msgstr "Указывает на отношение \"родитель-ребенок\"."
#: DB:link_type/description:396
msgid "Indicates a pictorial image (JPEG, GIF, PNG) of a place"
@@ -379,7 +379,7 @@ msgstr "Указывает на графическое изображение (J
#: DB:link_type/description:173
msgid "Indicates a pictorial image (JPEG, GIF, PNG) of an artist."
-msgstr "Указывает на графическое изображение (JPEG, GIF, PNG) артиста"
+msgstr "Указывает на графическое изображение (JPEG, GIF, PNG) исполнителя"
#: DB:link_type/description:943
msgid ""
@@ -392,16 +392,12 @@ msgstr ""
#: DB:link_attribute_type/description:1019
msgid "Indicates a sibling with whom the artist has only one parent in common"
msgstr ""
-"Указывает на родного брата, с которым у художника есть только один общий "
-"родитель."
+"Указывает на родного брата/сестру, с которым у исполнителя есть только один "
+"общий родитель"
#: DB:link_type/description:842
msgid "Indicates a webpage that reviews the event in question."
-msgstr "Указывает на вебстраницу с обзором на событие."
-
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr "Указывает на страницу с изданием (или группой изданий)."
+msgstr "Указывает на веб-страницу с обзором на событие."
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
@@ -411,8 +407,8 @@ msgstr ""
#: DB:link_type/description:177
msgid "Indicates a webpage where you can download an artist's work for free."
msgstr ""
-"Указывает на веб-страницу, где вы можете бесплатно скачать произведения "
-"артиста."
+"Указывает на веб-страницу, где вы можете бесплатно скачать произведение "
+"исполнителя."
#: DB:link_type/description:834
msgid ""
@@ -431,28 +427,32 @@ msgid ""
"relationship that normally applies to well-known solo artists, although it "
"can sometimes apply to groups."
msgstr ""
-"Обозначает музыканта, который долгое время инструментально или вокально "
+"Обозначает артиста, который долгое время инструментально или вокально "
"содействует другому на альбомах и/или концертах. Это взаимоотношения "
"\"человек-артист\", которые обычно применимы к популярным сольным артистам, "
"хотя иногда могут относиться и к группам."
#: DB:link_type/description:156
msgid "Indicates an artist that performed on this recording."
-msgstr ""
+msgstr "Указывает исполнителя, выступавшего на этой записи."
#: DB:link_type/description:51
msgid "Indicates an artist that performed on this release."
-msgstr ""
+msgstr "Указывает исполнителя, выступавшего в этом релизе."
#: DB:link_type/description:148
msgid ""
"Indicates an artist that performed one or more instruments on this recording."
msgstr ""
+"Указывает исполнителя, сыгравшего на одном или нескольких инструментах на "
+"этой записи."
#: DB:link_type/description:44
msgid ""
"Indicates an artist that performed one or more instruments on this release."
msgstr ""
+"Указывает исполнителя, сыгравшего на одном или нескольких инструментах в "
+"этом релизе."
#: DB:link_type/description:149
msgid "Indicates an artist that performed vocals on this recording."
@@ -489,7 +489,7 @@ msgstr ""
#: DB:link_attribute_type/description:567
msgid "Indicates that one entity is a cover of another entity"
-msgstr ""
+msgstr "Указывает, что одна сущность является кавером другой сущности."
#: DB:link_type/description:996
msgid "Indicates that the artist is part of a series."
@@ -566,19 +566,17 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"Указывает композитора данного издания, т.е. исполнителя, написавшего музыку "
-"(не обязательно текст)."
+"Указывает на композитора этого релиза, то есть, артиста, который написал "
+"музыку (но необязательно слова)."
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"Указывает композитора данного произведения, т.е. исполнителя, написавшего "
-"музыку (не обязательно текст)."
#: DB:link_type/description:845
msgid "Indicates the event where the work had its first performance"
@@ -949,7 +947,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1152,8 +1150,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1290,7 +1288,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1313,7 +1311,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1661,8 +1659,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1727,8 +1725,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1810,8 +1808,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1834,8 +1832,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1960,16 +1958,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1987,8 +1985,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2315,9 +2313,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2551,18 +2549,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2649,9 +2647,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2880,8 +2878,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2920,8 +2918,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -3027,8 +3025,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -3048,8 +3046,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -3060,8 +3058,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3343,7 +3341,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3352,7 +3350,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3360,13 +3358,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3376,7 +3389,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3384,28 +3397,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3413,7 +3411,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3462,9 +3460,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3502,9 +3500,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3521,9 +3519,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3568,9 +3566,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3690,14 +3688,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3708,8 +3706,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3719,8 +3717,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4148,8 +4146,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4444,15 +4442,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4460,8 +4458,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4763,11 +4761,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr "бесплатный стриминг"
@@ -5003,8 +5001,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6587,7 +6585,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6599,7 +6596,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6620,6 +6617,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -7066,22 +7071,22 @@ msgstr ""
msgid "stream for free"
msgstr "прослушать прямо сейчас"
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr "стриминг"
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7850,8 +7855,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7873,8 +7877,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -8012,6 +8015,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -8021,6 +8028,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8612,7 +8623,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
@@ -8624,5 +8635,42 @@ msgstr ""
msgid "{vocal:%|vocals} support for"
msgstr ""
+#~ msgid ""
+#~ "A social network page is an artist's own profile page on a social network which only they (or their "
+#~ "management) can post content to. Other people can create their own "
+#~ "profiles and interact with the artist, e.g. by adding them as a friend or "
+#~ "by commenting on the things that they post. Examples include Facebook "
+#~ "pages and profiles, Last.fm users and accounts on Twitter, Instagram and "
+#~ "Flickr."
+#~ msgstr ""
+#~ "Страница в социальной сети - это собственная страница исполнителя в социальной "
+#~ "сети (например, страницы и профили в Facebook, страницы на Last.fm, "
+#~ "аккаунты в Twitter, Instagram и Flickr), на которой материалы могут быть "
+#~ "опубликованы только самим исполнителем (или его менеджментом). Другие "
+#~ "люди могут создать собственный профиль и взаимодействовать с "
+#~ "исполнителем, например, добавив его в друзья или комментируя "
+#~ "опубликованные им сообщения."
+
+#~ msgid "Indicates a webpage that reviews the release (group) in question."
+#~ msgstr "Указывает на страницу с изданием (или группой изданий)."
+
+#~ msgid ""
+#~ "Indicates the composer for this release, i.e. the artist who wrote the "
+#~ "music (not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Указывает композитора данного издания, т.е. исполнителя, написавшего "
+#~ "музыку (не обязательно текст)."
+
+#~ msgid ""
+#~ "Indicates the composer for this work, i.e. the artist who wrote the music "
+#~ "(not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Указывает композитора данного произведения, т.е. исполнителя, написавшего "
+#~ "музыку (не обязательно текст)."
+
#~ msgid "legal name"
#~ msgstr "юридическое название"
diff --git a/po/relationships.sk.po b/po/relationships.sk.po
index 5884171c917..f053eec6f85 100644
--- a/po/relationships.sk.po
+++ b/po/relationships.sk.po
@@ -48,10 +48,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -305,6 +305,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -335,10 +341,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -489,14 +491,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -868,7 +870,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1071,8 +1073,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1209,7 +1211,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1232,7 +1234,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1580,8 +1582,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1646,8 +1648,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1726,8 +1728,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1750,8 +1752,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1876,16 +1878,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1903,8 +1905,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2231,9 +2233,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2466,18 +2468,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2564,9 +2566,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2795,8 +2797,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2835,8 +2837,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2942,8 +2944,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2963,8 +2965,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2975,8 +2977,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3258,7 +3260,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3267,7 +3269,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3275,13 +3277,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3291,7 +3308,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3299,28 +3316,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3328,7 +3330,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3377,9 +3379,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3417,9 +3419,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3436,9 +3438,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3483,9 +3485,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3605,14 +3607,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3623,8 +3625,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3634,8 +3636,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4063,8 +4065,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4359,15 +4361,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4375,8 +4377,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4678,11 +4680,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4918,8 +4920,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6502,7 +6504,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6514,7 +6515,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6535,6 +6536,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6981,22 +6990,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7765,8 +7774,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7788,8 +7796,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7927,6 +7934,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7936,6 +7947,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8527,7 +8542,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.sl.po b/po/relationships.sl.po
index 0553c28e982..4c173c7ace8 100644
--- a/po/relationships.sl.po
+++ b/po/relationships.sl.po
@@ -12,8 +12,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
-"%100==4 ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
+"n%100==4 ? 2 : 3);\n"
#: DB:link_attribute_type/description:1355
msgid "A performance-centered, usually one to three year postgraduate program."
@@ -48,10 +48,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -305,6 +305,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -335,10 +341,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -489,14 +491,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -868,7 +870,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1071,8 +1073,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1209,7 +1211,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1232,7 +1234,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1580,8 +1582,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1646,8 +1648,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1726,8 +1728,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1750,8 +1752,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1876,16 +1878,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1903,8 +1905,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2231,9 +2233,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2466,18 +2468,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2564,9 +2566,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2795,8 +2797,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2835,8 +2837,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2942,8 +2944,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2963,8 +2965,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2975,8 +2977,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3258,7 +3260,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3267,7 +3269,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3275,13 +3277,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3291,7 +3308,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3299,28 +3316,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3328,7 +3330,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3377,9 +3379,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3417,9 +3419,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3436,9 +3438,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3483,9 +3485,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3605,14 +3607,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3623,8 +3625,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3634,8 +3636,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4063,8 +4065,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4359,15 +4361,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4375,8 +4377,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4678,11 +4680,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4918,8 +4920,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6502,7 +6504,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6514,7 +6515,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6535,6 +6536,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6981,22 +6990,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7765,8 +7774,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7788,8 +7796,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7927,6 +7934,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7936,6 +7947,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8527,7 +8542,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.sq.po b/po/relationships.sq.po
index 13aec71d959..7e5c6f15bb1 100644
--- a/po/relationships.sq.po
+++ b/po/relationships.sq.po
@@ -24,10 +24,10 @@ msgid ""
"people involved with the label can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"Një faqe rrjeti shoqëror është faqja e etiketës diskografike në një rrjet shoqëror"
-"a> te e cila mund të postojnë lëndë vetëm persona që kanë lidhje me "
-"etiketën. Te shembujt hyjnë faqe në Facebook dhe llogari në Twitter, "
+"Një faqe rrjeti shoqëror është faqja e etiketës diskografike në një rrjet "
+"shoqëror te e cila mund të postojnë lëndë vetëm persona që kanë lidhje "
+"me etiketën. Te shembujt hyjnë faqe në Facebook dhe llogari në Twitter, "
"Instagram dhe Flickr."
#: DB:link_type/description:784
@@ -59,10 +59,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -341,6 +341,12 @@ msgstr ""
"zakonisht ka vend për artistë të njohur solo, por ndonjëherë mund të vlejë "
"edhe për grupe."
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -374,10 +380,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr "Tregon një faqe web që shqyrton veprimtarinë në fjalë."
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr "Tregon një faqe web që shqyrton hedhjen në qarkullim (grup) në fjalë."
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -557,19 +559,15 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"Tregon kompozitorin e kësaj hedhjeje në qarkullim, domethënë, artistin që "
-"shkroi muzikën (jo domosdo edhe vargjet)."
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
-"Tregon kompozitorin e kësaj vepre, domethënë, artistin që shkroi muzikën (jo "
-"domosdo edhe vargjet)."
#: DB:link_type/description:845
msgid "Indicates the event where the work had its first performance"
@@ -976,7 +974,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1181,8 +1179,8 @@ msgstr "Shpie te faqja në Wikipedia për këtë vepër."
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1319,7 +1317,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1342,7 +1340,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1690,8 +1688,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1756,8 +1754,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1836,8 +1834,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1860,8 +1858,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1986,16 +1984,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -2013,8 +2011,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2341,9 +2339,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2576,18 +2574,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2674,9 +2672,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2905,8 +2903,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2945,8 +2943,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -3052,8 +3050,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -3073,8 +3071,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -3085,8 +3083,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3368,7 +3366,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3377,7 +3375,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3385,13 +3383,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3401,7 +3414,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3409,28 +3422,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3438,7 +3436,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3487,9 +3485,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3527,9 +3525,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3546,9 +3544,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3593,9 +3591,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3715,14 +3713,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3733,8 +3731,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3744,8 +3742,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4173,8 +4171,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4469,15 +4467,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4485,8 +4483,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4788,11 +4786,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -5028,8 +5026,8 @@ msgstr "ka një katalog incizimesh te"
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6612,7 +6610,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6624,7 +6621,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6645,6 +6642,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -7091,22 +7096,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7875,8 +7880,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7898,8 +7902,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -8037,6 +8040,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -8046,6 +8053,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8637,7 +8648,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
@@ -8649,5 +8660,23 @@ msgstr ""
msgid "{vocal:%|vocals} support for"
msgstr ""
+#~ msgid "Indicates a webpage that reviews the release (group) in question."
+#~ msgstr ""
+#~ "Tregon një faqe web që shqyrton hedhjen në qarkullim (grup) në fjalë."
+
+#~ msgid ""
+#~ "Indicates the composer for this release, i.e. the artist who wrote the "
+#~ "music (not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Tregon kompozitorin e kësaj hedhjeje në qarkullim, domethënë, artistin që "
+#~ "shkroi muzikën (jo domosdo edhe vargjet)."
+
+#~ msgid ""
+#~ "Indicates the composer for this work, i.e. the artist who wrote the music "
+#~ "(not necessarily the lyrics)."
+#~ msgstr ""
+#~ "Tregon kompozitorin e kësaj vepre, domethënë, artistin që shkroi muzikën "
+#~ "(jo domosdo edhe vargjet)."
+
#~ msgid "legal name"
#~ msgstr "emër ligjor"
diff --git a/po/relationships.sr.po b/po/relationships.sr.po
index 850b466df50..2096e3db669 100644
--- a/po/relationships.sr.po
+++ b/po/relationships.sr.po
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: DB:link_attribute_type/description:1355
msgid "A performance-centered, usually one to three year postgraduate program."
@@ -47,10 +47,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -304,6 +304,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -334,10 +340,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -488,14 +490,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -867,7 +869,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1070,8 +1072,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1208,7 +1210,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1231,7 +1233,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1579,8 +1581,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1645,8 +1647,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1725,8 +1727,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1749,8 +1751,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1875,16 +1877,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1902,8 +1904,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2230,9 +2232,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2465,18 +2467,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2563,9 +2565,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2794,8 +2796,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2834,8 +2836,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2941,8 +2943,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2962,8 +2964,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2974,8 +2976,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3257,7 +3259,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3266,7 +3268,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3274,13 +3276,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3290,7 +3307,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3298,28 +3315,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3327,7 +3329,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3376,9 +3378,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3416,9 +3418,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3435,9 +3437,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3482,9 +3484,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3604,14 +3606,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3622,8 +3624,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3633,8 +3635,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4062,8 +4064,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4358,15 +4360,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4374,8 +4376,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4677,11 +4679,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4917,8 +4919,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6501,7 +6503,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6513,7 +6514,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6534,6 +6535,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6980,22 +6989,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7764,8 +7773,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7787,8 +7795,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7926,6 +7933,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7935,6 +7946,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8526,7 +8541,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.sv.po b/po/relationships.sv.po
index 7713bf7a47b..4b0a552b08e 100644
--- a/po/relationships.sv.po
+++ b/po/relationships.sv.po
@@ -52,10 +52,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -309,6 +309,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -339,10 +345,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -493,14 +495,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -872,7 +874,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1075,8 +1077,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1213,7 +1215,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1236,7 +1238,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1586,8 +1588,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1652,8 +1654,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1734,8 +1736,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1762,8 +1764,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1888,16 +1890,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1915,8 +1917,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2249,9 +2251,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2489,18 +2491,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2587,9 +2589,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2826,8 +2828,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2866,8 +2868,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2973,8 +2975,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2994,8 +2996,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -3006,8 +3008,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3289,7 +3291,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3298,7 +3300,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3306,13 +3308,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3322,7 +3339,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3330,28 +3347,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3359,7 +3361,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3408,9 +3410,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3448,9 +3450,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3467,9 +3469,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3514,9 +3516,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3636,14 +3638,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3654,8 +3656,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3665,8 +3667,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4094,8 +4096,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4390,15 +4392,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4406,8 +4408,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4709,11 +4711,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4949,8 +4951,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6533,7 +6535,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6545,7 +6546,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6566,6 +6567,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -7012,22 +7021,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7796,8 +7805,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7819,8 +7827,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7958,6 +7965,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7967,6 +7978,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8558,7 +8573,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.th.po b/po/relationships.th.po
new file mode 100644
index 00000000000..210cc847252
--- /dev/null
+++ b/po/relationships.th.po
@@ -0,0 +1,8549 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: th\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: DB:link_attribute_type/description:1355
+msgid "A performance-centered, usually one to three year postgraduate program."
+msgstr ""
+
+#: DB:link_type/description:218
+msgid ""
+"A social network page is a label's own page on a social network which only "
+"people involved with the label can post content to. Examples include "
+"Facebook pages, and accounts on Twitter, Instagram and Flickr."
+msgstr ""
+
+#: DB:link_type/description:784
+msgid ""
+"A social network page is a page for a series on a social network which only "
+"people involved with the series can post content to. Examples include "
+"Facebook pages, and accounts on Twitter, Instagram and Flickr."
+msgstr ""
+
+#: DB:link_type/description:429
+msgid ""
+"A social network page is a place's own page on a social network which only "
+"people involved with the place can post content to. Examples include "
+"Facebook pages, and accounts on Twitter, Instagram and Flickr."
+msgstr ""
+
+#: DB:link_type/description:192
+msgid ""
+"A social network page is an artist's own profile page on a social "
+"network which only they (or their management) can post content to. Other "
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
+msgstr ""
+
+#: DB:link_type/description:783
+msgid ""
+"A social network page is an event's own page on a social network which only "
+"people involved with the event can post content to. Examples include "
+"Facebook pages and event entries, and accounts on Twitter, Instagram and "
+"Flickr."
+msgstr ""
+
+#: DB:link_type/link_phrase:77 DB:link_type/reverse_link_phrase:77
+msgid "ASIN"
+msgstr ""
+
+#: DB:link_type/link_phrase:755 DB:link_type/link_phrase:284
+#: DB:link_type/link_phrase:283 DB:link_type/link_phrase:285
+#: DB:link_type/link_phrase:1093 DB:link_type/reverse_link_phrase:286
+msgid "Allmusic"
+msgstr ""
+
+#: DB:link_type/link_phrase:286 DB:link_type/reverse_link_phrase:755
+#: DB:link_type/reverse_link_phrase:284 DB:link_type/reverse_link_phrase:283
+#: DB:link_type/reverse_link_phrase:285 DB:link_type/reverse_link_phrase:1093
+msgid "Allmusic page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1131 DB:link_type/link_phrase:1130
+msgid "Apple Music"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1131 DB:link_type/reverse_link_phrase:1130
+msgid "Apple Music page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:190
+msgid "BBC Music"
+msgstr ""
+
+#: DB:link_type/name:190
+msgid "BBC Music page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:190
+msgid "BBC Music page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1092 DB:link_type/link_phrase:718
+#: DB:link_type/link_phrase:719
+msgid "Bandcamp"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1092 DB:link_type/reverse_link_phrase:718
+#: DB:link_type/reverse_link_phrase:719
+msgid "Bandcamp page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:861 DB:link_type/link_phrase:862
+#: DB:link_type/link_phrase:860
+msgid "Bandsintown"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:861 DB:link_type/reverse_link_phrase:862
+#: DB:link_type/reverse_link_phrase:860
+msgid "Bandsintown page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:851 DB:link_type/link_phrase:852
+#: DB:link_type/link_phrase:853 DB:link_type/link_phrase:1167
+#: DB:link_type/link_phrase:850 DB:link_type/name:851 DB:link_type/name:852
+#: DB:link_type/name:853 DB:link_type/name:1167 DB:link_type/name:854
+#: DB:link_type/name:850 DB:link_type/reverse_link_phrase:854
+msgid "BookBrainz"
+msgstr ""
+
+#: DB:link_type/link_phrase:854 DB:link_type/reverse_link_phrase:851
+#: DB:link_type/reverse_link_phrase:852 DB:link_type/reverse_link_phrase:853
+#: DB:link_type/reverse_link_phrase:1167 DB:link_type/reverse_link_phrase:850
+msgid "BookBrainz page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:919 DB:link_type/name:919
+msgid "CD Baby"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:919
+msgid "CD Baby page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:981 DB:link_type/name:981
+msgid "CPDL"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:981
+msgid "CPDL page for"
+msgstr ""
+
+#: DB:link_type/name:227 DB:link_type/name:8
+msgid "DJ-mix"
+msgstr ""
+
+#: DB:link_type/link_phrase:227 DB:link_type/link_phrase:8
+msgid "DJ-mix of"
+msgstr ""
+
+#: DB:link_type/link_phrase:155 DB:link_type/long_link_phrase:155
+msgid "DJ-mixed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:8
+msgid "DJ-mixed versions"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:43
+msgid "DJ-mixed {medium:% of}"
+msgstr ""
+
+#: DB:link_type/link_phrase:43
+msgid "DJ-mixed {medium}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:155
+msgid "DJ-mixer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:43
+msgid "DJ-mixer {medium}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:227
+msgid "DJ-mixes"
+msgstr ""
+
+#: DB:link_type/description:704
+msgid ""
+"Describes the fact a person was contracted by a place as a mastering "
+"engineer."
+msgstr ""
+
+#: DB:link_type/description:703
+msgid ""
+"Describes the fact a person was contracted by a place as a mixing engineer."
+msgstr ""
+
+#: DB:link_type/description:702
+msgid ""
+"Describes the fact a person was contracted by a place as a recording "
+"engineer."
+msgstr ""
+
+#: DB:link_type/description:701
+msgid "Describes the fact a person was contracted by a place as an engineer."
+msgstr ""
+
+#: DB:link_type/description:357
+msgid "Designates that a work is or was the anthem for an area"
+msgstr ""
+
+#: DB:link_type/description:356
+msgid "Designates that one area is contained by another."
+msgstr ""
+
+#: DB:link_type/link_phrase:1089 DB:link_type/link_phrase:180
+#: DB:link_type/link_phrase:76 DB:link_type/link_phrase:217
+#: DB:link_type/link_phrase:90 DB:link_type/link_phrase:747
+#: DB:link_type/link_phrase:705 DB:link_type/reverse_link_phrase:971
+msgid "Discogs"
+msgstr ""
+
+#: DB:link_type/link_phrase:971 DB:link_type/reverse_link_phrase:1089
+#: DB:link_type/reverse_link_phrase:180 DB:link_type/reverse_link_phrase:76
+#: DB:link_type/reverse_link_phrase:217 DB:link_type/reverse_link_phrase:90
+#: DB:link_type/reverse_link_phrase:747 DB:link_type/reverse_link_phrase:705
+msgid "Discogs page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:1020
+msgid ""
+"For indicating the step-spouse of the artist's parent, or the sibling "
+"relationship with the children of such a spouse"
+msgstr ""
+
+#: DB:link_attribute_type/description:580
+msgid ""
+"For works that have lyrics, this indicates that those lyrics are not "
+"relevant to this recording. Examples include instrumental arrangements, or "
+"\"beats\" from hip-hop songs which may be reused with different lyrics."
+msgstr ""
+
+#: DB:link_type/link_phrase:934 DB:link_type/link_phrase:713
+msgid "Geonames"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:934 DB:link_type/reverse_link_phrase:713
+msgid "Geonames page for"
+msgstr ""
+
+#: DB:link_type/name:83 DB:link_type/name:258
+msgid "IMDB samples"
+msgstr ""
+
+#: DB:link_type/link_phrase:313 DB:link_type/link_phrase:178
+#: DB:link_type/link_phrase:97 DB:link_type/link_phrase:706
+#: DB:link_type/name:843 DB:link_type/name:313 DB:link_type/name:178
+#: DB:link_type/name:97 DB:link_type/name:706
+#: DB:link_type/reverse_link_phrase:843
+msgid "IMDb"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:83 DB:link_type/reverse_link_phrase:258
+msgid "IMDb entry sampled in"
+msgstr ""
+
+#: DB:link_type/link_phrase:843 DB:link_type/reverse_link_phrase:313
+#: DB:link_type/reverse_link_phrase:178 DB:link_type/reverse_link_phrase:97
+#: DB:link_type/reverse_link_phrase:706
+msgid "IMDb page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:754 DB:link_type/name:754
+msgid "IMSLP"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:754
+msgid "IMSLP page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:516
+msgid "Indicates a bonus disc"
+msgstr ""
+
+#: DB:link_type/description:162
+msgid ""
+"Indicates a miscellaneous support role. This is usually stated in the liner "
+"notes of an album."
+msgstr ""
+
+#: DB:link_type/description:105
+msgid ""
+"Indicates a musician doing long-time instrumental support for another one on "
+"albums and/or at concerts. This is a person-to-artist relationship that "
+"normally applies to well-known solo artists, although it can sometimes apply "
+"to groups."
+msgstr ""
+
+#: DB:link_type/description:107
+msgid ""
+"Indicates a musician doing long-time vocal support for another one on albums "
+"and/or at concerts. This is a person-to-artist relationship that normally "
+"applies to well-known solo artists, although it can sometimes apply to "
+"groups."
+msgstr ""
+
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
+#: DB:link_type/description:1083
+msgid "Indicates a page with an official schedule for an event series."
+msgstr ""
+
+#: DB:link_type/description:109
+msgid "Indicates a parent-child relationship."
+msgstr ""
+
+#: DB:link_type/description:396
+msgid "Indicates a pictorial image (JPEG, GIF, PNG) of a place"
+msgstr ""
+
+#: DB:link_type/description:173
+msgid "Indicates a pictorial image (JPEG, GIF, PNG) of an artist."
+msgstr ""
+
+#: DB:link_type/description:943
+msgid ""
+"Indicates a place that moved from one location to another, while still being "
+"generally considered the same."
+msgstr ""
+
+#: DB:link_attribute_type/description:1019
+msgid "Indicates a sibling with whom the artist has only one parent in common"
+msgstr ""
+
+#: DB:link_type/description:842
+msgid "Indicates a webpage that reviews the event in question."
+msgstr ""
+
+#: DB:link_type/description:958
+msgid "Indicates a webpage where you can download a label's releases for free."
+msgstr ""
+
+#: DB:link_type/description:177
+msgid "Indicates a webpage where you can download an artist's work for free."
+msgstr ""
+
+#: DB:link_type/description:834
+msgid ""
+"Indicates an artist (generally a composer) this work was previously "
+"attributed to, but who is currently confirmed (or very strongly suspected) "
+"not to be the real author."
+msgstr ""
+
+#: DB:link_type/description:104
+msgid ""
+"Indicates an artist doing long-time instrumental or vocal support for "
+"another one on albums and/or at concerts. This is a person-to-artist "
+"relationship that normally applies to well-known solo artists, although it "
+"can sometimes apply to groups."
+msgstr ""
+
+#: DB:link_type/description:156
+msgid "Indicates an artist that performed on this recording."
+msgstr ""
+
+#: DB:link_type/description:51
+msgid "Indicates an artist that performed on this release."
+msgstr ""
+
+#: DB:link_type/description:148
+msgid ""
+"Indicates an artist that performed one or more instruments on this recording."
+msgstr ""
+
+#: DB:link_type/description:44
+msgid ""
+"Indicates an artist that performed one or more instruments on this release."
+msgstr ""
+
+#: DB:link_type/description:149
+msgid "Indicates an artist that performed vocals on this recording."
+msgstr ""
+
+#: DB:link_type/description:60
+msgid "Indicates an artist that performed vocals on this release."
+msgstr ""
+
+#: DB:link_type/description:150
+msgid "Indicates an orchestra that performed on this recording."
+msgstr ""
+
+#: DB:link_type/description:45
+msgid "Indicates an orchestra that performed on this release."
+msgstr ""
+
+#: DB:link_attribute_type/description:1080
+msgid ""
+"Indicates how many of a specific instrument an ensemble usually includes."
+msgstr ""
+
+#: DB:link_type/description:844
+msgid ""
+"Indicates that an artist revised a work. In most cases, this will be the "
+"original composer revising the work at a later date."
+msgstr ""
+
+#: DB:link_type/description:887
+msgid ""
+"Indicates that an event was intended as a performance of a specific release "
+"group (usually an album)."
+msgstr ""
+
+#: DB:link_attribute_type/description:567
+msgid "Indicates that one entity is a cover of another entity"
+msgstr ""
+
+#: DB:link_type/description:996
+msgid "Indicates that the artist is part of a series."
+msgstr ""
+
+#: DB:link_type/description:802
+msgid "Indicates that the event is part of a series."
+msgstr ""
+
+#: DB:link_type/description:231
+msgid "Indicates that the recording contains samples from another."
+msgstr ""
+
+#: DB:link_type/description:154
+msgid ""
+"Indicates that the recording contains samples from material by the indicated "
+"artist. Use this only if you really cannot figure out the particular "
+"recording that has been sampled."
+msgstr ""
+
+#: DB:link_type/description:69
+msgid "Indicates that the recording contains samples from this release."
+msgstr ""
+
+#: DB:link_type/description:740
+msgid "Indicates that the recording is part of a series."
+msgstr ""
+
+#: DB:link_attribute_type/description:1053
+msgid "Indicates that the relationship is optional - doesn't always apply."
+msgstr ""
+
+#: DB:link_type/description:49
+msgid ""
+"Indicates that the release contains samples from material by the indicated "
+"artist. Use this only if you really cannot figure out the particular "
+"recording that has been sampled."
+msgstr ""
+
+#: DB:link_type/description:742
+msgid "Indicates that the release group is part of a series."
+msgstr ""
+
+#: DB:link_type/description:741
+msgid "Indicates that the release is part of a series."
+msgstr ""
+
+#: DB:link_type/description:743
+msgid "Indicates that the work is part of a series."
+msgstr ""
+
+#: DB:link_type/description:112
+msgid ""
+"Indicates that two persons were romantically involved with each other "
+"without being married."
+msgstr ""
+
+#: DB:link_type/description:1085
+msgid "Indicates the area an event series was held at."
+msgstr ""
+
+#: DB:link_type/description:715
+msgid "Indicates the area where the work had its first performance"
+msgstr ""
+
+#: DB:link_type/description:956
+msgid ""
+"Indicates the artist(s) who gave the first performance of the work; this is "
+"usually mostly relevant for classical music"
+msgstr ""
+
+#: DB:link_type/description:55
+msgid ""
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
+msgstr ""
+
+#: DB:link_type/description:168
+msgid ""
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
+msgstr ""
+
+#: DB:link_type/description:845
+msgid "Indicates the event where the work had its first performance"
+msgstr ""
+
+#: DB:link_type/description:986
+msgid ""
+"Indicates the instrument technician for this recording. Use also for \"piano "
+"tuner\" credits and other similar ones."
+msgstr ""
+
+#: DB:link_type/description:987
+msgid ""
+"Indicates the instrument technician for this release. Use also for \"piano "
+"tuner\" credits and other similar ones."
+msgstr ""
+
+#: DB:link_type/description:57
+msgid "Indicates the librettist for this release."
+msgstr ""
+
+#: DB:link_type/description:169
+msgid "Indicates the librettist for this work."
+msgstr ""
+
+#: DB:link_type/description:995
+msgid "Indicates the location a run or residency was held at."
+msgstr ""
+
+#: DB:link_type/description:56
+msgid "Indicates the lyricist for this release."
+msgstr ""
+
+#: DB:link_type/description:165
+msgid "Indicates the lyricist for this work."
+msgstr ""
+
+#: DB:link_type/description:42
+msgid "Indicates the mastering engineer for this work."
+msgstr ""
+
+#: DB:link_type/description:219
+msgid "Indicates the official homepage for a label."
+msgstr ""
+
+#: DB:link_type/description:363
+msgid "Indicates the official homepage for a place."
+msgstr ""
+
+#: DB:link_type/description:745
+msgid "Indicates the official homepage for a series."
+msgstr ""
+
+#: DB:link_type/description:183
+msgid "Indicates the official homepage for an artist."
+msgstr ""
+
+#: DB:link_type/description:782
+msgid "Indicates the official homepage for an event."
+msgstr ""
+
+#: DB:link_type/description:871
+msgid ""
+"Indicates the person who translated the lyrics/libretto for this release."
+msgstr ""
+
+#: DB:link_type/description:872
+msgid "Indicates the person who translated the lyrics/libretto for this work."
+msgstr ""
+
+#: DB:link_type/description:716
+msgid "Indicates the place where the work had its first performance"
+msgstr ""
+
+#: DB:link_type/description:32
+msgid ""
+"Indicates the publisher of this release. This is not the "
+"same concept as the record label"
+"a>."
+msgstr ""
+
+#: DB:link_type/description:161
+msgid ""
+"Indicates the publisher of this work. This is not the same "
+"concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:208
+msgid ""
+"Indicates the publisher of this work. This is not the same "
+"concept as the record label."
+msgstr ""
+
+#: DB:link_type/link_phrase:840 DB:link_type/link_phrase:837
+#: DB:link_type/link_phrase:839 DB:link_type/link_phrase:838
+msgid "Last.fm"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:840 DB:link_type/reverse_link_phrase:837
+#: DB:link_type/reverse_link_phrase:839 DB:link_type/reverse_link_phrase:838
+msgid "Last.fm page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:4
+msgid "Lead or solo vocal"
+msgstr ""
+
+#: DB:link_type/description:864
+msgid ""
+"Links a recording to the area it was arranged in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:821
+msgid ""
+"Links a recording to the area it was edited in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:814
+msgid ""
+"Links a recording to the area it was engineered in. Use only when the place "
+"is unknown!"
+msgstr ""
+
+#: DB:link_type/description:758
+msgid ""
+"Links a recording to the area it was mixed in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:827
+msgid ""
+"Links a recording to the area it was produced in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:698
+msgid ""
+"Links a recording to the area it was recorded in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:830
+msgid ""
+"Links a recording to the area it was remixed in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:809
+msgid "Links a recording to the event it was recorded at."
+msgstr ""
+
+#: DB:link_type/description:1006
+msgid ""
+"Links a recording to the event series (tour, residency, etc.) it was "
+"recorded during."
+msgstr ""
+
+#: DB:link_type/description:866
+msgid "Links a recording to the place it was arranged at."
+msgstr ""
+
+#: DB:link_type/description:819
+msgid "Links a recording to the place it was edited at."
+msgstr ""
+
+#: DB:link_type/description:813
+msgid "Links a recording to the place it was engineered at."
+msgstr ""
+
+#: DB:link_type/description:694
+msgid "Links a recording to the place it was mixed at."
+msgstr ""
+
+#: DB:link_type/description:825
+msgid "Links a recording to the place it was produced at."
+msgstr ""
+
+#: DB:link_type/description:693
+msgid "Links a recording to the place it was recorded at."
+msgstr ""
+
+#: DB:link_type/description:829
+msgid "Links a recording to the place it was remixed at."
+msgstr ""
+
+#: DB:link_type/description:1008
+msgid ""
+"Links a recording, release or release group series to the event series "
+"(tour, residency, etc.) it was recorded during."
+msgstr ""
+
+#: DB:link_type/description:1007
+msgid ""
+"Links a release group to the event series (tour, residency, etc.) it was "
+"recorded during."
+msgstr ""
+
+#: DB:link_type/description:797
+msgid "Links a release group with a launch event for it."
+msgstr ""
+
+#: DB:link_type/description:863
+msgid ""
+"Links a release to the area it was arranged in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:822
+msgid ""
+"Links a release to the area it was edited in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:815
+msgid ""
+"Links a release to the area it was engineered in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:835
+msgid "Links a release to the area it was manufactured (\"made\") in."
+msgstr ""
+
+#: DB:link_type/description:756
+msgid ""
+"Links a release to the area it was mastered in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:757
+msgid ""
+"Links a release to the area it was mixed in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:849
+msgid "Links a release to the area it was printed in."
+msgstr ""
+
+#: DB:link_type/description:826
+msgid ""
+"Links a release to the area it was produced in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:699
+msgid ""
+"Links a release to the area it was recorded in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:831
+msgid ""
+"Links a release to the area it was remixed in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:1181
+msgid ""
+"Links a release to the area it was transferred in (for example from an old "
+"tape to digital). Use only when the place is unknown!"
+msgstr ""
+
+#: DB:link_type/description:967
+msgid ""
+"Links a release to the area where the lacquer cutting took place. Use only "
+"when the place is unknown!"
+msgstr ""
+
+#: DB:link_type/description:969
+msgid "Links a release to the engineer who did the lacquer cutting for it."
+msgstr ""
+
+#: DB:link_type/description:810
+msgid "Links a release to the event it was recorded at."
+msgstr ""
+
+#: DB:link_type/description:865
+msgid "Links a release to the place it was arranged at."
+msgstr ""
+
+#: DB:link_type/description:820
+msgid "Links a release to the place it was edited at."
+msgstr ""
+
+#: DB:link_type/description:812
+msgid "Links a release to the place it was engineered at."
+msgstr ""
+
+#: DB:link_type/description:953
+msgid ""
+"Links a release to the place it was manufactured at. Use a more specific "
+"credit if available"
+msgstr ""
+
+#: DB:link_type/description:697
+msgid "Links a release to the place it was mastered at."
+msgstr ""
+
+#: DB:link_type/description:696
+msgid "Links a release to the place it was mixed at."
+msgstr ""
+
+#: DB:link_type/description:941
+msgid "Links a release to the place it was pressed at."
+msgstr ""
+
+#: DB:link_type/description:824
+msgid "Links a release to the place it was produced at."
+msgstr ""
+
+#: DB:link_type/description:695
+msgid "Links a release to the place it was recorded at."
+msgstr ""
+
+#: DB:link_type/description:828
+msgid "Links a release to the place it was remixed at."
+msgstr ""
+
+#: DB:link_type/description:1182
+msgid ""
+"Links a release to the place it was transferred at (for example from an old "
+"tape to digital)."
+msgstr ""
+
+#: DB:link_type/description:954
+msgid ""
+"Links a release to the place where the glass master for pressing was made. "
+"Not the same as mastered!"
+msgstr ""
+
+#: DB:link_type/description:968
+msgid "Links a release to the place where the lacquer cutting took place."
+msgstr ""
+
+#: DB:link_type/description:796
+msgid "Links a release with a launch event for it."
+msgstr ""
+
+#: DB:link_type/description:795
+msgid ""
+"Links a release with an event where it was available. This is intended for "
+"event-exclusive releases and/or releases available at events before the "
+"official launch date, not for every release in the merchandise stall."
+msgstr ""
+
+#: DB:link_type/description:823
+msgid "Links a series to another series that exists within it."
+msgstr ""
+
+#: DB:link_type/description:1094
+msgid ""
+"Links an award series to the award ceremony series of events where it's "
+"announced and/or awarded."
+msgstr ""
+
+#: DB:link_type/description:798
+msgid "Links an event to (one of) its main performer(s)."
+msgstr ""
+
+#: DB:link_type/description:799
+msgid ""
+"Links an event to (one of) its support act(s) (also known as opening acts or "
+"warm-up acts)."
+msgstr ""
+
+#: DB:link_type/description:932
+msgid ""
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
+"between artists, or closing the night after a concert)."
+msgstr ""
+
+#: DB:link_type/description:800
+msgid ""
+"Links an event to a guest performer. Guest performers usually make short "
+"appearances during other artist's set."
+msgstr ""
+
+#: DB:link_type/description:1168
+msgid ""
+"Links an event to a label or other organization credited for presenting it "
+"(often as \"Label presents Event\")."
+msgstr ""
+
+#: DB:link_type/description:806
+msgid "Links an event to an artist that was a conductor in it."
+msgstr ""
+
+#: DB:link_type/description:1163
+msgid ""
+"Links an event to an artist who was a VJ during it, either as the background "
+"for someone else’s musical performance or as its own performance."
+msgstr ""
+
+#: DB:link_type/description:1084
+msgid "Links an event to an engineer or sound technician who worked on it."
+msgstr ""
+
+#: DB:link_type/description:807
+msgid "Links an event to an orchestra that performed in it."
+msgstr ""
+
+#: DB:link_type/description:801
+msgid ""
+"Links an event to its host/MC. Event hosts usually do introductions to the "
+"show or each song."
+msgstr ""
+
+#: DB:link_type/description:793
+msgid ""
+"Links an event to the area where it was held. Use only if the exact place is "
+"unknown."
+msgstr ""
+
+#: DB:link_type/description:794
+msgid "Links an event to the place where it was held."
+msgstr ""
+
+#: DB:link_attribute_type/description:830
+msgid "Local time a band's performance is scheduled to start, formatted HH:MM."
+msgstr ""
+
+#: DB:link_attribute_type/description:1060
+msgid "Meane or mean is a young male singer with a voice lower than a treble"
+msgstr ""
+
+#: DB:link_type/link_phrase:215 DB:link_type/link_phrase:462
+#: DB:link_type/link_phrase:189
+msgid "Myspace"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:215 DB:link_type/reverse_link_phrase:462
+#: DB:link_type/reverse_link_phrase:189
+msgid "Myspace page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:461
+msgid "Other vocalizations"
+msgstr ""
+
+#: DB:link_type/description:852
+msgid "Points to the BookBrainz page for this artist."
+msgstr ""
+
+#: DB:link_type/description:851
+msgid "Points to the BookBrainz page for this label."
+msgstr ""
+
+#: DB:link_type/description:853
+msgid "Points to the BookBrainz page for this release group."
+msgstr ""
+
+#: DB:link_type/description:850
+msgid "Points to the BookBrainz page for this release."
+msgstr ""
+
+#: DB:link_type/description:1167
+msgid "Points to the BookBrainz page for this series."
+msgstr ""
+
+#: DB:link_type/description:854
+msgid "Points to the BookBrainz page for this work."
+msgstr ""
+
+#: DB:link_type/description:713
+msgid "Points to the Geonames page for this area."
+msgstr ""
+
+#: DB:link_type/description:934
+msgid "Points to the Geonames page for this place."
+msgstr ""
+
+#: DB:link_type/description:706
+msgid "Points to the Internet Movie Database page for this place."
+msgstr ""
+
+#: DB:link_type/description:358
+msgid ""
+"Points to the Wikidata page for this area, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:352
+msgid ""
+"Points to the Wikidata page for this artist, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:790
+msgid ""
+"Points to the Wikidata page for this event, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:1087
+msgid ""
+"Points to the Wikidata page for this genre, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:733
+msgid ""
+"Points to the Wikidata page for this instrument, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:354
+msgid ""
+"Points to the Wikidata page for this label, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:594
+msgid ""
+"Points to the Wikidata page for this place, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:353
+msgid ""
+"Points to the Wikidata page for this release group, and will be used to "
+"fetch Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:749
+msgid ""
+"Points to the Wikidata page for this series, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:351
+msgid ""
+"Points to the Wikidata page for this work, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:89
+msgid "Points to the Wikipedia page for this album."
+msgstr ""
+
+#: DB:link_type/description:355
+msgid "Points to the Wikipedia page for this area."
+msgstr ""
+
+#: DB:link_type/description:179
+msgid "Points to the Wikipedia page for this artist."
+msgstr ""
+
+#: DB:link_type/description:789
+msgid "Points to the Wikipedia page for this event."
+msgstr ""
+
+#: DB:link_type/description:731
+msgid "Points to the Wikipedia page for this instrument."
+msgstr ""
+
+#: DB:link_type/description:595
+msgid "Points to the Wikipedia page for this place"
+msgstr ""
+
+#: DB:link_type/description:744
+msgid "Points to the Wikipedia page for this series."
+msgstr ""
+
+#: DB:link_type/description:279
+msgid "Points to the Wikipedia page for this work."
+msgstr ""
+
+#: DB:link_type/description:127
+msgid ""
+"Publishers should be added on works instead. Keep in mind this is "
+"not the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/link_phrase:174
+msgid "PureVolume"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:174
+msgid "PureVolume page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:308 DB:link_type/link_phrase:976
+#: DB:link_type/link_phrase:977 DB:link_type/link_phrase:307
+#: DB:link_type/reverse_link_phrase:280
+msgid "SecondHandSongs"
+msgstr ""
+
+#: DB:link_type/link_phrase:280 DB:link_type/reverse_link_phrase:308
+#: DB:link_type/reverse_link_phrase:976 DB:link_type/reverse_link_phrase:977
+#: DB:link_type/reverse_link_phrase:307
+msgid "SecondHandSongs page for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:289
+msgid "Songfacts"
+msgstr ""
+
+#: DB:link_type/link_phrase:289
+msgid "Songfacts page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:786 DB:link_type/link_phrase:785
+#: DB:link_type/link_phrase:787
+msgid "Songkick"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:786 DB:link_type/reverse_link_phrase:785
+#: DB:link_type/reverse_link_phrase:787
+msgid "Songkick page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:870 DB:link_type/link_phrase:291
+#: DB:link_type/link_phrase:290 DB:link_type/link_phrase:940
+msgid "SoundCloud"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:870 DB:link_type/reverse_link_phrase:291
+#: DB:link_type/reverse_link_phrase:290 DB:link_type/reverse_link_phrase:940
+msgid "SoundCloud page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:1135
+msgid ""
+"Specifies the level of studies that a student studied towards in an "
+"educational institution."
+msgstr ""
+
+#: DB:link_attribute_type/description:1125
+msgid ""
+"Specifies the subject that was taught by a teacher in an institution and/or "
+"to a student."
+msgstr ""
+
+#: DB:link_attribute_type/description:561
+msgid "Spoken vocals (speech)"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:880
+msgid ""
+"The libretto for {entity1} was {additional:additionally} written at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:879
+msgid ""
+"The libretto for {entity1} was {additional:additionally} written in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:878
+msgid ""
+"The lyrics for {entity1} were {additional:additionally} written at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:877
+msgid ""
+"The lyrics for {entity1} were {additional:additionally} written in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:274
+msgid "The score for {entity1} can be downloaded for free at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:912
+msgid "The score for {entity1} can be purchased for download at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:913
+msgid "The score for {entity1} can be purchased for mail-order at {entity0}"
+msgstr ""
+
+#: DB:link_type/description:933
+msgid "This allows linking a series to the label who publishes it."
+msgstr ""
+
+#: DB:link_attribute_type/description:3
+msgid "This attribute describes a type of vocal performance."
+msgstr ""
+
+#: DB:link_attribute_type/description:2
+msgid ""
+"This attribute describes if a particular collaboration was considered equal "
+"or minor."
+msgstr ""
+
+#: DB:link_attribute_type/description:1
+msgid ""
+"This attribute describes if a particular role was considered normal or "
+"additional."
+msgstr ""
+
+#: DB:link_attribute_type/description:14
+msgid ""
+"This attribute describes the possible instruments that can be captured as "
+"part of a performance.\n"
+"
\n"
+"Can't find an instrument? Request it!"
+msgstr ""
+
+#: DB:link_attribute_type/description:194
+msgid ""
+"This attribute indicates a 'guest' performance where the performer is not "
+"usually part of the band."
+msgstr ""
+
+#: DB:link_attribute_type/description:1094
+msgid ""
+"This attribute indicates a member the band is named after and without which "
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
+msgstr ""
+
+#: DB:link_attribute_type/description:511
+msgid ""
+"This attribute indicates a version with satirical, ironic, or otherwise "
+"humorous intent. Parodies in most cases have altered lyrics."
+msgstr ""
+
+#: DB:link_attribute_type/description:517
+msgid ""
+"This attribute indicates a version with the lyrics in a different language "
+"than the original."
+msgstr ""
+
+#: DB:link_attribute_type/description:525
+msgid ""
+"This attribute indicates that an artist was an original member of a group "
+"artist."
+msgstr ""
+
+#: DB:link_attribute_type/description:582
+msgid ""
+"This attribute indicates that the content is not audio (or text) but video."
+msgstr ""
+
+#: DB:link_attribute_type/description:788
+msgid "This attribute indicates the number of an entity in a series."
+msgstr ""
+
+#: DB:link_attribute_type/description:425
+msgid ""
+"This attribute is to be used if the role was fulfilled in an executive "
+"capacity."
+msgstr ""
+
+#: DB:link_type/description:146
+msgid ""
+"This credits a person or agency who provided some kind of general creative "
+"inspiration during the recording of this recording, without actually "
+"contributing to the writing or performance."
+msgstr ""
+
+#: DB:link_type/description:63
+msgid ""
+"This credits a person or agency who provided some kind of general creative "
+"inspiration during the recording of this release group, without actually "
+"contributing to the writing or performance."
+msgstr ""
+
+#: DB:link_type/description:123
+msgid ""
+"This credits a person or agency whose photographs are included as part of a "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:134
+msgid ""
+"This credits a person who was responsible for booking the studio or "
+"performance venue where the recording was recorded."
+msgstr ""
+
+#: DB:link_type/description:23
+msgid ""
+"This credits a person who was responsible for booking the studio or "
+"performance venue where the release was recorded."
+msgstr ""
+
+#: DB:link_type/description:1175
+msgid ""
+"This credits an agency whose photographs are included as part of a release."
+msgstr ""
+
+#: DB:link_type/description:20
+msgid ""
+"This credits an artist whose photographs are included as part of a release."
+msgstr ""
+
+#: DB:link_type/description:24
+msgid ""
+"This credits the author of liner notes provided with the release (usually on "
+"the sleeve). While most time liner notes are just personnel information and "
+"production data, in some cases they consist of a blurb of text (article). "
+"This relationship type should be used in this last case."
+msgstr ""
+
+#: DB:link_type/description:125
+msgid ""
+"This credits the people or agency who did the graphic design, arranging "
+"pieces of content into a coherent and aesthetically-pleasing sleeve design."
+msgstr ""
+
+#: DB:link_type/description:202
+msgid ""
+"This describes a situation where a label has changed its name, either for "
+"purely aesthetic reasons or following a buyout/sellout/spin-off. Extra care "
+"should be taken with cases where complicated merge/split/restructure "
+"financial operations are done. For example, it's not a good idea to rename "
+"the label Verve "
+"into The Verve Music "
+"Group, as Verve continued its existence thereafter as an imprint."
+msgstr ""
+
+#: DB:link_type/description:1079
+msgid ""
+"This describes a situation where an artist (generally a group) changed its "
+"name, leading to the start of a new project."
+msgstr ""
+
+#: DB:link_type/description:200
+msgid ""
+"This describes a situation where one label is (or was) a subsidiary of "
+"another label, during a given period of time. This should be used either to "
+"describe the fact a label is a subdivision of another one, or, through "
+"corporate acquisition of the former label, has become a subdivision of "
+"another one."
+msgstr ""
+
+#: DB:link_type/description:203
+msgid ""
+"This describes a situation where one label is distributing (part of) another "
+"label's catalog, in a country/region of the world, during a period of time."
+msgstr ""
+
+#: DB:link_type/description:201
+msgid ""
+"This describes a situation where one label is reissuing, under its own name, "
+"(part of) another label's catalog. This can happen in at least three cases:\n"
+"\n"
+"- A label acquires a lease on another label's catalog, for a period of "
+"time, in a specific region of the world.
\n"
+"- A label buys the rights to a defunct label's catalog, or buys a label "
+"(with its catalog) and dismantles it.
\n"
+"- A bootleg label reissues another label's catalog.
\n"
+"
"
+msgstr ""
+
+#: DB:link_type/description:140 DB:link_type/description:31
+msgid ""
+"This describes an engineer involved with the machines used to generate "
+"sound, such as effects processors and digital audio equipment used to modify "
+"or manipulate sound in either an analogue or digital form."
+msgstr ""
+
+#: DB:link_type/description:36 DB:link_type/description:128
+msgid ""
+"This describes an engineer responsible for committing the performance to "
+"tape or another recording medium. This can be as complex as setting up the "
+"microphones, amplifiers, and recording devices, or as simple as pressing the "
+"'record' button on a 4-track or a digital audio workstation."
+msgstr ""
+
+#: DB:link_type/description:144 DB:link_type/description:38
+msgid ""
+"This describes an engineer responsible for either connecting disparate "
+"elements of the audio recording, or otherwise redistributing material "
+"recorded in the sessions. This is usually secondary, or additional to the "
+"work done by the mix engineer. It can also involve streamlining a longer "
+"track to around the 3 minute mark in order to make it suitable for radio "
+"play (a \"radio edit\")."
+msgstr ""
+
+#: DB:link_type/description:133 DB:link_type/description:29
+msgid ""
+"This describes an engineer responsible for ensuring that the sounds that the "
+"artists make reach the microphones sounding pleasant, without unwanted "
+"resonance or noise. Sometimes known as acoustical engineering."
+msgstr ""
+
+#: DB:link_type/description:1179
+msgid ""
+"This describes an engineer responsible for transferring a release, for "
+"example from an old tape to digital."
+msgstr ""
+
+#: DB:link_type/description:143
+msgid ""
+"This describes an engineer responsible for using a mixing console to mix a "
+"recorded track into a single piece of music suitable for release. For "
+"remixing, see remixer."
+msgstr ""
+
+#: DB:link_type/description:26
+msgid ""
+"This describes an engineer responsible for using a mixing console to mix a "
+"recorded track into a single piece of music suitable for release. For "
+"remixing, see remixer."
+msgstr ""
+
+#: DB:link_type/description:28 DB:link_type/description:138
+msgid "This describes an engineer who performed a general engineering role."
+msgstr ""
+
+#: DB:link_type/description:103
+msgid "This indicates a person is a member of a group."
+msgstr ""
+
+#: DB:link_type/description:135 DB:link_type/description:62
+msgid ""
+"This indicates a person or agency which is responsible for talent scouting, "
+"overseeing the artistic development of an artist, and acting as liaison "
+"between artists and the labels."
+msgstr ""
+
+#: DB:link_type/description:19
+msgid ""
+"This indicates a person or agency who did design or illustration for the "
+"release. This relationship is deprecated, please use either \"design\" or "
+"\"illustration\" (or both!)"
+msgstr ""
+
+#: DB:link_type/description:130
+msgid ""
+"This indicates a person or agency who did design or illustration for the "
+"track."
+msgstr ""
+
+#: DB:link_type/description:723
+msgid ""
+"This indicates a personal production label for an artist. A personal label "
+"is a small label (usually a subdivision of a larger one) that exclusively "
+"handles releases by that artist."
+msgstr ""
+
+#: DB:link_type/description:724
+msgid ""
+"This indicates a personal publishing label for an artist. A personal "
+"publishing label is a small label (usually a subdivision of a larger one) "
+"that exclusively handles the rights to works by that artist."
+msgstr ""
+
+#: DB:link_type/description:1011
+msgid ""
+"This indicates a recording engineer that recorded field recordings for the "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:1012
+msgid ""
+"This indicates a recording engineer that recorded field recordings for the "
+"release."
+msgstr ""
+
+#: DB:link_type/description:1174
+msgid "This indicates an agency that did the art direction for the release."
+msgstr ""
+
+#: DB:link_type/description:1171
+msgid "This indicates an agency who did design for the release."
+msgstr ""
+
+#: DB:link_type/description:1173
+msgid "This indicates an agency who did illustration for the release."
+msgstr ""
+
+#: DB:link_type/description:1172
+msgid ""
+"This indicates an agency who did the graphic design for the release, "
+"arranging pieces of content into a coherent and aesthetically-pleasing "
+"sleeve design."
+msgstr ""
+
+#: DB:link_type/description:1170
+msgid ""
+"This indicates an agency who provided artwork for the release when no more "
+"specific information is available."
+msgstr ""
+
+#: DB:link_type/description:895
+msgid ""
+"This indicates an artist (generally a person) was the founder of a group."
+msgstr ""
+
+#: DB:link_type/description:1004
+msgid ""
+"This indicates an artist (generally a person) was the founder of a series "
+"(mostly, but not always, an event series such as a festival)."
+msgstr ""
+
+#: DB:link_attribute_type/description:921
+msgid "This indicates an artist cancelled their appearance at an event."
+msgstr ""
+
+#: DB:link_type/description:917
+msgid ""
+"This indicates an artist reconstructed a work (usually one where the score "
+"was lost) to make it ready for performance."
+msgstr ""
+
+#: DB:link_type/description:18
+msgid "This indicates an artist that did the art direction for the release."
+msgstr ""
+
+#: DB:link_type/description:151
+msgid ""
+"This indicates an artist who conducted an orchestra, band or choir on this "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:46
+msgid ""
+"This indicates an artist who conducted an orchestra, band or choir on this "
+"release."
+msgstr ""
+
+#: DB:link_type/description:928
+msgid "This indicates an artist who did design for the release."
+msgstr ""
+
+#: DB:link_type/description:927
+msgid "This indicates an artist who did illustration for the release."
+msgstr ""
+
+#: DB:link_type/description:27
+msgid ""
+"This indicates an artist who did the graphic design for the release, "
+"arranging pieces of content into a coherent and aesthetically-pleasing "
+"sleeve design."
+msgstr ""
+
+#: DB:link_type/description:141 DB:link_type/description:30
+msgid ""
+"This indicates an artist who is responsible for the creative and practical "
+"day-to-day aspects involved with making a musical recording."
+msgstr ""
+
+#: DB:link_type/description:993
+msgid ""
+"This indicates an artist who provided artwork for the release when no more "
+"specific information is available."
+msgstr ""
+
+#: DB:link_type/description:760
+msgid ""
+"This indicates an artist who was the concertmaster/leader for an orchestra "
+"or band on this recording."
+msgstr ""
+
+#: DB:link_type/description:759
+msgid ""
+"This indicates an artist who was the concertmaster/leader for an orchestra "
+"or band on this release."
+msgstr ""
+
+#: DB:link_type/description:891
+msgid ""
+"This indicates that (most commonly) a festival commissioned the work. This "
+"is most common for classical works, but also exists in other genres to a "
+"degree."
+msgstr ""
+
+#: DB:link_type/description:1097
+msgid ""
+"This indicates that a genre has influences of another, but is not connected "
+"to it enough to be a subgenre of it."
+msgstr ""
+
+#: DB:link_type/description:1096
+msgid ""
+"This indicates that a genre originated as a hybrid of two or more other "
+"genres."
+msgstr ""
+
+#: DB:link_type/description:305
+msgid "This indicates that a person is, or was, a conductor for a group."
+msgstr ""
+
+#: DB:link_type/description:965
+msgid ""
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
+msgstr ""
+
+#: DB:link_type/description:137
+msgid ""
+"This indicates that a person or agency did the art direction for the "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:142
+msgid ""
+"This indicates that a person or firm provided legal representation for the "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:22
+msgid ""
+"This indicates that a person or firm provided legal representation for the "
+"release."
+msgstr ""
+
+#: DB:link_type/description:717
+msgid "This indicates that a place is part of another place."
+msgstr ""
+
+#: DB:link_type/description:725
+msgid ""
+"This indicates that a record label (company) owns or has the right to use an "
+"imprint."
+msgstr ""
+
+#: DB:link_type/description:228
+msgid ""
+"This indicates that a recording is a compilation of several other "
+"recordings. This applies to one long recording that contains multiple songs, "
+"one after the other, in which the audio material of the original recordings "
+"has not been altered. If the tracks are pitched or blended into each other, "
+"the DJ-mix "
+"relationship type may be more appropriate."
+msgstr ""
+
+#: DB:link_type/description:894
+msgid ""
+"This indicates that a release group was included in another. This allows "
+"linking release groups (often albums) to box sets and other compilations "
+"that contain them."
+msgstr ""
+
+#: DB:link_type/description:3
+msgid ""
+"This indicates that a release was released in support of another release. "
+"This allows a release to be linked to its supporting singles, EPs, and remix "
+"releases. A 'supporting release' is one which is released to increase sales "
+"of an album or to create publicity for an album."
+msgstr ""
+
+#: DB:link_type/description:11
+msgid ""
+"This indicates that a single or EP release group includes at least one track "
+"taken from an album release group. This allows a release group to be linked "
+"to its associated singles and EPs."
+msgstr ""
+
+#: DB:link_type/description:281
+msgid ""
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
+msgstr ""
+
+#: DB:link_type/description:858
+msgid ""
+"This indicates that an artist appears on a music video, but doesn't actually "
+"perform on the audio track."
+msgstr ""
+
+#: DB:link_type/description:121
+msgid "This indicates that an artist had a recording contract with a label."
+msgstr ""
+
+#: DB:link_type/description:117
+msgid ""
+"This indicates that an artist was officially employed by a label as a "
+"producer."
+msgstr ""
+
+#: DB:link_type/description:120
+msgid ""
+"This indicates that an artist was officially employed by a label as an "
+"engineer."
+msgstr ""
+
+#: DB:link_type/description:115
+msgid ""
+"This indicates that an artist was officially employed by a label in a "
+"creative position, such as photographer or graphic designer."
+msgstr ""
+
+#: DB:link_type/description:1081
+msgid ""
+"This indicates that an artist was officially employed by a label in an "
+"artists and repertoire (A&R) position."
+msgstr ""
+
+#: DB:link_type/description:818
+msgid ""
+"This indicates that an event is made up of multiple parts (e.g. a festival "
+"happening on multiple venues over the course of a few days)."
+msgstr ""
+
+#: DB:link_type/description:739
+msgid ""
+"This indicates that an instrument (often an ensemble or family) consists of "
+"two or more other instruments."
+msgstr ""
+
+#: DB:link_type/description:916
+msgid ""
+"This indicates that an instrument is a hybrid of two or more other "
+"instruments."
+msgstr ""
+
+#: DB:link_type/description:2
+msgid ""
+"This indicates that one release is identical to another release, but that "
+"the release title and track titles have been either translated (into another "
+"language) or transliterated (into another script)."
+msgstr ""
+
+#: DB:link_type/description:889
+msgid ""
+"This indicates that the artist commissioned the work. This is most common "
+"for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:129 DB:link_type/description:25
+msgid ""
+"This indicates that the artist performed a role not covered by other "
+"relationship types."
+msgstr ""
+
+#: DB:link_attribute_type/description:618
+msgid ""
+"This indicates that the group had multiple conductors or multiple players of "
+"the selected instrument who were led by this artist. This is often indicated "
+"by the title of \"principal conductor\" or \"first conductor\" for "
+"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
+"\" (principal violin) for instruments."
+msgstr ""
+
+#: DB:link_type/description:998 DB:link_type/description:999
+msgid ""
+"This indicates that the label performed a role not covered by other "
+"relationship types."
+msgstr ""
+
+#: DB:link_type/description:890
+msgid ""
+"This indicates that the organisation commissioned the work. This is most "
+"common for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:892
+msgid ""
+"This indicates that the place commissioned the work. This is most common for "
+"classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_attribute_type/description:579
+msgid ""
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
+msgstr ""
+
+#: DB:link_attribute_type/description:578
+msgid "This indicates that the recording is of a live performance."
+msgstr ""
+
+#: DB:link_attribute_type/description:750
+msgid ""
+"This indicates that the recording is of a medley, of which the work is one "
+"part."
+msgstr ""
+
+#: DB:link_attribute_type/description:1261
+msgid ""
+"This indicates that this is a karaoke recording of the work. This is "
+"different from an instrumental recording in that it is actively meant to "
+"sing on top of, and as such the lyrics info is still relevant. It might "
+"still contain backing vocals and other sections that would not be present in "
+"a true instrumental recording."
+msgstr ""
+
+#: DB:link_type/description:738
+msgid ""
+"This indicates that two instruments are related in a way not covered by "
+"other, more specific relationships."
+msgstr ""
+
+#: DB:link_type/description:1185
+msgid "This indicates the artist directed video on this release."
+msgstr ""
+
+#: DB:link_type/description:973
+msgid "This indicates the artist that inspired this artist’s name."
+msgstr ""
+
+#: DB:link_type/description:975
+msgid "This indicates the artist that inspired this place’s name."
+msgstr ""
+
+#: DB:link_type/description:1000
+msgid ""
+"This indicates the artist that inspired this series' name, for example for "
+"an award named after a musician."
+msgstr ""
+
+#: DB:link_type/description:1186
+msgid ""
+"This indicates the artist was an audio director for this recording.\n"
+"\n"
+"This is the artist responsible for the creative realization of an audio "
+"project (such as an audio drama or audiobook), which is usually based on a "
+"written template and involves the performance of voice actors."
+msgstr ""
+
+#: DB:link_type/description:1187
+msgid ""
+"This indicates the artist was an audio director for this release.\n"
+"\n"
+"This is the artist responsible for the creative realization of an audio "
+"project (such as an audio drama or audiobook), which is usually based on a "
+"written template and involves the performance of voice actors."
+msgstr ""
+
+#: DB:link_type/description:962
+msgid "This indicates the artist was the director of this video recording."
+msgstr ""
+
+#: DB:link_type/description:991
+msgid "This indicates the artist was the owner of this label."
+msgstr ""
+
+#: DB:link_type/description:988
+msgid ""
+"This indicates the artist was the owner of this place (often a studio, but "
+"sometimes also a venue)."
+msgstr ""
+
+#: DB:link_type/description:295 DB:link_type/description:41
+#: DB:link_type/description:296 DB:link_type/description:297
+#: DB:link_type/description:298 DB:link_type/description:158
+#: DB:link_type/description:294 DB:link_type/description:282
+#: DB:link_type/description:293
+msgid ""
+"This indicates the artist who arranged a tune into a form suitable for "
+"performance. 'Arrangement' is used as a catch-all term for all processes "
+"that turn a composition into a form that can be played by a specific type of "
+"ensemble."
+msgstr ""
+
+#: DB:link_type/description:152
+msgid ""
+"This indicates the chorus master of a choir which performed on this "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:53
+msgid ""
+"This indicates the chorus master of a choir which performed on this release."
+msgstr ""
+
+#: DB:link_type/description:955
+msgid ""
+"This indicates the company that made the glass master for a release. This is "
+"not the same concept as the record "
+"label, nor as mastering engineering."
+msgstr ""
+
+#: DB:link_type/description:989
+msgid ""
+"This indicates the label / organization was the owner of this place (often a "
+"studio, but sometimes also a venue)."
+msgstr ""
+
+#: DB:link_attribute_type/description:1018
+msgid ""
+"This indicates the linked entity translated something, rather than being the "
+"original writer."
+msgstr ""
+
+#: DB:link_type/description:361
+msgid ""
+"This indicates the organization that distributes (or contracts out "
+"distribution). \n"
+"\n"
+"This is not the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:360
+msgid ""
+"This indicates the organization that manufactures (or contracts out "
+"manufacturing). \n"
+"This is not the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:848
+msgid ""
+"This indicates the organization that markets a release. This is not"
+"strong> the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:985
+msgid ""
+"This indicates the organization that printed a release. This is not"
+"strong> the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:359
+msgid ""
+"This indicates the organization that promotes (or contracts out promotion) "
+"for a release. This is not the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:362
+msgid ""
+"This indicates the organization which releases a release. This is "
+"not the same concept as the record "
+"label."
+msgstr ""
+
+#: DB:link_type/description:300
+msgid ""
+"This indicates the person who orchestrated the recording. Orchestration is a "
+"special type of arrangement. It means the adaptation of a composition for an "
+"orchestra, done in a way that the musical substance remains essentially "
+"unchanged. The orchestrator is also responsible for writing scores for an "
+"orchestra, band, choral group, individual instrumentalist(s) or vocalist(s). "
+"In practical terms it consists of deciding which instruments should play "
+"which notes in a piece of music."
+msgstr ""
+
+#: DB:link_type/description:40
+msgid ""
+"This indicates the person who orchestrated the release. Orchestration is a "
+"special type of arrangement. It means the adaptation of a composition for an "
+"orchestra, done in a way that the musical substance remains essentially "
+"unchanged. The orchestrator is also responsible for writing scores for an "
+"orchestra, band, choral group, individual instrumentalist(s) or vocalist(s). "
+"In practical terms it consists of deciding which instruments should play "
+"which notes in a piece of music."
+msgstr ""
+
+#: DB:link_type/description:164
+msgid ""
+"This indicates the person who orchestrated the work. Orchestration is a "
+"special type of arrangement. It means the adaptation of a composition for an "
+"orchestra, done in a way that the musical substance remains essentially "
+"unchanged. The orchestrator is also responsible for writing scores for an "
+"orchestra, band, choral group, individual instrumentalist(s) or vocalist(s). "
+"In practical terms it consists of deciding which instruments should play "
+"which notes in a piece of music."
+msgstr ""
+
+#: DB:link_type/description:48
+msgid ""
+"This indicates the person who selected the tracks and the sequence for a "
+"compilation. If the tracks are pitched or blended into each other, it is "
+"more appropriate to credit this person as a DJ-"
+"mixer."
+msgstr ""
+
+#: DB:link_type/description:147
+msgid ""
+"This indicates the person who selected the tracks and the sequence for a "
+"compilation. This applies to one long recording which contains multiple "
+"songs, one after the other. If the tracks are pitched or blended into each "
+"other, it is more appropriate to credit this person as a DJ-"
+"mixer."
+msgstr ""
+
+#: DB:link_type/description:942
+msgid ""
+"This indicates the pressing company that presses a release. This is "
+"not the same concept as the record "
+"label."
+msgstr ""
+
+#: DB:link_attribute_type/description:1310
+msgid ""
+"This indicates the publisher subcontracted to publish a release or work in a "
+"specific territory. Use this only when you have a specific sub-publisher "
+"credit, do not guess."
+msgstr ""
+
+#: DB:link_type/description:974
+msgid "This indicates the release group that inspired this artist’s name."
+msgstr ""
+
+#: DB:link_type/description:349
+msgid ""
+"This indicates the rights society associated with a release. The rights "
+"society is an organization which collects royalties on behalf of the artists."
+msgstr ""
+
+#: DB:link_type/description:963
+msgid "This indicates the video was shot at this place."
+msgstr ""
+
+#: DB:link_type/description:966
+msgid "This indicates the video was shot at/during this event."
+msgstr ""
+
+#: DB:link_type/description:964
+msgid "This indicates the video was shot in this area."
+msgstr ""
+
+#: DB:link_type/description:914
+msgid ""
+"This indicates the work is dedicated to a specific area. This is most common "
+"for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:922
+msgid ""
+"This indicates the work is dedicated to a specific organization. This is "
+"most common for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:846
+msgid ""
+"This indicates the work is dedicated to a specific person. This is most "
+"common for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:983
+msgid ""
+"This indicates the work is dedicated to a specific place (such an "
+"educational institution). This is most common for classical works, but also "
+"exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:972
+msgid "This indicates the work that inspired this artist’s name."
+msgstr ""
+
+#: DB:link_type/description:915
+msgid "This indicates where a feed for this podcast can be found."
+msgstr ""
+
+#: DB:link_type/description:17
+msgid ""
+"This is used to indicate that a release group is a live performance of a "
+"studio release group."
+msgstr ""
+
+#: DB:link_type/description:1082
+msgid ""
+"This is used to indicate that a release group is a translated version of "
+"another."
+msgstr ""
+
+#: DB:link_type/description:239
+msgid ""
+"This is used to indicate that a work is a medley of several other songs. "
+"This means that the original songs were rearranged to create a new work in "
+"the form of a medley. See arranger for crediting the person "
+"who arranges songs into a medley."
+msgstr ""
+
+#: DB:link_type/description:232
+msgid ""
+"This is used to indicate that the recording is a mash-up of two (or more) other recordings."
+msgstr ""
+
+#: DB:link_type/description:10
+msgid ""
+"This is used to indicate that the release group is a mash-up mash-up of two (or more) other release groups."
+msgstr ""
+
+#: DB:link_type/description:227
+msgid ""
+"This is used to link a DJ-mixed "
+"recording to each of the source recordings. See DJ-mixer for "
+"crediting the person who created the DJ-mix."
+msgstr ""
+
+#: DB:link_type/description:1093
+msgid "This is used to link a genre to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:226
+msgid ""
+"This is used to link a karaoke version of a song to the original song.
\n"
+"A karaoke version is a version of the song with the main vocals removed, "
+"designed to be used for karaoke. These are generally produced from the "
+"original masters by muting the main vocal track or by using post-processing "
+"filters to remove the vocals. Karaoke versions can be found labelled in "
+"numerous different ways other than \"karaoke\": instrumental (even if "
+"backing vocals are still present), off vocal, backing track, etc."
+msgstr ""
+
+#: DB:link_type/description:213
+msgid "This is used to link a label to an image of its logo."
+msgstr ""
+
+#: DB:link_type/description:216
+msgid "This is used to link a label to its corresponding Wikipedia page."
+msgstr ""
+
+#: DB:link_type/description:977
+msgid ""
+"This is used to link a label to its corresponding page in the "
+"SecondHandSongs database."
+msgstr ""
+
+#: DB:link_type/description:857
+msgid ""
+"This is used to link a music video to the corresponding audio recording."
+msgstr ""
+
+#: DB:link_type/description:705
+msgid "This is used to link a place to the equivalent entry in Discogs."
+msgstr ""
+
+#: DB:link_type/description:976
+msgid ""
+"This is used to link a recording to its corresponding page in the "
+"SecondHandSongs database."
+msgstr ""
+
+#: DB:link_type/description:285
+msgid "This is used to link a recording to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:8
+msgid ""
+"This is used to link a release group containing a DJ-mixed version of a release to the release "
+"group containing the source release. See DJ-mixer for "
+"crediting the person who created the DJ-mix."
+msgstr ""
+
+#: DB:link_type/description:284
+msgid ""
+"This is used to link a release group to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:308
+msgid ""
+"This is used to link a release to its corresponding page in the "
+"SecondHandSongs database."
+msgstr ""
+
+#: DB:link_type/description:755
+msgid "This is used to link a release to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:747
+msgid "This is used to link a series to the equivalent entry in Discogs."
+msgstr ""
+
+#: DB:link_type/description:280
+msgid ""
+"This is used to link a work to its corresponding page in the SecondHandSongs "
+"database."
+msgstr ""
+
+#: DB:link_type/description:286
+msgid "This is used to link a work to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:307
+msgid ""
+"This is used to link an artist to its corresponding page in the "
+"SecondHandSongs database."
+msgstr ""
+
+#: DB:link_type/description:283
+msgid "This is used to link an artist to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:714
+msgid "This is used to link an artist to its primary concert venue."
+msgstr ""
+
+#: DB:link_type/description:180
+msgid "This is used to link the Discogs page for this artist."
+msgstr ""
+
+#: DB:link_type/description:1089
+msgid "This is used to link the Discogs page for this genre/style."
+msgstr ""
+
+#: DB:link_type/description:217
+msgid "This is used to link the Discogs page for this label."
+msgstr ""
+
+#: DB:link_type/description:90
+msgid "This is used to link the Discogs page for this release group."
+msgstr ""
+
+#: DB:link_type/description:76
+msgid "This is used to link the Discogs page for this release."
+msgstr ""
+
+#: DB:link_type/description:971
+msgid "This is used to link the Discogs page for this work."
+msgstr ""
+
+#: DB:link_type/description:176
+msgid ""
+"This is used to link to a page where the artist's releases can be purchased "
+"for download."
+msgstr ""
+
+#: DB:link_type/description:959
+msgid ""
+"This is used to link to a page where the label's releases can be purchased "
+"for download."
+msgstr ""
+
+#: DB:link_type/description:254
+msgid ""
+"This is used to link to a page where the recording can be purchased for "
+"download."
+msgstr ""
+
+#: DB:link_type/description:74
+msgid ""
+"This is used to link to a page where the release can be purchased for "
+"download."
+msgstr ""
+
+#: DB:link_type/description:278
+msgid "This is used to link works to their recordings."
+msgstr ""
+
+#: DB:link_type/description:102
+msgid ""
+"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
+"credits can't be used."
+msgstr ""
+
+#: DB:link_type/description:1047
+msgid ""
+"This is used when a work includes a brief quotation of the lyrics of another "
+"work. In most cases the quotation is uncredited, although this is not a "
+"requirement. For a work that includes significantly more of another than "
+"just a brief quotation, consider using “based on” instead."
+msgstr ""
+
+#: DB:link_type/description:1046
+msgid ""
+"This is used when a work includes a brief quotation of the music of another "
+"work. In most cases the quotation is uncredited, although this is not a "
+"requirement. For a work that includes significantly more of another than "
+"just a brief quotation, consider using “based on” instead."
+msgstr ""
+
+#: DB:link_type/description:1169
+msgid ""
+"This link points to a page for a particular release group within a "
+"discography for an artist or label. If the page is for a particular release, "
+"prefer the release level relationship."
+msgstr ""
+
+#: DB:link_type/description:288
+msgid ""
+"This link points to a page for a particular release within a discography for "
+"an artist or label."
+msgstr ""
+
+#: DB:link_type/description:921
+msgid ""
+"This link points to a page for a particular work within a work list for an "
+"artist."
+msgstr ""
+
+#: DB:link_type/description:43 DB:link_type/description:155
+msgid ""
+"This links a DJ-"
+"mix to the artist who mixed it."
+msgstr ""
+
+#: DB:link_type/description:9
+msgid ""
+"This links a remix release group "
+"to the source release group and is used to indicate that the release group "
+"includes remixed versions of all (or most of) the tracks in the other "
+"release group."
+msgstr ""
+
+#: DB:link_type/description:230
+msgid ""
+"This links a remixed recording to "
+"the source recording."
+msgstr ""
+
+#: DB:link_type/description:77
+msgid ""
+"This links a MusicBrainz release to the equivalent entry at Amazon and will "
+"often provide cover art if there is no cover art in the Cover Art Archive."
+msgstr ""
+
+#: DB:link_type/description:888
+msgid ""
+"This links a concert tour with a release group (generally an album) the tour "
+"is connected with."
+msgstr ""
+
+#: DB:link_type/description:1092
+msgid "This links a genre to its page at Bandcamp."
+msgstr ""
+
+#: DB:link_type/description:1095
+msgid "This links a genre to its subgenres."
+msgstr ""
+
+#: DB:link_type/description:855
+msgid ""
+"This links a group (often an orchestra) to a composer who has a composer-in-"
+"residence position with the group."
+msgstr ""
+
+#: DB:link_type/description:304
+msgid ""
+"This links a label to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:214
+msgid "This links a label to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:899
+msgid ""
+"This links a label to a site where the label can receive donations/"
+"patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:1194
+msgid ""
+"This links a label to a site where tickets can be purchased for their events."
+msgstr ""
+
+#: DB:link_type/description:1130
+msgid "This links a label to its page at Apple Music."
+msgstr ""
+
+#: DB:link_type/description:719
+msgid "This links a label to its page at Bandcamp."
+msgstr ""
+
+#: DB:link_type/description:313
+msgid ""
+"This links a label to its page in IMDb."
+msgstr ""
+
+#: DB:link_type/description:290
+msgid "This links a label to its profile at SoundCloud."
+msgstr ""
+
+#: DB:link_type/description:225
+msgid "This links a label to the equivalent entry at YouTube."
+msgstr ""
+
+#: DB:link_type/description:903
+msgid ""
+"This links a label to their profile at a crowdfunding site like Kickstarter "
+"or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:937
+msgid ""
+"This links a place (often a concert hall or educational institution) to a "
+"composer who has a composer-in-residence position with it."
+msgstr ""
+
+#: DB:link_type/description:495
+msgid ""
+"This links a place to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:1191
+msgid "This links a place to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:900
+msgid ""
+"This links a place to a site where the place or the organisation behind it "
+"can receive donations/patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:1195
+msgid ""
+"This links a place to a site where tickets can be purchased for its events."
+msgstr ""
+
+#: DB:link_type/description:940
+msgid "This links a place to its profile at SoundCloud."
+msgstr ""
+
+#: DB:link_type/description:909
+msgid ""
+"This links a place to its profile at a crowdfunding site like Kickstarter or "
+"Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:836
+msgid "This links a postponed event to the later rescheduled event."
+msgstr ""
+
+#: DB:link_type/description:302
+msgid "This links a recording to a license under which it is available."
+msgstr ""
+
+#: DB:link_type/description:255
+msgid ""
+"This links a recording to a page where it can be legally downloaded for free."
+msgstr ""
+
+#: DB:link_type/description:1177
+msgid ""
+"This links a recording to another containing official commentary for it "
+"(usually the artist talking about it)."
+msgstr ""
+
+#: DB:link_type/description:132
+msgid ""
+"This links a recording to the artist who did the programming for electronic "
+"instruments used on the recording. In the most cases, the 'electronic "
+"instrument' is either a synthesizer or a drum machine."
+msgstr ""
+
+#: DB:link_type/description:726
+msgid "This links a recording to the balance engineer who engineered it."
+msgstr ""
+
+#: DB:link_type/description:153
+msgid ""
+"This links a recording to the person who remixed it by taking one or more "
+"other tracks, substantially altering them and mixing them together with "
+"other material. Note that this includes the artist who created a mash-up or "
+"used samples as well."
+msgstr ""
+
+#: DB:link_type/description:905
+msgid ""
+"This links a recording to the relevant crowdfunding project at a "
+"crowdfunding site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:1190
+msgid "This links a release group to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:970
+msgid ""
+"This links a release group to a label, to indicate that it is a tribute "
+"album. Tribute albums often have a title in the form \"A Tribute to Label\" "
+"or \"A Tribute to Artists from Label\", and they consist of covers of songs "
+"put out by the label, played by other (sometimes very unknown) artists, to "
+"honor the label. Often they are various artist compilations, but a single "
+"artist can perform the entire tribute album."
+msgstr ""
+
+#: DB:link_type/description:868
+msgid ""
+"This links a release group to an artist it is dedicated to. This is for "
+"dedications such as \"This album is dedicated to the memory of Artist\" - "
+"for tribute albums consisting of covers of the artist, use the tribute relationship."
+msgstr ""
+
+#: DB:link_type/description:65
+msgid ""
+"This links a release group to an artist, to indicate that it is a tribute "
+"album. Tribute albums often have a title in the form \"A Tribute to Artist"
+"\", and they consist of covers of songs by the target artist, played by "
+"other (sometimes very unknown) bands, to honor the target artist. Often they "
+"are various artist compilations, but a single artist can perform the entire "
+"tribute album."
+msgstr ""
+
+#: DB:link_type/description:1176
+msgid ""
+"This links a release group to another containing official commentary for it "
+"(usually the artist talking about each specific track in an album)."
+msgstr ""
+
+#: DB:link_type/description:907
+msgid ""
+"This links a release group to the relevant crowdfunding project at a "
+"crowdfunding site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:1009
+msgid ""
+"This links a release that was withdrawn (usually because of having some "
+"defect, but sometimes just to change the artist credits) to a new release "
+"put out to replaced it."
+msgstr ""
+
+#: DB:link_type/description:301
+msgid "This links a release to a license under which it is available."
+msgstr ""
+
+#: DB:link_type/description:75
+msgid ""
+"This links a release to a page where it can be legally downloaded for free."
+msgstr ""
+
+#: DB:link_type/description:37
+msgid ""
+"This links a release to the artist who did the programming for electronic "
+"instruments used on the release. In the most cases, the 'electronic "
+"instrument' is either a synthesizer or a drum machine."
+msgstr ""
+
+#: DB:link_type/description:727
+msgid "This links a release to the balance engineer who engineered it."
+msgstr ""
+
+#: DB:link_type/description:47
+msgid ""
+"This links a release to the person who remixed it by taking one or more "
+"other tracks, substantially altering them and mixing them together with "
+"other material. Note that this includes the artist who created a mash-up or "
+"used samples as well."
+msgstr ""
+
+#: DB:link_type/description:906
+msgid ""
+"This links a release to the relevant crowdfunding project at a crowdfunding "
+"site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:870
+msgid ""
+"This links a series (most commonly, but not necessarily always, a music "
+"festival) to its official page at SoundCloud."
+msgstr ""
+
+#: DB:link_type/description:901
+msgid ""
+"This links a series (usually, but not exclusively, a festival or concert "
+"series) to a site where the organisers/creators can receive donations/"
+"patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:805
+msgid ""
+"This links a series to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:1189
+msgid "This links a series to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:1196
+msgid ""
+"This links a series to a site where tickets can be purchased for events in "
+"it."
+msgstr ""
+
+#: DB:link_type/description:910
+msgid ""
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:97
+msgid ""
+"This links a soundtrack release group to the IMDb page for the movie, show or game of which it is a soundtrack."
+msgstr ""
+
+#: DB:link_type/description:992
+msgid ""
+"This links a soundtrack work to the VGMdb "
+"page for the movie, show or game of which it is a soundtrack. VGMdb is a "
+"community project dedicated to cataloguing the music of video games and "
+"anime."
+msgstr ""
+
+#: DB:link_type/description:843
+msgid ""
+"This links a soundtrack work to the IMDb"
+"a> page for the movie, show or game of which it is a soundtrack."
+msgstr ""
+
+#: DB:link_type/description:722
+msgid "This links a subgroup to the group from which it was created."
+msgstr ""
+
+#: DB:link_type/description:1188
+msgid "This links a work to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:939
+msgid "This links a work to a license under which it is available."
+msgstr ""
+
+#: DB:link_type/description:908
+msgid ""
+"This links a work to its project at a crowdfunding site like Kickstarter or "
+"Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:885
+msgid "This links a work with the area it was arranged in."
+msgstr ""
+
+#: DB:link_type/description:875
+msgid "This links a work with the area it was composed in."
+msgstr ""
+
+#: DB:link_type/description:881
+msgid "This links a work with the area it was revised in."
+msgstr ""
+
+#: DB:link_type/description:884
+msgid "This links a work with the area it was translated in."
+msgstr ""
+
+#: DB:link_type/description:873
+msgid "This links a work with the area it was written in."
+msgstr ""
+
+#: DB:link_type/description:879
+msgid "This links a work with the area its libretto was written in."
+msgstr ""
+
+#: DB:link_type/description:877
+msgid "This links a work with the area its lyrics were written in."
+msgstr ""
+
+#: DB:link_type/description:886
+msgid "This links a work with the place it was arranged at."
+msgstr ""
+
+#: DB:link_type/description:876
+msgid "This links a work with the place it was composed at."
+msgstr ""
+
+#: DB:link_type/description:882
+msgid "This links a work with the place it was revised at."
+msgstr ""
+
+#: DB:link_type/description:883
+msgid "This links a work with the place it was translated at."
+msgstr ""
+
+#: DB:link_type/description:874
+msgid "This links a work with the place it was written at."
+msgstr ""
+
+#: DB:link_type/description:880
+msgid "This links a work with the place its libretto was written at."
+msgstr ""
+
+#: DB:link_type/description:878
+msgid "This links a work with the place its lyrics were written at."
+msgstr ""
+
+#: DB:link_type/description:292
+msgid "This links an (fictional) artist to the person that voice acted it."
+msgstr ""
+
+#: DB:link_type/description:303
+msgid ""
+"This links an artist to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:172
+msgid "This links an artist to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:897
+msgid ""
+"This links an artist to a site where the artist can receive donations/"
+"patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:1193
+msgid ""
+"This links an artist to a site where tickets can be purchased for their "
+"events."
+msgstr ""
+
+#: DB:link_type/description:707
+msgid ""
+"This links an artist to an URL containing an interview with that artist."
+msgstr ""
+
+#: DB:link_type/description:182
+msgid "This links an artist to an online biography for that artist."
+msgstr ""
+
+#: DB:link_type/description:184
+msgid ""
+"This links an artist to an online discography of their works. The "
+"discography should provide a summary of most, if not all, releases by the "
+"artist, and be as comprehensive as possible."
+msgstr ""
+
+#: DB:link_type/description:1080
+msgid "This links an artist to its channel at YouTube Music."
+msgstr ""
+
+#: DB:link_type/description:1131
+msgid "This links an artist to its page at Apple Music."
+msgstr ""
+
+#: DB:link_type/description:718
+msgid "This links an artist to its page at Bandcamp."
+msgstr ""
+
+#: DB:link_type/description:919
+msgid "This links an artist to its page at CD Baby."
+msgstr ""
+
+#: DB:link_type/description:178
+msgid ""
+"This links an artist to its page in IMDb"
+"a>."
+msgstr ""
+
+#: DB:link_type/description:754
+msgid ""
+"This links an artist to its page in IMSLP"
+"a>."
+msgstr ""
+
+#: DB:link_type/description:981
+msgid ""
+"This links an artist to its page in CPDL"
+"a>."
+msgstr ""
+
+#: DB:link_type/description:291
+msgid "This links an artist to its profile at SoundCloud."
+msgstr ""
+
+#: DB:link_type/description:190
+msgid ""
+"This links an artist to that artist's page at BBC Music."
+msgstr ""
+
+#: DB:link_type/description:174
+msgid "This links an artist to the equivalent entry at PureVolume."
+msgstr ""
+
+#: DB:link_type/description:193
+msgid "This links an artist to the equivalent entry at YouTube."
+msgstr ""
+
+#: DB:link_type/description:902
+msgid ""
+"This links an artist to their profile at a crowdfunding site like "
+"Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:108
+msgid ""
+"This links an artist's performance name (a stage name or alias) with their "
+"legal name (or a more well know performance name if the legal name is "
+"unknown)."
+msgstr ""
+
+#: DB:link_type/description:309
+msgid ""
+"This links an edit to its original recording. An \"edit\", for this "
+"relationship, can be a radio edit (which involves streamlining a longer "
+"track to around the 3 minute mark in order to make it suitable for radio "
+"play), or a shortened, censored, or otherwise edited version of the same "
+"material. The person who edited the recording can be linked using the editor "
+"relationship type."
+msgstr ""
+
+#: DB:link_type/description:289
+msgid ""
+"This links an entity to the appropriate listing in the Songfacts database, a "
+"user contributed database concerned with the stories behind the songs."
+msgstr ""
+
+#: DB:link_type/description:1086 DB:link_type/description:753
+#: DB:link_type/description:730 DB:link_type/description:82
+#: DB:link_type/description:273 DB:link_type/description:222
+#: DB:link_type/description:188 DB:link_type/description:306
+#: DB:link_type/description:561 DB:link_type/description:746
+#: DB:link_type/description:96 DB:link_type/description:803
+msgid ""
+"This links an entity to the equivalent entry in another database. Please "
+"respect the whitelist."
+msgstr ""
+
+#: DB:link_type/description:804
+msgid ""
+"This links an event to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:898
+msgid ""
+"This links an event to a site where the event organisers can receive "
+"donations/patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:1197
+msgid "This links an event to a site where tickets can be purchased for it."
+msgstr ""
+
+#: DB:link_type/description:904
+msgid ""
+"This links an event to the relevant crowdfunding project at a crowdfunding "
+"site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:737
+msgid "This links an instrument to an older instrument that it was based on."
+msgstr ""
+
+#: DB:link_type/description:736
+msgid "This links an instrument to more specific subtypes of it."
+msgstr ""
+
+#: DB:link_type/description:111
+msgid "This links artists who were married."
+msgstr ""
+
+#: DB:link_type/description:315
+msgid ""
+"This links different revisions of the same work."
+msgstr ""
+
+#: DB:link_type/description:212
+msgid "This links to a catalog or list of records published by the label."
+msgstr ""
+
+#: DB:link_type/description:211
+msgid ""
+"This links to a site describing relevant details about a label's history."
+msgstr ""
+
+#: DB:link_type/description:984
+msgid ""
+"This links to a site describing relevant details about a place's history."
+msgstr ""
+
+#: DB:link_type/description:350
+msgid ""
+"This links two works where one work "
+"is an arrangement of the other."
+msgstr ""
+
+#: DB:link_type/description:316
+msgid ""
+"This links two works where one work "
+"is an orchestration of the other."
+msgstr ""
+
+#: DB:link_type/description:314
+msgid ""
+"This links two works, where the "
+"second work is based on music or text from the first, but isn't directly a "
+"revision or an arrangement of it."
+msgstr ""
+
+#: DB:link_type/description:6
+msgid ""
+"This links two releases, where one is a remaster of the other. This is usually done "
+"to improve the audio quality or to adjust for more modern playback "
+"equipment. The process generally doesn't involve changing the music in any "
+"artistically important way. It may, however, result in recordings that "
+"differ in length by a few seconds."
+msgstr ""
+
+#: DB:link_type/description:110
+msgid "This links two siblings (brothers or sisters)."
+msgstr ""
+
+#: DB:link_type/description:241
+msgid ""
+"This links two versions of a work."
+msgstr ""
+
+#: DB:link_type/description:310
+msgid ""
+"This points to the VIAF page for this artist. "
+"VIAF is an international project to make a common authority file available "
+"to libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)"
+msgstr ""
+
+#: DB:link_type/description:311
+msgid ""
+"This points to the VIAF page for this label. "
+"VIAF is an international project to make a common authority file available "
+"to libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)"
+msgstr ""
+
+#: DB:link_type/description:920
+msgid ""
+"This points to the VIAF page for this place. "
+"VIAF is an international project to make a common authority file available "
+"to libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)"
+msgstr ""
+
+#: DB:link_type/description:1001
+msgid ""
+"This points to the VIAF page for this series. "
+"VIAF is an international project to make a common authority file available "
+"to libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)"
+msgstr ""
+
+#: DB:link_type/description:312
+msgid ""
+"This points to the VIAF page for this work. VIAF "
+"is an international project to make a common authority file available to "
+"libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)\n"
+"
\n"
+"Note: Works in VIAF aren't very detailed. Only add links to "
+"MusicBrainz works if you're absolutely sure it's the same work."
+msgstr ""
+
+#: DB:link_type/description:197
+msgid ""
+"This relationship describes a URL where lyrics for the artist can be found. "
+"Only sites on the whitelist are permitted."
+msgstr ""
+
+#: DB:link_type/description:982
+msgid ""
+"This relationship describes a URL where lyrics for the label (most often as "
+"a publisher) can be found. Only sites on the whitelist are permitted."
+msgstr ""
+
+#: DB:link_type/description:93
+msgid ""
+"This relationship describes a URL where lyrics for the release group can be "
+"found. Only sites on the whitelist are permitted."
+msgstr ""
+
+#: DB:link_type/description:271
+msgid ""
+"This relationship describes a URL where lyrics for the work can be found. "
+"Only sites on the whitelist are permitted."
+msgstr ""
+
+#: DB:link_type/description:929
+msgid ""
+"This relationship indicates an artist credited as the booklet editor for a "
+"release."
+msgstr ""
+
+#: DB:link_type/description:893
+msgid ""
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
+msgstr ""
+
+#: DB:link_type/description:847
+msgid ""
+"This relationship indicates that a person was another's teacher/student."
+msgstr ""
+
+#: DB:link_type/description:869
+msgid ""
+"This relationship indicates the artist is the phonographic "
+"copyright holder for this recording, usually indicated with a ℗ symbol."
+msgstr ""
+
+#: DB:link_type/description:710
+msgid ""
+"This relationship indicates the artist is the phonographic "
+"copyright holder for this release, usually indicated with a ℗ symbol."
+msgstr ""
+
+#: DB:link_type/description:709
+msgid ""
+"This relationship indicates the artist is the copyright holder for this "
+"release, usually indicated with a © symbol."
+msgstr ""
+
+#: DB:link_type/description:1010
+msgid ""
+"This relationship indicates the artist that was the licensor of this release."
+msgstr ""
+
+#: DB:link_type/description:833
+msgid ""
+"This relationship indicates the company that was the licensee of this "
+"release (that is, received a license for it from other company)."
+msgstr ""
+
+#: DB:link_type/description:712
+msgid ""
+"This relationship indicates the company that was the licensor of this "
+"release."
+msgstr ""
+
+#: DB:link_type/description:867
+msgid ""
+"This relationship indicates the label is the phonographic copyright holder "
+"for this recording, usually indicated with a ℗ symbol."
+msgstr ""
+
+#: DB:link_type/description:711
+msgid ""
+"This relationship indicates the label is the phonographic copyright holder "
+"for this release, usually indicated with a ℗ symbol."
+msgstr ""
+
+#: DB:link_type/description:708
+msgid ""
+"This relationship indicates the label is the copyright holder for this "
+"release, usually indicated with a © symbol."
+msgstr ""
+
+#: DB:link_type/description:83
+msgid ""
+"This relationship is deprecated, since it's almost always misused. To "
+"specify that a recording on this release contains samples taken from a "
+"movie, show or game, use the recording - URL relationship. If you don't know "
+"what recording(s) use the samples, please just indicate it in the "
+"annotation.\n"
+"
\n"
+"To say that the release is a soundtrack, please use the IMDB relationship type "
+"for release groups."
+msgstr ""
+
+#: DB:link_type/description:206
+msgid ""
+"This relationship is deprecated. To indicate work publishers, add label-work "
+"relationships. To indicate (P) holders, use the phonographic copyright "
+"relationship."
+msgstr ""
+
+#: DB:link_type/description:751
+msgid ""
+"This relationship is used to link a catalogue work series to a person who "
+"was involved in compiling it."
+msgstr ""
+
+#: DB:link_type/description:750
+msgid ""
+"This relationship is used to link a catalogue work series to a person whose "
+"work it catalogues."
+msgstr ""
+
+#: DB:link_type/description:54
+msgid ""
+"This relationship is used to link a release to the artist responsible for "
+"writing the music and/or the words (lyrics, libretto, etc.), when no more "
+"specific information is available. If possible, the more specific composer, "
+"lyricist and/or librettist types should be used, rather than this "
+"relationship type."
+msgstr ""
+
+#: DB:link_type/description:167
+msgid ""
+"This relationship is used to link a work to the artist responsible for "
+"writing the music and/or the words (lyrics, libretto, etc.), when no more "
+"specific information is available. If possible, the more specific composer, "
+"lyricist and/or librettist types should be used, rather than this "
+"relationship type."
+msgstr ""
+
+#: DB:link_type/description:994
+msgid ""
+"This relationship links a concert residency to the artist(s) "
+"who held the residency."
+msgstr ""
+
+#: DB:link_type/description:1165
+msgid ""
+"This relationship links a carillonneur to the place(s) (most commonly "
+"religious buildings) at which they are the resident carillonneur."
+msgstr ""
+
+#: DB:link_type/description:859
+msgid "This relationship links a concert tour to the artist(s) the tour is by."
+msgstr ""
+
+#: DB:link_type/description:926
+msgid ""
+"This relationship links a group with the institution (esp. educational "
+"institution) they're associated with."
+msgstr ""
+
+#: DB:link_type/description:924
+msgid ""
+"This relationship links a musician to the music school(s) they taught at."
+msgstr ""
+
+#: DB:link_type/description:923
+msgid ""
+"This relationship links a musician to the music school(s) they were educated "
+"at."
+msgstr ""
+
+#: DB:link_type/description:1166
+msgid "This relationship links a person to the music school(s) they directed."
+msgstr ""
+
+#: DB:link_type/description:918
+msgid ""
+"This relationship links an instrument to the company that invented or "
+"designed it."
+msgstr ""
+
+#: DB:link_type/description:896
+msgid ""
+"This relationship links an instrument to the person(s) who invented or "
+"designed it."
+msgstr ""
+
+#: DB:link_type/description:856
+msgid ""
+"This relationship links an organist to the place(s) (most commonly religious "
+"buildings) at which they are the resident organist."
+msgstr ""
+
+#: DB:link_type/description:729
+msgid ""
+"This relationship links the release of a show's episode (for example a "
+"podcast) to the show notes for this episode."
+msgstr ""
+
+#: DB:link_type/description:728
+msgid ""
+"This relationship specifies that an artist is a tribute to another specific artist/"
+"band; that is, it primarily performs covers of that artist. They may also be "
+"referred to as cover bands. Some tribute artists may name themselves, dress, "
+"and/or act similarly to the artists they pay tribute to."
+msgstr ""
+
+#: DB:link_type/description:936
+msgid ""
+"This relationship specifies that an event was held as a tribute/homage to a "
+"specific artist."
+msgstr ""
+
+#: DB:link_type/description:462
+msgid ""
+"This relationship type can be used to link a MusicBrainz place to the "
+"equivalent entry in Myspace."
+msgstr ""
+
+#: DB:link_type/description:116
+msgid ""
+"This relationship type can be used to link a label to the person(s) who "
+"founded it."
+msgstr ""
+
+#: DB:link_type/description:832
+msgid ""
+"This relationship type can be used to link a place (generally a studio or "
+"venue) to the person(s) who founded it."
+msgstr ""
+
+#: DB:link_type/description:627
+msgid "This relationship type can be used to link a place to its blog"
+msgstr ""
+
+#: DB:link_type/description:528
+msgid ""
+"This relationship type can be used to link a place to the equivalent entry "
+"in YouTube. URLs should follow the format http://www.youtube.com/user/<"
+"username>."
+msgstr ""
+
+#: DB:link_type/description:792
+msgid ""
+"This relationship type can be used to link a series to the equivalent entry "
+"in YouTube. URLs should follow the format http://www.youtube.com/user/<"
+"username>"
+msgstr ""
+
+#: DB:link_type/description:791
+msgid ""
+"This relationship type can be used to link an event to the equivalent entry "
+"in YouTube. URLs should follow the format http://www.youtube.com/user/<"
+"username>"
+msgstr ""
+
+#: DB:link_type/description:258
+msgid ""
+"This relationship type describes that the recording contains samples taken "
+"from a movie, show or game, which has an IMDB page at the given URL.\n"
+"
\n"
+"To say that the recording is part of a soundtrack, please use the IMDB relationship type "
+"for release groups."
+msgstr ""
+
+#: DB:link_type/description:236
+msgid ""
+"This relationship type is deprecated! Different remasters should "
+"be merged."
+msgstr ""
+
+#: DB:link_type/description:238
+msgid ""
+"This relationship type is deprecated! If two recordings are "
+"identical, please merge them."
+msgstr ""
+
+#: DB:link_type/description:136
+msgid ""
+"This relationship type is deprecated! Please add mastering "
+"engineers at the release level."
+msgstr ""
+
+#: DB:link_type/description:1
+msgid ""
+"This relationship type is deprecated! Please enter a "
+"release with multiple discs as a single release containing multiple discs."
+msgstr ""
+
+#: DB:link_type/description:78
+msgid ""
+"This relationship type is deprecated! Please upload covers "
+"on the cover art tab for the release and/or add an ASIN relationship.\n"
+"\n"
+"Note about CD Baby: Many CD Baby releases are also available (usually with "
+"bigger covers) on Amazon.com."
+msgstr ""
+
+#: DB:link_type/description:15
+msgid ""
+"This relationship type is used to indicate that a release group is a cover "
+"version of another release group, that is, when an artist performs a new "
+"rendition of another artist's album.
\n"
+"For individual songs, see the recording-work performance relationship type."
+msgstr ""
+
+#: DB:link_type/description:1005
+msgid ""
+"This relationship type is used to link a label to a site where music can be "
+"legally streamed for a subscription fee, such as Apple Music.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:997
+msgid ""
+"This relationship type is used to link a label to a site where music can be "
+"legally streamed for free, such as Spotify."
+msgstr ""
+
+#: DB:link_type/description:224
+msgid "This relationship type is used to link a label to its blog."
+msgstr ""
+
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
+#: DB:link_type/description:287
+msgid ""
+"This relationship type is used to link a release group to an official "
+"website created specifically for the release group."
+msgstr ""
+
+#: DB:link_type/description:980
+msgid ""
+"This relationship type is used to link a release to a site where the tracks "
+"can be legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:85
+msgid ""
+"This relationship type is used to link a release to a site where the tracks "
+"can be legally streamed for free, such as Spotify."
+msgstr ""
+
+#: DB:link_type/description:978
+msgid ""
+"This relationship type is used to link an artist to a site where music can "
+"be legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:194
+msgid ""
+"This relationship type is used to link an artist to a site where music can "
+"be legally streamed for free, such as Spotify."
+msgstr ""
+
+#: DB:link_type/description:199
+msgid "This relationship type is used to link an artist to their blog."
+msgstr ""
+
+#: DB:link_type/description:175
+msgid ""
+"This relationship type is used to link to a page where the artist's releases "
+"can be purchased for mail order."
+msgstr ""
+
+#: DB:link_type/description:960
+msgid ""
+"This relationship type is used to link to a page where the label's releases "
+"can be purchased for mail order."
+msgstr ""
+
+#: DB:link_type/description:79
+msgid ""
+"This relationship type is used to link to a page where the release can be "
+"purchased for mail order."
+msgstr ""
+
+#: DB:link_type/description:274
+msgid ""
+"This relationship type is used to link to a page where the score / sheet "
+"music for this work can be legally downloaded for free."
+msgstr ""
+
+#: DB:link_type/description:912
+msgid ""
+"This relationship type is used to link to a page where the score / sheet "
+"music for this work can be legally purchased for download."
+msgstr ""
+
+#: DB:link_type/description:913
+msgid ""
+"This relationship type is used to link to a page where the score / sheet "
+"music for this work can be legally purchased for mail order."
+msgstr ""
+
+#: DB:link_type/description:215
+msgid "This relationship type links a label to its Myspace page."
+msgstr ""
+
+#: DB:link_type/description:210
+msgid ""
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
+"cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:838
+msgid ""
+"This relationship type links a label to its corresponding page at Last.fm"
+msgstr ""
+
+#: DB:link_type/description:1013
+msgid ""
+"This relationship type links a place (usually a studio) to its corresponding "
+"page at VGMdb. VGMdb is a community "
+"project dedicated to cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:861
+msgid ""
+"This relationship type links a place to its corresponding page at "
+"Bandsintown."
+msgstr ""
+
+#: DB:link_type/description:837
+msgid ""
+"This relationship type links a place to its corresponding page at Last.fm"
+msgstr ""
+
+#: DB:link_type/description:787
+msgid ""
+"This relationship type links a place to its corresponding page at Songkick."
+msgstr ""
+
+#: DB:link_type/description:817
+msgid ""
+"This relationship type links a place to its corresponding page at setlist.fm"
+msgstr ""
+
+#: DB:link_type/description:86
+msgid ""
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
+"cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:938
+msgid ""
+"This relationship type links a series (like a festival) to its corresponding "
+"page at setlist.fm"
+msgstr ""
+
+#: DB:link_type/description:1192
+msgid ""
+"This relationship type links an artist (usually a visual artist) to their "
+"art gallery page(s), such as DeviantArt or pixiv."
+msgstr ""
+
+#: DB:link_type/description:191
+msgid ""
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
+"cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:862
+msgid ""
+"This relationship type links an artist to its corresponding page at "
+"Bandsintown."
+msgstr ""
+
+#: DB:link_type/description:840
+msgid ""
+"This relationship type links an artist to its corresponding page at Last.fm"
+msgstr ""
+
+#: DB:link_type/description:785
+msgid ""
+"This relationship type links an artist to its corresponding page at Songkick."
+msgstr ""
+
+#: DB:link_type/description:816
+msgid ""
+"This relationship type links an artist to its corresponding page at setlist."
+"fm"
+msgstr ""
+
+#: DB:link_type/description:189
+msgid "This relationship type links an artist to their Myspace page."
+msgstr ""
+
+#: DB:link_type/description:185
+msgid ""
+"This relationship type links an artist to their online community page(s). An "
+"online community is a group where any member can comment and contribute "
+"content. The artist may or may not be a member of the group. Examples "
+"include forums, LiveJournal communities and groups on Facebook, Last.fm and "
+"Flickr."
+msgstr ""
+
+#: DB:link_type/description:808
+msgid ""
+"This relationship type links an event to a promotional poster for the event."
+msgstr ""
+
+#: DB:link_type/description:788
+msgid ""
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
+"cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:860
+msgid ""
+"This relationship type links an event to its corresponding page at "
+"Bandsintown."
+msgstr ""
+
+#: DB:link_type/description:839
+msgid ""
+"This relationship type links an event to its corresponding page at Last.fm"
+msgstr ""
+
+#: DB:link_type/description:786
+msgid ""
+"This relationship type links an event to its corresponding page at Songkick."
+msgstr ""
+
+#: DB:link_type/description:811
+msgid ""
+"This relationship type links an event to its corresponding page at setlist.fm"
+msgstr ""
+
+#: DB:link_type/description:1088
+msgid "This relationship type links genres to the areas they originate from."
+msgstr ""
+
+#: DB:link_type/description:1090
+msgid ""
+"This relationship type links instruments to genres they are commonly used in."
+msgstr ""
+
+#: DB:link_type/description:752
+msgid ""
+"This relationship type links instruments to the areas they originate from."
+msgstr ""
+
+#: DB:link_attribute_type/description:596
+msgid ""
+"This should be used when an artist is credited in liner notes or a similar "
+"source as performing a solo part."
+msgstr ""
+
+#: DB:link_attribute_type/description:1150
+msgid ""
+"This specifies the credited task(s) for a relationship that can be credited "
+"in many different ways, such as \"producer\", or one that is otherwise "
+"generic, such as \"miscellaneous support\"."
+msgstr ""
+
+#: DB:link_attribute_type/description:568
+msgid "This specifies the medium the relationship applies to."
+msgstr ""
+
+#: DB:link_attribute_type/description:617
+msgid ""
+"This title indicates that a conductor has at least partially retired, and no "
+"longer plays an active role with the group."
+msgstr ""
+
+#: DB:link_attribute_type/description:526
+msgid ""
+"This typically indicates someone who is either a first-timer, or less "
+"experienced, and who is working under the direction of someone who is more "
+"experienced."
+msgstr ""
+
+#: DB:link_attribute_type/description:527
+msgid ""
+"This typically indicates someone who is less experienced and who is working "
+"under the direction of someone who is more experienced."
+msgstr ""
+
+#: DB:link_attribute_type/description:477
+msgid ""
+"Transliterated track listings don't change the language, just the script or "
+"spelling."
+msgstr ""
+
+#: DB:link_attribute_type/description:834
+msgid ""
+"Treble or boy soprano is a young male singer with an unchanged voice in the "
+"soprano range"
+msgstr ""
+
+#: DB:link_attribute_type/description:1032
+msgid ""
+"Use this for operas and similar works that are separated in numbers, to specify what "
+"parts are numbers (as opposed to spoken dialog or other non-numbered parts)."
+msgstr ""
+
+#: DB:link_attribute_type/description:424
+msgid ""
+"Use this only for cases when someone is credited as co-[role] (co-producer, "
+"co-engineer, etc.) - which generally has a specific meaning that depends on "
+"the specific activity but is different from just \"there were several people "
+"collaborating\"."
+msgstr ""
+
+#: DB:link_type/description:949
+msgid ""
+"Use this relationship for credits like \"Recording was arranged by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:946
+msgid ""
+"Use this relationship for credits like \"Recording was mixed by X for Label\""
+msgstr ""
+
+#: DB:link_type/description:950
+msgid ""
+"Use this relationship for credits like \"Recording was produced by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:1178
+msgid ""
+"Use this relationship for credits like \"Recording was remixed by X for Label"
+"\""
+msgstr ""
+
+#: DB:link_type/description:948
+msgid ""
+"Use this relationship for credits like \"Release was arranged by X for Label"
+"\""
+msgstr ""
+
+#: DB:link_type/description:952
+msgid ""
+"Use this relationship for credits like \"Release was manufactured by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:1183
+msgid ""
+"Use this relationship for credits like \"Release was mastered by X for Label"
+"\""
+msgstr ""
+
+#: DB:link_type/description:947
+msgid ""
+"Use this relationship for credits like \"Release was mixed by X for Label\""
+msgstr ""
+
+#: DB:link_type/description:951
+msgid ""
+"Use this relationship for credits like \"Release was produced by X for Label"
+"\""
+msgstr ""
+
+#: DB:link_attribute_type/description:1353
+msgid ""
+"Use this to indicate that the mastering relationship is specifically for a "
+"pre-master"
+msgstr ""
+
+#: DB:link_attribute_type/description:952
+msgid ""
+"Use this to indicate that the mastering relationship is specifically for a "
+"remaster."
+msgstr ""
+
+#: DB:link_attribute_type/description:1033
+msgid ""
+"Use this to indicate the parent work is not intended to be performed as a "
+"whole, but is just a grouping of pieces or works that can be performed "
+"individually (collections of songs, several sonatas or concertos published "
+"as a set, books of piano pieces, etc.)"
+msgstr ""
+
+#: DB:link_attribute_type/description:1030
+msgid ""
+"Use this to mark acts of an opera (as opposed to other parts that are not "
+"acts)"
+msgstr ""
+
+#: DB:link_attribute_type/description:1079
+msgid ""
+"Use this to mark that a tour was for the anniversary (rather than the "
+"launch) of a release group."
+msgstr ""
+
+#: DB:link_attribute_type/description:1031
+msgid ""
+"Use this when the parent work consists of several parts which are generally "
+"meant to be performed one after another in a particular order (rather than "
+"in any order, or multiple times, or in arbitrary selections rather than as a "
+"whole)."
+msgstr ""
+
+#: DB:link_type/link_phrase:86 DB:link_type/link_phrase:191
+#: DB:link_type/link_phrase:210 DB:link_type/link_phrase:788
+#: DB:link_type/link_phrase:1013 DB:link_type/reverse_link_phrase:992
+msgid "VGMdb"
+msgstr ""
+
+#: DB:link_type/link_phrase:992 DB:link_type/reverse_link_phrase:86
+#: DB:link_type/reverse_link_phrase:191 DB:link_type/reverse_link_phrase:210
+#: DB:link_type/reverse_link_phrase:788 DB:link_type/reverse_link_phrase:1013
+msgid "VGMdb page for"
+msgstr ""
+
+#: DB:link_type/name:311 DB:link_type/name:310 DB:link_type/name:312
+#: DB:link_type/name:920 DB:link_type/name:1001
+msgid "VIAF"
+msgstr ""
+
+#: DB:link_type/link_phrase:311 DB:link_type/link_phrase:310
+#: DB:link_type/link_phrase:920 DB:link_type/link_phrase:1001
+#: DB:link_type/reverse_link_phrase:312
+msgid "VIAF ID"
+msgstr ""
+
+#: DB:link_type/link_phrase:312 DB:link_type/reverse_link_phrase:311
+#: DB:link_type/reverse_link_phrase:310 DB:link_type/reverse_link_phrase:920
+#: DB:link_type/reverse_link_phrase:1001
+msgid "VIAF ID for"
+msgstr ""
+
+#: DB:link_type/name:1163 DB:link_type/reverse_link_phrase:1163
+msgid "VJ"
+msgstr ""
+
+#: DB:link_type/link_phrase:1163
+msgid "VJ at"
+msgstr ""
+
+#: DB:link_attribute_type/description:1151
+msgid "Whistling (with mouth, not a whistle)"
+msgstr ""
+
+#: DB:link_type/link_phrase:1087 DB:link_type/link_phrase:353
+#: DB:link_type/link_phrase:749 DB:link_type/link_phrase:594
+#: DB:link_type/link_phrase:354 DB:link_type/link_phrase:790
+#: DB:link_type/link_phrase:352 DB:link_type/link_phrase:733
+#: DB:link_type/link_phrase:358 DB:link_type/reverse_link_phrase:351
+msgid "Wikidata"
+msgstr ""
+
+#: DB:link_type/link_phrase:351 DB:link_type/reverse_link_phrase:1087
+#: DB:link_type/reverse_link_phrase:353 DB:link_type/reverse_link_phrase:749
+#: DB:link_type/reverse_link_phrase:594 DB:link_type/reverse_link_phrase:354
+#: DB:link_type/reverse_link_phrase:790 DB:link_type/reverse_link_phrase:352
+#: DB:link_type/reverse_link_phrase:733 DB:link_type/reverse_link_phrase:358
+msgid "Wikidata page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:179 DB:link_type/link_phrase:595
+#: DB:link_type/link_phrase:355 DB:link_type/link_phrase:744
+#: DB:link_type/link_phrase:216 DB:link_type/link_phrase:731
+#: DB:link_type/link_phrase:89 DB:link_type/link_phrase:789
+#: DB:link_type/reverse_link_phrase:279
+msgid "Wikipedia"
+msgstr ""
+
+#: DB:link_type/link_phrase:279 DB:link_type/reverse_link_phrase:179
+#: DB:link_type/reverse_link_phrase:595 DB:link_type/reverse_link_phrase:355
+#: DB:link_type/reverse_link_phrase:744 DB:link_type/reverse_link_phrase:216
+#: DB:link_type/reverse_link_phrase:731 DB:link_type/reverse_link_phrase:89
+#: DB:link_type/reverse_link_phrase:789
+msgid "Wikipedia page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1080
+msgid "YouTube Music"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1080
+msgid "YouTube Music channel for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:791 DB:link_type/reverse_link_phrase:792
+#: DB:link_type/reverse_link_phrase:193 DB:link_type/reverse_link_phrase:225
+#: DB:link_type/reverse_link_phrase:528
+msgid "YouTube channel for"
+msgstr ""
+
+#: DB:link_type/link_phrase:791 DB:link_type/link_phrase:792
+#: DB:link_type/link_phrase:193 DB:link_type/link_phrase:225
+#: DB:link_type/link_phrase:528
+msgid "YouTube channels"
+msgstr ""
+
+#: DB:link_attribute_type/name:1345
+msgid "accompanying"
+msgstr ""
+
+#: DB:link_attribute_type/name:1030
+msgid "act"
+msgstr ""
+
+#: DB:link_attribute_type/name:1
+msgid "additional"
+msgstr ""
+
+#: DB:link_type/name:755 DB:link_type/name:284 DB:link_type/name:283
+#: DB:link_type/name:285 DB:link_type/name:286 DB:link_type/name:1093
+msgid "allmusic"
+msgstr ""
+
+#: DB:link_attribute_type/description:5 DB:link_attribute_type/name:5
+msgid "alto vocals"
+msgstr ""
+
+#: DB:link_type/name:77
+msgid "amazon asin"
+msgstr ""
+
+#: DB:link_attribute_type/name:1080
+msgid "amount"
+msgstr ""
+
+#: DB:link_attribute_type/name:1079
+msgid "anniversary"
+msgstr ""
+
+#: DB:link_type/link_phrase:357 DB:link_type/name:357
+msgid "anthem"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:357
+msgid "anthem of"
+msgstr ""
+
+#: DB:link_type/link_phrase:858 DB:link_type/long_link_phrase:858
+msgid "appears on video"
+msgstr ""
+
+#: DB:link_type/name:1131 DB:link_type/name:1130
+msgid "apple music"
+msgstr ""
+
+#: DB:link_type/name:866 DB:link_type/name:865 DB:link_type/name:886
+#: DB:link_type/reverse_link_phrase:866 DB:link_type/reverse_link_phrase:865
+msgid "arranged at"
+msgstr ""
+
+#: DB:link_type/name:948 DB:link_type/name:949
+#: DB:link_type/reverse_link_phrase:948 DB:link_type/reverse_link_phrase:949
+msgid "arranged for"
+msgstr ""
+
+#: DB:link_type/name:864 DB:link_type/name:863 DB:link_type/name:885
+#: DB:link_type/reverse_link_phrase:864 DB:link_type/reverse_link_phrase:863
+msgid "arranged in"
+msgstr ""
+
+#: DB:link_type/name:350
+msgid "arrangement"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:350
+msgid "arrangement of"
+msgstr ""
+
+#: DB:link_type/link_phrase:350
+msgid "arrangements"
+msgstr ""
+
+#: DB:link_type/name:295 DB:link_type/name:297 DB:link_type/name:293
+msgid "arranger"
+msgstr ""
+
+#: DB:link_attribute_type/name:1347
+msgid "arranging"
+msgstr ""
+
+#: DB:link_type/link_phrase:864 DB:link_type/link_phrase:863
+#: DB:link_type/link_phrase:866 DB:link_type/link_phrase:865
+msgid "arranging location for"
+msgstr ""
+
+#: DB:link_type/name:137 DB:link_type/name:1174 DB:link_type/name:18
+msgid "art direction"
+msgstr ""
+
+#: DB:link_type/link_phrase:1192
+msgid "art galleries"
+msgstr ""
+
+#: DB:link_type/name:1192
+msgid "art gallery"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1192
+msgid "art gallery for"
+msgstr ""
+
+#: DB:link_type/link_phrase:135 DB:link_type/link_phrase:62
+#: DB:link_type/reverse_link_phrase:135 DB:link_type/reverse_link_phrase:62
+msgid "artist & repertoire support"
+msgstr ""
+
+#: DB:link_attribute_type/name:1355
+msgid "artist diploma"
+msgstr ""
+
+#: DB:link_type/name:1079
+msgid "artist rename"
+msgstr ""
+
+#: DB:link_type/name:965 DB:link_type/reverse_link_phrase:965
+msgid "artistic director"
+msgstr ""
+
+#: DB:link_type/link_phrase:965
+msgid "artistic director for"
+msgstr ""
+
+#: DB:link_type/name:135 DB:link_type/name:62
+msgid "artists and repertoire"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1081
+msgid "artists and repertoire persons"
+msgstr ""
+
+#: DB:link_type/link_phrase:1081 DB:link_type/name:1081
+msgid "artists and repertoire position"
+msgstr ""
+
+#: DB:link_type/name:993 DB:link_type/name:1170
+msgid "artwork"
+msgstr ""
+
+#: DB:link_attribute_type/name:526
+msgid "assistant"
+msgstr ""
+
+#: DB:link_attribute_type/name:527
+msgid "associate"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:926
+msgid "associated groups"
+msgstr ""
+
+#: DB:link_type/name:1090
+msgid "associated instrument"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:11
+msgid "associated singles/EPs"
+msgstr ""
+
+#: DB:link_type/link_phrase:926 DB:link_type/name:926
+msgid "associated with"
+msgstr ""
+
+#: DB:link_type/name:140 DB:link_type/name:31
+msgid "audio"
+msgstr ""
+
+#: DB:link_type/name:1186 DB:link_type/name:1187
+msgid "audio director"
+msgstr ""
+
+#: DB:link_type/name:795 DB:link_type/reverse_link_phrase:795
+msgid "available at"
+msgstr ""
+
+#: DB:link_type/link_phrase:795
+msgid "available releases"
+msgstr ""
+
+#: DB:link_type/link_phrase:1094 DB:link_type/name:1094
+msgid "award ceremony"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1094
+msgid "award ceremony for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1137
+msgid "bachelor’s degree"
+msgstr ""
+
+#: DB:link_attribute_type/description:12 DB:link_attribute_type/name:12
+msgid "background vocals"
+msgstr ""
+
+#: DB:link_type/name:727 DB:link_type/name:726
+msgid "balance"
+msgstr ""
+
+#: DB:link_type/name:1092 DB:link_type/name:718 DB:link_type/name:719
+msgid "bandcamp"
+msgstr ""
+
+#: DB:link_type/name:861 DB:link_type/name:862 DB:link_type/name:860
+msgid "bandsintown"
+msgstr ""
+
+#: DB:link_attribute_type/description:6 DB:link_attribute_type/name:6
+msgid "baritone vocals"
+msgstr ""
+
+#: DB:link_type/name:314
+msgid "based on"
+msgstr ""
+
+#: DB:link_attribute_type/description:7 DB:link_attribute_type/name:7
+msgid "bass vocals"
+msgstr ""
+
+#: DB:link_attribute_type/description:231 DB:link_attribute_type/name:231
+msgid "bass-baritone vocals"
+msgstr ""
+
+#: DB:link_type/link_phrase:182
+msgid "biographies"
+msgstr ""
+
+#: DB:link_type/name:182
+msgid "biography"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:182
+msgid "biography of"
+msgstr ""
+
+#: DB:link_type/name:224 DB:link_type/name:199 DB:link_type/name:627
+msgid "blog"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:224 DB:link_type/reverse_link_phrase:199
+#: DB:link_type/reverse_link_phrase:627
+msgid "blog of"
+msgstr ""
+
+#: DB:link_type/link_phrase:224 DB:link_type/link_phrase:199
+#: DB:link_type/link_phrase:627
+msgid "blogs"
+msgstr ""
+
+#: DB:link_attribute_type/name:516
+msgid "bonus"
+msgstr ""
+
+#: DB:link_type/link_phrase:23 DB:link_type/link_phrase:134
+#: DB:link_type/name:23 DB:link_type/name:134
+#: DB:link_type/reverse_link_phrase:23 DB:link_type/reverse_link_phrase:134
+msgid "booking"
+msgstr ""
+
+#: DB:link_type/name:929 DB:link_type/reverse_link_phrase:929
+msgid "booklet editor"
+msgstr ""
+
+#: DB:link_type/link_phrase:929
+msgid "booklet editor for"
+msgstr ""
+
+#: DB:link_type/link_phrase:66 DB:link_type/link_phrase:205
+#: DB:link_type/name:205 DB:link_type/reverse_link_phrase:205
+#: DB:link_type/long_link_phrase:205
+msgid "business association"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:66
+msgid "business association with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:75 DB:link_type/long_link_phrase:255
+msgid "can be downloaded for free at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:254 DB:link_type/long_link_phrase:74
+msgid "can be purchased for download at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:79
+msgid "can be purchased for mail-order at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
+msgid "can be streamed at"
+msgstr ""
+
+#: DB:link_attribute_type/name:921
+msgid "cancelled"
+msgstr ""
+
+#: DB:link_type/name:1165
+msgid "carillonneur"
+msgstr ""
+
+#: DB:link_type/link_phrase:212 DB:link_type/reverse_link_phrase:212
+msgid "catalog of records"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:201
+msgid "catalog reissued by"
+msgstr ""
+
+#: DB:link_type/name:212
+msgid "catalog site"
+msgstr ""
+
+#: DB:link_type/link_phrase:751 DB:link_type/name:751
+#: DB:link_type/long_link_phrase:751
+msgid "catalogued"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:751
+msgid "cataloguer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:750
+msgid "catalogues work of"
+msgstr ""
+
+#: DB:link_attribute_type/name:1223
+msgid "chamber music"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:735
+msgid "child of"
+msgstr ""
+
+#: DB:link_type/link_phrase:735 DB:link_type/name:735
+msgid "children"
+msgstr ""
+
+#: DB:link_attribute_type/description:13 DB:link_attribute_type/name:13
+msgid "choir vocals"
+msgstr ""
+
+#: DB:link_attribute_type/name:1224
+msgid "choral conducting"
+msgstr ""
+
+#: DB:link_type/name:152 DB:link_type/name:53
+msgid "chorus master"
+msgstr ""
+
+#: DB:link_attribute_type/name:1204
+msgid "classical music"
+msgstr ""
+
+#: DB:link_attribute_type/name:424
+msgid "co"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:102
+msgid "collaborated {minor:minorly} {additional:additionally} on"
+msgstr ""
+
+#: DB:link_type/name:102
+msgid "collaboration"
+msgstr ""
+
+#: DB:link_type/link_phrase:1176 DB:link_type/link_phrase:1177
+#: DB:link_type/name:1176 DB:link_type/name:1177
+msgid "commentary"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1176 DB:link_type/reverse_link_phrase:1177
+msgid "commentary for"
+msgstr ""
+
+#: DB:link_type/link_phrase:890 DB:link_type/link_phrase:889
+#: DB:link_type/link_phrase:892 DB:link_type/link_phrase:891
+#: DB:link_type/name:890 DB:link_type/name:889 DB:link_type/name:892
+#: DB:link_type/name:891 DB:link_type/long_link_phrase:890
+#: DB:link_type/long_link_phrase:889 DB:link_type/long_link_phrase:892
+#: DB:link_type/long_link_phrase:891
+msgid "commissioned"
+msgstr ""
+
+#: DB:link_type/name:228
+msgid "compilation"
+msgstr ""
+
+#: DB:link_type/link_phrase:228
+msgid "compilation of"
+msgstr ""
+
+#: DB:link_type/link_phrase:48 DB:link_type/link_phrase:147
+#: DB:link_type/long_link_phrase:48 DB:link_type/long_link_phrase:147
+msgid "compiled"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:228
+msgid "compiled in"
+msgstr ""
+
+#: DB:link_type/name:48 DB:link_type/name:147
+#: DB:link_type/reverse_link_phrase:48 DB:link_type/reverse_link_phrase:147
+msgid "compiler"
+msgstr ""
+
+#: DB:link_type/name:876
+msgid "composed at"
+msgstr ""
+
+#: DB:link_type/name:875
+msgid "composed in"
+msgstr ""
+
+#: DB:link_type/name:55 DB:link_type/name:168
+msgid "composer"
+msgstr ""
+
+#: DB:link_type/name:937 DB:link_type/name:855
+msgid "composer-in-residence"
+msgstr ""
+
+#: DB:link_type/link_phrase:937 DB:link_type/link_phrase:855
+msgid "composer-in-residence at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:937 DB:link_type/reverse_link_phrase:855
+msgid "composers-in-residence"
+msgstr ""
+
+#: DB:link_attribute_type/name:1126 DB:link_type/link_phrase:58
+#: DB:link_type/link_phrase:170 DB:link_type/name:58 DB:link_type/name:170
+#: DB:link_type/reverse_link_phrase:58 DB:link_type/reverse_link_phrase:170
+#: DB:link_type/long_link_phrase:58 DB:link_type/long_link_phrase:170
+msgid "composition"
+msgstr ""
+
+#: DB:link_type/name:760 DB:link_type/name:759
+msgid "concertmaster"
+msgstr ""
+
+#: DB:link_attribute_type/name:1130
+msgid "conducting"
+msgstr ""
+
+#: DB:link_type/name:806 DB:link_type/name:46 DB:link_type/name:151
+msgid "conductor"
+msgstr ""
+
+#: DB:link_type/link_phrase:806
+msgid "conductor at"
+msgstr ""
+
+#: DB:link_type/name:305
+msgid "conductor position"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:806
+msgid "conductors"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:925
+msgid "connected with"
+msgstr ""
+
+#: DB:link_type/link_phrase:739
+msgid "consists of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1008
+msgid "contains music recorded during"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:83 DB:link_type/long_link_phrase:258
+msgid "contains samples from the IMDb entry at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:154 DB:link_type/reverse_link_phrase:49
+msgid "contains {additional} samples by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:231
+msgid "contains {additional} samples from"
+msgstr ""
+
+#: DB:link_attribute_type/name:1227
+msgid "contemporary music"
+msgstr ""
+
+#: DB:link_type/link_phrase:119 DB:link_type/name:119
+#: DB:link_type/reverse_link_phrase:119 DB:link_type/long_link_phrase:119
+msgid "contract"
+msgstr ""
+
+#: DB:link_type/link_phrase:948 DB:link_type/link_phrase:949
+msgid "contracted arrangement for"
+msgstr ""
+
+#: DB:link_type/link_phrase:952
+msgid "contracted manufacturing for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1183
+msgid "contracted mastered for"
+msgstr ""
+
+#: DB:link_type/link_phrase:946 DB:link_type/link_phrase:947
+msgid "contracted mixing for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1178
+msgid "contracted remixing for"
+msgstr ""
+
+#: DB:link_type/link_phrase:945 DB:link_type/link_phrase:944
+#: DB:link_type/name:945 DB:link_type/name:944
+#: DB:link_type/reverse_link_phrase:945 DB:link_type/reverse_link_phrase:944
+#: DB:link_type/long_link_phrase:945 DB:link_type/long_link_phrase:944
+msgid "contracted tasks"
+msgstr ""
+
+#: DB:link_type/link_phrase:951 DB:link_type/link_phrase:950
+msgid "contracted {co:co-}{executive:executive }production for"
+msgstr ""
+
+#: DB:link_attribute_type/description:230 DB:link_attribute_type/name:230
+msgid "contralto vocals"
+msgstr ""
+
+#: DB:link_type/name:708 DB:link_type/name:709
+msgid "copyright"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:708 DB:link_type/reverse_link_phrase:709
+msgid "copyrighted (©) by"
+msgstr ""
+
+#: DB:link_attribute_type/name:1349
+msgid "counterpoint"
+msgstr ""
+
+#: DB:link_attribute_type/description:8 DB:link_attribute_type/name:8
+msgid "countertenor vocals"
+msgstr ""
+
+#: DB:link_attribute_type/name:567 DB:link_type/name:15
+msgid "cover"
+msgstr ""
+
+#: DB:link_type/link_phrase:78
+msgid "cover art"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:78
+msgid "cover art for"
+msgstr ""
+
+#: DB:link_type/name:78
+msgid "cover art link"
+msgstr ""
+
+#: DB:link_type/name:12 DB:link_type/name:4 DB:link_type/long_link_phrase:12
+msgid "covers and versions"
+msgstr ""
+
+#: DB:link_type/link_phrase:12 DB:link_type/link_phrase:4
+#: DB:link_type/reverse_link_phrase:12 DB:link_type/reverse_link_phrase:4
+#: DB:link_type/long_link_phrase:4
+msgid "covers or other versions"
+msgstr ""
+
+#: DB:link_type/name:63 DB:link_type/name:146
+msgid "creative direction"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:115
+msgid "creative persons"
+msgstr ""
+
+#: DB:link_type/link_phrase:115 DB:link_type/name:115
+msgid "creative position"
+msgstr ""
+
+#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
+msgid "crowdfunding"
+msgstr ""
+
+#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
+#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
+#: DB:link_type/reverse_link_phrase:908
+msgid "crowdfunding page"
+msgstr ""
+
+#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
+#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
+#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
+msgid "crowdfunding page for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:969
+msgid "cut the lacquer for"
+msgstr ""
+
+#: DB:link_type/name:868 DB:link_type/reverse_link_phrase:983
+#: DB:link_type/reverse_link_phrase:846 DB:link_type/reverse_link_phrase:922
+#: DB:link_type/reverse_link_phrase:914 DB:link_type/reverse_link_phrase:868
+msgid "dedicated to"
+msgstr ""
+
+#: DB:link_type/link_phrase:983 DB:link_type/link_phrase:846
+#: DB:link_type/link_phrase:922 DB:link_type/link_phrase:914
+msgid "dedicated works"
+msgstr ""
+
+#: DB:link_type/name:983 DB:link_type/name:846 DB:link_type/name:922
+#: DB:link_type/name:914
+msgid "dedication"
+msgstr ""
+
+#: DB:link_type/link_phrase:868
+msgid "dedications"
+msgstr ""
+
+#: DB:link_type/name:737
+msgid "derivation"
+msgstr ""
+
+#: DB:link_type/link_phrase:737
+msgid "derivations"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:737
+msgid "derived from"
+msgstr ""
+
+#: DB:link_type/name:928 DB:link_type/name:1171
+msgid "design"
+msgstr ""
+
+#: DB:link_type/name:19 DB:link_type/name:130
+msgid "design/illustration"
+msgstr ""
+
+#: DB:link_type/link_phrase:88 DB:link_type/link_phrase:171
+#: DB:link_type/name:88 DB:link_type/name:171
+#: DB:link_type/reverse_link_phrase:88 DB:link_type/reverse_link_phrase:171
+#: DB:link_type/long_link_phrase:88 DB:link_type/long_link_phrase:171
+msgid "discography"
+msgstr ""
+
+#: DB:link_type/link_phrase:288 DB:link_type/link_phrase:1169
+#: DB:link_type/name:288 DB:link_type/name:1169
+msgid "discography entry"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:288 DB:link_type/reverse_link_phrase:1169
+msgid "discography entry for"
+msgstr ""
+
+#: DB:link_type/name:184
+msgid "discography page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:184
+msgid "discography page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:184
+msgid "discography pages"
+msgstr ""
+
+#: DB:link_type/name:1089 DB:link_type/name:180 DB:link_type/name:76
+#: DB:link_type/name:217 DB:link_type/name:90 DB:link_type/name:747
+#: DB:link_type/name:705 DB:link_type/name:971
+msgid "discogs"
+msgstr ""
+
+#: DB:link_type/link_phrase:361 DB:link_type/name:361
+#: DB:link_type/long_link_phrase:361
+msgid "distributed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:361
+msgid "distributed by"
+msgstr ""
+
+#: DB:link_type/link_phrase:203
+msgid "distributor for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:203
+msgid "distributors"
+msgstr ""
+
+#: DB:link_attribute_type/name:1139
+msgid "doctoral degree"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:105
+msgid "does/did {instrument} support for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:107
+msgid "does/did {vocal:%|vocals} support for"
+msgstr ""
+
+#: DB:link_type/link_phrase:75 DB:link_type/link_phrase:255
+#: DB:link_type/name:958 DB:link_type/name:75 DB:link_type/name:177
+#: DB:link_type/name:255 DB:link_type/name:274
+msgid "download for free"
+msgstr ""
+
+#: DB:link_type/link_phrase:958 DB:link_type/link_phrase:177
+msgid "download music for free"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:959 DB:link_type/reverse_link_phrase:254
+#: DB:link_type/reverse_link_phrase:74 DB:link_type/reverse_link_phrase:176
+msgid "download purchase page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:912
+msgid "download purchase page for the score of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:274
+msgid "download score for free"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:238
+msgid "earliest release"
+msgstr ""
+
+#: DB:link_attribute_type/name:1131
+msgid "early music"
+msgstr ""
+
+#: DB:link_type/name:309
+msgid "edit"
+msgstr ""
+
+#: DB:link_type/link_phrase:309
+msgid "edit of"
+msgstr ""
+
+#: DB:link_type/name:819 DB:link_type/name:820
+msgid "edited at"
+msgstr ""
+
+#: DB:link_type/name:822 DB:link_type/name:821
+msgid "edited in"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:929
+msgid "edited the booklet of"
+msgstr ""
+
+#: DB:link_type/name:144 DB:link_type/name:38
+msgid "editor"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:309
+msgid "edits"
+msgstr ""
+
+#: DB:link_type/link_phrase:925 DB:link_type/name:925
+msgid "educational institution connection"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:924
+msgid "educators"
+msgstr ""
+
+#: DB:link_attribute_type/name:1352
+msgid "electroacoustic music"
+msgstr ""
+
+#: DB:link_attribute_type/name:1127
+msgid "electronic music"
+msgstr ""
+
+#: DB:link_attribute_type/name:617
+msgid "emeritus"
+msgstr ""
+
+#: DB:link_type/name:1084 DB:link_type/name:28 DB:link_type/name:138
+msgid "engineer"
+msgstr ""
+
+#: DB:link_type/link_phrase:120 DB:link_type/name:120 DB:link_type/name:701
+msgid "engineer position"
+msgstr ""
+
+#: DB:link_type/link_phrase:701
+msgid "engineer position at"
+msgstr ""
+
+#: DB:link_type/link_phrase:1084
+msgid "engineered"
+msgstr ""
+
+#: DB:link_type/name:813 DB:link_type/name:812
+msgid "engineered at"
+msgstr ""
+
+#: DB:link_type/name:814 DB:link_type/name:815
+msgid "engineered in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1084 DB:link_type/reverse_link_phrase:120
+#: DB:link_type/reverse_link_phrase:701
+msgid "engineers"
+msgstr ""
+
+#: DB:link_attribute_type/name:1094
+msgid "eponymous"
+msgstr ""
+
+#: DB:link_type/link_phrase:1003 DB:link_type/name:1003
+#: DB:link_type/reverse_link_phrase:1003 DB:link_type/long_link_phrase:1003
+msgid "event artists"
+msgstr ""
+
+#: DB:link_attribute_type/name:425
+msgid "executive"
+msgstr ""
+
+#: DB:link_type/link_phrase:1188 DB:link_type/reverse_link_phrase:214
+#: DB:link_type/reverse_link_phrase:172 DB:link_type/reverse_link_phrase:1189
+#: DB:link_type/reverse_link_phrase:1190 DB:link_type/reverse_link_phrase:1191
+msgid "fan page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:214 DB:link_type/link_phrase:172
+#: DB:link_type/link_phrase:1189 DB:link_type/link_phrase:1190
+#: DB:link_type/link_phrase:1191 DB:link_type/reverse_link_phrase:1188
+msgid "fan pages"
+msgstr ""
+
+#: DB:link_type/name:214 DB:link_type/name:172 DB:link_type/name:1189
+#: DB:link_type/name:1190 DB:link_type/name:1188 DB:link_type/name:1191
+msgid "fanpage"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1011 DB:link_type/reverse_link_phrase:1012
+msgid "field recordings"
+msgstr ""
+
+#: DB:link_type/name:1011 DB:link_type/name:1012
+msgid "field recordist"
+msgstr ""
+
+#: DB:link_type/link_phrase:1011 DB:link_type/link_phrase:1012
+msgid "field recordist for"
+msgstr ""
+
+#: DB:link_type/name:238
+msgid "first track release"
+msgstr ""
+
+#: DB:link_attribute_type/name:1133
+msgid "folk music"
+msgstr ""
+
+#: DB:link_type/link_phrase:832 DB:link_type/link_phrase:116
+#: DB:link_type/link_phrase:895 DB:link_type/link_phrase:1004
+#: DB:link_type/long_link_phrase:832 DB:link_type/long_link_phrase:116
+#: DB:link_type/long_link_phrase:895 DB:link_type/long_link_phrase:1004
+msgid "founded"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:895
+msgid "founded by"
+msgstr ""
+
+#: DB:link_type/name:832 DB:link_type/name:895 DB:link_type/name:1004
+msgid "founder"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:832 DB:link_type/reverse_link_phrase:116
+#: DB:link_type/reverse_link_phrase:1004
+msgid "founders"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:958 DB:link_type/reverse_link_phrase:75
+#: DB:link_type/reverse_link_phrase:177 DB:link_type/reverse_link_phrase:255
+msgid "free download page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:274
+msgid "free download page for the score of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:997 DB:link_type/reverse_link_phrase:194
+msgid "free music streaming page for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
+msgid "free music {video} streaming page for"
+msgstr ""
+
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
+#: DB:link_type/name:194
+msgid "free streaming"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1088 DB:link_type/reverse_link_phrase:752
+msgid "from"
+msgstr ""
+
+#: DB:link_type/link_phrase:1096 DB:link_type/name:1096
+msgid "fusion of"
+msgstr ""
+
+#: DB:link_type/name:1088
+msgid "genre origin"
+msgstr ""
+
+#: DB:link_type/link_phrase:1088
+msgid "genres"
+msgstr ""
+
+#: DB:link_type/name:934 DB:link_type/name:713
+msgid "geonames"
+msgstr ""
+
+#: DB:link_type/link_phrase:957 DB:link_type/link_phrase:257
+#: DB:link_type/link_phrase:73 DB:link_type/link_phrase:1091
+#: DB:link_type/link_phrase:187 DB:link_type/name:957 DB:link_type/name:257
+#: DB:link_type/name:73 DB:link_type/name:1091 DB:link_type/name:187
+#: DB:link_type/reverse_link_phrase:957 DB:link_type/reverse_link_phrase:257
+#: DB:link_type/reverse_link_phrase:73 DB:link_type/reverse_link_phrase:1091
+#: DB:link_type/reverse_link_phrase:187 DB:link_type/long_link_phrase:957
+#: DB:link_type/long_link_phrase:257 DB:link_type/long_link_phrase:73
+#: DB:link_type/long_link_phrase:1091 DB:link_type/long_link_phrase:187
+msgid "get the music"
+msgstr ""
+
+#: DB:link_type/link_phrase:911 DB:link_type/name:911
+#: DB:link_type/reverse_link_phrase:911 DB:link_type/long_link_phrase:911
+msgid "get the score"
+msgstr ""
+
+#: DB:link_type/link_phrase:955 DB:link_type/name:955
+#: DB:link_type/long_link_phrase:955
+msgid "glass mastered"
+msgstr ""
+
+#: DB:link_type/name:954 DB:link_type/reverse_link_phrase:954
+msgid "glass mastered at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:955
+msgid "glass mastered by"
+msgstr ""
+
+#: DB:link_type/link_phrase:954
+msgid "glass mastering location for"
+msgstr ""
+
+#: DB:link_type/name:1172 DB:link_type/name:125 DB:link_type/name:27
+msgid "graphic design"
+msgstr ""
+
+#: DB:link_attribute_type/name:194
+msgid "guest"
+msgstr ""
+
+#: DB:link_type/name:800
+msgid "guest performer"
+msgstr ""
+
+#: DB:link_type/link_phrase:800 DB:link_type/long_link_phrase:800
+msgid "guest performer at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:800
+msgid "guest performers"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:115
+msgid "had a creative position at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:162
+msgid "had a miscellaneous role on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:117
+msgid "had a producer position at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:121
+msgid "had a recording contract with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1081
+msgid "had an artists and repertoire position at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:120
+msgid "had an engineer position at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:936
+msgid "had tribute event"
+msgstr ""
+
+#: DB:link_attribute_type/name:1019
+msgid "half"
+msgstr ""
+
+#: DB:link_attribute_type/name:1350
+msgid "harmony"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:77
+msgid "has Amazon ASIN"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1131 DB:link_type/long_link_phrase:1130
+msgid "has Apple Music page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1092 DB:link_type/long_link_phrase:718
+#: DB:link_type/long_link_phrase:719
+msgid "has Bandcamp page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:919
+msgid "has CD Baby page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:311 DB:link_type/long_link_phrase:310
+#: DB:link_type/long_link_phrase:920 DB:link_type/long_link_phrase:1001
+msgid "has VIAF ID at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1080
+msgid "has YouTube Music channel at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:190
+msgid "has a BBC Music page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:861 DB:link_type/long_link_phrase:862
+#: DB:link_type/long_link_phrase:860
+msgid "has a Bandsintown page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:851 DB:link_type/long_link_phrase:852
+#: DB:link_type/long_link_phrase:853 DB:link_type/long_link_phrase:1167
+#: DB:link_type/long_link_phrase:850
+msgid "has a BookBrainz page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:981
+msgid "has a CPDL page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1089 DB:link_type/long_link_phrase:180
+#: DB:link_type/long_link_phrase:76 DB:link_type/long_link_phrase:217
+#: DB:link_type/long_link_phrase:90 DB:link_type/long_link_phrase:747
+#: DB:link_type/long_link_phrase:705
+msgid "has a Discogs page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:934 DB:link_type/long_link_phrase:713
+msgid "has a Geonames page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:840 DB:link_type/long_link_phrase:837
+#: DB:link_type/long_link_phrase:839 DB:link_type/long_link_phrase:838
+msgid "has a Last.fm page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:215 DB:link_type/long_link_phrase:462
+#: DB:link_type/long_link_phrase:189
+msgid "has a Myspace page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:174
+msgid "has a PureVolume page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:308 DB:link_type/long_link_phrase:976
+#: DB:link_type/long_link_phrase:977 DB:link_type/long_link_phrase:307
+msgid "has a SecondHandSongs page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:786 DB:link_type/long_link_phrase:785
+#: DB:link_type/long_link_phrase:787
+msgid "has a Songkick page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:870 DB:link_type/long_link_phrase:291
+#: DB:link_type/long_link_phrase:290 DB:link_type/long_link_phrase:940
+msgid "has a SoundCloud page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:86 DB:link_type/long_link_phrase:191
+#: DB:link_type/long_link_phrase:210 DB:link_type/long_link_phrase:788
+#: DB:link_type/long_link_phrase:1013
+msgid "has a VGMdb page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1087 DB:link_type/long_link_phrase:353
+#: DB:link_type/long_link_phrase:749 DB:link_type/long_link_phrase:594
+#: DB:link_type/long_link_phrase:354 DB:link_type/long_link_phrase:790
+#: DB:link_type/long_link_phrase:352 DB:link_type/long_link_phrase:733
+#: DB:link_type/long_link_phrase:358
+msgid "has a Wikidata page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:179 DB:link_type/long_link_phrase:595
+#: DB:link_type/long_link_phrase:355 DB:link_type/long_link_phrase:744
+#: DB:link_type/long_link_phrase:216 DB:link_type/long_link_phrase:731
+#: DB:link_type/long_link_phrase:89 DB:link_type/long_link_phrase:789
+msgid "has a Wikipedia page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:182
+msgid "has a biography page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:224 DB:link_type/long_link_phrase:199
+#: DB:link_type/long_link_phrase:627
+msgid "has a blog at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:212
+msgid "has a catalog of records at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
+#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
+msgid "has a crowdfunding page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:288 DB:link_type/long_link_phrase:1169
+msgid "has a discography entry at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:184
+msgid "has a discography page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:214 DB:link_type/long_link_phrase:172
+#: DB:link_type/long_link_phrase:1189 DB:link_type/long_link_phrase:1190
+#: DB:link_type/long_link_phrase:1191
+msgid "has a fan page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:226
+msgid "has a karaoke version"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:213
+msgid "has a logo at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:129 DB:link_type/long_link_phrase:25
+#: DB:link_type/long_link_phrase:998 DB:link_type/long_link_phrase:999
+msgid "has a miscellaneous role on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1086 DB:link_type/long_link_phrase:753
+#: DB:link_type/long_link_phrase:82 DB:link_type/long_link_phrase:222
+#: DB:link_type/long_link_phrase:188 DB:link_type/long_link_phrase:306
+#: DB:link_type/long_link_phrase:561 DB:link_type/long_link_phrase:746
+#: DB:link_type/long_link_phrase:96 DB:link_type/long_link_phrase:803
+msgid "has a page in a database at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:901 DB:link_type/long_link_phrase:900
+#: DB:link_type/long_link_phrase:898 DB:link_type/long_link_phrase:899
+#: DB:link_type/long_link_phrase:897
+msgid "has a patronage page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:173 DB:link_type/long_link_phrase:396
+#: DB:link_type/long_link_phrase:732
+msgid "has a picture at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:842 DB:link_type/long_link_phrase:94
+msgid "has a review page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1083
+msgid "has a schedule at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:811 DB:link_type/long_link_phrase:816
+#: DB:link_type/long_link_phrase:817 DB:link_type/long_link_phrase:938
+msgid "has a setlist.fm page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:784 DB:link_type/long_link_phrase:783
+#: DB:link_type/long_link_phrase:218 DB:link_type/long_link_phrase:429
+#: DB:link_type/long_link_phrase:192
+msgid "has a social networking page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:287
+msgid "has a standalone website at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1193 DB:link_type/long_link_phrase:1194
+#: DB:link_type/long_link_phrase:1195 DB:link_type/long_link_phrase:1196
+#: DB:link_type/long_link_phrase:1197
+msgid "has a ticketing page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:755 DB:link_type/long_link_phrase:284
+#: DB:link_type/long_link_phrase:283 DB:link_type/long_link_phrase:285
+#: DB:link_type/long_link_phrase:1093
+msgid "has an Allmusic page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:313 DB:link_type/long_link_phrase:178
+#: DB:link_type/long_link_phrase:97 DB:link_type/long_link_phrase:706
+msgid "has an IMDb page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:754
+msgid "has an IMSLP page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1192
+msgid "has an art gallery at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:707
+msgid "has an interview at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:791 DB:link_type/long_link_phrase:792
+#: DB:link_type/long_link_phrase:193 DB:link_type/long_link_phrase:225
+#: DB:link_type/long_link_phrase:528
+msgid "has an official YouTube channel at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:745 DB:link_type/long_link_phrase:782
+#: DB:link_type/long_link_phrase:183 DB:link_type/long_link_phrase:219
+#: DB:link_type/long_link_phrase:363
+msgid "has an official homepage at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:804 DB:link_type/long_link_phrase:304
+#: DB:link_type/long_link_phrase:805 DB:link_type/long_link_phrase:303
+#: DB:link_type/long_link_phrase:495
+msgid "has an official video channel at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:185
+msgid "has an online community page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:350
+msgid "has arrangement"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1094
+msgid "has award ceremony"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:66
+msgid "has business association with"
+msgstr ""
+
+#: DB:link_type/link_phrase:750 DB:link_type/name:750
+msgid "has catalogue"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:735
+msgid "has child"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:78
+msgid "has cover art at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:737
+msgid "has derived instrument"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1096
+msgid "has fusion genres"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:916
+msgid "has hybrids"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:725
+msgid "has imprint"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1097
+msgid "has influences of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:984 DB:link_type/long_link_phrase:211
+msgid "has its history presented at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:93 DB:link_type/long_link_phrase:197
+#: DB:link_type/long_link_phrase:982
+msgid "has lyrics available at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:857
+msgid "has music video"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:316
+msgid "has orchestration"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:739 DB:link_type/long_link_phrase:717
+#: DB:link_type/long_link_phrase:356 DB:link_type/long_link_phrase:281
+msgid "has part"
+msgstr ""
+
+#: DB:link_type/link_phrase:743 DB:link_type/reverse_link_phrase:802
+#: DB:link_type/reverse_link_phrase:742 DB:link_type/reverse_link_phrase:740
+#: DB:link_type/reverse_link_phrase:741 DB:link_type/reverse_link_phrase:996
+#: DB:link_type/long_link_phrase:818
+msgid "has parts"
+msgstr ""
+
+#: DB:link_type/link_phrase:723 DB:link_type/long_link_phrase:723
+msgid "has personal label"
+msgstr ""
+
+#: DB:link_type/link_phrase:724 DB:link_type/long_link_phrase:724
+msgid "has personal publisher"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:808
+msgid "has poster at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:230
+msgid "has remixes"
+msgstr ""
+
+#: DB:link_type/link_phrase:315 DB:link_type/long_link_phrase:315
+msgid "has revision"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:729
+msgid "has show notes at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1095
+msgid "has subgenre"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:823
+msgid "has subseries"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:736
+msgid "has subtype"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:69
+msgid "has {additional} samples taken from"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:110
+msgid "has {half:half-}{step}sibling"
+msgstr ""
+
+#: DB:link_type/link_phrase:794 DB:link_type/name:794 DB:link_type/name:995
+#: DB:link_type/reverse_link_phrase:995
+msgid "held at"
+msgstr ""
+
+#: DB:link_type/link_phrase:793 DB:link_type/reverse_link_phrase:794
+msgid "held events"
+msgstr ""
+
+#: DB:link_type/name:793 DB:link_type/name:1085
+#: DB:link_type/reverse_link_phrase:793 DB:link_type/reverse_link_phrase:1085
+msgid "held in"
+msgstr ""
+
+#: DB:link_type/link_phrase:984 DB:link_type/link_phrase:211
+msgid "history page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:984 DB:link_type/reverse_link_phrase:211
+msgid "history page for"
+msgstr ""
+
+#: DB:link_type/name:984 DB:link_type/name:211
+msgid "history site"
+msgstr ""
+
+#: DB:link_type/link_phrase:708 DB:link_type/link_phrase:709
+#: DB:link_type/long_link_phrase:708 DB:link_type/long_link_phrase:709
+msgid "holds copyright (©) for"
+msgstr ""
+
+#: DB:link_type/link_phrase:867 DB:link_type/link_phrase:711
+#: DB:link_type/link_phrase:710 DB:link_type/link_phrase:869
+#: DB:link_type/long_link_phrase:867 DB:link_type/long_link_phrase:711
+#: DB:link_type/long_link_phrase:710 DB:link_type/long_link_phrase:869
+msgid "holds phonographic copyright (℗) for"
+msgstr ""
+
+#: DB:link_type/name:801
+msgid "host"
+msgstr ""
+
+#: DB:link_type/link_phrase:801 DB:link_type/long_link_phrase:801
+msgid "host at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:801
+msgid "hosts"
+msgstr ""
+
+#: DB:link_type/link_phrase:916 DB:link_type/name:916
+msgid "hybrid of"
+msgstr ""
+
+#: DB:link_type/name:927 DB:link_type/name:1173
+msgid "illustration"
+msgstr ""
+
+#: DB:link_type/description:732 DB:link_type/name:173 DB:link_type/name:396
+#: DB:link_type/name:732
+msgid "image"
+msgstr ""
+
+#: DB:link_type/name:725
+msgid "imprint"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:725
+msgid "imprint of"
+msgstr ""
+
+#: DB:link_type/link_phrase:725
+msgid "imprints"
+msgstr ""
+
+#: DB:link_attribute_type/name:1134
+msgid "improvisation"
+msgstr ""
+
+#: DB:link_type/link_phrase:894 DB:link_type/name:894
+msgid "included in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:894
+msgid "includes"
+msgstr ""
+
+#: DB:link_type/link_phrase:1097 DB:link_type/name:1097
+msgid "influenced by"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1097
+msgid "influenced genres"
+msgstr ""
+
+#: DB:link_type/description:734 DB:link_type/link_phrase:734
+#: DB:link_type/name:734 DB:link_type/reverse_link_phrase:734
+#: DB:link_type/long_link_phrase:734
+msgid "information page"
+msgstr ""
+
+#: DB:link_type/link_phrase:975 DB:link_type/link_phrase:1000
+#: DB:link_type/reverse_link_phrase:973 DB:link_type/reverse_link_phrase:972
+#: DB:link_type/reverse_link_phrase:974
+msgid "inspired the name of"
+msgstr ""
+
+#: DB:link_attribute_type/name:14 DB:link_type/name:44 DB:link_type/name:148
+msgid "instrument"
+msgstr ""
+
+#: DB:link_type/name:41 DB:link_type/name:158 DB:link_type/name:282
+msgid "instrument arranger"
+msgstr ""
+
+#: DB:link_type/name:752
+msgid "instrument origin"
+msgstr ""
+
+#: DB:link_type/name:986 DB:link_type/name:987
+msgid "instrument technician"
+msgstr ""
+
+#: DB:link_attribute_type/name:580
+msgid "instrumental"
+msgstr ""
+
+#: DB:link_type/name:105
+msgid "instrumental supporting musician"
+msgstr ""
+
+#: DB:link_type/link_phrase:752
+msgid "instruments"
+msgstr ""
+
+#: DB:link_type/name:707
+msgid "interview"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:707
+msgid "interview with"
+msgstr ""
+
+#: DB:link_type/link_phrase:707
+msgid "interviews"
+msgstr ""
+
+#: DB:link_type/link_phrase:896 DB:link_type/name:896 DB:link_type/name:918
+#: DB:link_type/reverse_link_phrase:918 DB:link_type/long_link_phrase:896
+msgid "invented"
+msgstr ""
+
+#: DB:link_type/link_phrase:918 DB:link_type/reverse_link_phrase:896
+msgid "invented by"
+msgstr ""
+
+#: DB:link_type/name:112
+msgid "involved with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:227 DB:link_type/long_link_phrase:8
+msgid "is a DJ-mix of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:228
+msgid "is a compilation of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1096
+msgid "is a fusion of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:916
+msgid "is a hybrid of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:17
+msgid "is a live performance of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:10 DB:link_type/long_link_phrase:232
+msgid "is a mash-up of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:239
+msgid "is a medley of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:730
+msgid "is a page in a database for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:802 DB:link_type/long_link_phrase:742
+#: DB:link_type/long_link_phrase:740 DB:link_type/long_link_phrase:741
+#: DB:link_type/long_link_phrase:996
+msgid "is a part of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:6 DB:link_type/long_link_phrase:236
+msgid "is a remaster of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:230 DB:link_type/long_link_phrase:9
+msgid "is a remix of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:11
+msgid "is a single/EP which was taken from"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:728
+msgid "is a tribute to"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:278
+msgid ""
+"is a {live} {medley:medley including a} {partial} {instrumental} {cover} "
+"{karaoke} recording of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:15
+msgid "is a {translated} {parody} cover of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:309
+msgid "is an edit of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:926
+msgid "is associated with"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:314
+msgid "is based on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:925
+msgid "is connected to the educational institution"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:894
+msgid "is included in"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:302 DB:link_type/long_link_phrase:301
+msgid "is licensed under"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:973 DB:link_type/long_link_phrase:972
+#: DB:link_type/long_link_phrase:974
+msgid "is named after"
+msgstr ""
+
+#: DB:link_type/name:108
+msgid "is person"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:738
+msgid "is related to"
+msgstr ""
+
+#: DB:link_type/link_phrase:314 DB:link_type/long_link_phrase:314
+msgid "is the basis for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:238
+msgid "is the earliest release of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:241
+msgid "is the earliest version of {translated} {parody}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:2
+msgid "is the original for the transliterated/translated track listing"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:349
+msgid "is the rights society associated with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:109
+msgid "is the {step}parent of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:722
+msgid "is/was a subgroup of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:104
+msgid "is/was a supporting artist for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:965
+msgid "is/was artistic director for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:203
+msgid "is/was distributing the catalog of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:111
+msgid "is/was married to"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:201
+msgid "is/was reissuing the catalog of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:112
+msgid "is/was romantically involved with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:200
+msgid "is/was the parent label of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:103
+msgid "is/was {additional:an|a} {additional} {original} {eponymous} member of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:305
+msgid ""
+"is/was {assistant:an|a} {assistant} {principal} {guest} conductor {emeritus} "
+"for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1132
+msgid "jazz"
+msgstr ""
+
+#: DB:link_attribute_type/name:1261 DB:link_type/name:226
+msgid "karaoke"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:226
+msgid "karaoke version of"
+msgstr ""
+
+#: DB:link_type/link_phrase:226
+msgid "karaoke versions"
+msgstr ""
+
+#: DB:link_type/name:203
+msgid "label distribution"
+msgstr ""
+
+#: DB:link_type/name:116
+msgid "label founder"
+msgstr ""
+
+#: DB:link_type/name:200
+msgid "label ownership"
+msgstr ""
+
+#: DB:link_type/name:201
+msgid "label reissue"
+msgstr ""
+
+#: DB:link_type/name:202
+msgid "label rename"
+msgstr ""
+
+#: DB:link_type/link_phrase:969 DB:link_type/name:969
+#: DB:link_type/reverse_link_phrase:969
+msgid "lacquer cut"
+msgstr ""
+
+#: DB:link_type/name:968 DB:link_type/reverse_link_phrase:968
+msgid "lacquer cut at"
+msgstr ""
+
+#: DB:link_type/name:967 DB:link_type/reverse_link_phrase:967
+msgid "lacquer cut in"
+msgstr ""
+
+#: DB:link_type/link_phrase:967 DB:link_type/link_phrase:968
+msgid "lacquer cut location for"
+msgstr ""
+
+#: DB:link_type/name:840 DB:link_type/name:837 DB:link_type/name:839
+#: DB:link_type/name:838
+msgid "last.fm"
+msgstr ""
+
+#: DB:link_type/link_phrase:238
+msgid "later releases"
+msgstr ""
+
+#: DB:link_type/link_phrase:241
+msgid "later {translated} {parody} versions"
+msgstr ""
+
+#: DB:link_type/name:796 DB:link_type/name:797
+msgid "launch event"
+msgstr ""
+
+#: DB:link_type/link_phrase:796 DB:link_type/link_phrase:797
+msgid "launch event for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:796 DB:link_type/reverse_link_phrase:797
+msgid "launch events"
+msgstr ""
+
+#: DB:link_attribute_type/name:4
+msgid "lead vocals"
+msgstr ""
+
+#: DB:link_type/link_phrase:142 DB:link_type/name:22 DB:link_type/name:142
+#: DB:link_type/reverse_link_phrase:142
+msgid "legal representation"
+msgstr ""
+
+#: DB:link_attribute_type/name:1135
+msgid "level of studies"
+msgstr ""
+
+#: DB:link_type/name:57 DB:link_type/name:169
+msgid "librettist"
+msgstr ""
+
+#: DB:link_type/name:880
+msgid "libretto written at"
+msgstr ""
+
+#: DB:link_type/name:879
+msgid "libretto written in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:880
+msgid "libretto {additional:additionally} written at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:879
+msgid "libretto {additional:additionally} written in"
+msgstr ""
+
+#: DB:link_type/link_phrase:302 DB:link_type/link_phrase:301
+#: DB:link_type/name:302 DB:link_type/name:939 DB:link_type/name:301
+#: DB:link_type/reverse_link_phrase:939
+msgid "license"
+msgstr ""
+
+#: DB:link_type/link_phrase:939 DB:link_type/reverse_link_phrase:302
+#: DB:link_type/reverse_link_phrase:301
+msgid "license for"
+msgstr ""
+
+#: DB:link_type/link_phrase:712 DB:link_type/link_phrase:1010
+#: DB:link_type/long_link_phrase:712 DB:link_type/long_link_phrase:1010
+msgid "licensed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:712 DB:link_type/reverse_link_phrase:1010
+msgid "licensed from"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:833
+msgid "licensed to"
+msgstr ""
+
+#: DB:link_type/name:833
+msgid "licensee"
+msgstr ""
+
+#: DB:link_type/link_phrase:833
+msgid "licensee for"
+msgstr ""
+
+#: DB:link_type/name:712 DB:link_type/name:1010
+msgid "licensor"
+msgstr ""
+
+#: DB:link_type/name:24
+msgid "liner notes"
+msgstr ""
+
+#: DB:link_attribute_type/name:578
+msgid "live"
+msgstr ""
+
+#: DB:link_type/name:17
+msgid "live performance"
+msgstr ""
+
+#: DB:link_type/link_phrase:17
+msgid "live performance of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:17
+msgid "live performances"
+msgstr ""
+
+#: DB:link_type/link_phrase:995 DB:link_type/link_phrase:1085
+msgid "location for"
+msgstr ""
+
+#: DB:link_type/name:213
+msgid "logo"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:213
+msgid "logo of"
+msgstr ""
+
+#: DB:link_type/link_phrase:213
+msgid "logos"
+msgstr ""
+
+#: DB:link_type/name:1047
+msgid "lyrical quotation"
+msgstr ""
+
+#: DB:link_type/name:56 DB:link_type/name:165
+msgid "lyricist"
+msgstr ""
+
+#: DB:link_type/name:93 DB:link_type/name:271 DB:link_type/name:197
+#: DB:link_type/name:982
+msgid "lyrics"
+msgstr ""
+
+#: DB:link_type/link_phrase:93 DB:link_type/link_phrase:197
+#: DB:link_type/link_phrase:982 DB:link_type/reverse_link_phrase:271
+msgid "lyrics page"
+msgstr ""
+
+#: DB:link_type/link_phrase:271 DB:link_type/reverse_link_phrase:93
+#: DB:link_type/reverse_link_phrase:197 DB:link_type/reverse_link_phrase:982
+msgid "lyrics page for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1047
+msgid "lyrics quoted in"
+msgstr ""
+
+#: DB:link_type/name:878
+msgid "lyrics written at"
+msgstr ""
+
+#: DB:link_type/name:877
+msgid "lyrics written in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:960 DB:link_type/reverse_link_phrase:175
+#: DB:link_type/reverse_link_phrase:79
+msgid "mail-order purchase page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:913
+msgid "mail-order purchase page for the score of"
+msgstr ""
+
+#: DB:link_type/name:798
+msgid "main performer"
+msgstr ""
+
+#: DB:link_type/link_phrase:798
+msgid "main performer at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:798
+msgid "main performers"
+msgstr ""
+
+#: DB:link_type/link_phrase:360 DB:link_type/name:360
+#: DB:link_type/long_link_phrase:360
+msgid "manufactured"
+msgstr ""
+
+#: DB:link_type/name:953 DB:link_type/reverse_link_phrase:953
+msgid "manufactured at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:360
+msgid "manufactured by"
+msgstr ""
+
+#: DB:link_type/name:952 DB:link_type/reverse_link_phrase:952
+msgid "manufactured for"
+msgstr ""
+
+#: DB:link_type/name:835 DB:link_type/reverse_link_phrase:835
+msgid "manufactured in"
+msgstr ""
+
+#: DB:link_type/link_phrase:835 DB:link_type/link_phrase:953
+msgid "manufacturing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:848 DB:link_type/name:848
+#: DB:link_type/long_link_phrase:848
+msgid "marketed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:848
+msgid "marketed by"
+msgstr ""
+
+#: DB:link_type/link_phrase:111 DB:link_type/name:111
+#: DB:link_type/reverse_link_phrase:111
+msgid "married"
+msgstr ""
+
+#: DB:link_type/link_phrase:10 DB:link_type/link_phrase:232
+msgid "mash-up of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:10 DB:link_type/reverse_link_phrase:232
+msgid "mash-ups"
+msgstr ""
+
+#: DB:link_type/name:10 DB:link_type/name:232
+msgid "mashes up"
+msgstr ""
+
+#: DB:link_type/name:697
+msgid "mastered at"
+msgstr ""
+
+#: DB:link_type/name:1183 DB:link_type/reverse_link_phrase:1183
+msgid "mastered for"
+msgstr ""
+
+#: DB:link_type/name:756
+msgid "mastered in"
+msgstr ""
+
+#: DB:link_type/name:136 DB:link_type/name:42
+msgid "mastering"
+msgstr ""
+
+#: DB:link_type/name:704
+msgid "mastering engineer position"
+msgstr ""
+
+#: DB:link_type/link_phrase:704
+msgid "mastering engineer position at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:704
+msgid "mastering engineers"
+msgstr ""
+
+#: DB:link_attribute_type/name:1136
+msgid "master’s degree"
+msgstr ""
+
+#: DB:link_attribute_type/name:1060
+msgid "meane vocals"
+msgstr ""
+
+#: DB:link_attribute_type/name:568
+msgid "medium"
+msgstr ""
+
+#: DB:link_attribute_type/name:570
+msgid "medium 1"
+msgstr ""
+
+#: DB:link_attribute_type/name:569
+msgid "medium 2"
+msgstr ""
+
+#: DB:link_attribute_type/name:571
+msgid "medium 3"
+msgstr ""
+
+#: DB:link_attribute_type/name:577
+msgid "medium 4"
+msgstr ""
+
+#: DB:link_attribute_type/name:576
+msgid "medium 5"
+msgstr ""
+
+#: DB:link_attribute_type/name:575
+msgid "medium 6"
+msgstr ""
+
+#: DB:link_attribute_type/name:574
+msgid "medium 7"
+msgstr ""
+
+#: DB:link_attribute_type/name:573
+msgid "medium 8"
+msgstr ""
+
+#: DB:link_attribute_type/name:572
+msgid "medium 9"
+msgstr ""
+
+#: DB:link_attribute_type/name:750 DB:link_type/name:239
+msgid "medley"
+msgstr ""
+
+#: DB:link_type/link_phrase:239
+msgid "medley of"
+msgstr ""
+
+#: DB:link_type/name:103
+msgid "member of band"
+msgstr ""
+
+#: DB:link_attribute_type/description:9 DB:link_attribute_type/name:9
+msgid "mezzo-soprano vocals"
+msgstr ""
+
+#: DB:link_attribute_type/name:2
+msgid "minor"
+msgstr ""
+
+#: DB:link_type/name:162 DB:link_type/name:129 DB:link_type/name:25
+#: DB:link_type/name:998 DB:link_type/name:999
+msgid "misc"
+msgstr ""
+
+#: DB:link_type/link_phrase:162 DB:link_type/link_phrase:129
+#: DB:link_type/link_phrase:25 DB:link_type/link_phrase:998
+#: DB:link_type/link_phrase:999
+msgid "miscellaneous roles"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:162 DB:link_type/reverse_link_phrase:129
+#: DB:link_type/reverse_link_phrase:25 DB:link_type/reverse_link_phrase:998
+#: DB:link_type/reverse_link_phrase:999
+msgid "miscellaneous support"
+msgstr ""
+
+#: DB:link_type/name:26 DB:link_type/name:143
+msgid "mix"
+msgstr ""
+
+#: DB:link_type/name:43 DB:link_type/name:155
+msgid "mix-DJ"
+msgstr ""
+
+#: DB:link_type/name:694 DB:link_type/name:696
+msgid "mixed at"
+msgstr ""
+
+#: DB:link_type/name:946 DB:link_type/name:947
+#: DB:link_type/reverse_link_phrase:946 DB:link_type/reverse_link_phrase:947
+msgid "mixed for"
+msgstr ""
+
+#: DB:link_type/name:757 DB:link_type/name:758
+msgid "mixed in"
+msgstr ""
+
+#: DB:link_type/name:703
+msgid "mixing engineer position"
+msgstr ""
+
+#: DB:link_type/link_phrase:703
+msgid "mixing engineer position at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:703
+msgid "mixing engineers"
+msgstr ""
+
+#: DB:link_attribute_type/name:1031
+msgid "movement"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:958 DB:link_type/long_link_phrase:177
+msgid "music can be downloaded for free at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:959 DB:link_type/long_link_phrase:176
+msgid "music can be purchased for download at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:960 DB:link_type/long_link_phrase:175
+msgid "music can be purchased for mail-order at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:997 DB:link_type/long_link_phrase:194
+msgid "music can be streamed for free at"
+msgstr ""
+
+#: DB:link_attribute_type/name:1202
+msgid "music education"
+msgstr ""
+
+#: DB:link_attribute_type/name:1348
+msgid "music history"
+msgstr ""
+
+#: DB:link_attribute_type/name:1201
+msgid "music production"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1046
+msgid "music quoted in"
+msgstr ""
+
+#: DB:link_attribute_type/name:1222
+msgid "music theory"
+msgstr ""
+
+#: DB:link_attribute_type/name:1203
+msgid "music therapy"
+msgstr ""
+
+#: DB:link_type/name:857
+msgid "music video"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:857
+msgid "music video for"
+msgstr ""
+
+#: DB:link_type/link_phrase:857
+msgid "music videos"
+msgstr ""
+
+#: DB:link_type/name:1046
+msgid "musical quotation"
+msgstr ""
+
+#: DB:link_type/link_phrase:106 DB:link_type/reverse_link_phrase:106
+#: DB:link_type/long_link_phrase:106
+msgid "musical relationship"
+msgstr ""
+
+#: DB:link_type/name:106
+msgid "musical relationships"
+msgstr ""
+
+#: DB:link_attribute_type/name:1221
+msgid "musical theatre"
+msgstr ""
+
+#: DB:link_attribute_type/name:1141
+msgid "musicology"
+msgstr ""
+
+#: DB:link_type/name:215 DB:link_type/name:462 DB:link_type/name:189
+msgid "myspace"
+msgstr ""
+
+#: DB:link_type/link_phrase:973 DB:link_type/link_phrase:972
+#: DB:link_type/link_phrase:974 DB:link_type/name:973 DB:link_type/name:972
+#: DB:link_type/name:975 DB:link_type/name:974 DB:link_type/name:1000
+#: DB:link_type/reverse_link_phrase:975 DB:link_type/reverse_link_phrase:1000
+msgid "named after"
+msgstr ""
+
+#: DB:link_type/link_phrase:935 DB:link_type/name:935
+#: DB:link_type/reverse_link_phrase:935 DB:link_type/long_link_phrase:935
+msgid "non-performing relationships"
+msgstr ""
+
+#: DB:link_attribute_type/name:788 DB:link_attribute_type/name:1032
+msgid "number"
+msgstr ""
+
+#: DB:link_type/name:745 DB:link_type/name:782 DB:link_type/name:183
+#: DB:link_type/name:363 DB:link_type/name:287
+msgid "official homepage"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:745 DB:link_type/reverse_link_phrase:782
+#: DB:link_type/reverse_link_phrase:183 DB:link_type/reverse_link_phrase:219
+#: DB:link_type/reverse_link_phrase:363
+msgid "official homepage for"
+msgstr ""
+
+#: DB:link_type/link_phrase:745 DB:link_type/link_phrase:782
+#: DB:link_type/link_phrase:183 DB:link_type/link_phrase:219
+#: DB:link_type/link_phrase:363
+msgid "official homepages"
+msgstr ""
+
+#: DB:link_type/name:219
+msgid "official site"
+msgstr ""
+
+#: DB:link_type/link_phrase:185
+msgid "online communities"
+msgstr ""
+
+#: DB:link_type/name:185
+msgid "online community"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:185
+msgid "online community page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:841 DB:link_type/link_phrase:221
+#: DB:link_type/link_phrase:660 DB:link_type/name:841 DB:link_type/name:221
+#: DB:link_type/name:660 DB:link_type/reverse_link_phrase:841
+#: DB:link_type/reverse_link_phrase:221 DB:link_type/reverse_link_phrase:660
+#: DB:link_type/long_link_phrase:841 DB:link_type/long_link_phrase:221
+#: DB:link_type/long_link_phrase:660
+msgid "online data"
+msgstr ""
+
+#: DB:link_attribute_type/name:1220
+msgid "opera"
+msgstr ""
+
+#: DB:link_attribute_type/name:1053
+msgid "optional"
+msgstr ""
+
+#: DB:link_type/name:807
+msgid "orchestra"
+msgstr ""
+
+#: DB:link_type/link_phrase:807
+msgid "orchestra at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:150 DB:link_type/long_link_phrase:45
+msgid "orchestra {additional:additionally} performed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:807
+msgid "orchestras"
+msgstr ""
+
+#: DB:link_type/name:316
+msgid "orchestration"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:316
+msgid "orchestration of"
+msgstr ""
+
+#: DB:link_type/link_phrase:316
+msgid "orchestrations"
+msgstr ""
+
+#: DB:link_type/name:40 DB:link_type/name:164 DB:link_type/name:300
+msgid "orchestrator"
+msgstr ""
+
+#: DB:link_type/name:856
+msgid "organist"
+msgstr ""
+
+#: DB:link_attribute_type/name:525
+msgid "original"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:836
+msgid "originally scheduled as"
+msgstr ""
+
+#: DB:link_attribute_type/name:1225 DB:link_attribute_type/name:1128
+msgid "other"
+msgstr ""
+
+#: DB:link_type/link_phrase:1086 DB:link_type/link_phrase:753
+#: DB:link_type/link_phrase:730 DB:link_type/link_phrase:82
+#: DB:link_type/link_phrase:273 DB:link_type/link_phrase:222
+#: DB:link_type/link_phrase:188 DB:link_type/link_phrase:306
+#: DB:link_type/link_phrase:561 DB:link_type/link_phrase:746
+#: DB:link_type/link_phrase:96 DB:link_type/link_phrase:803
+#: DB:link_type/name:1086 DB:link_type/name:753 DB:link_type/name:730
+#: DB:link_type/name:82 DB:link_type/name:273 DB:link_type/name:222
+#: DB:link_type/name:188 DB:link_type/name:306 DB:link_type/name:561
+#: DB:link_type/name:746 DB:link_type/name:96 DB:link_type/name:803
+#: DB:link_type/reverse_link_phrase:1086 DB:link_type/reverse_link_phrase:753
+#: DB:link_type/reverse_link_phrase:730 DB:link_type/reverse_link_phrase:82
+#: DB:link_type/reverse_link_phrase:273 DB:link_type/reverse_link_phrase:222
+#: DB:link_type/reverse_link_phrase:188 DB:link_type/reverse_link_phrase:306
+#: DB:link_type/reverse_link_phrase:561 DB:link_type/reverse_link_phrase:746
+#: DB:link_type/reverse_link_phrase:96 DB:link_type/reverse_link_phrase:803
+msgid "other databases"
+msgstr ""
+
+#: DB:link_type/name:241
+msgid "other version"
+msgstr ""
+
+#: DB:link_type/link_phrase:233 DB:link_type/name:233
+#: DB:link_type/reverse_link_phrase:233 DB:link_type/long_link_phrase:233
+msgid "other versions"
+msgstr ""
+
+#: DB:link_attribute_type/name:461
+msgid "other vocals"
+msgstr ""
+
+#: DB:link_type/name:988 DB:link_type/name:989 DB:link_type/name:991
+#: DB:link_type/reverse_link_phrase:988 DB:link_type/reverse_link_phrase:989
+#: DB:link_type/reverse_link_phrase:991
+msgid "owner"
+msgstr ""
+
+#: DB:link_type/link_phrase:990 DB:link_type/name:990
+#: DB:link_type/reverse_link_phrase:990 DB:link_type/long_link_phrase:990
+msgid "ownership"
+msgstr ""
+
+#: DB:link_type/link_phrase:988 DB:link_type/link_phrase:989
+#: DB:link_type/link_phrase:991 DB:link_type/long_link_phrase:988
+#: DB:link_type/long_link_phrase:989 DB:link_type/long_link_phrase:991
+msgid "owns"
+msgstr ""
+
+#: DB:link_type/name:109
+msgid "parent"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:200
+msgid "parent label"
+msgstr ""
+
+#: DB:link_attribute_type/name:511
+msgid "parody"
+msgstr ""
+
+#: DB:link_type/link_phrase:802 DB:link_type/link_phrase:742
+#: DB:link_type/link_phrase:740 DB:link_type/link_phrase:741
+#: DB:link_type/link_phrase:996 DB:link_type/name:802 DB:link_type/name:356
+#: DB:link_type/name:743 DB:link_type/name:742 DB:link_type/name:740
+#: DB:link_type/name:741 DB:link_type/name:996
+#: DB:link_type/reverse_link_phrase:739 DB:link_type/reverse_link_phrase:818
+#: DB:link_type/reverse_link_phrase:717 DB:link_type/reverse_link_phrase:356
+#: DB:link_type/reverse_link_phrase:281 DB:link_type/reverse_link_phrase:743
+msgid "part of"
+msgstr ""
+
+#: DB:link_attribute_type/name:1033
+msgid "part of collection"
+msgstr ""
+
+#: DB:link_type/name:1
+msgid "part of set"
+msgstr ""
+
+#: DB:link_attribute_type/name:579
+msgid "partial"
+msgstr ""
+
+#: DB:link_type/link_phrase:818 DB:link_type/link_phrase:717
+#: DB:link_type/link_phrase:356 DB:link_type/link_phrase:281
+#: DB:link_type/name:739 DB:link_type/name:818 DB:link_type/name:717
+#: DB:link_type/name:281
+msgid "parts"
+msgstr ""
+
+#: DB:link_type/name:901 DB:link_type/name:900 DB:link_type/name:898
+#: DB:link_type/name:899 DB:link_type/name:897
+msgid "patronage"
+msgstr ""
+
+#: DB:link_type/link_phrase:901 DB:link_type/link_phrase:900
+#: DB:link_type/link_phrase:898 DB:link_type/link_phrase:899
+#: DB:link_type/link_phrase:897
+msgid "patronage page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:901 DB:link_type/reverse_link_phrase:900
+#: DB:link_type/reverse_link_phrase:898 DB:link_type/reverse_link_phrase:899
+#: DB:link_type/reverse_link_phrase:897
+msgid "patronage page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:34 DB:link_type/link_phrase:122
+#: DB:link_type/name:34 DB:link_type/name:122 DB:link_type/name:278
+#: DB:link_type/reverse_link_phrase:34 DB:link_type/reverse_link_phrase:122
+#: DB:link_type/long_link_phrase:34 DB:link_type/long_link_phrase:122
+msgid "performance"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:108
+msgid "performance name of"
+msgstr ""
+
+#: DB:link_type/link_phrase:887 DB:link_type/name:887
+msgid "performance of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:887
+msgid "performed at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:292
+msgid "performed the voice of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:152 DB:link_type/long_link_phrase:53
+msgid "performed {additional} {assistant} chorus master on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:44 DB:link_type/long_link_phrase:148
+msgid "performed {additional} {guest} {solo} {instrument:%|instruments} on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:60 DB:link_type/long_link_phrase:149
+msgid "performed {additional} {guest} {solo} {vocal:%|vocals} on"
+msgstr ""
+
+#: DB:link_type/name:51 DB:link_type/name:156
+msgid "performer"
+msgstr ""
+
+#: DB:link_type/name:150 DB:link_type/name:45
+msgid "performing orchestra"
+msgstr ""
+
+#: DB:link_type/link_phrase:108 DB:link_type/long_link_phrase:108
+msgid "performs as"
+msgstr ""
+
+#: DB:link_type/name:723
+msgid "personal label"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:723
+msgid "personal label for"
+msgstr ""
+
+#: DB:link_type/name:724
+msgid "personal publisher"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:724
+msgid "personal publisher for"
+msgstr ""
+
+#: DB:link_type/link_phrase:113 DB:link_type/name:113
+#: DB:link_type/reverse_link_phrase:113 DB:link_type/long_link_phrase:113
+msgid "personal relationship"
+msgstr ""
+
+#: DB:link_type/name:867 DB:link_type/name:711 DB:link_type/name:710
+#: DB:link_type/name:869
+msgid "phonographic copyright"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:867 DB:link_type/reverse_link_phrase:711
+#: DB:link_type/reverse_link_phrase:710 DB:link_type/reverse_link_phrase:869
+msgid "phonographic copyright (℗) by"
+msgstr ""
+
+#: DB:link_type/name:123 DB:link_type/name:1175 DB:link_type/name:20
+msgid "photography"
+msgstr ""
+
+#: DB:link_type/link_phrase:173 DB:link_type/link_phrase:396
+#: DB:link_type/link_phrase:732
+msgid "picture"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:173 DB:link_type/reverse_link_phrase:396
+#: DB:link_type/reverse_link_phrase:732
+msgid "picture of"
+msgstr ""
+
+#: DB:link_type/link_phrase:915 DB:link_type/name:915
+msgid "podcast feed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:915
+msgid "podcast feed for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1200
+msgid "popular / rock music"
+msgstr ""
+
+#: DB:link_type/link_phrase:808 DB:link_type/name:808
+msgid "poster"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:808
+msgid "poster for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1219
+msgid "postgraduate"
+msgstr ""
+
+#: DB:link_attribute_type/name:1353
+msgid "pre"
+msgstr ""
+
+#: DB:link_type/name:845 DB:link_type/name:716 DB:link_type/name:715
+#: DB:link_type/name:956
+msgid "premiere"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:845 DB:link_type/reverse_link_phrase:716
+msgid "premiered at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:956
+msgid "premiered by"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:715
+msgid "premiered in"
+msgstr ""
+
+#: DB:link_type/link_phrase:845
+msgid "premieres"
+msgstr ""
+
+#: DB:link_type/link_phrase:716 DB:link_type/link_phrase:715
+msgid "premieres hosted"
+msgstr ""
+
+#: DB:link_type/name:1168 DB:link_type/reverse_link_phrase:1168
+msgid "presented"
+msgstr ""
+
+#: DB:link_type/link_phrase:1168
+msgid "presented by"
+msgstr ""
+
+#: DB:link_type/link_phrase:942 DB:link_type/name:942
+#: DB:link_type/long_link_phrase:942
+msgid "pressed"
+msgstr ""
+
+#: DB:link_type/name:941 DB:link_type/reverse_link_phrase:941
+msgid "pressed at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:942
+msgid "pressed by"
+msgstr ""
+
+#: DB:link_type/link_phrase:941
+msgid "pressing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:834 DB:link_type/name:834
+msgid "previous attribution"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1
+msgid "previous disc"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:834
+msgid "previously attributed to"
+msgstr ""
+
+#: DB:link_type/link_phrase:714 DB:link_type/name:714
+msgid "primary concert venue"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:714
+msgid "primary concert venue of"
+msgstr ""
+
+#: DB:link_attribute_type/name:618
+msgid "principal"
+msgstr ""
+
+#: DB:link_type/link_phrase:985 DB:link_type/name:985
+#: DB:link_type/long_link_phrase:985
+msgid "printed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:985
+msgid "printed by"
+msgstr ""
+
+#: DB:link_type/name:849 DB:link_type/reverse_link_phrase:849
+msgid "printed in"
+msgstr ""
+
+#: DB:link_type/link_phrase:849
+msgid "printing location for"
+msgstr ""
+
+#: DB:link_type/name:825 DB:link_type/name:824
+msgid "produced at"
+msgstr ""
+
+#: DB:link_type/name:951 DB:link_type/name:950
+msgid "produced for"
+msgstr ""
+
+#: DB:link_type/name:827 DB:link_type/name:826
+msgid "produced in"
+msgstr ""
+
+#: DB:link_type/link_phrase:154 DB:link_type/link_phrase:49
+msgid "produced material that was {additional:additionally} sampled in"
+msgstr ""
+
+#: DB:link_type/name:141 DB:link_type/name:30
+msgid "producer"
+msgstr ""
+
+#: DB:link_type/link_phrase:117 DB:link_type/name:117
+msgid "producer position"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:117
+msgid "producers"
+msgstr ""
+
+#: DB:link_type/link_phrase:256 DB:link_type/link_phrase:160
+#: DB:link_type/link_phrase:59 DB:link_type/link_phrase:72
+#: DB:link_type/name:256 DB:link_type/name:160 DB:link_type/name:59
+#: DB:link_type/name:72 DB:link_type/reverse_link_phrase:256
+#: DB:link_type/reverse_link_phrase:160 DB:link_type/reverse_link_phrase:59
+#: DB:link_type/reverse_link_phrase:72 DB:link_type/long_link_phrase:256
+#: DB:link_type/long_link_phrase:160 DB:link_type/long_link_phrase:59
+#: DB:link_type/long_link_phrase:72
+msgid "production"
+msgstr ""
+
+#: DB:link_type/name:37 DB:link_type/name:132
+msgid "programming"
+msgstr ""
+
+#: DB:link_type/link_phrase:359 DB:link_type/name:359
+#: DB:link_type/long_link_phrase:359
+msgid "promoted"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:359
+msgid "promoted by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:135 DB:link_type/long_link_phrase:62
+msgid "provided artist & repertoire support for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:23 DB:link_type/long_link_phrase:134
+msgid "provided booking for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:142
+msgid "provided legal representation for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
+msgid "provided {additional} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:993 DB:link_type/long_link_phrase:1170
+msgid "provided {additional} artwork on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:63 DB:link_type/long_link_phrase:146
+msgid "provided {additional} creative direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1171
+msgid "provided {additional} design on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:19 DB:link_type/long_link_phrase:130
+msgid "provided {additional} design/illustration on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1172 DB:link_type/long_link_phrase:125
+#: DB:link_type/long_link_phrase:27
+msgid "provided {additional} graphic design on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:927 DB:link_type/long_link_phrase:1173
+msgid "provided {additional} illustration on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:22
+msgid "provided {additional} legal representation for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
+#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
+#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
+#: DB:link_type/long_link_phrase:127
+msgid "published"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:206 DB:link_type/reverse_link_phrase:127
+msgid "publisher"
+msgstr ""
+
+#: DB:link_type/link_phrase:933 DB:link_type/name:933
+#: DB:link_type/long_link_phrase:933
+msgid "publishes series"
+msgstr ""
+
+#: DB:link_type/name:206 DB:link_type/name:127 DB:link_type/name:161
+#: DB:link_type/name:66 DB:link_type/name:208 DB:link_type/name:32
+msgid "publishing"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:933
+msgid "publishing label"
+msgstr ""
+
+#: DB:link_type/link_phrase:254 DB:link_type/link_phrase:74
+#: DB:link_type/name:912 DB:link_type/name:959 DB:link_type/name:254
+#: DB:link_type/name:74 DB:link_type/name:176
+msgid "purchase for download"
+msgstr ""
+
+#: DB:link_type/link_phrase:79 DB:link_type/name:960 DB:link_type/name:175
+#: DB:link_type/name:79 DB:link_type/name:913
+msgid "purchase for mail-order"
+msgstr ""
+
+#: DB:link_type/link_phrase:959 DB:link_type/link_phrase:176
+msgid "purchase music for download"
+msgstr ""
+
+#: DB:link_type/link_phrase:960 DB:link_type/link_phrase:175
+msgid "purchase music for mail-order"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:912
+msgid "purchase score for download"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:913
+msgid "purchase score for mail-order"
+msgstr ""
+
+#: DB:link_type/name:174
+msgid "purevolume"
+msgstr ""
+
+#: DB:link_type/link_phrase:1047 DB:link_type/long_link_phrase:1047
+msgid "quotes lyrics from"
+msgstr ""
+
+#: DB:link_type/link_phrase:1046 DB:link_type/long_link_phrase:1046
+msgid "quotes music from"
+msgstr ""
+
+#: DB:link_attribute_type/name:952
+msgid "re"
+msgstr ""
+
+#: DB:link_type/link_phrase:917 DB:link_type/long_link_phrase:917
+msgid "reconstructed"
+msgstr ""
+
+#: DB:link_type/name:917 DB:link_type/reverse_link_phrase:917
+msgid "reconstructed by"
+msgstr ""
+
+#: DB:link_type/name:809 DB:link_type/name:810 DB:link_type/name:693
+#: DB:link_type/name:695 DB:link_type/reverse_link_phrase:809
+#: DB:link_type/reverse_link_phrase:810
+msgid "recorded at"
+msgstr ""
+
+#: DB:link_type/link_phrase:1006 DB:link_type/link_phrase:1007
+#: DB:link_type/link_phrase:1008 DB:link_type/name:1006 DB:link_type/name:1007
+#: DB:link_type/name:1008
+msgid "recorded during"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1011 DB:link_type/long_link_phrase:1012
+msgid "recorded field recordings for"
+msgstr ""
+
+#: DB:link_type/name:698 DB:link_type/name:699
+msgid "recorded in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1008
+msgid "recorded music series"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1006
+msgid "recorded recordings"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1007
+msgid "recorded release groups"
+msgstr ""
+
+#: DB:link_type/name:36 DB:link_type/name:128
+msgid "recording"
+msgstr ""
+
+#: DB:link_type/name:121
+msgid "recording contract"
+msgstr ""
+
+#: DB:link_type/name:702
+msgid "recording engineer position"
+msgstr ""
+
+#: DB:link_type/link_phrase:702
+msgid "recording engineer position at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:702
+msgid "recording engineers"
+msgstr ""
+
+#: DB:link_type/link_phrase:809 DB:link_type/link_phrase:810
+msgid "recording location for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:239
+msgid "referred to in medleys"
+msgstr ""
+
+#: DB:link_type/link_phrase:201
+msgid "reissuing the catalog of"
+msgstr ""
+
+#: DB:link_type/link_phrase:738 DB:link_type/reverse_link_phrase:738
+msgid "related instruments"
+msgstr ""
+
+#: DB:link_type/name:738
+msgid "related to"
+msgstr ""
+
+#: DB:link_type/link_phrase:3
+msgid "released in support of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:943
+msgid "relocated from"
+msgstr ""
+
+#: DB:link_type/link_phrase:943 DB:link_type/name:943
+#: DB:link_type/long_link_phrase:943
+msgid "relocated to"
+msgstr ""
+
+#: DB:link_type/name:6 DB:link_type/name:236
+msgid "remaster"
+msgstr ""
+
+#: DB:link_type/link_phrase:6 DB:link_type/link_phrase:236
+msgid "remaster of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:6
+msgid "remastered versions"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:236
+msgid "remasters"
+msgstr ""
+
+#: DB:link_type/name:230 DB:link_type/name:9
+msgid "remix"
+msgstr ""
+
+#: DB:link_type/link_phrase:230 DB:link_type/link_phrase:9
+msgid "remix of"
+msgstr ""
+
+#: DB:link_type/name:829 DB:link_type/name:828
+msgid "remixed at"
+msgstr ""
+
+#: DB:link_type/name:1178 DB:link_type/reverse_link_phrase:1178
+msgid "remixed for"
+msgstr ""
+
+#: DB:link_type/name:831 DB:link_type/name:830
+msgid "remixed in"
+msgstr ""
+
+#: DB:link_type/name:153 DB:link_type/name:47
+msgid "remixer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:9
+msgid "remixes"
+msgstr ""
+
+#: DB:link_type/link_phrase:50 DB:link_type/link_phrase:157
+#: DB:link_type/link_phrase:13 DB:link_type/link_phrase:234
+#: DB:link_type/name:50 DB:link_type/name:157 DB:link_type/name:13
+#: DB:link_type/name:234 DB:link_type/reverse_link_phrase:50
+#: DB:link_type/reverse_link_phrase:157 DB:link_type/reverse_link_phrase:13
+#: DB:link_type/reverse_link_phrase:234 DB:link_type/long_link_phrase:50
+#: DB:link_type/long_link_phrase:157 DB:link_type/long_link_phrase:13
+#: DB:link_type/long_link_phrase:234
+msgid "remixes and compilations"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:202 DB:link_type/reverse_link_phrase:1079
+msgid "renamed from"
+msgstr ""
+
+#: DB:link_type/link_phrase:202 DB:link_type/link_phrase:1079
+msgid "renamed into"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1009
+msgid "replaced"
+msgstr ""
+
+#: DB:link_type/link_phrase:1009 DB:link_type/name:1009
+msgid "replaced by"
+msgstr ""
+
+#: DB:link_type/link_phrase:836 DB:link_type/name:836
+msgid "rescheduled as"
+msgstr ""
+
+#: DB:link_type/link_phrase:1164 DB:link_type/name:1164
+#: DB:link_type/reverse_link_phrase:1164 DB:link_type/long_link_phrase:1164
+msgid "residence position"
+msgstr ""
+
+#: DB:link_type/link_phrase:994
+msgid "residencies"
+msgstr ""
+
+#: DB:link_type/name:994
+msgid "residency"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:994
+msgid "residency by"
+msgstr ""
+
+#: DB:link_type/name:842 DB:link_type/name:94
+msgid "review"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:842 DB:link_type/reverse_link_phrase:94
+msgid "review page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:842 DB:link_type/link_phrase:94
+msgid "reviews"
+msgstr ""
+
+#: DB:link_type/link_phrase:844 DB:link_type/long_link_phrase:844
+msgid "revised"
+msgstr ""
+
+#: DB:link_type/name:882 DB:link_type/reverse_link_phrase:882
+msgid "revised at"
+msgstr ""
+
+#: DB:link_type/name:844 DB:link_type/reverse_link_phrase:844
+msgid "revised by"
+msgstr ""
+
+#: DB:link_type/name:881 DB:link_type/reverse_link_phrase:881
+msgid "revised in"
+msgstr ""
+
+#: DB:link_type/link_phrase:881 DB:link_type/link_phrase:882
+msgid "revising location for"
+msgstr ""
+
+#: DB:link_type/name:315 DB:link_type/reverse_link_phrase:315
+msgid "revision of"
+msgstr ""
+
+#: DB:link_type/name:349 DB:link_type/reverse_link_phrase:349
+msgid "rights society"
+msgstr ""
+
+#: DB:link_type/link_phrase:349
+msgid "rights society associated with"
+msgstr ""
+
+#: DB:link_type/link_phrase:112 DB:link_type/reverse_link_phrase:112
+msgid "romantically involved with"
+msgstr ""
+
+#: DB:link_type/link_phrase:83 DB:link_type/link_phrase:258
+msgid "samples IMDb entry"
+msgstr ""
+
+#: DB:link_type/name:154 DB:link_type/name:49
+msgid "samples from artist"
+msgstr ""
+
+#: DB:link_type/name:69 DB:link_type/name:231
+msgid "samples material"
+msgstr ""
+
+#: DB:link_type/link_phrase:1083 DB:link_type/name:1083
+msgid "schedule"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1083
+msgid "schedule for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1166 DB:link_type/name:1166
+msgid "school director at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1166
+msgid "school directors"
+msgstr ""
+
+#: DB:link_type/name:308 DB:link_type/name:976 DB:link_type/name:977
+#: DB:link_type/name:307 DB:link_type/name:280
+msgid "secondhandsongs"
+msgstr ""
+
+#: DB:link_type/link_phrase:811 DB:link_type/link_phrase:816
+#: DB:link_type/link_phrase:817 DB:link_type/link_phrase:938
+msgid "setlist.fm"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:811 DB:link_type/reverse_link_phrase:816
+#: DB:link_type/reverse_link_phrase:817 DB:link_type/reverse_link_phrase:938
+msgid "setlist.fm page for"
+msgstr ""
+
+#: DB:link_type/name:811 DB:link_type/name:816 DB:link_type/name:817
+#: DB:link_type/name:938
+msgid "setlistfm"
+msgstr ""
+
+#: DB:link_type/link_phrase:729 DB:link_type/name:729
+msgid "show notes"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:729
+msgid "show notes for"
+msgstr ""
+
+#: DB:link_type/name:110
+msgid "sibling"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:121
+msgid "signed"
+msgstr ""
+
+#: DB:link_type/link_phrase:121
+msgid "signed by"
+msgstr ""
+
+#: DB:link_attribute_type/name:1199
+msgid "singing"
+msgstr ""
+
+#: DB:link_type/name:11
+msgid "single from"
+msgstr ""
+
+#: DB:link_type/link_phrase:11
+msgid "single/EP which was taken from"
+msgstr ""
+
+#: DB:link_type/name:784 DB:link_type/name:783 DB:link_type/name:218
+#: DB:link_type/name:429 DB:link_type/name:192
+msgid "social network"
+msgstr ""
+
+#: DB:link_type/link_phrase:784 DB:link_type/link_phrase:783
+#: DB:link_type/link_phrase:218 DB:link_type/link_phrase:429
+#: DB:link_type/link_phrase:192
+msgid "social networking"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:784 DB:link_type/reverse_link_phrase:783
+#: DB:link_type/reverse_link_phrase:218 DB:link_type/reverse_link_phrase:429
+#: DB:link_type/reverse_link_phrase:192
+msgid "social networking page for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1351
+msgid "solfeggio"
+msgstr ""
+
+#: DB:link_attribute_type/name:596
+msgid "solo"
+msgstr ""
+
+#: DB:link_type/name:289
+msgid "songfacts"
+msgstr ""
+
+#: DB:link_type/name:786 DB:link_type/name:785 DB:link_type/name:787
+msgid "songkick"
+msgstr ""
+
+#: DB:link_attribute_type/description:10 DB:link_attribute_type/name:10
+msgid "soprano vocals"
+msgstr ""
+
+#: DB:link_type/name:133 DB:link_type/name:29
+msgid "sound"
+msgstr ""
+
+#: DB:link_type/name:870 DB:link_type/name:291 DB:link_type/name:290
+#: DB:link_type/name:940
+msgid "soundcloud"
+msgstr ""
+
+#: DB:link_attribute_type/name:561
+msgid "spoken vocals"
+msgstr ""
+
+#: DB:link_type/link_phrase:287
+msgid "standalone website"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:287
+msgid "standalone website for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1020
+msgid "step"
+msgstr ""
+
+#: DB:link_type/link_phrase:997 DB:link_type/link_phrase:194
+msgid "stream for free"
+msgstr ""
+
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
+msgid "stream {video} for free"
+msgstr ""
+
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
+msgid "streaming"
+msgstr ""
+
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
+msgid "streaming page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
+msgid "streaming page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:847 DB:link_type/reverse_link_phrase:923
+msgid "students"
+msgstr ""
+
+#: DB:link_type/link_phrase:923 DB:link_type/name:923
+#: DB:link_type/long_link_phrase:923
+msgid "studied at"
+msgstr ""
+
+#: DB:link_attribute_type/name:1310
+msgid "sub"
+msgstr ""
+
+#: DB:link_type/name:1095
+msgid "subgenre"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1095
+msgid "subgenre of"
+msgstr ""
+
+#: DB:link_type/link_phrase:1095
+msgid "subgenres"
+msgstr ""
+
+#: DB:link_type/name:722
+msgid "subgroup"
+msgstr ""
+
+#: DB:link_type/link_phrase:722
+msgid "subgroup of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:722
+msgid "subgroups"
+msgstr ""
+
+#: DB:link_attribute_type/name:1125
+msgid "subject"
+msgstr ""
+
+#: DB:link_type/link_phrase:823 DB:link_type/name:823
+msgid "subseries"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:823
+msgid "subseries of"
+msgstr ""
+
+#: DB:link_type/link_phrase:200
+msgid "subsidiaries"
+msgstr ""
+
+#: DB:link_type/name:736
+msgid "subtype"
+msgstr ""
+
+#: DB:link_type/link_phrase:736
+msgid "subtypes"
+msgstr ""
+
+#: DB:link_type/name:799
+msgid "support act"
+msgstr ""
+
+#: DB:link_type/link_phrase:799
+msgid "support act at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:799
+msgid "support acts"
+msgstr ""
+
+#: DB:link_type/name:932 DB:link_type/reverse_link_phrase:932
+msgid "supporting DJ"
+msgstr ""
+
+#: DB:link_type/link_phrase:932
+msgid "supporting DJ at"
+msgstr ""
+
+#: DB:link_type/link_phrase:104
+msgid "supporting artist for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:104
+msgid "supporting artists"
+msgstr ""
+
+#: DB:link_type/name:104
+msgid "supporting musician"
+msgstr ""
+
+#: DB:link_type/name:3
+msgid "supporting release"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:3
+msgid "supporting releases"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:105
+msgid "supporting {instrument} by"
+msgstr ""
+
+#: DB:link_type/link_phrase:105
+msgid "supporting {instrument} for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1150
+msgid "task"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:847
+msgid "taught"
+msgstr ""
+
+#: DB:link_type/link_phrase:893 DB:link_type/link_phrase:924
+#: DB:link_type/name:924 DB:link_type/long_link_phrase:893
+#: DB:link_type/long_link_phrase:924
+msgid "taught at"
+msgstr ""
+
+#: DB:link_type/name:847 DB:link_type/name:893
+msgid "teacher"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:847 DB:link_type/reverse_link_phrase:893
+msgid "teachers"
+msgstr ""
+
+#: DB:link_attribute_type/description:11 DB:link_attribute_type/name:11
+msgid "tenor vocals"
+msgstr ""
+
+#: DB:link_type/name:1193 DB:link_type/name:1194 DB:link_type/name:1195
+#: DB:link_type/name:1196 DB:link_type/name:1197
+msgid "ticketing"
+msgstr ""
+
+#: DB:link_type/link_phrase:1193 DB:link_type/link_phrase:1194
+#: DB:link_type/link_phrase:1195 DB:link_type/link_phrase:1196
+#: DB:link_type/link_phrase:1197
+msgid "ticketing page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1193 DB:link_type/reverse_link_phrase:1194
+#: DB:link_type/reverse_link_phrase:1195 DB:link_type/reverse_link_phrase:1196
+#: DB:link_type/reverse_link_phrase:1197
+msgid "ticketing page for"
+msgstr ""
+
+#: DB:link_attribute_type/name:830
+msgid "time"
+msgstr ""
+
+#: DB:link_type/name:859
+msgid "tour"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:859
+msgid "tour by"
+msgstr ""
+
+#: DB:link_type/name:888
+msgid "tour in support of"
+msgstr ""
+
+#: DB:link_type/link_phrase:859
+msgid "tours"
+msgstr ""
+
+#: DB:link_type/name:1179
+msgid "transfer"
+msgstr ""
+
+#: DB:link_type/name:1182
+msgid "transferred at"
+msgstr ""
+
+#: DB:link_type/name:1181
+msgid "transferred in"
+msgstr ""
+
+#: DB:link_type/name:2
+msgid "transl-tracklisting"
+msgstr ""
+
+#: DB:link_attribute_type/name:517 DB:link_type/link_phrase:871
+msgid "translated"
+msgstr ""
+
+#: DB:link_type/name:883 DB:link_type/reverse_link_phrase:883
+msgid "translated at"
+msgstr ""
+
+#: DB:link_type/name:884
+msgid "translated in"
+msgstr ""
+
+#: DB:link_type/name:1082
+msgid "translated version"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1082
+msgid "translated version of"
+msgstr ""
+
+#: DB:link_type/link_phrase:1082
+msgid "translated versions"
+msgstr ""
+
+#: DB:link_attribute_type/name:1018 DB:link_type/name:871 DB:link_type/name:872
+msgid "translator"
+msgstr ""
+
+#: DB:link_attribute_type/name:477
+msgid "transliterated"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:2
+msgid "transliterated/translated track listing of"
+msgstr ""
+
+#: DB:link_type/link_phrase:2
+msgid "transliterated/translated track listings"
+msgstr ""
+
+#: DB:link_attribute_type/name:834
+msgid "treble vocals"
+msgstr ""
+
+#: DB:link_type/name:728 DB:link_type/name:65 DB:link_type/name:970
+msgid "tribute"
+msgstr ""
+
+#: DB:link_type/link_phrase:65 DB:link_type/link_phrase:970
+msgid "tribute albums"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:728
+msgid "tribute artists"
+msgstr ""
+
+#: DB:link_type/link_phrase:936
+msgid "tribute events"
+msgstr ""
+
+#: DB:link_type/link_phrase:728 DB:link_type/name:936
+#: DB:link_type/reverse_link_phrase:936 DB:link_type/reverse_link_phrase:65
+#: DB:link_type/reverse_link_phrase:970
+msgid "tribute to"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:736
+msgid "type of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1090
+msgid "used in"
+msgstr ""
+
+#: DB:link_type/link_phrase:1090
+msgid "used instruments"
+msgstr ""
+
+#: DB:link_type/name:86 DB:link_type/name:191 DB:link_type/name:210
+#: DB:link_type/name:788 DB:link_type/name:992 DB:link_type/name:1013
+msgid "vgmdb"
+msgstr ""
+
+#: DB:link_attribute_type/name:582 DB:link_type/link_phrase:1184
+#: DB:link_type/link_phrase:961 DB:link_type/name:1184 DB:link_type/name:961
+#: DB:link_type/reverse_link_phrase:1184 DB:link_type/reverse_link_phrase:961
+#: DB:link_type/long_link_phrase:1184 DB:link_type/long_link_phrase:961
+msgid "video"
+msgstr ""
+
+#: DB:link_type/name:858
+msgid "video appearance"
+msgstr ""
+
+#: DB:link_type/link_phrase:804 DB:link_type/link_phrase:304
+#: DB:link_type/link_phrase:805 DB:link_type/link_phrase:303
+#: DB:link_type/link_phrase:495 DB:link_type/name:804 DB:link_type/name:304
+#: DB:link_type/name:805 DB:link_type/name:303 DB:link_type/name:495
+msgid "video channel"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:804 DB:link_type/reverse_link_phrase:304
+#: DB:link_type/reverse_link_phrase:805 DB:link_type/reverse_link_phrase:303
+#: DB:link_type/reverse_link_phrase:495
+msgid "video channel for"
+msgstr ""
+
+#: DB:link_type/name:962 DB:link_type/name:1185
+msgid "video director"
+msgstr ""
+
+#: DB:link_type/name:963 DB:link_type/name:966
+msgid "video shot at"
+msgstr ""
+
+#: DB:link_type/name:964
+msgid "video shot in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:858
+msgid "visual appearances"
+msgstr ""
+
+#: DB:link_attribute_type/name:3 DB:link_type/name:60 DB:link_type/name:149
+msgid "vocal"
+msgstr ""
+
+#: DB:link_type/name:296 DB:link_type/name:298 DB:link_type/name:294
+msgid "vocal arranger"
+msgstr ""
+
+#: DB:link_type/name:107
+msgid "vocal supporting musician"
+msgstr ""
+
+#: DB:link_type/name:292
+msgid "voice actor"
+msgstr ""
+
+#: DB:link_type/link_phrase:292
+msgid "voice of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:292
+msgid "voiced by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1163
+msgid "was a VJ at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:937 DB:link_type/long_link_phrase:855
+msgid "was a composer-in-residence at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:806
+msgid "was a conductor at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:796 DB:link_type/long_link_phrase:797
+msgid "was a launch event for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:798
+msgid "was a main performer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:887
+msgid "was a performance of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1166
+msgid "was a school director at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:799
+msgid "was a support act at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:932
+msgid "was a supporting DJ at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1084
+msgid "was an engineer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:807
+msgid "was an orchestra at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:890 DB:link_type/reverse_link_phrase:889
+#: DB:link_type/reverse_link_phrase:892 DB:link_type/reverse_link_phrase:891
+msgid "was commissioned by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:794
+msgid "was held at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1006 DB:link_type/long_link_phrase:1007
+msgid "was recorded during"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:3
+msgid "was released in support of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:202 DB:link_type/long_link_phrase:1079
+msgid "was renamed into"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1009
+msgid "was replaced by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:836
+msgid "was rescheduled as"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:760 DB:link_type/long_link_phrase:759
+msgid "was the {guest} concertmaster for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:986 DB:link_type/long_link_phrase:987
+msgid "was the {instrument:%|instruments} technician for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:36 DB:link_type/long_link_phrase:128
+msgid "was {additional} {assistant} {associate} {co:co-}recording engineer for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1186 DB:link_type/long_link_phrase:1187
+msgid "was {assistant} audio director for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1165
+msgid "was {assistant} carillonneur at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:856
+msgid "was {assistant} organist at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:962 DB:link_type/long_link_phrase:1185
+msgid "was {assistant} video director for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1151
+msgid "whistling"
+msgstr ""
+
+#: DB:link_type/name:1087 DB:link_type/name:351 DB:link_type/name:353
+#: DB:link_type/name:749 DB:link_type/name:594 DB:link_type/name:354
+#: DB:link_type/name:790 DB:link_type/name:352 DB:link_type/name:733
+#: DB:link_type/name:358
+msgid "wikidata"
+msgstr ""
+
+#: DB:link_type/name:179 DB:link_type/name:595 DB:link_type/name:355
+#: DB:link_type/name:744 DB:link_type/name:279 DB:link_type/name:216
+#: DB:link_type/name:731 DB:link_type/name:89 DB:link_type/name:789
+msgid "wikipedia"
+msgstr ""
+
+#: DB:link_attribute_type/name:1346
+msgid "wind/brass conducting"
+msgstr ""
+
+#: DB:link_type/link_phrase:1002 DB:link_type/name:1002
+#: DB:link_type/reverse_link_phrase:1002 DB:link_type/long_link_phrase:1002
+msgid "work cataloguing"
+msgstr ""
+
+#: DB:link_type/name:921 DB:link_type/reverse_link_phrase:921
+msgid "work list entry"
+msgstr ""
+
+#: DB:link_type/link_phrase:921
+msgid "work list entry for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:704
+msgid "works as a mastering engineer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:703
+msgid "works as a mixing engineer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:702
+msgid "works as a recording engineer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:701
+msgid "works as an engineer at"
+msgstr ""
+
+#: DB:link_type/link_phrase:956
+msgid "works premiered"
+msgstr ""
+
+#: DB:link_type/name:54 DB:link_type/name:167
+msgid "writer"
+msgstr ""
+
+#: DB:link_type/name:874
+msgid "written at"
+msgstr ""
+
+#: DB:link_type/name:873
+msgid "written in"
+msgstr ""
+
+#: DB:link_type/name:791 DB:link_type/name:792 DB:link_type/name:193
+#: DB:link_type/name:225 DB:link_type/name:528
+msgid "youtube"
+msgstr ""
+
+#: DB:link_type/name:1080
+msgid "youtube music"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:886
+msgid "{additional:additionally} arranged at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:885
+msgid "{additional:additionally} arranged in"
+msgstr ""
+
+#: DB:link_type/link_phrase:55 DB:link_type/link_phrase:168
+#: DB:link_type/long_link_phrase:55 DB:link_type/long_link_phrase:168
+msgid "{additional:additionally} composed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:876
+msgid "{additional:additionally} composed at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:875
+msgid "{additional:additionally} composed in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:819 DB:link_type/reverse_link_phrase:820
+msgid "{additional:additionally} edited at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:822 DB:link_type/reverse_link_phrase:821
+msgid "{additional:additionally} edited in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:813 DB:link_type/reverse_link_phrase:812
+msgid "{additional:additionally} engineered at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:814 DB:link_type/reverse_link_phrase:815
+msgid "{additional:additionally} engineered in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:694 DB:link_type/reverse_link_phrase:696
+msgid "{additional:additionally} mixed at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:757 DB:link_type/reverse_link_phrase:758
+msgid "{additional:additionally} mixed in"
+msgstr ""
+
+#: DB:link_type/link_phrase:40 DB:link_type/link_phrase:164
+#: DB:link_type/link_phrase:300 DB:link_type/long_link_phrase:40
+#: DB:link_type/long_link_phrase:164 DB:link_type/long_link_phrase:300
+msgid "{additional:additionally} orchestrated"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:40
+msgid "{additional:additionally} orchestrator"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:825 DB:link_type/reverse_link_phrase:824
+msgid "{additional:additionally} produced at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:827 DB:link_type/reverse_link_phrase:826
+msgid "{additional:additionally} produced in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:693 DB:link_type/reverse_link_phrase:695
+msgid "{additional:additionally} recorded at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:698 DB:link_type/reverse_link_phrase:699
+msgid "{additional:additionally} recorded in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:829 DB:link_type/reverse_link_phrase:828
+msgid "{additional:additionally} remixed at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:831 DB:link_type/reverse_link_phrase:830
+msgid "{additional:additionally} remixed in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:69 DB:link_type/reverse_link_phrase:231
+msgid "{additional:additionally} sampled by"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:963 DB:link_type/reverse_link_phrase:966
+msgid "{additional:additionally} shot at"
+msgstr ""
+
+#: DB:link_type/link_phrase:966
+msgid "{additional:additionally} shot for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:964
+msgid "{additional:additionally} shot in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1182
+msgid "{additional:additionally} transferred at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1181
+msgid "{additional:additionally} transferred in"
+msgstr ""
+
+#: DB:link_type/link_phrase:872 DB:link_type/long_link_phrase:871
+#: DB:link_type/long_link_phrase:872
+msgid "{additional:additionally} translated"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:884
+msgid "{additional:additionally} translated in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:874
+msgid "{additional:additionally} written at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:873
+msgid "{additional:additionally} written in"
+msgstr ""
+
+#: DB:link_type/link_phrase:54 DB:link_type/link_phrase:167
+#: DB:link_type/long_link_phrase:54 DB:link_type/long_link_phrase:167
+msgid "{additional:additionally} wrote"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:57 DB:link_type/long_link_phrase:169
+msgid "{additional:additionally} wrote the libretto for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:56 DB:link_type/long_link_phrase:165
+msgid "{additional:additionally} wrote the lyrics for"
+msgstr ""
+
+#: DB:link_type/link_phrase:46 DB:link_type/link_phrase:151
+#: DB:link_type/long_link_phrase:46 DB:link_type/long_link_phrase:151
+msgid "{additional:additionally} {assistant} conducted"
+msgstr ""
+
+#: DB:link_type/link_phrase:153 DB:link_type/link_phrase:47
+#: DB:link_type/long_link_phrase:153 DB:link_type/long_link_phrase:47
+msgid "{additional:additionally} {assistant} remixed"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:37 DB:link_type/long_link_phrase:132
+msgid ""
+"{additional:additionally} {assistant} {associate} programmed {instrument:% "
+"on}"
+msgstr ""
+
+#: DB:link_type/link_phrase:140 DB:link_type/link_phrase:31
+#: DB:link_type/long_link_phrase:140 DB:link_type/long_link_phrase:31
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}audio engineered"
+msgstr ""
+
+#: DB:link_type/link_phrase:727 DB:link_type/link_phrase:726
+#: DB:link_type/long_link_phrase:727 DB:link_type/long_link_phrase:726
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}balance engineered"
+msgstr ""
+
+#: DB:link_type/link_phrase:144 DB:link_type/link_phrase:38
+#: DB:link_type/long_link_phrase:144 DB:link_type/long_link_phrase:38
+msgid "{additional:additionally} {assistant} {associate} {co:co-}edited"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:136
+msgid "{additional:additionally} {assistant} {associate} {co:co-}mastered"
+msgstr ""
+
+#: DB:link_type/link_phrase:26 DB:link_type/link_phrase:143
+#: DB:link_type/long_link_phrase:26 DB:link_type/long_link_phrase:143
+msgid "{additional:additionally} {assistant} {associate} {co:co-}mixed"
+msgstr ""
+
+#: DB:link_type/link_phrase:133 DB:link_type/link_phrase:29
+#: DB:link_type/long_link_phrase:133 DB:link_type/long_link_phrase:29
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}sound engineered"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1179
+msgid "{additional:additionally} {assistant} {associate} {co:co-}transferred"
+msgstr ""
+
+#: DB:link_type/link_phrase:28 DB:link_type/link_phrase:138
+#: DB:link_type/long_link_phrase:28 DB:link_type/long_link_phrase:138
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}{executive:"
+"executive }engineered"
+msgstr ""
+
+#: DB:link_type/link_phrase:141 DB:link_type/link_phrase:30
+#: DB:link_type/long_link_phrase:141 DB:link_type/long_link_phrase:30
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}{executive:"
+"executive }produced"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:42
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}{pre:pre-}{re}"
+"mastered"
+msgstr ""
+
+#: DB:link_type/link_phrase:295 DB:link_type/link_phrase:297
+#: DB:link_type/link_phrase:293 DB:link_type/long_link_phrase:295
+#: DB:link_type/long_link_phrase:297 DB:link_type/long_link_phrase:293
+msgid "{additional:additionally} {associate} {co:co-}arranged"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:41 DB:link_type/long_link_phrase:158
+#: DB:link_type/long_link_phrase:282
+msgid ""
+"{additional:additionally} {associate} {co:co-}arranged {instrument:%|"
+"instruments} on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:296 DB:link_type/long_link_phrase:298
+#: DB:link_type/long_link_phrase:294
+msgid ""
+"{additional:additionally} {associate} {co:co-}arranged {vocal:%|vocals} on"
+msgstr ""
+
+#: DB:link_type/link_phrase:41 DB:link_type/link_phrase:158
+#: DB:link_type/link_phrase:282
+msgid ""
+"{additional:additionally} {associate} {instrument:%|instruments} {co:co-}"
+"arranged"
+msgstr ""
+
+#: DB:link_type/link_phrase:296 DB:link_type/link_phrase:298
+#: DB:link_type/link_phrase:294
+msgid "{additional:additionally} {associate} {vocal:%|vocals} {co:co-}arranged"
+msgstr ""
+
+#: DB:link_type/link_phrase:51 DB:link_type/link_phrase:156
+#: DB:link_type/long_link_phrase:51 DB:link_type/long_link_phrase:156
+msgid "{additional:additionally} {guest} {solo} performed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:697
+msgid "{additional:additionally} {pre:pre-}{re}mastered at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:756
+msgid "{additional:additionally} {pre:pre-}{re}mastered in"
+msgstr ""
+
+#: DB:link_type/link_phrase:885 DB:link_type/link_phrase:886
+msgid "{additional} arranging location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
+msgid "{additional} art direction"
+msgstr ""
+
+#: DB:link_type/link_phrase:993 DB:link_type/link_phrase:1170
+#: DB:link_type/reverse_link_phrase:993 DB:link_type/reverse_link_phrase:1170
+msgid "{additional} artwork"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:55 DB:link_type/reverse_link_phrase:168
+msgid "{additional} composer"
+msgstr ""
+
+#: DB:link_type/link_phrase:875 DB:link_type/link_phrase:876
+msgid "{additional} composing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:63 DB:link_type/link_phrase:146
+#: DB:link_type/reverse_link_phrase:63 DB:link_type/reverse_link_phrase:146
+msgid "{additional} creative direction"
+msgstr ""
+
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
+msgid "{additional} design"
+msgstr ""
+
+#: DB:link_type/link_phrase:19 DB:link_type/link_phrase:130
+#: DB:link_type/reverse_link_phrase:19 DB:link_type/reverse_link_phrase:130
+msgid "{additional} design/illustration"
+msgstr ""
+
+#: DB:link_type/link_phrase:822 DB:link_type/link_phrase:821
+#: DB:link_type/link_phrase:819 DB:link_type/link_phrase:820
+msgid "{additional} editing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:814 DB:link_type/link_phrase:815
+#: DB:link_type/link_phrase:813 DB:link_type/link_phrase:812
+msgid "{additional} engineering location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1172 DB:link_type/link_phrase:125
+#: DB:link_type/link_phrase:27 DB:link_type/reverse_link_phrase:1172
+#: DB:link_type/reverse_link_phrase:125 DB:link_type/reverse_link_phrase:27
+msgid "{additional} graphic design"
+msgstr ""
+
+#: DB:link_type/link_phrase:927 DB:link_type/link_phrase:1173
+#: DB:link_type/reverse_link_phrase:927 DB:link_type/reverse_link_phrase:1173
+msgid "{additional} illustration"
+msgstr ""
+
+#: DB:link_type/link_phrase:22 DB:link_type/reverse_link_phrase:22
+msgid "{additional} legal representation"
+msgstr ""
+
+#: DB:link_type/link_phrase:57 DB:link_type/reverse_link_phrase:57
+#: DB:link_type/reverse_link_phrase:169
+msgid "{additional} librettist"
+msgstr ""
+
+#: DB:link_type/link_phrase:169
+msgid "{additional} libretto"
+msgstr ""
+
+#: DB:link_type/link_phrase:879 DB:link_type/link_phrase:880
+msgid "{additional} libretto writing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:24 DB:link_type/reverse_link_phrase:24
+msgid "{additional} liner notes {translator}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:56 DB:link_type/reverse_link_phrase:165
+msgid "{additional} lyricist"
+msgstr ""
+
+#: DB:link_type/link_phrase:56 DB:link_type/link_phrase:165
+msgid "{additional} lyrics"
+msgstr ""
+
+#: DB:link_type/link_phrase:877 DB:link_type/link_phrase:878
+msgid "{additional} lyrics writing location for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:878
+msgid "{additional} lyrics written at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:877
+msgid "{additional} lyrics written in"
+msgstr ""
+
+#: DB:link_type/link_phrase:757 DB:link_type/link_phrase:758
+#: DB:link_type/link_phrase:694 DB:link_type/link_phrase:696
+msgid "{additional} mixing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:150 DB:link_type/link_phrase:45
+#: DB:link_type/reverse_link_phrase:150 DB:link_type/reverse_link_phrase:45
+msgid "{additional} orchestra"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:164 DB:link_type/reverse_link_phrase:300
+msgid "{additional} orchestrator"
+msgstr ""
+
+#: DB:link_type/link_phrase:123 DB:link_type/link_phrase:1175
+#: DB:link_type/link_phrase:20 DB:link_type/reverse_link_phrase:123
+#: DB:link_type/reverse_link_phrase:1175 DB:link_type/reverse_link_phrase:20
+msgid "{additional} photography"
+msgstr ""
+
+#: DB:link_type/link_phrase:827 DB:link_type/link_phrase:826
+#: DB:link_type/link_phrase:825 DB:link_type/link_phrase:824
+msgid "{additional} producing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:698 DB:link_type/link_phrase:693
+#: DB:link_type/link_phrase:695 DB:link_type/link_phrase:699
+msgid "{additional} recording location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:831 DB:link_type/link_phrase:830
+#: DB:link_type/link_phrase:829 DB:link_type/link_phrase:828
+msgid "{additional} remixing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:231
+msgid "{additional} samples"
+msgstr ""
+
+#: DB:link_type/link_phrase:69
+msgid "{additional} samples from"
+msgstr ""
+
+#: DB:link_type/link_phrase:963 DB:link_type/link_phrase:964
+msgid "{additional} shooting location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1181 DB:link_type/link_phrase:1182
+msgid "{additional} transferring location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:883 DB:link_type/link_phrase:884
+msgid "{additional} translating location for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:871 DB:link_type/reverse_link_phrase:872
+msgid "{additional} translator"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:54 DB:link_type/reverse_link_phrase:167
+msgid "{additional} writer"
+msgstr ""
+
+#: DB:link_type/link_phrase:873 DB:link_type/link_phrase:874
+msgid "{additional} writing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
+#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
+#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
+msgid "{additional} {assistant} chorus master"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:46 DB:link_type/reverse_link_phrase:151
+msgid "{additional} {assistant} conductor"
+msgstr ""
+
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
+msgid "{additional} {assistant} remixer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:140 DB:link_type/reverse_link_phrase:31
+msgid "{additional} {assistant} {associate} {co:co-}audio engineer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:727 DB:link_type/reverse_link_phrase:726
+msgid "{additional} {assistant} {associate} {co:co-}balance engineer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:144 DB:link_type/reverse_link_phrase:38
+msgid "{additional} {assistant} {associate} {co:co-}editor"
+msgstr ""
+
+#: DB:link_type/link_phrase:136 DB:link_type/reverse_link_phrase:136
+msgid "{additional} {assistant} {associate} {co:co-}mastering"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:26 DB:link_type/reverse_link_phrase:143
+msgid "{additional} {assistant} {associate} {co:co-}mixer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:36 DB:link_type/reverse_link_phrase:128
+msgid "{additional} {assistant} {associate} {co:co-}recording engineer"
+msgstr ""
+
+#: DB:link_type/link_phrase:36 DB:link_type/link_phrase:128
+msgid "{additional} {assistant} {associate} {co:co-}recording engineer for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:133 DB:link_type/reverse_link_phrase:29
+msgid "{additional} {assistant} {associate} {co:co-}sound engineer"
+msgstr ""
+
+#: DB:link_type/link_phrase:1179
+msgid "{additional} {assistant} {associate} {co:co-}transferred"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1179
+msgid "{additional} {assistant} {associate} {co:co-}transferrer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:28 DB:link_type/reverse_link_phrase:138
+msgid ""
+"{additional} {assistant} {associate} {co:co-}{executive:executive }engineer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:141 DB:link_type/reverse_link_phrase:30
+msgid ""
+"{additional} {assistant} {associate} {co:co-}{executive:executive }producer"
+msgstr ""
+
+#: DB:link_type/link_phrase:42 DB:link_type/reverse_link_phrase:42
+msgid "{additional} {assistant} {associate} {co:co-}{pre:pre-}{re}mastering"
+msgstr ""
+
+#: DB:link_type/link_phrase:37 DB:link_type/link_phrase:132
+#: DB:link_type/reverse_link_phrase:37 DB:link_type/reverse_link_phrase:132
+msgid "{additional} {assistant} {associate} {instrument} programming"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:295 DB:link_type/reverse_link_phrase:297
+#: DB:link_type/reverse_link_phrase:293
+msgid "{additional} {associate} {co:co-}arranger"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:41 DB:link_type/reverse_link_phrase:158
+#: DB:link_type/reverse_link_phrase:282
+msgid "{additional} {associate} {instrument:%|instruments} {co:co-}arranger"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:296 DB:link_type/reverse_link_phrase:298
+#: DB:link_type/reverse_link_phrase:294
+msgid "{additional} {associate} {vocal:%|vocals} {co:co-}arranger"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:51 DB:link_type/reverse_link_phrase:156
+msgid "{additional} {guest} {solo} performer"
+msgstr ""
+
+#: DB:link_type/link_phrase:44 DB:link_type/link_phrase:148
+#: DB:link_type/reverse_link_phrase:44 DB:link_type/reverse_link_phrase:148
+msgid "{additional} {guest} {solo} {instrument:%|instruments}"
+msgstr ""
+
+#: DB:link_type/link_phrase:60 DB:link_type/link_phrase:149
+#: DB:link_type/reverse_link_phrase:60 DB:link_type/reverse_link_phrase:149
+msgid "{additional} {guest} {solo} {vocal:%|vocals}"
+msgstr ""
+
+#: DB:link_type/link_phrase:102
+msgid "{additional} {minor} collaborator on"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:102
+msgid "{additional} {minor} collaborators"
+msgstr ""
+
+#: DB:link_type/link_phrase:103
+msgid "{additional} {original} {eponymous} member of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:103
+msgid "{additional} {original} {eponymous} members"
+msgstr ""
+
+#: DB:link_type/link_phrase:756 DB:link_type/link_phrase:697
+msgid "{additional} {pre:pre-}{re}mastering location for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:888
+msgid "{anniversary:anniversary tour for|tour in support of}"
+msgstr ""
+
+#: DB:link_type/link_phrase:888
+msgid "{anniversary:anniversary tours|supporting tours}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1186 DB:link_type/reverse_link_phrase:1187
+msgid "{assistant} audio director"
+msgstr ""
+
+#: DB:link_type/link_phrase:1186 DB:link_type/link_phrase:1187
+msgid "{assistant} audio director for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1165
+msgid "{assistant} carillonneur"
+msgstr ""
+
+#: DB:link_type/link_phrase:1165
+msgid "{assistant} carillonneur at"
+msgstr ""
+
+#: DB:link_type/link_phrase:856
+msgid "{assistant} organist at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:856
+msgid "{assistant} organists"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:962 DB:link_type/reverse_link_phrase:1185
+msgid "{assistant} video director"
+msgstr ""
+
+#: DB:link_type/link_phrase:962 DB:link_type/link_phrase:1185
+msgid "{assistant} video director for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:305
+msgid "{assistant} {principal} {guest} conductor {emeritus}"
+msgstr ""
+
+#: DB:link_type/link_phrase:305
+msgid "{assistant} {principal} {guest} conductor {emeritus} for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1
+msgid "{bonus:bonus|next} disc"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1
+msgid "{bonus:may be|is} part of a set, the next disc in the set is"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:951 DB:link_type/reverse_link_phrase:950
+msgid "{co:co-}{executive:executive }produced for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:750
+msgid "{entity1} catalogues the work of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:154 DB:link_type/long_link_phrase:49
+msgid "{entity1} contains {additional} samples by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:312
+msgid "{entity1} has VIAF ID at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:854
+msgid "{entity1} has a BookBrainz page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:971
+msgid "{entity1} has a Discogs page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:280
+msgid "{entity1} has a SecondHandSongs page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:289
+msgid "{entity1} has a Songfacts page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:992
+msgid "{entity1} has a VGMdb page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:351
+msgid "{entity1} has a Wikidata page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:279
+msgid "{entity1} has a Wikipedia page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:908
+msgid "{entity1} has a crowdfunding page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1188
+msgid "{entity1} has a fan page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:273
+msgid "{entity1} has a page in a database at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:921
+msgid "{entity1} has a work list entry at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:286
+msgid "{entity1} has an Allmusic page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:843
+msgid "{entity1} has an IMDb page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:271
+msgid "{entity1} has lyrics available at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:123 DB:link_type/long_link_phrase:1175
+#: DB:link_type/long_link_phrase:20
+msgid "{entity1} has {additional} photography by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:918
+msgid "{entity1} invented {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:915
+msgid "{entity1} is a feed for podcast {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1088
+msgid "{entity1} is a genre from {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:743
+msgid "{entity1} is a part of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:994
+msgid "{entity1} is a residency by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:859
+msgid "{entity1} is a tour by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1082
+msgid "{entity1} is a translated version of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:65 DB:link_type/long_link_phrase:970
+msgid "{entity1} is a tribute to {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:752
+msgid "{entity1} is an instrument from {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1176 DB:link_type/long_link_phrase:1177
+msgid "{entity1} is commentary for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1090
+msgid "{entity1} is commonly used in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:983 DB:link_type/long_link_phrase:846
+#: DB:link_type/long_link_phrase:922 DB:link_type/long_link_phrase:914
+#: DB:link_type/long_link_phrase:868
+msgid "{entity1} is dedicated to {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:939
+msgid "{entity1} is licensed under {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:975 DB:link_type/long_link_phrase:1000
+msgid "{entity1} is named after {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:357
+msgid "{entity1} is/was an anthem of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:714
+msgid "{entity1} is/was the primary concert venue of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1168
+msgid "{entity1} presented {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:866 DB:link_type/long_link_phrase:865
+msgid "{entity1} was arranged at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:948 DB:link_type/long_link_phrase:949
+msgid "{entity1} was arranged for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:864 DB:link_type/long_link_phrase:863
+msgid "{entity1} was arranged in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:795
+msgid "{entity1} was available at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:954
+msgid "{entity1} was glass mastered at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:995 DB:link_type/long_link_phrase:1085
+msgid "{entity1} was held at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:793
+msgid "{entity1} was held in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:833
+msgid "{entity1} was licensed to {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:953
+msgid "{entity1} was manufactured at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:952
+msgid "{entity1} was manufactured for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:835
+msgid "{entity1} was manufactured in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1183
+msgid "{entity1} was mastered for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:946 DB:link_type/long_link_phrase:947
+msgid "{entity1} was mixed for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:845 DB:link_type/long_link_phrase:716
+msgid "{entity1} was premiered at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:956
+msgid "{entity1} was premiered by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:715
+msgid "{entity1} was premiered in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:941
+msgid "{entity1} was pressed at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:834
+msgid "{entity1} was previously attributed to {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:849
+msgid "{entity1} was printed in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:809 DB:link_type/long_link_phrase:810
+msgid "{entity1} was recorded at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1178
+msgid "{entity1} was remixed for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:882
+msgid "{entity1} was revised at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:881
+msgid "{entity1} was revised in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:886
+msgid "{entity1} was {additional:additionally} arranged at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:885
+msgid "{entity1} was {additional:additionally} arranged in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:876
+msgid "{entity1} was {additional:additionally} composed at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:875
+msgid "{entity1} was {additional:additionally} composed in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:819 DB:link_type/long_link_phrase:820
+msgid "{entity1} was {additional:additionally} edited at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:822 DB:link_type/long_link_phrase:821
+msgid "{entity1} was {additional:additionally} edited in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:813 DB:link_type/long_link_phrase:812
+msgid "{entity1} was {additional:additionally} engineered at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:814 DB:link_type/long_link_phrase:815
+msgid "{entity1} was {additional:additionally} engineered in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:694 DB:link_type/long_link_phrase:696
+msgid "{entity1} was {additional:additionally} mixed at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:757 DB:link_type/long_link_phrase:758
+msgid "{entity1} was {additional:additionally} mixed in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:825 DB:link_type/long_link_phrase:824
+msgid "{entity1} was {additional:additionally} produced at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:827 DB:link_type/long_link_phrase:826
+msgid "{entity1} was {additional:additionally} produced in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:693 DB:link_type/long_link_phrase:695
+msgid "{entity1} was {additional:additionally} recorded at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:698 DB:link_type/long_link_phrase:699
+msgid "{entity1} was {additional:additionally} recorded in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:829 DB:link_type/long_link_phrase:828
+msgid "{entity1} was {additional:additionally} remixed at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:831 DB:link_type/long_link_phrase:830
+msgid "{entity1} was {additional:additionally} remixed in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:963 DB:link_type/long_link_phrase:966
+msgid "{entity1} was {additional:additionally} shot at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:964
+msgid "{entity1} was {additional:additionally} shot in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1181 DB:link_type/long_link_phrase:1182
+msgid "{entity1} was {additional:additionally} transferred at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:883
+msgid "{entity1} was {additional:additionally} translated at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:884
+msgid "{entity1} was {additional:additionally} translated in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:874
+msgid "{entity1} was {additional:additionally} written at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:873
+msgid "{entity1} was {additional:additionally} written in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:697
+msgid ""
+"{entity1} was {additional:additionally} {pre:pre-}{re}mastered at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:756
+msgid ""
+"{entity1} was {additional:additionally} {pre:pre-}{re}mastered in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:888
+msgid ""
+"{entity1} was {anniversary:an anniversary tour for|a tour in support of} "
+"{entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:951 DB:link_type/long_link_phrase:950
+msgid "{entity1} was {co:co-}{executive:executive }produced for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:967 DB:link_type/long_link_phrase:968
+msgid "{entity1}'s lacquer was cut in {entity0}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:760 DB:link_type/reverse_link_phrase:759
+msgid "{guest} concertmaster"
+msgstr ""
+
+#: DB:link_type/link_phrase:760 DB:link_type/link_phrase:759
+msgid "{guest} concertmaster for"
+msgstr ""
+
+#: DB:link_type/link_phrase:110 DB:link_type/reverse_link_phrase:110
+msgid "{half:half-}{step}siblings"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:986 DB:link_type/reverse_link_phrase:987
+msgid "{instrument:%|instruments} technician"
+msgstr ""
+
+#: DB:link_type/link_phrase:986 DB:link_type/link_phrase:987
+msgid "{instrument:%|instruments} technician for"
+msgstr ""
+
+#: DB:link_type/link_phrase:278
+msgid ""
+"{live} {medley:medley including a} {partial} {instrumental} {cover} "
+"{karaoke} recording of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:278
+msgid ""
+"{live} {medley:medleys including} {partial} {instrumental} {cover} {karaoke} "
+"recordings"
+msgstr ""
+
+#: DB:link_type/link_phrase:109
+msgid "{step}children"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:109
+msgid "{step}parents"
+msgstr ""
+
+#: DB:link_type/link_phrase:161 DB:link_type/link_phrase:208
+#: DB:link_type/link_phrase:32 DB:link_type/link_phrase:362
+#: DB:link_type/long_link_phrase:161 DB:link_type/long_link_phrase:208
+#: DB:link_type/long_link_phrase:32 DB:link_type/long_link_phrase:362
+msgid "{sub:sub-}published"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:161 DB:link_type/reverse_link_phrase:208
+#: DB:link_type/reverse_link_phrase:32 DB:link_type/reverse_link_phrase:362
+msgid "{sub:sub-}publisher"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:15
+msgid "{translated} {parody:parodies|covers}"
+msgstr ""
+
+#: DB:link_type/link_phrase:15
+msgid "{translated} {parody:parody|cover} of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:241
+msgid "{translated} {parody} version of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:24
+msgid "{translator:translated|wrote} {additional} liner notes for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
+msgid "{video} can be streamed for free at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:107
+msgid "{vocal:%|vocals} support by"
+msgstr ""
+
+#: DB:link_type/link_phrase:107
+msgid "{vocal:%|vocals} support for"
+msgstr ""
diff --git a/po/relationships.tr.po b/po/relationships.tr.po
index d00bc6244fc..ce328caf894 100644
--- a/po/relationships.tr.po
+++ b/po/relationships.tr.po
@@ -29,10 +29,11 @@ msgid ""
"people involved with the label can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
-"Bir sosyal medya ağı sayfası bir yapımcının bir sosyal medya ağında "
-"sadece kendi bünyesindeki insanların içerik paylaşabileceği sayfasıdır. "
-"Örneğin; Facebook sayfaları, Twitter, Instagram ve Flickr hesapları."
+"Bir sosyal medya ağı sayfası bir yapımcının bir "
+"sosyal medya ağında sadece kendi bünyesindeki insanların içerik "
+"paylaşabileceği sayfasıdır. Örneğin; Facebook sayfaları, Twitter, Instagram "
+"ve Flickr hesapları."
#: DB:link_type/description:784
msgid ""
@@ -55,10 +56,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -312,6 +313,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -342,10 +349,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -496,14 +499,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -875,7 +878,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1078,8 +1081,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1216,7 +1219,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1239,7 +1242,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1587,8 +1590,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1653,8 +1656,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1733,8 +1736,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1757,8 +1760,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1883,16 +1886,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1910,8 +1913,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2238,9 +2241,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2473,18 +2476,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2571,9 +2574,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2802,8 +2805,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2842,8 +2845,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2949,8 +2952,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2970,8 +2973,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2982,8 +2985,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3265,7 +3268,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3274,7 +3277,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3282,13 +3285,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3298,7 +3316,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3306,28 +3324,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3335,7 +3338,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3384,9 +3387,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3424,9 +3427,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3443,9 +3446,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3490,9 +3493,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3612,14 +3615,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3630,8 +3633,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3641,8 +3644,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4070,8 +4073,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4366,15 +4369,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4382,8 +4385,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4685,11 +4688,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4925,8 +4928,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6509,7 +6512,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6521,7 +6523,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6542,6 +6544,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6988,22 +6998,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7772,8 +7782,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7795,8 +7804,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7934,6 +7942,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7943,6 +7955,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8534,7 +8550,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.vi.po b/po/relationships.vi.po
index 226e61860cb..645ede7e8cf 100644
--- a/po/relationships.vi.po
+++ b/po/relationships.vi.po
@@ -46,10 +46,10 @@ msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -303,6 +303,12 @@ msgid ""
"groups."
msgstr ""
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
msgstr ""
@@ -333,10 +339,6 @@ msgstr ""
msgid "Indicates a webpage that reviews the event in question."
msgstr ""
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
-
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
msgstr ""
@@ -487,14 +489,14 @@ msgstr ""
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
@@ -866,7 +868,7 @@ msgstr ""
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -1069,8 +1071,8 @@ msgstr ""
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
#: DB:link_type/link_phrase:174
@@ -1207,7 +1209,7 @@ msgstr ""
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1230,7 +1232,7 @@ msgstr ""
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
@@ -1578,8 +1580,8 @@ msgstr ""
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
@@ -1644,8 +1646,8 @@ msgstr ""
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
@@ -1724,8 +1726,8 @@ msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
#: DB:link_type/description:998 DB:link_type/description:999
@@ -1748,8 +1750,8 @@ msgstr ""
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
@@ -1874,16 +1876,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1901,8 +1903,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -2229,9 +2231,9 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
#: DB:link_type/description:1047
@@ -2464,18 +2466,18 @@ msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
#: DB:link_type/description:1176
@@ -2562,9 +2564,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2793,8 +2795,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2833,8 +2835,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2940,8 +2942,8 @@ msgstr ""
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:982
@@ -2961,8 +2963,8 @@ msgstr ""
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
#: DB:link_type/description:929
@@ -2973,8 +2975,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3256,7 +3258,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3265,7 +3267,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3273,13 +3275,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3289,7 +3306,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3297,28 +3314,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3326,7 +3328,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3375,9 +3377,9 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:838
@@ -3415,9 +3417,9 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:938
@@ -3434,9 +3436,9 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:862
@@ -3481,9 +3483,9 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
#: DB:link_type/description:860
@@ -3603,14 +3605,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3621,8 +3623,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3632,8 +3634,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -4061,8 +4063,8 @@ msgstr ""
msgid "can be purchased for mail-order at"
msgstr ""
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
msgstr ""
@@ -4357,15 +4359,15 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
msgstr ""
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
msgstr ""
@@ -4373,8 +4375,8 @@ msgstr ""
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
msgstr ""
@@ -4676,11 +4678,11 @@ msgstr ""
msgid "free music streaming page for"
msgstr ""
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
msgstr ""
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr ""
@@ -4916,8 +4918,8 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
@@ -6500,7 +6502,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6512,7 +6513,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6533,6 +6534,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6979,22 +6988,22 @@ msgstr ""
msgid "stream for free"
msgstr ""
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
msgstr ""
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
msgstr ""
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
msgstr ""
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
msgstr ""
@@ -7763,8 +7772,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7786,8 +7794,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7925,6 +7932,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7934,6 +7945,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8525,7 +8540,7 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
msgstr ""
diff --git a/po/relationships.zh.po b/po/relationships.zh.po
index bf2e5641581..2a431115c96 100644
--- a/po/relationships.zh.po
+++ b/po/relationships.zh.po
@@ -2,18 +2,21 @@
# Translators:
# Dian Li , 2009-2019
# Gary Liu, 2022
+# suming <331874545@qq.com>, 2023.
+# claybiockiller , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
-"PO-Revision-Date: 2012-05-24 18:50+0000\n"
-"Last-Translator: Gary Liu, 2022\n"
-"Language-Team: Chinese (http://app.transifex.com/musicbrainz/musicbrainz/"
-"language/zh/)\n"
+"PO-Revision-Date: 2023-11-04 22:28+0000\n"
+"Last-Translator: claybiockiller \n"
+"Language-Team: Chinese (Simplified) \n"
"Language: zh\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.1\n"
#: DB:link_attribute_type/description:1355
msgid "A performance-centered, usually one to three year postgraduate program."
@@ -26,6 +29,9 @@ msgid ""
"people involved with the label can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
+"社交网络页是厂牌在社交网络运营的页面,只有与厂牌有关人士才能在"
+"该页发表内容。社交网络页包括Facebook页以及推特、Instagram和Flickr账号。"
#: DB:link_type/description:784
msgid ""
@@ -34,6 +40,9 @@ msgid ""
"people involved with the series can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
+"社交网络页是系列在社交网络的页面,只有与系列有关人士才能在该页"
+"发表内容。社交网络页包括Facebook页面以及推特、Instagram和Flickr账号。"
#: DB:link_type/description:429
msgid ""
@@ -42,16 +51,19 @@ msgid ""
"people involved with the place can post content to. Examples include "
"Facebook pages, and accounts on Twitter, Instagram and Flickr."
msgstr ""
+"社交网络页是地点在社交网络上的页面,只有与该地点有关人士才能在"
+"该页发表内容。社交网络页包括Facebook页以及推特、Instagram和Flickr账号。"
#: DB:link_type/description:192
msgid ""
"A social network page is an artist's own profile page on a social "
"network which only they (or their management) can post content to. Other "
-"people can create their own profiles and interact with the artist, e.g. by "
-"adding them as a friend or by commenting on the things that they post. "
-"Examples include Facebook pages and profiles, Last.fm users and accounts on "
-"Twitter, Instagram and Flickr."
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
msgstr ""
#: DB:link_type/description:783
@@ -62,6 +74,9 @@ msgid ""
"Facebook pages and event entries, and accounts on Twitter, Instagram and "
"Flickr."
msgstr ""
+"社交网络页是活动在社交网络运营的页面,只有经过活动授权才能在该"
+"页发表内容。社交网络页包括Facebook页以及推特、Instagram和Flickr账号。"
#: DB:link_type/link_phrase:77 DB:link_type/reverse_link_phrase:77
msgid "ASIN"
@@ -77,15 +92,15 @@ msgstr "Allmusic"
#: DB:link_type/reverse_link_phrase:284 DB:link_type/reverse_link_phrase:283
#: DB:link_type/reverse_link_phrase:285 DB:link_type/reverse_link_phrase:1093
msgid "Allmusic page for"
-msgstr ""
+msgstr "Allmusic 页,关于"
#: DB:link_type/link_phrase:1131 DB:link_type/link_phrase:1130
msgid "Apple Music"
-msgstr ""
+msgstr "Apple Music"
#: DB:link_type/reverse_link_phrase:1131 DB:link_type/reverse_link_phrase:1130
msgid "Apple Music page for"
-msgstr ""
+msgstr "Apple Music页,关于"
#: DB:link_type/link_phrase:190
msgid "BBC Music"
@@ -93,11 +108,11 @@ msgstr "BBC Music"
#: DB:link_type/name:190
msgid "BBC Music page"
-msgstr ""
+msgstr "BBC Music 页"
#: DB:link_type/reverse_link_phrase:190
msgid "BBC Music page for"
-msgstr ""
+msgstr "BBC Music 页,关于"
#: DB:link_type/link_phrase:1092 DB:link_type/link_phrase:718
#: DB:link_type/link_phrase:719
@@ -107,7 +122,7 @@ msgstr "Bandcamp"
#: DB:link_type/reverse_link_phrase:1092 DB:link_type/reverse_link_phrase:718
#: DB:link_type/reverse_link_phrase:719
msgid "Bandcamp page for"
-msgstr ""
+msgstr "Bandcamp 页,关于"
#: DB:link_type/link_phrase:861 DB:link_type/link_phrase:862
#: DB:link_type/link_phrase:860
@@ -117,7 +132,7 @@ msgstr "Bandsintown"
#: DB:link_type/reverse_link_phrase:861 DB:link_type/reverse_link_phrase:862
#: DB:link_type/reverse_link_phrase:860
msgid "Bandsintown page for"
-msgstr ""
+msgstr "Bandsintown 页,关于"
#: DB:link_type/link_phrase:851 DB:link_type/link_phrase:852
#: DB:link_type/link_phrase:853 DB:link_type/link_phrase:1167
@@ -131,7 +146,7 @@ msgstr "BookBrainz"
#: DB:link_type/reverse_link_phrase:852 DB:link_type/reverse_link_phrase:853
#: DB:link_type/reverse_link_phrase:1167 DB:link_type/reverse_link_phrase:850
msgid "BookBrainz page for"
-msgstr ""
+msgstr "BookBrainz 页,关于"
#: DB:link_type/link_phrase:919 DB:link_type/name:919
msgid "CD Baby"
@@ -139,80 +154,80 @@ msgstr "CD Baby"
#: DB:link_type/reverse_link_phrase:919
msgid "CD Baby page for"
-msgstr ""
+msgstr "CD Baby 页,关于"
#: DB:link_type/link_phrase:981 DB:link_type/name:981
msgid "CPDL"
-msgstr ""
+msgstr "CPDL"
#: DB:link_type/reverse_link_phrase:981
msgid "CPDL page for"
-msgstr ""
+msgstr "CPDL 页,关于"
#: DB:link_type/name:227 DB:link_type/name:8
msgid "DJ-mix"
-msgstr "DJ 混音"
+msgstr "DJ混音"
#: DB:link_type/link_phrase:227 DB:link_type/link_phrase:8
msgid "DJ-mix of"
-msgstr ""
+msgstr "DJ混音,对于"
#: DB:link_type/link_phrase:155 DB:link_type/long_link_phrase:155
msgid "DJ-mixed"
-msgstr ""
+msgstr "DJ混音"
#: DB:link_type/reverse_link_phrase:8
msgid "DJ-mixed versions"
-msgstr ""
+msgstr "DJ混音版本"
#: DB:link_type/long_link_phrase:43
msgid "DJ-mixed {medium:% of}"
-msgstr ""
+msgstr "DJ混音的{medium:% of}"
#: DB:link_type/link_phrase:43
msgid "DJ-mixed {medium}"
-msgstr ""
+msgstr "DJ混音的{medium}"
#: DB:link_type/reverse_link_phrase:155
msgid "DJ-mixer"
-msgstr ""
+msgstr "混音DJ"
#: DB:link_type/reverse_link_phrase:43
msgid "DJ-mixer {medium}"
-msgstr ""
+msgstr "混音DJ{medium}"
#: DB:link_type/reverse_link_phrase:227
msgid "DJ-mixes"
-msgstr ""
+msgstr "DJ混音"
#: DB:link_type/description:704
msgid ""
"Describes the fact a person was contracted by a place as a mastering "
"engineer."
-msgstr ""
+msgstr "说明某人在某地点受雇为母带工程师。"
#: DB:link_type/description:703
msgid ""
"Describes the fact a person was contracted by a place as a mixing engineer."
-msgstr ""
+msgstr "说明某人在某地点受雇为混音工程师。"
#: DB:link_type/description:702
msgid ""
"Describes the fact a person was contracted by a place as a recording "
"engineer."
-msgstr ""
+msgstr "说明某人在某地点受雇为录音工程师。"
#: DB:link_type/description:701
msgid "Describes the fact a person was contracted by a place as an engineer."
-msgstr ""
+msgstr "说明某人在某地点受雇为工程师。"
#: DB:link_type/description:357
msgid "Designates that a work is or was the anthem for an area"
-msgstr ""
+msgstr "表明作品是或曾是某地区的象征性歌曲"
#: DB:link_type/description:356
msgid "Designates that one area is contained by another."
-msgstr ""
+msgstr "表明某地区包含于另一地区。"
#: DB:link_type/link_phrase:1089 DB:link_type/link_phrase:180
#: DB:link_type/link_phrase:76 DB:link_type/link_phrase:217
@@ -226,13 +241,13 @@ msgstr "Discogs"
#: DB:link_type/reverse_link_phrase:217 DB:link_type/reverse_link_phrase:90
#: DB:link_type/reverse_link_phrase:747 DB:link_type/reverse_link_phrase:705
msgid "Discogs page for"
-msgstr ""
+msgstr "Discogs 页,关于"
#: DB:link_attribute_type/description:1020
msgid ""
"For indicating the step-spouse of the artist's parent, or the sibling "
"relationship with the children of such a spouse"
-msgstr ""
+msgstr "用来指艺术家父母的再婚配偶或艺术家的继兄弟姐妹关系"
#: DB:link_attribute_type/description:580
msgid ""
@@ -240,18 +255,20 @@ msgid ""
"relevant to this recording. Examples include instrumental arrangements, or "
"\"beats\" from hip-hop songs which may be reused with different lyrics."
msgstr ""
+"对于有歌词的作品,这表明歌词与录音无关。例子包括器乐曲或者嘻哈歌曲的"
+"\"Beat\"部分,可以和不同的歌词一起重复使用。"
#: DB:link_type/link_phrase:934 DB:link_type/link_phrase:713
msgid "Geonames"
-msgstr ""
+msgstr "Geonames"
#: DB:link_type/reverse_link_phrase:934 DB:link_type/reverse_link_phrase:713
msgid "Geonames page for"
-msgstr ""
+msgstr "Geonames 页,关于"
#: DB:link_type/name:83 DB:link_type/name:258
msgid "IMDB samples"
-msgstr ""
+msgstr "IMDB 采样"
#: DB:link_type/link_phrase:313 DB:link_type/link_phrase:178
#: DB:link_type/link_phrase:97 DB:link_type/link_phrase:706
@@ -263,25 +280,25 @@ msgstr "IMDb"
#: DB:link_type/reverse_link_phrase:83 DB:link_type/reverse_link_phrase:258
msgid "IMDb entry sampled in"
-msgstr ""
+msgstr "采样的IMDb条目,在"
#: DB:link_type/link_phrase:843 DB:link_type/reverse_link_phrase:313
#: DB:link_type/reverse_link_phrase:178 DB:link_type/reverse_link_phrase:97
#: DB:link_type/reverse_link_phrase:706
msgid "IMDb page for"
-msgstr ""
+msgstr "IMDb 页,关于"
#: DB:link_type/link_phrase:754 DB:link_type/name:754
msgid "IMSLP"
-msgstr "IMSLP"
+msgstr "国际乐谱库"
#: DB:link_type/reverse_link_phrase:754
msgid "IMSLP page for"
-msgstr ""
+msgstr "国际乐谱库页,关于"
#: DB:link_attribute_type/description:516
msgid "Indicates a bonus disc"
-msgstr "指附赠光盘"
+msgstr "指附赠唱片"
#: DB:link_type/description:162
msgid ""
@@ -309,13 +326,19 @@ msgstr ""
"指一位音乐家在专辑/音乐会上为另一位音乐家做长期人声支持。这是一种人与艺术家的"
"关系,通常适用于著名的独唱艺术家,尽管它有时可以适用于团体。"
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
#: DB:link_type/description:1083
msgid "Indicates a page with an official schedule for an event series."
-msgstr ""
+msgstr "指载有活动系列官方日程的网页。"
#: DB:link_type/description:109
msgid "Indicates a parent-child relationship."
-msgstr "指父子关系。"
+msgstr "指亲子关系。"
#: DB:link_type/description:396
msgid "Indicates a pictorial image (JPEG, GIF, PNG) of a place"
@@ -337,19 +360,15 @@ msgstr "指艺术家同父异母或同母异父的兄弟姐妹"
#: DB:link_type/description:842
msgid "Indicates a webpage that reviews the event in question."
-msgstr ""
-
-#: DB:link_type/description:94
-msgid "Indicates a webpage that reviews the release (group) in question."
-msgstr ""
+msgstr "指含有活动评价的网页。"
#: DB:link_type/description:958
msgid "Indicates a webpage where you can download a label's releases for free."
-msgstr ""
+msgstr "指可以免费下载厂牌发布专辑的网页。"
#: DB:link_type/description:177
msgid "Indicates a webpage where you can download an artist's work for free."
-msgstr ""
+msgstr "指可以免费下载艺术家作品的网页。"
#: DB:link_type/description:834
msgid ""
@@ -357,6 +376,8 @@ msgid ""
"attributed to, but who is currently confirmed (or very strongly suspected) "
"not to be the real author."
msgstr ""
+"说明此作品原本属于某艺术家(一般是作曲家),但是该艺术家目前被确认(或强烈怀疑)"
+"不是真正的作者。"
#: DB:link_type/description:104
msgid ""
@@ -365,73 +386,76 @@ msgid ""
"relationship that normally applies to well-known solo artists, although it "
"can sometimes apply to groups."
msgstr ""
+"表明该艺术家长期为专辑和/或音乐会中的其他艺术家提供器乐或声乐支持。这是一种人"
+"与艺术家的关系,通常适用于独奏艺术家,尽管有时可适用于团体。"
#: DB:link_type/description:156
msgid "Indicates an artist that performed on this recording."
-msgstr ""
+msgstr "表明该艺术家在此录音中有表演。"
#: DB:link_type/description:51
msgid "Indicates an artist that performed on this release."
-msgstr ""
+msgstr "表明该艺术家在此专辑中有表演。"
#: DB:link_type/description:148
msgid ""
"Indicates an artist that performed one or more instruments on this recording."
-msgstr ""
+msgstr "表明该艺术家在此录音中演奏了一种或多种乐器。"
#: DB:link_type/description:44
msgid ""
"Indicates an artist that performed one or more instruments on this release."
-msgstr ""
+msgstr "表明该艺术家在此专辑中演奏了一种或多种乐器。"
#: DB:link_type/description:149
msgid "Indicates an artist that performed vocals on this recording."
-msgstr ""
+msgstr "表明该艺术家在此录音中演唱了。"
#: DB:link_type/description:60
msgid "Indicates an artist that performed vocals on this release."
-msgstr ""
+msgstr "表明该艺术家在此专辑中演唱了。"
#: DB:link_type/description:150
msgid "Indicates an orchestra that performed on this recording."
-msgstr ""
+msgstr "表明该乐团在此录音中有表演。"
#: DB:link_type/description:45
msgid "Indicates an orchestra that performed on this release."
-msgstr ""
+msgstr "表明该乐团在此专辑中有表演。"
#: DB:link_attribute_type/description:1080
msgid ""
"Indicates how many of a specific instrument an ensemble usually includes."
-msgstr ""
+msgstr "表明该乐队有多少种具体乐器。"
#: DB:link_type/description:844
msgid ""
"Indicates that an artist revised a work. In most cases, this will be the "
"original composer revising the work at a later date."
msgstr ""
+"表明该艺术家修订了此作品。多数情形下,这会是原作曲在一段时间后修订了此作品。"
#: DB:link_type/description:887
msgid ""
"Indicates that an event was intended as a performance of a specific release "
"group (usually an album)."
-msgstr ""
+msgstr "表明该活动预期会表演特定专辑组(一般是正规专辑)。"
#: DB:link_attribute_type/description:567
msgid "Indicates that one entity is a cover of another entity"
-msgstr ""
+msgstr "表明该实体是另一实体的翻唱或翻奏"
#: DB:link_type/description:996
msgid "Indicates that the artist is part of a series."
-msgstr ""
+msgstr "表明该艺术家是系列的一部分。"
#: DB:link_type/description:802
msgid "Indicates that the event is part of a series."
-msgstr ""
+msgstr "表明该活动是系列的一部分。"
#: DB:link_type/description:231
msgid "Indicates that the recording contains samples from another."
-msgstr ""
+msgstr "表明该录音含有其他录音的采样。"
#: DB:link_type/description:154
msgid ""
@@ -439,18 +463,20 @@ msgid ""
"artist. Use this only if you really cannot figure out the particular "
"recording that has been sampled."
msgstr ""
+"表明该录音包含了来自指定艺术家的材料的采样。只有在你真的无法弄清被采样的特定"
+"录音时,才使用这个选项。"
#: DB:link_type/description:69
msgid "Indicates that the recording contains samples from this release."
-msgstr ""
+msgstr "表明该录音包含此专辑的采样。"
#: DB:link_type/description:740
msgid "Indicates that the recording is part of a series."
-msgstr ""
+msgstr "表明该录音是系列的一部分。"
#: DB:link_attribute_type/description:1053
msgid "Indicates that the relationship is optional - doesn't always apply."
-msgstr ""
+msgstr "表明该关联是可选的--并不总是适用。"
#: DB:link_type/description:49
msgid ""
@@ -458,123 +484,125 @@ msgid ""
"artist. Use this only if you really cannot figure out the particular "
"recording that has been sampled."
msgstr ""
+"表明该专辑包含来自指定艺术家材料的采样。只有在你真的无法弄清被采样的特定录音"
+"时,才使用这个选项。"
#: DB:link_type/description:742
msgid "Indicates that the release group is part of a series."
-msgstr ""
+msgstr "表明该专辑组是系列的一部分。"
#: DB:link_type/description:741
msgid "Indicates that the release is part of a series."
-msgstr ""
+msgstr "表明该专辑是系列的一部分。"
#: DB:link_type/description:743
msgid "Indicates that the work is part of a series."
-msgstr ""
+msgstr "表明该作品是系列的一部分。"
#: DB:link_type/description:112
msgid ""
"Indicates that two persons were romantically involved with each other "
"without being married."
-msgstr ""
+msgstr "表明两人处于恋爱关系但未结婚。"
#: DB:link_type/description:1085
msgid "Indicates the area an event series was held at."
-msgstr ""
+msgstr "指活动系列所在地点。"
#: DB:link_type/description:715
msgid "Indicates the area where the work had its first performance"
-msgstr ""
+msgstr "指作品初次演出所在地区"
#: DB:link_type/description:956
msgid ""
"Indicates the artist(s) who gave the first performance of the work; this is "
"usually mostly relevant for classical music"
-msgstr ""
+msgstr "指初次演出作品的艺术家;多与古典音乐相关"
#: DB:link_type/description:55
msgid ""
-"Indicates the composer for this release, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:168
msgid ""
-"Indicates the composer for this work, i.e. the artist who wrote the music "
-"(not necessarily the lyrics)."
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
msgstr ""
#: DB:link_type/description:845
msgid "Indicates the event where the work had its first performance"
-msgstr ""
+msgstr "指作品初次演出所属活动"
#: DB:link_type/description:986
msgid ""
"Indicates the instrument technician for this recording. Use also for \"piano "
"tuner\" credits and other similar ones."
-msgstr ""
+msgstr "指该录音的乐器调律师。也可用于“钢琴调音师”或类似演职员信息。"
#: DB:link_type/description:987
msgid ""
"Indicates the instrument technician for this release. Use also for \"piano "
"tuner\" credits and other similar ones."
-msgstr ""
+msgstr "指该专辑的乐器调律师。也可用于“钢琴调音师”或类似演职员信息。"
#: DB:link_type/description:57
msgid "Indicates the librettist for this release."
-msgstr ""
+msgstr "指该专辑的歌剧剧本作者。"
#: DB:link_type/description:169
msgid "Indicates the librettist for this work."
-msgstr ""
+msgstr "指该作品的歌剧剧本作者。"
#: DB:link_type/description:995
msgid "Indicates the location a run or residency was held at."
-msgstr ""
+msgstr "指连续或驻留演出地点。"
#: DB:link_type/description:56
msgid "Indicates the lyricist for this release."
-msgstr ""
+msgstr "指该专辑的作词者。"
#: DB:link_type/description:165
msgid "Indicates the lyricist for this work."
-msgstr ""
+msgstr "指该作品的作词者。"
#: DB:link_type/description:42
msgid "Indicates the mastering engineer for this work."
-msgstr ""
+msgstr "指该作品的母带工程师。"
#: DB:link_type/description:219
msgid "Indicates the official homepage for a label."
-msgstr ""
+msgstr "指厂牌官网。"
#: DB:link_type/description:363
msgid "Indicates the official homepage for a place."
-msgstr ""
+msgstr "指地点官网。"
#: DB:link_type/description:745
msgid "Indicates the official homepage for a series."
-msgstr ""
+msgstr "指系列官网。"
#: DB:link_type/description:183
msgid "Indicates the official homepage for an artist."
-msgstr ""
+msgstr "指艺术家官网。"
#: DB:link_type/description:782
msgid "Indicates the official homepage for an event."
-msgstr ""
+msgstr "指活动官网。"
#: DB:link_type/description:871
msgid ""
"Indicates the person who translated the lyrics/libretto for this release."
-msgstr ""
+msgstr "指该专辑的歌词/歌剧剧本译者。"
#: DB:link_type/description:872
msgid "Indicates the person who translated the lyrics/libretto for this work."
-msgstr ""
+msgstr "指该作品的歌词/歌剧剧本译者。"
#: DB:link_type/description:716
msgid "Indicates the place where the work had its first performance"
-msgstr ""
+msgstr "指该作品初次演出所在地点。"
#: DB:link_type/description:32
msgid ""
@@ -582,18 +610,24 @@ msgid ""
"same concept as the record label"
"a>."
msgstr ""
+"指此专辑的词曲版权方。这和厂牌不是"
+"strong>一个概念。"
#: DB:link_type/description:161
msgid ""
"Indicates the publisher of this work. This is not the same "
"concept as the record label."
msgstr ""
+"指此作品的词曲版权方。这和厂牌不是"
+"strong>一个概念。"
#: DB:link_type/description:208
msgid ""
"Indicates the publisher of this work. This is not the same "
"concept as the record label."
msgstr ""
+"指此作品的词曲版权方。这和厂牌不是"
+"strong>一个概念。"
#: DB:link_type/link_phrase:840 DB:link_type/link_phrase:837
#: DB:link_type/link_phrase:839 DB:link_type/link_phrase:838
@@ -603,163 +637,163 @@ msgstr "Last.fm"
#: DB:link_type/reverse_link_phrase:840 DB:link_type/reverse_link_phrase:837
#: DB:link_type/reverse_link_phrase:839 DB:link_type/reverse_link_phrase:838
msgid "Last.fm page for"
-msgstr ""
+msgstr "Last.fm 页,关于"
#: DB:link_attribute_type/description:4
msgid "Lead or solo vocal"
-msgstr ""
+msgstr "主唱或独唱"
#: DB:link_type/description:864
msgid ""
"Links a recording to the area it was arranged in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将录音链接到编曲地区。仅在具体地点未知时使用!"
#: DB:link_type/description:821
msgid ""
"Links a recording to the area it was edited in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将录音链接到编辑地区。仅在具体地点未知时使用!"
#: DB:link_type/description:814
msgid ""
"Links a recording to the area it was engineered in. Use only when the place "
"is unknown!"
-msgstr ""
+msgstr "将录音链接到后期工程所在地区。仅在具体地点未知时使用!"
#: DB:link_type/description:758
msgid ""
"Links a recording to the area it was mixed in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将录音链接到混音地区。仅在具体地点未知时使用!"
#: DB:link_type/description:827
msgid ""
"Links a recording to the area it was produced in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将录音链接到制作地区。仅在具体地点未知时使用!"
#: DB:link_type/description:698
msgid ""
"Links a recording to the area it was recorded in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将录音链接到录制地区。仅在具体地点未知时使用!"
#: DB:link_type/description:830
msgid ""
"Links a recording to the area it was remixed in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将录音链接到重混音地区。仅在具体地点未知时使用!"
#: DB:link_type/description:809
msgid "Links a recording to the event it was recorded at."
-msgstr ""
+msgstr "将录音链接到录制活动。"
#: DB:link_type/description:1006
msgid ""
"Links a recording to the event series (tour, residency, etc.) it was "
"recorded during."
-msgstr ""
+msgstr "将录音链接到录制时的活动系列(巡演,驻留演出等)。"
#: DB:link_type/description:866
msgid "Links a recording to the place it was arranged at."
-msgstr ""
+msgstr "将录音链接到编曲地点。"
#: DB:link_type/description:819
msgid "Links a recording to the place it was edited at."
-msgstr ""
+msgstr "将录音链接到编辑地点。"
#: DB:link_type/description:813
msgid "Links a recording to the place it was engineered at."
-msgstr ""
+msgstr "将录音链接到后期工程所在地点。"
#: DB:link_type/description:694
msgid "Links a recording to the place it was mixed at."
-msgstr ""
+msgstr "将录音链接到混音地点。"
#: DB:link_type/description:825
msgid "Links a recording to the place it was produced at."
-msgstr ""
+msgstr "将录音链接到制作地点。"
#: DB:link_type/description:693
msgid "Links a recording to the place it was recorded at."
-msgstr ""
+msgstr "将录音链接到录制地点。"
#: DB:link_type/description:829
msgid "Links a recording to the place it was remixed at."
-msgstr ""
+msgstr "将录音链接到重混音地点。"
#: DB:link_type/description:1008
msgid ""
"Links a recording, release or release group series to the event series "
"(tour, residency, etc.) it was recorded during."
-msgstr ""
+msgstr "将录音,专辑或专辑组系列链接到录制时的活动系列(巡演,驻留演出等)。"
#: DB:link_type/description:1007
msgid ""
"Links a release group to the event series (tour, residency, etc.) it was "
"recorded during."
-msgstr ""
+msgstr "将专辑组链接到录制时的活动系列(巡演,驻留演出等)。"
#: DB:link_type/description:797
msgid "Links a release group with a launch event for it."
-msgstr ""
+msgstr "将专辑组链接到首发活动。"
#: DB:link_type/description:863
msgid ""
"Links a release to the area it was arranged in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将专辑链接到编曲地区。仅在具体地点未知时使用!"
#: DB:link_type/description:822
msgid ""
"Links a release to the area it was edited in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将专辑链接到编辑地区。仅在具体地点未知时使用!"
#: DB:link_type/description:815
msgid ""
"Links a release to the area it was engineered in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将专辑链接到后期工程所在地区。仅在具体地点未知时使用!"
#: DB:link_type/description:835
msgid "Links a release to the area it was manufactured (\"made\") in."
-msgstr ""
+msgstr "将专辑链接到制造地区。"
#: DB:link_type/description:756
msgid ""
"Links a release to the area it was mastered in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将专辑链接到母带处理工作所在地区。仅在具体地点未知时使用!"
#: DB:link_type/description:757
msgid ""
"Links a release to the area it was mixed in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将专辑链接到混音地区。仅在具体地点未知时使用!"
#: DB:link_type/description:849
msgid "Links a release to the area it was printed in."
-msgstr ""
+msgstr "将专辑链接到印刷地区。"
#: DB:link_type/description:826
msgid ""
"Links a release to the area it was produced in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将专辑链接到制作地区。仅在具体地点未知时使用!"
#: DB:link_type/description:699
msgid ""
"Links a release to the area it was recorded in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将专辑链接到录制地区。仅在具体地点未知时使用!"
#: DB:link_type/description:831
msgid ""
"Links a release to the area it was remixed in. Use only when the place is "
"unknown!"
-msgstr ""
+msgstr "将专辑链接到重混音地区。仅在具体地点未知时使用!"
#: DB:link_type/description:1181
msgid ""
@@ -771,57 +805,57 @@ msgstr ""
msgid ""
"Links a release to the area where the lacquer cutting took place. Use only "
"when the place is unknown!"
-msgstr ""
+msgstr "将专辑链接到刻纹工作所在地区。仅在具体地点未知时使用!"
#: DB:link_type/description:969
msgid "Links a release to the engineer who did the lacquer cutting for it."
-msgstr ""
+msgstr "将专辑链接到刻纹技师。"
#: DB:link_type/description:810
msgid "Links a release to the event it was recorded at."
-msgstr ""
+msgstr "将专辑链接到录制活动。"
#: DB:link_type/description:865
msgid "Links a release to the place it was arranged at."
-msgstr ""
+msgstr "将专辑链接到编曲地点。"
#: DB:link_type/description:820
msgid "Links a release to the place it was edited at."
-msgstr ""
+msgstr "将专辑链接到编辑地点。"
#: DB:link_type/description:812
msgid "Links a release to the place it was engineered at."
-msgstr ""
+msgstr "将专辑链接到后期工程所在地点。"
#: DB:link_type/description:953
msgid ""
"Links a release to the place it was manufactured at. Use a more specific "
"credit if available"
-msgstr ""
+msgstr "将专辑链接到制作地点。如果可用的话,使用尽可能确切的演职员信息"
#: DB:link_type/description:697
msgid "Links a release to the place it was mastered at."
-msgstr ""
+msgstr "将专辑链接到母带处理工作所在地点。"
#: DB:link_type/description:696
msgid "Links a release to the place it was mixed at."
-msgstr ""
+msgstr "将专辑链接到混音地点。"
#: DB:link_type/description:941
msgid "Links a release to the place it was pressed at."
-msgstr ""
+msgstr "将专辑链接到压盘地点。"
#: DB:link_type/description:824
msgid "Links a release to the place it was produced at."
-msgstr ""
+msgstr "将专辑链接到制作地点。"
#: DB:link_type/description:695
msgid "Links a release to the place it was recorded at."
-msgstr ""
+msgstr "将专辑链接到录制地点。"
#: DB:link_type/description:828
msgid "Links a release to the place it was remixed at."
-msgstr ""
+msgstr "将专辑链接到重混音工作所在地点。"
#: DB:link_type/description:1182
msgid ""
@@ -833,15 +867,15 @@ msgstr ""
msgid ""
"Links a release to the place where the glass master for pressing was made. "
"Not the same as mastered!"
-msgstr ""
+msgstr "将专辑链接到玻璃母盘处理工作所在地点。这和母带处理不同!"
#: DB:link_type/description:968
msgid "Links a release to the place where the lacquer cutting took place."
-msgstr ""
+msgstr "将专辑链接到刻纹工作所在地点。"
#: DB:link_type/description:796
msgid "Links a release with a launch event for it."
-msgstr ""
+msgstr "将专辑链接到首发活动。"
#: DB:link_type/description:795
msgid ""
@@ -849,30 +883,32 @@ msgid ""
"event-exclusive releases and/or releases available at events before the "
"official launch date, not for every release in the merchandise stall."
msgstr ""
+"将专辑链接到发行活动。这预期用于为活动限定专辑发行和/或官方首发日期前的专辑发"
+"行活动,而非每次专辑上架。"
#: DB:link_type/description:823
msgid "Links a series to another series that exists within it."
-msgstr ""
+msgstr "将系列链接到内部包含的其他系列。"
#: DB:link_type/description:1094
msgid ""
"Links an award series to the award ceremony series of events where it's "
"announced and/or awarded."
-msgstr ""
+msgstr "将奖项系列链接到公布和/或授予该奖项的颁奖典礼活动系列。"
#: DB:link_type/description:798
msgid "Links an event to (one of) its main performer(s)."
-msgstr ""
+msgstr "将活动链接到主要表演者(之一)。"
#: DB:link_type/description:799
msgid ""
"Links an event to (one of) its support act(s) (also known as opening acts or "
"warm-up acts)."
-msgstr ""
+msgstr "将活动链接到其支持表演者(之一)(又称开幕嘉宾或暖场嘉宾)。"
#: DB:link_type/description:932
msgid ""
-"Links an event to a DJ that appeared in a supporting role (e.g. DJing "
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
"between artists, or closing the night after a concert)."
msgstr ""
@@ -881,6 +917,7 @@ msgid ""
"Links an event to a guest performer. Guest performers usually make short "
"appearances during other artist's set."
msgstr ""
+"将活动链接到特邀表演者。特邀表演者通常只会在其他艺术家的表演中有很少的戏份。"
#: DB:link_type/description:1168
msgid ""
@@ -890,7 +927,7 @@ msgstr ""
#: DB:link_type/description:806
msgid "Links an event to an artist that was a conductor in it."
-msgstr ""
+msgstr "将活动链接到作为指挥的艺术家。"
#: DB:link_type/description:1163
msgid ""
@@ -900,35 +937,35 @@ msgstr ""
#: DB:link_type/description:1084
msgid "Links an event to an engineer or sound technician who worked on it."
-msgstr ""
+msgstr "将活动链接到为其工作的工程师或音效技师。"
#: DB:link_type/description:807
msgid "Links an event to an orchestra that performed in it."
-msgstr ""
+msgstr "将活动链接到在其中表演的乐团。"
#: DB:link_type/description:801
msgid ""
"Links an event to its host/MC. Event hosts usually do introductions to the "
"show or each song."
-msgstr ""
+msgstr "将活动链接到其主持人/MC。活动主持人一般会解说整场表演或具体曲目。"
#: DB:link_type/description:793
msgid ""
"Links an event to the area where it was held. Use only if the exact place is "
"unknown."
-msgstr ""
+msgstr "将活动链接到举办地区。仅在具体地点未知时使用!"
#: DB:link_type/description:794
msgid "Links an event to the place where it was held."
-msgstr ""
+msgstr "将活动链接到举办地点。"
#: DB:link_attribute_type/description:830
msgid "Local time a band's performance is scheduled to start, formatted HH:MM."
-msgstr ""
+msgstr "乐队演出在当地的预定开始时间,格式为HH:MM。"
#: DB:link_attribute_type/description:1060
msgid "Meane or mean is a young male singer with a voice lower than a treble"
-msgstr ""
+msgstr "童中音是音高比童高音低的男童歌手。"
#: DB:link_type/link_phrase:215 DB:link_type/link_phrase:462
#: DB:link_type/link_phrase:189
@@ -938,27 +975,27 @@ msgstr "Myspace"
#: DB:link_type/reverse_link_phrase:215 DB:link_type/reverse_link_phrase:462
#: DB:link_type/reverse_link_phrase:189
msgid "Myspace page for"
-msgstr ""
+msgstr "Myspace 页,关于"
#: DB:link_attribute_type/description:461
msgid "Other vocalizations"
-msgstr ""
+msgstr "其他人声"
#: DB:link_type/description:852
msgid "Points to the BookBrainz page for this artist."
-msgstr ""
+msgstr "指向此艺术家的BookBrainz页。"
#: DB:link_type/description:851
msgid "Points to the BookBrainz page for this label."
-msgstr ""
+msgstr "指向此厂牌的BookBrainz页。"
#: DB:link_type/description:853
msgid "Points to the BookBrainz page for this release group."
-msgstr ""
+msgstr "指向此专辑组的BookBrainz页。"
#: DB:link_type/description:850
msgid "Points to the BookBrainz page for this release."
-msgstr ""
+msgstr "指向此专辑的BookBrainz页。"
#: DB:link_type/description:1167
msgid "Points to the BookBrainz page for this series."
@@ -966,234 +1003,236 @@ msgstr ""
#: DB:link_type/description:854
msgid "Points to the BookBrainz page for this work."
-msgstr ""
+msgstr "指向此作品的BookBrainz页。"
#: DB:link_type/description:713
msgid "Points to the Geonames page for this area."
-msgstr ""
+msgstr "指向此地区的Geonames页。"
#: DB:link_type/description:934
msgid "Points to the Geonames page for this place."
-msgstr ""
+msgstr "指向此地点的Geonames页。"
#: DB:link_type/description:706
msgid "Points to the Internet Movie Database page for this place."
-msgstr ""
+msgstr "指向此地点的IMDb页。"
#: DB:link_type/description:358
msgid ""
"Points to the Wikidata page for this area, and will be used to fetch "
"Wikipedia summaries"
-msgstr ""
+msgstr "指向此地区的维基数据页,用于获取维基百科概要"
#: DB:link_type/description:352
msgid ""
"Points to the Wikidata page for this artist, and will be used to fetch "
"Wikipedia summaries"
-msgstr ""
+msgstr "指向此艺术家的维基数据页,用于获取维基百科概要"
#: DB:link_type/description:790
msgid ""
"Points to the Wikidata page for this event, and will be used to fetch "
"Wikipedia summaries"
-msgstr ""
+msgstr "指向此活动的维基数据页,用于获取维基百科概要"
#: DB:link_type/description:1087
msgid ""
"Points to the Wikidata page for this genre, and will be used to fetch "
"Wikipedia summaries"
-msgstr ""
+msgstr "指向此流派的维基数据页,用于获取维基百科概要"
#: DB:link_type/description:733
msgid ""
"Points to the Wikidata page for this instrument, and will be used to fetch "
"Wikipedia summaries"
-msgstr ""
+msgstr "指向此乐器的维基数据页,用于获取维基百科概要"
#: DB:link_type/description:354
msgid ""
"Points to the Wikidata page for this label, and will be used to fetch "
"Wikipedia summaries"
-msgstr ""
+msgstr "指向此厂牌的维基数据页,用于获取维基百科概要"
#: DB:link_type/description:594
msgid ""
"Points to the Wikidata page for this place, and will be used to fetch "
"Wikipedia summaries"
-msgstr ""
+msgstr "指向此地点的维基数据页,用于获取维基百科概要"
#: DB:link_type/description:353
msgid ""
"Points to the Wikidata page for this release group, and will be used to "
"fetch Wikipedia summaries"
-msgstr ""
+msgstr "指向此专辑组的维基数据页,用于获取维基百科概要"
#: DB:link_type/description:749
msgid ""
"Points to the Wikidata page for this series, and will be used to fetch "
"Wikipedia summaries"
-msgstr ""
+msgstr "指向此系列的维基数据页,用于获取维基百科概要"
#: DB:link_type/description:351
msgid ""
"Points to the Wikidata page for this work, and will be used to fetch "
"Wikipedia summaries"
-msgstr ""
+msgstr "指向此作品的维基数据页,用于获取维基百科概要"
#: DB:link_type/description:89
msgid "Points to the Wikipedia page for this album."
-msgstr ""
+msgstr "指向此专辑的维基百科页。"
#: DB:link_type/description:355
msgid "Points to the Wikipedia page for this area."
-msgstr ""
+msgstr "指向此地区的维基百科页。"
#: DB:link_type/description:179
msgid "Points to the Wikipedia page for this artist."
-msgstr ""
+msgstr "指向此艺术家的维基百科页。"
#: DB:link_type/description:789
msgid "Points to the Wikipedia page for this event."
-msgstr ""
+msgstr "指向此活动的维基百科页。"
#: DB:link_type/description:731
msgid "Points to the Wikipedia page for this instrument."
-msgstr ""
+msgstr "指向此乐器的维基百科页。"
#: DB:link_type/description:595
msgid "Points to the Wikipedia page for this place"
-msgstr ""
+msgstr "指向此地点的维基百科页。"
#: DB:link_type/description:744
msgid "Points to the Wikipedia page for this series."
-msgstr ""
+msgstr "指向此系列的维基百科页。"
#: DB:link_type/description:279
msgid "Points to the Wikipedia page for this work."
-msgstr ""
+msgstr "指向此作品的维基百科页。"
#: DB:link_type/description:127
msgid ""
"Publishers should be added on works instead. Keep in mind this is "
-"not the same concept as the record label."
+"not the same concept as the record label."
msgstr ""
+"词曲版权方应改为添加到作品。切记这和"
+"厂牌不是一个概念。"
#: DB:link_type/link_phrase:174
msgid "PureVolume"
-msgstr ""
+msgstr "PureVolume"
#: DB:link_type/reverse_link_phrase:174
msgid "PureVolume page for"
-msgstr ""
+msgstr "PureVolume 页,关于"
#: DB:link_type/link_phrase:308 DB:link_type/link_phrase:976
#: DB:link_type/link_phrase:977 DB:link_type/link_phrase:307
#: DB:link_type/reverse_link_phrase:280
msgid "SecondHandSongs"
-msgstr ""
+msgstr "SecondHandSongs"
#: DB:link_type/link_phrase:280 DB:link_type/reverse_link_phrase:308
#: DB:link_type/reverse_link_phrase:976 DB:link_type/reverse_link_phrase:977
#: DB:link_type/reverse_link_phrase:307
msgid "SecondHandSongs page for"
-msgstr ""
+msgstr "SecondHandSongs 页,关于"
#: DB:link_type/reverse_link_phrase:289
msgid "Songfacts"
-msgstr ""
+msgstr "Songfacts"
#: DB:link_type/link_phrase:289
msgid "Songfacts page for"
-msgstr ""
+msgstr "Songfacts 页,关于"
#: DB:link_type/link_phrase:786 DB:link_type/link_phrase:785
#: DB:link_type/link_phrase:787
msgid "Songkick"
-msgstr ""
+msgstr "Songkick"
#: DB:link_type/reverse_link_phrase:786 DB:link_type/reverse_link_phrase:785
#: DB:link_type/reverse_link_phrase:787
msgid "Songkick page for"
-msgstr ""
+msgstr "Songkick 页,关于"
#: DB:link_type/link_phrase:870 DB:link_type/link_phrase:291
#: DB:link_type/link_phrase:290 DB:link_type/link_phrase:940
msgid "SoundCloud"
-msgstr ""
+msgstr "SoundCloud"
#: DB:link_type/reverse_link_phrase:870 DB:link_type/reverse_link_phrase:291
#: DB:link_type/reverse_link_phrase:290 DB:link_type/reverse_link_phrase:940
msgid "SoundCloud page for"
-msgstr ""
+msgstr "SoundCloud 页,关于"
#: DB:link_attribute_type/description:1135
msgid ""
"Specifies the level of studies that a student studied towards in an "
"educational institution."
-msgstr ""
+msgstr "指明学生在教育机构的学习层次。"
#: DB:link_attribute_type/description:1125
msgid ""
"Specifies the subject that was taught by a teacher in an institution and/or "
"to a student."
-msgstr ""
+msgstr "指明教师在教育机构和/或单独授课中向学生教授的学科。"
#: DB:link_attribute_type/description:561
msgid "Spoken vocals (speech)"
-msgstr ""
+msgstr "念白人声 (演讲)"
#: DB:link_type/long_link_phrase:880
msgid ""
"The libretto for {entity1} was {additional:additionally} written at {entity0}"
-msgstr ""
+msgstr "{entity1}的歌剧剧本由{entity0}{additional:额外}撰写"
#: DB:link_type/long_link_phrase:879
msgid ""
"The libretto for {entity1} was {additional:additionally} written in {entity0}"
-msgstr ""
+msgstr "{entity1}的歌剧剧本由{entity0}{additional:额外}撰写"
#: DB:link_type/long_link_phrase:878
msgid ""
"The lyrics for {entity1} were {additional:additionally} written at {entity0}"
-msgstr ""
+msgstr "{entity1}的歌词由{entity0}{additional:额外}撰写"
#: DB:link_type/long_link_phrase:877
msgid ""
"The lyrics for {entity1} were {additional:additionally} written in {entity0}"
-msgstr ""
+msgstr "{entity1}的歌词由{entity0}{additional:额外}撰写"
#: DB:link_type/long_link_phrase:274
msgid "The score for {entity1} can be downloaded for free at {entity0}"
-msgstr ""
+msgstr "{entity1}可在{entity0}免费下载"
#: DB:link_type/long_link_phrase:912
msgid "The score for {entity1} can be purchased for download at {entity0}"
-msgstr ""
+msgstr "{entity1}可在{entity0}付费下载"
#: DB:link_type/long_link_phrase:913
msgid "The score for {entity1} can be purchased for mail-order at {entity0}"
-msgstr ""
+msgstr "{entity1}可在{entity0}邮购"
#: DB:link_type/description:933
msgid "This allows linking a series to the label who publishes it."
-msgstr ""
+msgstr "这将系列链接到发行厂牌。"
#: DB:link_attribute_type/description:3
msgid "This attribute describes a type of vocal performance."
-msgstr ""
+msgstr "该属性描述人声的表演类型。"
#: DB:link_attribute_type/description:2
msgid ""
"This attribute describes if a particular collaboration was considered equal "
"or minor."
-msgstr ""
+msgstr "该属性描述特定合作者是同等还是次要。"
#: DB:link_attribute_type/description:1
msgid ""
"This attribute describes if a particular role was considered normal or "
"additional."
-msgstr ""
+msgstr "该属性描述特定角色是常驻还是额外。"
#: DB:link_attribute_type/description:14
msgid ""
@@ -1203,17 +1242,21 @@ msgid ""
"Can't find an instrument? Request it!"
msgstr ""
+"该属性描述表演过程中可能会用到的乐器。\n"
+"
\n"
+"找不到乐器?提出请求!"
#: DB:link_attribute_type/description:194
msgid ""
"This attribute indicates a 'guest' performance where the performer is not "
"usually part of the band."
-msgstr ""
+msgstr "该属性指“特邀演出嘉宾”,通常为不是乐队成员的表演者。"
#: DB:link_attribute_type/description:1094
msgid ""
"This attribute indicates a member the band is named after and without which "
-"it wouldn't exist (e.g. Miles Davis -> Miles Davis Sextet)"
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
msgstr ""
#: DB:link_attribute_type/description:511
@@ -1221,33 +1264,34 @@ msgid ""
"This attribute indicates a version with satirical, ironic, or otherwise "
"humorous intent. Parodies in most cases have altered lyrics."
msgstr ""
+"该属性指一个具有讽刺或幽默意图的版本。此类戏仿作品多数情况下有修改版歌词。"
#: DB:link_attribute_type/description:517
msgid ""
"This attribute indicates a version with the lyrics in a different language "
"than the original."
-msgstr ""
+msgstr "该属性指一个与原版不同语言的歌词版本。"
#: DB:link_attribute_type/description:525
msgid ""
"This attribute indicates that an artist was an original member of a group "
"artist."
-msgstr ""
+msgstr "该属性指一位作为团体艺术家原始成员的艺术家。"
#: DB:link_attribute_type/description:582
msgid ""
-"This attribute indicates that the streamable content is not audio but video."
+"This attribute indicates that the content is not audio (or text) but video."
msgstr ""
#: DB:link_attribute_type/description:788
msgid "This attribute indicates the number of an entity in a series."
-msgstr ""
+msgstr "该属性指系列中实体数。"
#: DB:link_attribute_type/description:425
msgid ""
"This attribute is to be used if the role was fulfilled in an executive "
"capacity."
-msgstr ""
+msgstr "该属性用于执行角色。"
#: DB:link_type/description:146
msgid ""
@@ -1255,6 +1299,8 @@ msgid ""
"inspiration during the recording of this recording, without actually "
"contributing to the writing or performance."
msgstr ""
+"这记载的是在录音作品的录制期间提供了一般性创作灵感,但对创作和表演无实质贡献"
+"的个人或机构。"
#: DB:link_type/description:63
msgid ""
@@ -1262,24 +1308,26 @@ msgid ""
"inspiration during the recording of this release group, without actually "
"contributing to the writing or performance."
msgstr ""
+"这记载的是在专辑组的录制期间提供了一般性创作灵感,但对创作和表演无实质贡献的"
+"个人或机构。"
#: DB:link_type/description:123
msgid ""
"This credits a person or agency whose photographs are included as part of a "
"recording."
-msgstr ""
+msgstr "这记载的是在录音中有照片被采用的个人或机构。"
#: DB:link_type/description:134
msgid ""
"This credits a person who was responsible for booking the studio or "
"performance venue where the recording was recorded."
-msgstr ""
+msgstr "这记载的是在录音作品的录制期间负责预订录音室或演出场地的个人或机构。"
#: DB:link_type/description:23
msgid ""
"This credits a person who was responsible for booking the studio or "
"performance venue where the release was recorded."
-msgstr ""
+msgstr "这记载的是在专辑的录制期间负责预订录音室或演出场地的个人或机构。"
#: DB:link_type/description:1175
msgid ""
@@ -1298,12 +1346,17 @@ msgid ""
"production data, in some cases they consist of a blurb of text (article). "
"This relationship type should be used in this last case."
msgstr ""
+"这记载的是专辑的文案(一般在封套上)作者。尽管绝大多数情况下文案只包括演职人员"
+"信息和制作相关数据,有时也会包括一段简介或文本(文章)。此关联类型应用于后一情"
+"况。"
#: DB:link_type/description:125
msgid ""
"This credits the people or agency who did the graphic design, arranging "
"pieces of content into a coherent and aesthetically-pleasing sleeve design."
msgstr ""
+"这记载的是平面设计师或机构,他们将内容元素组合为符合一致性和审美要求的封套设"
+"计。"
#: DB:link_type/description:202
msgid ""
@@ -1315,12 +1368,17 @@ msgid ""
"into The Verve Music "
"Group, as Verve continued its existence thereafter as an imprint."
msgstr ""
+"这意味着厂牌更名,无论因为审美还是因为收购/售出/拆分。发生复杂的财务合并/分"
+"割/重组时应谨慎考虑。例如,将Verve这一厂牌重命名为The Verve Music Group"
+"a>并不合适,因为名为“Verve”的厂牌继续存在。"
#: DB:link_type/description:1079
msgid ""
"This describes a situation where an artist (generally a group) changed its "
"name, leading to the start of a new project."
-msgstr ""
+msgstr "这意味着艺术家(一般是乐队)更名,此时会建立一个新项目。"
#: DB:link_type/description:200
msgid ""
@@ -1330,12 +1388,15 @@ msgid ""
"corporate acquisition of the former label, has become a subdivision of "
"another one."
msgstr ""
+"这意味着一个厂牌在一段时间内是其他厂牌的子厂牌。应用于说明某厂牌是另一厂牌的"
+"分支或因企业兼并而成为另一厂牌分支。"
#: DB:link_type/description:203
msgid ""
"This describes a situation where one label is distributing (part of) another "
"label's catalog, in a country/region of the world, during a period of time."
msgstr ""
+"这意味着一个厂牌在一段时间内在某国/地区内发行另一厂牌旗下所有(或部分)专辑。"
#: DB:link_type/description:201
msgid ""
@@ -1349,6 +1410,14 @@ msgid ""
"A bootleg label reissues another label's catalog. \n"
""
msgstr ""
+"这意味着一个厂牌以其名义再发行另一厂牌旗下所有(或部分)专辑。包含以下三种情"
+"况:\n"
+"\n"
+"- 一个厂牌取得了另一厂牌旗下专辑一段时间内在特定地区的发行权。
\n"
+"- 一个厂牌购买了破产厂牌旗下专辑的相关权利,或者收购厂牌(及旗下专辑)后将其"
+"解散。
\n"
+"- 盗版厂牌再发行另一厂牌旗下专辑。
\n"
+"
"
#: DB:link_type/description:140 DB:link_type/description:31
msgid ""
@@ -1356,6 +1425,8 @@ msgid ""
"sound, such as effects processors and digital audio equipment used to modify "
"or manipulate sound in either an analogue or digital form."
msgstr ""
+"这说明工程师应用了产生音效的机器,比如以模拟或数字方式修改或操纵音效的效果器"
+"和数字音频设备。"
#: DB:link_type/description:36 DB:link_type/description:128
msgid ""
@@ -1364,6 +1435,9 @@ msgid ""
"microphones, amplifiers, and recording devices, or as simple as pressing the "
"'record' button on a 4-track or a digital audio workstation."
msgstr ""
+"这说明工程师负责制作演出磁带或其他媒介上的录音。这可能是需要使用话筒,功放和"
+"大型录音机的复杂工作,也可能只是在四轨录音机或数字音频工作站上按下“录音”按钮"
+"的简单工作。"
#: DB:link_type/description:144 DB:link_type/description:38
msgid ""
@@ -1374,6 +1448,9 @@ msgid ""
"track to around the 3 minute mark in order to make it suitable for radio "
"play (a \"radio edit\")."
msgstr ""
+"这说明工程师负责串联录音所得的不同音频元素,或以其他方式重新分配录音素材。这"
+"通常是混音工程师的次要或额外工作。也可以涵盖将长音轨剪辑成3分钟左右以适应电台"
+"播放(即“电台版”)的工作。"
#: DB:link_type/description:133 DB:link_type/description:29
msgid ""
@@ -1381,6 +1458,8 @@ msgid ""
"artists make reach the microphones sounding pleasant, without unwanted "
"resonance or noise. Sometimes known as acoustical engineering."
msgstr ""
+"这说明工程师负责确保艺术家发出的声音到达麦克风时使人听起来愉悦,而不会产生不"
+"必要的谐振或噪音。而这个过程有时称为声学工程。"
#: DB:link_type/description:1179
msgid ""
@@ -1395,6 +1474,9 @@ msgid ""
"remixing, see remixer."
msgstr ""
+"这说明工程师负责使用调音台将录制的音轨混音为适合纳入专辑的单曲音乐。关于重混"
+"音,参见重混音者。"
#: DB:link_type/description:26
msgid ""
@@ -1403,14 +1485,17 @@ msgid ""
"remixing, see remixer."
msgstr ""
+"这说明工程师负责使用调音台将录制的音轨混音为适合纳入专辑的单曲音乐。关于重混"
+"音,参见重混音者。"
#: DB:link_type/description:28 DB:link_type/description:138
msgid "This describes an engineer who performed a general engineering role."
-msgstr ""
+msgstr "这说明工程师负责一般工程任务。"
#: DB:link_type/description:103
msgid "This indicates a person is a member of a group."
-msgstr ""
+msgstr "这指的是作为团体成员的个人。"
#: DB:link_type/description:135 DB:link_type/description:62
msgid ""
@@ -1418,6 +1503,8 @@ msgid ""
"overseeing the artistic development of an artist, and acting as liaison "
"between artists and the labels."
msgstr ""
+"这指的是负责搜罗人才,监督艺术家的艺术发展,且担负艺术家和厂牌间沟通职责的个"
+"人或机构。"
#: DB:link_type/description:19
msgid ""
@@ -1425,12 +1512,14 @@ msgid ""
"release. This relationship is deprecated, please use either \"design\" or "
"\"illustration\" (or both!)"
msgstr ""
+"这指的是参与设计专辑或制作专辑插图的个人或机构。此关联已弃用,请使用“设"
+"计”或“插图”之一(或二者!)"
#: DB:link_type/description:130
msgid ""
"This indicates a person or agency who did design or illustration for the "
"track."
-msgstr ""
+msgstr "这指的是参与设计音轨或制作音轨插图的个人或机构。"
#: DB:link_type/description:723
msgid ""
@@ -1438,6 +1527,8 @@ msgid ""
"is a small label (usually a subdivision of a larger one) that exclusively "
"handles releases by that artist."
msgstr ""
+"这指的是艺术家个人厂牌。个人厂牌是专门处理该艺术家专辑的小型厂牌(通常隶属于大"
+"厂牌)。"
#: DB:link_type/description:724
msgid ""
@@ -1445,18 +1536,20 @@ msgid ""
"publishing label is a small label (usually a subdivision of a larger one) "
"that exclusively handles the rights to works by that artist."
msgstr ""
+"这指的是艺术家个人词曲厂牌。个人词曲厂牌是专门处理该艺术家作品的小型厂牌(通常"
+"隶属于大厂牌)。"
#: DB:link_type/description:1011
msgid ""
"This indicates a recording engineer that recorded field recordings for the "
"recording."
-msgstr ""
+msgstr "这表明录音工程师在录音制品中负责户外录音工作。"
#: DB:link_type/description:1012
msgid ""
"This indicates a recording engineer that recorded field recordings for the "
"release."
-msgstr ""
+msgstr "这表明录音工程师在专辑中负责户外录音工作。"
#: DB:link_type/description:1174
msgid "This indicates an agency that did the art direction for the release."
@@ -1486,7 +1579,7 @@ msgstr ""
#: DB:link_type/description:895
msgid ""
"This indicates an artist (generally a person) was the founder of a group."
-msgstr ""
+msgstr "这表明艺术家(通常是单一个人)是团体创始人。"
#: DB:link_type/description:1004
msgid ""
@@ -1496,13 +1589,13 @@ msgstr ""
#: DB:link_attribute_type/description:921
msgid "This indicates an artist cancelled their appearance at an event."
-msgstr ""
+msgstr "这表明艺术家在活动中取消出席。"
#: DB:link_type/description:917
msgid ""
"This indicates an artist reconstructed a work (usually one where the score "
"was lost) to make it ready for performance."
-msgstr ""
+msgstr "这表明艺术家为表演需要重编了某一作品(通常因为乐谱丢失)。"
#: DB:link_type/description:18
msgid "This indicates an artist that did the art direction for the release."
@@ -1512,13 +1605,13 @@ msgstr ""
msgid ""
"This indicates an artist who conducted an orchestra, band or choir on this "
"recording."
-msgstr ""
+msgstr "这表明艺术家在此录音中指挥了乐团,乐队或合唱团。"
#: DB:link_type/description:46
msgid ""
"This indicates an artist who conducted an orchestra, band or choir on this "
"release."
-msgstr ""
+msgstr "这表明艺术家在此专辑中指挥了乐团,乐队或合唱团。"
#: DB:link_type/description:928
msgid "This indicates an artist who did design for the release."
@@ -1539,7 +1632,7 @@ msgstr ""
msgid ""
"This indicates an artist who is responsible for the creative and practical "
"day-to-day aspects involved with making a musical recording."
-msgstr ""
+msgstr "这表明艺术家负责录音制作期间的创作和日常实践。"
#: DB:link_type/description:993
msgid ""
@@ -1551,13 +1644,13 @@ msgstr ""
msgid ""
"This indicates an artist who was the concertmaster/leader for an orchestra "
"or band on this recording."
-msgstr ""
+msgstr "这表明艺术家是录音中乐团或乐队的首席演奏者/领班。"
#: DB:link_type/description:759
msgid ""
"This indicates an artist who was the concertmaster/leader for an orchestra "
"or band on this release."
-msgstr ""
+msgstr "这表明艺术家是专辑中乐团或乐队的首席演奏者/领班。"
#: DB:link_type/description:891
msgid ""
@@ -1565,56 +1658,58 @@ msgid ""
"is most common for classical works, but also exists in other genres to a "
"degree."
msgstr ""
+"这表明(通常情况下)作品由音乐节委托制作。最常见于古典作品,但也或多或少存在于"
+"其他流派。"
#: DB:link_type/description:1097
msgid ""
"This indicates that a genre has influences of another, but is not connected "
"to it enough to be a subgenre of it."
-msgstr ""
+msgstr "这表明一个流派受其他流派影响,但还称不上子流派。"
#: DB:link_type/description:1096
msgid ""
"This indicates that a genre originated as a hybrid of two or more other "
"genres."
-msgstr ""
+msgstr "这表明一个流派来自两个或以上流派的融合。"
#: DB:link_type/description:305
msgid "This indicates that a person is, or was, a conductor for a group."
-msgstr ""
+msgstr "这指的是现在是或曾是团体指挥的个人。"
#: DB:link_type/description:965
msgid ""
-"This indicates that a person is, or was, the artistic director of a group (e."
-"g. a ballet/opera company)."
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
msgstr ""
#: DB:link_type/description:137
msgid ""
"This indicates that a person or agency did the art direction for the "
"recording."
-msgstr ""
+msgstr "这指的是对录音进行艺术指导的个人或机构。"
#: DB:link_type/description:142
msgid ""
"This indicates that a person or firm provided legal representation for the "
"recording."
-msgstr ""
+msgstr "这指的是作为录音法定代表的个人或机构。"
#: DB:link_type/description:22
msgid ""
"This indicates that a person or firm provided legal representation for the "
"release."
-msgstr ""
+msgstr "这指的是作为专辑法定代表的个人或机构。"
#: DB:link_type/description:717
msgid "This indicates that a place is part of another place."
-msgstr ""
+msgstr "这表明一个地点包含于另一地点。"
#: DB:link_type/description:725
msgid ""
"This indicates that a record label (company) owns or has the right to use an "
"imprint."
-msgstr ""
+msgstr "这表明厂牌(公司)拥有或有权使用厂牌标志。"
#: DB:link_type/description:228
msgid ""
@@ -1625,6 +1720,10 @@ msgid ""
"the DJ-mix "
"relationship type may be more appropriate."
msgstr ""
+"这表明一个录音是多个录音的合辑。这适用于包含多首歌曲的单一长录音,一首连着一"
+"首,原始录音中的音频素材未受编辑。如果音轨已调音或混合,DJ混音关联类型更合"
+"适。"
#: DB:link_type/description:894
msgid ""
@@ -1632,6 +1731,8 @@ msgid ""
"linking release groups (often albums) to box sets and other compilations "
"that contain them."
msgstr ""
+"这表明专辑组包含于其他专家组中。这允许将专辑组(通常是唱片专辑)链接到包含它们"
+"的盒装版和其他合辑。"
#: DB:link_type/description:3
msgid ""
@@ -1640,6 +1741,8 @@ msgid ""
"releases. A 'supporting release' is one which is released to increase sales "
"of an album or to create publicity for an album."
msgstr ""
+"这表明一个专辑用于推广其他专辑。这允许将专辑链接到推广用的单曲专辑,迷你专辑"
+"和重混音专辑。\"推广专辑\"指的是用于提升大碟专辑销量或者曝光度的专辑。"
#: DB:link_type/description:11
msgid ""
@@ -1647,64 +1750,66 @@ msgid ""
"taken from an album release group. This allows a release group to be linked "
"to its associated singles and EPs."
msgstr ""
+"这表明单曲或迷你专辑组含有至少一个来自大碟专辑组的音轨。这允许将专辑组链接到"
+"相关的单曲或迷你专辑。"
#: DB:link_type/description:281
msgid ""
-"This indicates that a work is made up of multiple parts (e.g. an orchestral "
-"suite broken into movements)"
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
msgstr ""
#: DB:link_type/description:858
msgid ""
"This indicates that an artist appears on a music video, but doesn't actually "
"perform on the audio track."
-msgstr ""
+msgstr "这表明艺术家出现在音乐录像带中,但实际上并未在音轨中献声。"
#: DB:link_type/description:121
msgid "This indicates that an artist had a recording contract with a label."
-msgstr ""
+msgstr "这表明艺术家与厂牌之间有录音合约。"
#: DB:link_type/description:117
msgid ""
"This indicates that an artist was officially employed by a label as a "
"producer."
-msgstr ""
+msgstr "这表明艺术家正式担任厂牌的制作人。"
#: DB:link_type/description:120
msgid ""
"This indicates that an artist was officially employed by a label as an "
"engineer."
-msgstr ""
+msgstr "这表明艺术家正式担任厂牌的工程师。"
#: DB:link_type/description:115
msgid ""
"This indicates that an artist was officially employed by a label in a "
"creative position, such as photographer or graphic designer."
-msgstr ""
+msgstr "这表明艺术家正式担任厂牌的美工设计职位,例如摄影师或平面设计师。"
#: DB:link_type/description:1081
msgid ""
"This indicates that an artist was officially employed by a label in an "
"artists and repertoire (A&R) position."
-msgstr ""
+msgstr "这表明艺术家正式担任厂牌的艺术家与作品(A&R)职位。"
#: DB:link_type/description:818
msgid ""
"This indicates that an event is made up of multiple parts (e.g. a festival "
"happening on multiple venues over the course of a few days)."
-msgstr ""
+msgstr "这表明活动包含多个部分(例如几天内在多处场地举行的音乐节)。"
#: DB:link_type/description:739
msgid ""
"This indicates that an instrument (often an ensemble or family) consists of "
"two or more other instruments."
-msgstr ""
+msgstr "这表明一种乐器(通常是乐器组合或乐器族)包含两种以上其他乐器。"
#: DB:link_type/description:916
msgid ""
"This indicates that an instrument is a hybrid of two or more other "
"instruments."
-msgstr ""
+msgstr "这表明一种乐器是两种以上其他乐器的组合。"
#: DB:link_type/description:2
msgid ""
@@ -1712,55 +1817,62 @@ msgid ""
"the release title and track titles have been either translated (into another "
"language) or transliterated (into another script)."
msgstr ""
+"这表明一个专辑和另一专辑相同,但专辑标题和音轨标题是译文(其他语言)或转写版(其"
+"他文字)。"
#: DB:link_type/description:889
msgid ""
"This indicates that the artist commissioned the work. This is most common "
"for classical works, but also exists in other genres to a degree."
msgstr ""
+"这表明作品由艺术家委托制作。最常见于古典作品,但也或多或少存在于其他流派。"
#: DB:link_type/description:129 DB:link_type/description:25
msgid ""
"This indicates that the artist performed a role not covered by other "
"relationship types."
-msgstr ""
+msgstr "这表明艺术家担任了其他关联类型尚未涵盖的角色。"
#: DB:link_attribute_type/description:618
msgid ""
"This indicates that the group had multiple conductors or multiple players of "
"the selected instrument who were led by this artist. This is often indicated "
"by the title of \"principal conductor\" or \"first conductor\" for "
-"conductors, and by the title of \"principal [instrument]\" or \"concertmaster"
-"\" (principal violin) for instruments."
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
msgstr ""
+"这表明团体有多个指挥或演奏特定乐器的艺术家。对于指挥而言常有\"首席指挥\"或"
+"\"第一指挥\",而对于乐器则有\"首席[乐器]\"或者\"乐团首席\"(首席小提琴)。"
#: DB:link_type/description:998 DB:link_type/description:999
msgid ""
"This indicates that the label performed a role not covered by other "
"relationship types."
-msgstr ""
+msgstr "这表明厂牌担任了其他关联类型尚未涵盖的角色。"
#: DB:link_type/description:890
msgid ""
"This indicates that the organisation commissioned the work. This is most "
"common for classical works, but also exists in other genres to a degree."
msgstr ""
+"这表明作品由组织委托制作。最常见于古典作品,但也或多或少存在于其他流派。"
#: DB:link_type/description:892
msgid ""
"This indicates that the place commissioned the work. This is most common for "
"classical works, but also exists in other genres to a degree."
msgstr ""
+"这表明作品由地点委托制作。最常见于古典作品,但也或多或少存在于其他流派。"
#: DB:link_attribute_type/description:579
msgid ""
-"This indicates that the recording is not of the entire work, e.g. excerpts "
-"from, conclusion of, etc."
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
msgstr ""
#: DB:link_attribute_type/description:578
msgid "This indicates that the recording is of a live performance."
-msgstr ""
+msgstr "表明这是现场表演的录音。"
#: DB:link_attribute_type/description:750
msgid ""
@@ -1844,6 +1956,8 @@ msgid ""
"that turn a composition into a form that can be played by a specific type of "
"ensemble."
msgstr ""
+"这表明艺术家将乐曲编为适合表演的形式。“编曲”是针对将原始音乐创作转变为特定乐"
+"队类型能够演奏的形式这一过程的概括性说法。"
#: DB:link_type/description:152
msgid ""
@@ -1880,16 +1994,16 @@ msgid ""
"This indicates the organization that distributes (or contracts out "
"distribution). \n"
"\n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:360
msgid ""
"This indicates the organization that manufactures (or contracts out "
"manufacturing). \n"
-"This is not the same concept as the record label."
+"This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:848
@@ -1907,8 +2021,8 @@ msgstr ""
#: DB:link_type/description:359
msgid ""
"This indicates the organization that promotes (or contracts out promotion) "
-"for a release. This is not the same concept as the record label."
+"for a release. This is not the same concept as the record label."
msgstr ""
#: DB:link_type/description:362
@@ -1959,6 +2073,9 @@ msgid ""
"relationship/9162dedd-790c-446c-838e-240f877dbfe2\" target=\"_blank\">DJ-"
"mixer."
msgstr ""
+"这指的是在合辑中选择音轨并编排次序的个人。如果音轨已调音或混合,将此人记录为"
+"混音DJ更合适。"
#: DB:link_type/description:147
msgid ""
@@ -1969,6 +2086,10 @@ msgid ""
"relationship/28338ee6-d578-485a-bb53-61dbfd7c6545\" target=\"_blank\">DJ-"
"mixer."
msgstr ""
+"这指的是在合辑中选择音轨并编排次序的个人。这适用于包含多首歌曲的单一长录音,"
+"一首连着一首。如果音轨已调音或混合,将此人记录为混音"
+"DJ更合适。"
#: DB:link_type/description:942
msgid ""
@@ -1976,6 +2097,8 @@ msgid ""
"not the same concept as the record "
"label."
msgstr ""
+"这指的是压制专辑的压盘公司。和厂牌不是"
+"strong>同一概念。"
#: DB:link_attribute_type/description:1310
msgid ""
@@ -2079,6 +2202,9 @@ msgid ""
"relationship/28338ee6-d578-485a-bb53-61dbfd7c6545\">DJ-mixer for "
"crediting the person who created the DJ-mix."
msgstr ""
+"这将DJ混音版录音链接到每个原始录"
+"音。关于制作DJ混音的个人,参见混音DJ。"
#: DB:link_type/description:1093
msgid "This is used to link a genre to its corresponding page on Allmusic."
@@ -2137,6 +2263,9 @@ msgid ""
"relationship/9162dedd-790c-446c-838e-240f877dbfe2\">DJ-mixer for "
"crediting the person who created the DJ-mix."
msgstr ""
+"这将含有某专辑DJ混音版本专辑的专"
+"辑组链接到含有原始专辑的专辑组。关于制作DJ混音的个人,参见混音DJ。"
#: DB:link_type/description:284
msgid ""
@@ -2183,7 +2312,7 @@ msgstr ""
#: DB:link_type/description:180
msgid "This is used to link the Discogs page for this artist."
-msgstr ""
+msgstr "用于链接艺术家的Discogs页。"
#: DB:link_type/description:1089
msgid "This is used to link the Discogs page for this genre/style."
@@ -2191,43 +2320,43 @@ msgstr ""
#: DB:link_type/description:217
msgid "This is used to link the Discogs page for this label."
-msgstr ""
+msgstr "用于链接厂牌的Discogs页。"
#: DB:link_type/description:90
msgid "This is used to link the Discogs page for this release group."
-msgstr ""
+msgstr "用于链接专辑组的Discogs页。"
#: DB:link_type/description:76
msgid "This is used to link the Discogs page for this release."
-msgstr ""
+msgstr "用于链接专辑的Discogs页。"
#: DB:link_type/description:971
msgid "This is used to link the Discogs page for this work."
-msgstr ""
+msgstr "用于链接作品的Discogs页。"
#: DB:link_type/description:176
msgid ""
"This is used to link to a page where the artist's releases can be purchased "
"for download."
-msgstr ""
+msgstr "用于链接艺术家专辑的付费下载页面。"
#: DB:link_type/description:959
msgid ""
"This is used to link to a page where the label's releases can be purchased "
"for download."
-msgstr ""
+msgstr "用于链接厂牌专辑的付费下载页面。"
#: DB:link_type/description:254
msgid ""
"This is used to link to a page where the recording can be purchased for "
"download."
-msgstr ""
+msgstr "用于链接录音的付费下载页面。"
#: DB:link_type/description:74
msgid ""
"This is used to link to a page where the release can be purchased for "
"download."
-msgstr ""
+msgstr "用于链接专辑的付费下载页面。"
#: DB:link_type/description:278
msgid "This is used to link works to their recordings."
@@ -2235,10 +2364,12 @@ msgstr ""
#: DB:link_type/description:102
msgid ""
-"This is used to specify that an artist collaborated on a short-term project, for cases where artist "
-"credits can't be used."
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
msgstr ""
+"这用于表明参与短期合作项目的艺术家"
+"a>,用于艺术家名单无法使用时。"
#: DB:link_type/description:1047
msgid ""
@@ -2267,19 +2398,21 @@ msgstr ""
msgid ""
"This link points to a page for a particular release within a discography for "
"an artist or label."
-msgstr ""
+msgstr "此链接指向艺术家或厂牌作品列表页面中关于特定专辑的页面。"
#: DB:link_type/description:921
msgid ""
"This link points to a page for a particular work within a work list for an "
"artist."
-msgstr ""
+msgstr "此链接指向艺术家作品列表页面中关于特定作品的页面。"
#: DB:link_type/description:43 DB:link_type/description:155
msgid ""
"This links a DJ-"
"mix to the artist who mixed it."
msgstr ""
+"这将DJ混音链接"
+"到制作它的艺术家。"
#: DB:link_type/description:9
msgid ""
@@ -2418,7 +2551,7 @@ msgstr ""
#: DB:link_type/description:255
msgid ""
"This links a recording to a page where it can be legally downloaded for free."
-msgstr ""
+msgstr "这会将录音链接到合法免费下载页面。"
#: DB:link_type/description:1177
msgid ""
@@ -2449,7 +2582,7 @@ msgstr ""
msgid ""
"This links a recording to the relevant crowdfunding project at a "
"crowdfunding site like Kickstarter or Indiegogo."
-msgstr ""
+msgstr "这将录音指向Kickstarter或者Indiegogo一类众筹网站上的众筹项目。"
#: DB:link_type/description:1190
msgid "This links a release group to a fan-created website."
@@ -2464,25 +2597,33 @@ msgid ""
"honor the label. Often they are various artist compilations, but a single "
"artist can perform the entire tribute album."
msgstr ""
+"这将专辑组指向厂牌,表明它是致敬专辑。致敬专辑在标题中常有“对厂牌的致敬”或"
+"者“对厂牌旗下艺术家的致敬”一类格式,包含其他艺术家(有时名不见经传)对厂牌旗下"
+"歌曲的翻唱,以向厂牌致敬。通常是多艺术家合作专辑,但是单一艺术家也可以灌制整"
+"张致敬专辑。"
#: DB:link_type/description:868
msgid ""
"This links a release group to an artist it is dedicated to. This is for "
"dedications such as \"This album is dedicated to the memory of Artist\" - "
"for tribute albums consisting of covers of the artist, use the tribute relationship."
+"relationship/5e2907db-49ec-4a48-9f11-dfb99d2603ff\" "
+"target=\"_blank\">tribute relationship."
msgstr ""
#: DB:link_type/description:65
msgid ""
"This links a release group to an artist, to indicate that it is a tribute "
-"album. Tribute albums often have a title in the form \"A Tribute to Artist"
-"\", and they consist of covers of songs by the target artist, played by "
-"other (sometimes very unknown) bands, to honor the target artist. Often they "
-"are various artist compilations, but a single artist can perform the entire "
-"tribute album."
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
msgstr ""
+"这将专辑组指向艺术家,表明它是致敬专辑。致敬专辑在标题中常有“对厂牌的致敬”或"
+"者“对厂牌旗下艺术家的致敬”一类格式,包含其他艺术家(有时名不见经传)对厂牌旗下"
+"歌曲的翻唱,以向厂牌致敬。通常是多艺术家合作专辑,但是单一艺术家也可以灌制整"
+"张致敬专辑。"
#: DB:link_type/description:1176
msgid ""
@@ -2494,7 +2635,7 @@ msgstr ""
msgid ""
"This links a release group to the relevant crowdfunding project at a "
"crowdfunding site like Kickstarter or Indiegogo."
-msgstr ""
+msgstr "这将专辑组指向Kickstarter或者Indiegogo一类众筹网站上的众筹项目。"
#: DB:link_type/description:1009
msgid ""
@@ -2502,6 +2643,8 @@ msgid ""
"defect, but sometimes just to change the artist credits) to a new release "
"put out to replaced it."
msgstr ""
+"这将已取消的专辑(通常因为制作缺陷,但有时只是因为艺术家名单变更)链接到后续发"
+"行的替代专辑。"
#: DB:link_type/description:301
msgid "This links a release to a license under which it is available."
@@ -2510,7 +2653,7 @@ msgstr ""
#: DB:link_type/description:75
msgid ""
"This links a release to a page where it can be legally downloaded for free."
-msgstr ""
+msgstr "这会将专辑链接到合法免费下载页面。"
#: DB:link_type/description:37
msgid ""
@@ -2535,7 +2678,7 @@ msgstr ""
msgid ""
"This links a release to the relevant crowdfunding project at a crowdfunding "
"site like Kickstarter or Indiegogo."
-msgstr ""
+msgstr "这将专辑指向Kickstarter或者Indiegogo一类众筹网站上的众筹项目。"
#: DB:link_type/description:870
msgid ""
@@ -2568,9 +2711,9 @@ msgstr ""
#: DB:link_type/description:910
msgid ""
-"This links a series to its profile (e.g. for a festival) or project (e.g. "
-"for a specific tour, or for compiling a classical catalogue) at a "
-"crowdfunding site like Kickstarter or Indiegogo."
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
msgstr ""
#: DB:link_type/description:97
@@ -2578,6 +2721,8 @@ msgid ""
"This links a soundtrack release group to the IMDb page for the movie, show or game of which it is a soundtrack."
msgstr ""
+"这会将原声专辑组链接到电影、电视节目或游戏的IMDb页面,该页面是原声音乐。"
#: DB:link_type/description:992
msgid ""
@@ -2586,12 +2731,16 @@ msgid ""
"community project dedicated to cataloguing the music of video games and "
"anime."
msgstr ""
+"这会将原声作品链接到电影、电视节目或游戏的VGMdb页面,该页面是原声音乐。VGMdb是专注于收集动漫游戏音乐的社区项目。"
#: DB:link_type/description:843
msgid ""
"This links a soundtrack work to the IMDb"
"a> page for the movie, show or game of which it is a soundtrack."
msgstr ""
+"这会将原声作品链接到电影、电视节目或游戏的IMDb页面,该页面是原声音乐。"
#: DB:link_type/description:722
msgid "This links a subgroup to the group from which it was created."
@@ -2609,7 +2758,7 @@ msgstr ""
msgid ""
"This links a work to its project at a crowdfunding site like Kickstarter or "
"Indiegogo."
-msgstr ""
+msgstr "这将作品指向Kickstarter或者Indiegogo一类众筹网站上的众筹项目。"
#: DB:link_type/description:885
msgid "This links a work with the area it was arranged in."
@@ -2633,7 +2782,7 @@ msgstr ""
#: DB:link_type/description:879
msgid "This links a work with the area its libretto was written in."
-msgstr ""
+msgstr "这将作品链接到歌剧剧本的撰写地区。"
#: DB:link_type/description:877
msgid "This links a work with the area its lyrics were written in."
@@ -2661,7 +2810,7 @@ msgstr ""
#: DB:link_type/description:880
msgid "This links a work with the place its libretto was written at."
-msgstr ""
+msgstr "这将作品链接到歌剧剧本的撰写地点。"
#: DB:link_type/description:878
msgid "This links a work with the place its lyrics were written at."
@@ -2719,7 +2868,7 @@ msgstr ""
#: DB:link_type/description:718
msgid "This links an artist to its page at Bandcamp."
-msgstr ""
+msgstr "此链接为艺术家的 Bandcamp 页面。"
#: DB:link_type/description:919
msgid "This links an artist to its page at CD Baby."
@@ -2784,6 +2933,10 @@ msgid ""
"href=\"/relationship/40dff87a-e475-4aa6-b615-9935b564d756\">editor "
"relationship type."
msgstr ""
+"这会将编辑链接到其原始曲目。对于这种关系,“编辑”可以是广播编辑(包括将较长的"
+"曲目精简到3分钟左右,以使其适合广播播放),也可以是其缩短版,删节版或其他编辑"
+"版本。可以使用"
+"编辑者关系类型链接编辑此曲目的人。"
#: DB:link_type/description:289
msgid ""
@@ -2799,8 +2952,8 @@ msgstr ""
#: DB:link_type/description:96 DB:link_type/description:803
msgid ""
"This links an entity to the equivalent entry in another database. Please "
-"respect the whitelist."
+"respect the whitelist."
msgstr ""
#: DB:link_type/description:804
@@ -2823,7 +2976,7 @@ msgstr ""
msgid ""
"This links an event to the relevant crowdfunding project at a crowdfunding "
"site like Kickstarter or Indiegogo."
-msgstr ""
+msgstr "这将活动指向Kickstarter或者Indiegogo一类众筹网站上相关的众筹项目。"
#: DB:link_type/description:737
msgid "This links an instrument to an older instrument that it was based on."
@@ -2839,8 +2992,8 @@ msgstr ""
#: DB:link_type/description:315
msgid ""
-"This links different revisions of the same work."
+"This links different revisions of the same work."
msgstr ""
#: DB:link_type/description:212
@@ -2893,7 +3046,7 @@ msgstr ""
#: DB:link_type/description:241
msgid ""
"This links two versions of a work."
-msgstr ""
+msgstr "链接一个作品的两个版本。"
#: DB:link_type/description:310
msgid ""
@@ -2903,6 +3056,9 @@ msgid ""
"libraries. (more information on Wikipedia)"
msgstr ""
+"这指向艺术家的VIAF页面。VIAF是一个向世界各地图书"
+"馆提供规范文件的国际项目。对图书馆而言,规范文件类似于MBID。(详情见维基百科)"
#: DB:link_type/description:311
msgid ""
@@ -2912,6 +3068,9 @@ msgid ""
"libraries. (more information on Wikipedia)"
msgstr ""
+"这指向厂牌的VIAF页面。VIAF是一个向世界各地图书馆"
+"提供规范文件的国际项目。对图书馆而言,规范文件类似于MBID。(详情见维基百科)"
#: DB:link_type/description:920
msgid ""
@@ -2921,6 +3080,9 @@ msgid ""
"libraries. (more information on Wikipedia)"
msgstr ""
+"这指向地点的VIAF页面。VIAF是一个向世界各地图书馆"
+"提供规范文件的国际项目。对图书馆而言,规范文件类似于MBID。(详情见维基百科)"
#: DB:link_type/description:1001
msgid ""
@@ -2930,6 +3092,9 @@ msgid ""
"libraries. (more information on Wikipedia)"
msgstr ""
+"这指向系列的VIAF页面。VIAF是一个向世界各地图书馆"
+"提供规范文件的国际项目。对图书馆而言,规范文件类似于MBID。(详情见维基百科)"
#: DB:link_type/description:312
msgid ""
@@ -2942,13 +3107,22 @@ msgid ""
"Note: Works in VIAF aren't very detailed. Only add links to "
"MusicBrainz works if you're absolutely sure it's the same work."
msgstr ""
+"这指向作品的VIAF页面。VIAF是一个向世界各地图书馆"
+"提供规范文件的国际项目。对图书馆而言,规范文件类似于MBID。(详情见维基百科"
+"a>)\n"
+"
\n"
+"备注:对音乐作品而言,VIAF信息尚不完善。只在你绝对确认所指为"
+"同一作品时才向MusicBrainz作品加入链接。"
#: DB:link_type/description:197
msgid ""
"This relationship describes a URL where lyrics for the artist can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
+"此关联描述了该艺术家名下歌词所在URL。只有白名单上的网站允许使用。"
#: DB:link_type/description:982
msgid ""
@@ -2956,6 +3130,8 @@ msgid ""
"a publisher) can be found. Only sites on the whitelist are permitted."
msgstr ""
+"此关联描述了该厂牌旗下歌词所在URL(多为词曲版权方)。只有白名单上的网站允许使用。"
#: DB:link_type/description:93
msgid ""
@@ -2963,13 +3139,17 @@ msgid ""
"found. Only sites on the whitelist are permitted."
msgstr ""
+"此关联描述了该专辑组中歌词所在URL。只有白名单上的网站允许使用。"
#: DB:link_type/description:271
msgid ""
"This relationship describes a URL where lyrics for the work can be found. "
-"Only sites on the whitelist are permitted."
+"Only sites on the whitelist are permitted."
msgstr ""
+"此关联描述了该作品中歌词所在URL。只有白名单上的网站允许使用。"
#: DB:link_type/description:929
msgid ""
@@ -2979,8 +3159,8 @@ msgstr ""
#: DB:link_type/description:893
msgid ""
-"This relationship indicates that a person was a teacher at an event (e.g. a "
-"masterclass)."
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
msgstr ""
#: DB:link_type/description:847
@@ -3064,6 +3244,8 @@ msgid ""
"relationships. To indicate (P) holders, use the phonographic copyright "
"relationship."
msgstr ""
+"此关联已弃用。要指示作品词曲版权方,请添加厂牌-作品关联。要指示录音版权持有"
+"者,请使用录音著作权关联。"
#: DB:link_type/description:751
msgid ""
@@ -3101,6 +3283,8 @@ msgid ""
"Concert_residency\" target=\"_blank\">concert residency to the artist(s) "
"who held the residency."
msgstr ""
+"此关联将驻留音乐会链接至举行驻留活动的艺术家。"
#: DB:link_type/description:1165
msgid ""
@@ -3165,6 +3349,9 @@ msgid ""
"referred to as cover bands. Some tribute artists may name themselves, dress, "
"and/or act similarly to the artists they pay tribute to."
msgstr ""
+"这一关系指明一位艺术家向其他艺术家/乐队致敬;即,主要翻唱该艺术家的歌曲。有时也被称作翻唱乐"
+"队。有些致敬艺术家会使用与致敬对象相似的名称,装束,和/或表演方式。"
#: DB:link_type/description:936
msgid ""
@@ -3224,6 +3411,12 @@ msgid ""
"relationship/85b0a010-3237-47c7-8476-6fcefd4761af\">IMDB relationship type "
"for release groups."
msgstr ""
+"此关联类型描述的是含有影视节目或游戏中采样片段的录音,对应位于下列URL的IMDB"
+"页。\n"
+"
\n"
+"要表明录音是原声音乐一部分的话,请使用适用于专辑组的IMDB关联类"
+"型。"
#: DB:link_type/description:236
msgid ""
@@ -3262,7 +3455,7 @@ msgstr ""
#: DB:link_type/description:15
msgid ""
"This relationship type is used to indicate that a release group is a cover "
-"version of another release group, i.e. when an artist performs a new "
+"version of another release group, that is, when an artist performs a new "
"rendition of another artist's album.
\n"
"For individual songs, see the recording-work performance relationship type."
@@ -3271,7 +3464,7 @@ msgstr ""
#: DB:link_type/description:1005
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for a subscription fee, e.g. Apple Music.\n"
+"legally streamed for a subscription fee, such as Apple Music.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3279,13 +3472,28 @@ msgstr ""
#: DB:link_type/description:997
msgid ""
"This relationship type is used to link a label to a site where music can be "
-"legally streamed for free, e.g. Spotify."
+"legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:224
msgid "This relationship type is used to link a label to its blog."
msgstr ""
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
#: DB:link_type/description:287
msgid ""
"This relationship type is used to link a release group to an official "
@@ -3295,7 +3503,7 @@ msgstr ""
#: DB:link_type/description:980
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for a subscription fee, e.g. Tidal.\n"
+"can be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3303,28 +3511,13 @@ msgstr ""
#: DB:link_type/description:85
msgid ""
"This relationship type is used to link a release to a site where the tracks "
-"can be legally streamed for free, e.g. Spotify."
-msgstr ""
-
-#: DB:link_type/description:979
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
-"\n"
-"If the site allows free streaming, use \"free streaming\" instead."
-msgstr ""
-
-#: DB:link_type/description:268
-msgid ""
-"This relationship type is used to link a track to a site where the track can "
-"be legally streamed for free, such as Spotify for audio tracks or YouTube "
-"for videos."
+"can be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:978
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for a subscription fee, e.g. Tidal.\n"
+"be legally streamed for a subscription fee, such as Tidal.\n"
"\n"
"If the site allows free streaming, use \"free streaming\" instead."
msgstr ""
@@ -3332,7 +3525,7 @@ msgstr ""
#: DB:link_type/description:194
msgid ""
"This relationship type is used to link an artist to a site where music can "
-"be legally streamed for free, e.g. Spotify."
+"be legally streamed for free, such as Spotify."
msgstr ""
#: DB:link_type/description:199
@@ -3343,37 +3536,37 @@ msgstr ""
msgid ""
"This relationship type is used to link to a page where the artist's releases "
"can be purchased for mail order."
-msgstr ""
+msgstr "此关联类型用于链接艺术家专辑邮购页。"
#: DB:link_type/description:960
msgid ""
"This relationship type is used to link to a page where the label's releases "
"can be purchased for mail order."
-msgstr ""
+msgstr "此关联类型用于链接厂牌专辑邮购页。"
#: DB:link_type/description:79
msgid ""
"This relationship type is used to link to a page where the release can be "
"purchased for mail order."
-msgstr ""
+msgstr "此关联类型用于链接专辑邮购页。"
#: DB:link_type/description:274
msgid ""
"This relationship type is used to link to a page where the score / sheet "
"music for this work can be legally downloaded for free."
-msgstr ""
+msgstr "此关联类型用于链接此作品乐谱的合法免费下载页面。"
#: DB:link_type/description:912
msgid ""
"This relationship type is used to link to a page where the score / sheet "
"music for this work can be legally purchased for download."
-msgstr ""
+msgstr "此关联类型用于链接此作品乐谱的合法付费下载页面。"
#: DB:link_type/description:913
msgid ""
"This relationship type is used to link to a page where the score / sheet "
"music for this work can be legally purchased for mail order."
-msgstr ""
+msgstr "此关联类型用于链接此作品乐谱的合法邮购页面。"
#: DB:link_type/description:215
msgid "This relationship type links a label to its Myspace page."
@@ -3381,10 +3574,12 @@ msgstr ""
#: DB:link_type/description:210
msgid ""
-"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
+"此关联类型将厂牌链接到对应的VGMdb页面。"
+"VGMdb是专注于收集动漫游戏音乐的社区项目。"
#: DB:link_type/description:838
msgid ""
@@ -3397,6 +3592,8 @@ msgid ""
"page at VGMdb. VGMdb is a community "
"project dedicated to cataloguing the music of video games and anime."
msgstr ""
+"此关联类型将地点(通常是工作室)链接到对应的VGMdb页面。VGMdb是专注于收集动漫游戏音乐的社区项目。"
#: DB:link_type/description:861
msgid ""
@@ -3421,10 +3618,12 @@ msgstr ""
#: DB:link_type/description:86
msgid ""
-"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
+"此关联类型将专辑链接到对应的VGMdb页面。"
+"VGMdb是专注于收集动漫游戏音乐的社区项目。"
#: DB:link_type/description:938
msgid ""
@@ -3440,10 +3639,12 @@ msgstr ""
#: DB:link_type/description:191
msgid ""
-"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
+"此关联类型将艺术家链接到对应的VGMdb页面。"
+"VGMdb是专注于收集动漫游戏音乐的社区项目。"
#: DB:link_type/description:862
msgid ""
@@ -3479,6 +3680,9 @@ msgid ""
"include forums, LiveJournal communities and groups on Facebook, Last.fm and "
"Flickr."
msgstr ""
+"此关联类型用于链接艺术家的在线社区页面。在线社区是任何成员都可以发表评论,贡"
+"献内容的群组。艺术家本人可能是或不是群组成员。例子包含论坛,LiveJournal社区以"
+"及 Facebook, Last.fm 和 Flickr群组。"
#: DB:link_type/description:808
msgid ""
@@ -3487,10 +3691,12 @@ msgstr ""
#: DB:link_type/description:788
msgid ""
-"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated to "
-"cataloguing the music of video games and anime."
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
msgstr ""
+"此关联类型将活动链接到对应的VGMdb页面。"
+"VGMdb是专注于收集动漫游戏音乐的社区项目。"
#: DB:link_type/description:860
msgid ""
@@ -3567,7 +3773,7 @@ msgstr ""
msgid ""
"Transliterated track listings don't change the language, just the script or "
"spelling."
-msgstr ""
+msgstr "音译曲目列表不会更改语言,只会更改脚本或拼写。"
#: DB:link_attribute_type/description:834
msgid ""
@@ -3609,14 +3815,14 @@ msgstr ""
#: DB:link_type/description:1178
msgid ""
-"Use this relationship for credits like \"Recording was remixed by X for Label"
-"\""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:948
msgid ""
-"Use this relationship for credits like \"Release was arranged by X for Label"
-"\""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:952
@@ -3627,8 +3833,8 @@ msgstr ""
#: DB:link_type/description:1183
msgid ""
-"Use this relationship for credits like \"Release was mastered by X for Label"
-"\""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
msgstr ""
#: DB:link_type/description:947
@@ -3638,8 +3844,8 @@ msgstr ""
#: DB:link_type/description:951
msgid ""
-"Use this relationship for credits like \"Release was produced by X for Label"
-"\""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
msgstr ""
#: DB:link_attribute_type/description:1353
@@ -3692,7 +3898,7 @@ msgstr "VGMdb"
#: DB:link_type/reverse_link_phrase:191 DB:link_type/reverse_link_phrase:210
#: DB:link_type/reverse_link_phrase:788 DB:link_type/reverse_link_phrase:1013
msgid "VGMdb page for"
-msgstr ""
+msgstr "VGMdb页,关于"
#: DB:link_type/name:311 DB:link_type/name:310 DB:link_type/name:312
#: DB:link_type/name:920 DB:link_type/name:1001
@@ -3737,7 +3943,7 @@ msgstr "Wikidata"
#: DB:link_type/reverse_link_phrase:790 DB:link_type/reverse_link_phrase:352
#: DB:link_type/reverse_link_phrase:733 DB:link_type/reverse_link_phrase:358
msgid "Wikidata page for"
-msgstr ""
+msgstr "维基数据页,关于"
#: DB:link_type/link_phrase:179 DB:link_type/link_phrase:595
#: DB:link_type/link_phrase:355 DB:link_type/link_phrase:744
@@ -3753,7 +3959,7 @@ msgstr "Wikipedia"
#: DB:link_type/reverse_link_phrase:731 DB:link_type/reverse_link_phrase:89
#: DB:link_type/reverse_link_phrase:789
msgid "Wikipedia page for"
-msgstr ""
+msgstr "维基百科页,关于"
#: DB:link_type/link_phrase:1080
msgid "YouTube Music"
@@ -3785,7 +3991,7 @@ msgstr ""
#: DB:link_attribute_type/name:1
msgid "additional"
-msgstr ""
+msgstr "额外"
#: DB:link_type/name:755 DB:link_type/name:284 DB:link_type/name:283
#: DB:link_type/name:285 DB:link_type/name:286 DB:link_type/name:1093
@@ -3798,7 +4004,7 @@ msgstr ""
#: DB:link_type/name:77
msgid "amazon asin"
-msgstr ""
+msgstr "亚马逊 ASIN"
#: DB:link_attribute_type/name:1080
msgid "amount"
@@ -3810,7 +4016,7 @@ msgstr ""
#: DB:link_type/link_phrase:357 DB:link_type/name:357
msgid "anthem"
-msgstr ""
+msgstr "国歌"
#: DB:link_type/reverse_link_phrase:357
msgid "anthem of"
@@ -3818,30 +4024,30 @@ msgstr ""
#: DB:link_type/link_phrase:858 DB:link_type/long_link_phrase:858
msgid "appears on video"
-msgstr ""
+msgstr "出现在视频中"
#: DB:link_type/name:1131 DB:link_type/name:1130
msgid "apple music"
-msgstr ""
+msgstr "Apple Music"
#: DB:link_type/name:866 DB:link_type/name:865 DB:link_type/name:886
#: DB:link_type/reverse_link_phrase:866 DB:link_type/reverse_link_phrase:865
msgid "arranged at"
-msgstr ""
+msgstr "编曲,在"
#: DB:link_type/name:948 DB:link_type/name:949
#: DB:link_type/reverse_link_phrase:948 DB:link_type/reverse_link_phrase:949
msgid "arranged for"
-msgstr ""
+msgstr "编曲,为"
#: DB:link_type/name:864 DB:link_type/name:863 DB:link_type/name:885
#: DB:link_type/reverse_link_phrase:864 DB:link_type/reverse_link_phrase:863
msgid "arranged in"
-msgstr ""
+msgstr "编曲,在"
#: DB:link_type/name:350
msgid "arrangement"
-msgstr ""
+msgstr "编曲"
#: DB:link_type/reverse_link_phrase:350
msgid "arrangement of"
@@ -3849,11 +4055,11 @@ msgstr ""
#: DB:link_type/link_phrase:350
msgid "arrangements"
-msgstr ""
+msgstr "编曲者"
#: DB:link_type/name:295 DB:link_type/name:297 DB:link_type/name:293
msgid "arranger"
-msgstr ""
+msgstr "编曲者"
#: DB:link_attribute_type/name:1347
msgid "arranging"
@@ -3891,11 +4097,11 @@ msgstr ""
#: DB:link_type/name:1079
msgid "artist rename"
-msgstr ""
+msgstr "艺术家更名"
#: DB:link_type/name:965 DB:link_type/reverse_link_phrase:965
msgid "artistic director"
-msgstr ""
+msgstr "艺术指导"
#: DB:link_type/link_phrase:965
msgid "artistic director for"
@@ -3919,7 +4125,7 @@ msgstr ""
#: DB:link_attribute_type/name:526
msgid "assistant"
-msgstr ""
+msgstr "助理"
#: DB:link_attribute_type/name:527
msgid "associate"
@@ -3979,7 +4185,7 @@ msgstr ""
#: DB:link_type/name:1092 DB:link_type/name:718 DB:link_type/name:719
msgid "bandcamp"
-msgstr ""
+msgstr "Bandcamp"
#: DB:link_type/name:861 DB:link_type/name:862 DB:link_type/name:860
msgid "bandsintown"
@@ -4011,7 +4217,7 @@ msgstr "传记"
#: DB:link_type/reverse_link_phrase:182
msgid "biography of"
-msgstr "…的传记"
+msgstr "传记,关于"
#: DB:link_type/name:224 DB:link_type/name:199 DB:link_type/name:627
msgid "blog"
@@ -4020,7 +4226,7 @@ msgstr "博客"
#: DB:link_type/reverse_link_phrase:224 DB:link_type/reverse_link_phrase:199
#: DB:link_type/reverse_link_phrase:627
msgid "blog of"
-msgstr "…的博客"
+msgstr "博客,属于"
#: DB:link_type/link_phrase:224 DB:link_type/link_phrase:199
#: DB:link_type/link_phrase:627
@@ -4029,7 +4235,7 @@ msgstr "博客(多)"
#: DB:link_attribute_type/name:516
msgid "bonus"
-msgstr ""
+msgstr "彩蛋"
#: DB:link_type/link_phrase:23 DB:link_type/link_phrase:134
#: DB:link_type/name:23 DB:link_type/name:134
@@ -4057,24 +4263,24 @@ msgstr ""
#: DB:link_type/long_link_phrase:75 DB:link_type/long_link_phrase:255
msgid "can be downloaded for free at"
-msgstr ""
+msgstr "可免费下载于"
#: DB:link_type/long_link_phrase:254 DB:link_type/long_link_phrase:74
msgid "can be purchased for download at"
-msgstr ""
+msgstr "可付费下载于"
#: DB:link_type/long_link_phrase:79
msgid "can be purchased for mail-order at"
-msgstr ""
+msgstr "可邮购于"
-#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:979
-#: DB:link_type/long_link_phrase:980 DB:link_type/long_link_phrase:1005
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
msgid "can be streamed at"
-msgstr ""
+msgstr "可串流于"
#: DB:link_attribute_type/name:921
msgid "cancelled"
-msgstr ""
+msgstr "已取消"
#: DB:link_type/name:1165
msgid "carillonneur"
@@ -4115,7 +4321,7 @@ msgstr ""
#: DB:link_type/link_phrase:735 DB:link_type/name:735
msgid "children"
-msgstr ""
+msgstr "子女"
#: DB:link_attribute_type/description:13 DB:link_attribute_type/name:13
msgid "choir vocals"
@@ -4131,7 +4337,7 @@ msgstr ""
#: DB:link_attribute_type/name:1204
msgid "classical music"
-msgstr ""
+msgstr "古典音乐"
#: DB:link_attribute_type/name:424
msgid "co"
@@ -4143,7 +4349,7 @@ msgstr ""
#: DB:link_type/name:102
msgid "collaboration"
-msgstr ""
+msgstr "合作"
#: DB:link_type/link_phrase:1176 DB:link_type/link_phrase:1177
#: DB:link_type/name:1176 DB:link_type/name:1177
@@ -4165,7 +4371,7 @@ msgstr ""
#: DB:link_type/name:228
msgid "compilation"
-msgstr ""
+msgstr "合辑"
#: DB:link_type/link_phrase:228
msgid "compilation of"
@@ -4187,15 +4393,15 @@ msgstr ""
#: DB:link_type/name:876
msgid "composed at"
-msgstr ""
+msgstr "作曲地"
#: DB:link_type/name:875
msgid "composed in"
-msgstr ""
+msgstr "作曲地"
#: DB:link_type/name:55 DB:link_type/name:168
msgid "composer"
-msgstr ""
+msgstr "作曲者"
#: DB:link_type/name:937 DB:link_type/name:855
msgid "composer-in-residence"
@@ -4218,15 +4424,15 @@ msgstr ""
#: DB:link_type/name:760 DB:link_type/name:759
msgid "concertmaster"
-msgstr ""
+msgstr "乐团首席"
#: DB:link_attribute_type/name:1130
msgid "conducting"
-msgstr ""
+msgstr "指挥"
#: DB:link_type/name:806 DB:link_type/name:46 DB:link_type/name:151
msgid "conductor"
-msgstr ""
+msgstr "指挥"
#: DB:link_type/link_phrase:806
msgid "conductor at"
@@ -4238,7 +4444,7 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:806
msgid "conductors"
-msgstr ""
+msgstr "指挥"
#: DB:link_type/reverse_link_phrase:925
msgid "connected with"
@@ -4246,7 +4452,7 @@ msgstr ""
#: DB:link_type/link_phrase:739
msgid "consists of"
-msgstr ""
+msgstr "包含"
#: DB:link_type/long_link_phrase:1008
msgid "contains music recorded during"
@@ -4310,7 +4516,7 @@ msgstr ""
#: DB:link_type/name:708 DB:link_type/name:709
msgid "copyright"
-msgstr ""
+msgstr "版权"
#: DB:link_type/reverse_link_phrase:708 DB:link_type/reverse_link_phrase:709
msgid "copyrighted (©) by"
@@ -4326,11 +4532,11 @@ msgstr ""
#: DB:link_attribute_type/name:567 DB:link_type/name:15
msgid "cover"
-msgstr ""
+msgstr "封面"
#: DB:link_type/link_phrase:78
msgid "cover art"
-msgstr ""
+msgstr "封面图像"
#: DB:link_type/reverse_link_phrase:78
msgid "cover art for"
@@ -4338,7 +4544,7 @@ msgstr ""
#: DB:link_type/name:78
msgid "cover art link"
-msgstr ""
+msgstr "封面图片链接"
#: DB:link_type/name:12 DB:link_type/name:4 DB:link_type/long_link_phrase:12
msgid "covers and versions"
@@ -4348,11 +4554,11 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:12 DB:link_type/reverse_link_phrase:4
#: DB:link_type/long_link_phrase:4
msgid "covers or other versions"
-msgstr ""
+msgstr "翻唱或其他版本"
#: DB:link_type/name:63 DB:link_type/name:146
msgid "creative direction"
-msgstr ""
+msgstr "创意指导"
#: DB:link_type/reverse_link_phrase:115
msgid "creative persons"
@@ -4363,30 +4569,30 @@ msgid "creative position"
msgstr ""
#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
-#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:910
-#: DB:link_type/name:902 DB:link_type/name:907 DB:link_type/name:908
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
msgid "crowdfunding"
-msgstr ""
+msgstr "众筹"
#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
-#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:910
-#: DB:link_type/link_phrase:902 DB:link_type/link_phrase:907
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
#: DB:link_type/reverse_link_phrase:908
msgid "crowdfunding page"
-msgstr ""
+msgstr "众筹页面"
#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
-#: DB:link_type/reverse_link_phrase:910 DB:link_type/reverse_link_phrase:902
-#: DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
msgid "crowdfunding page for"
-msgstr ""
+msgstr "众筹页,关于"
#: DB:link_type/long_link_phrase:969
msgid "cut the lacquer for"
-msgstr ""
+msgstr "刻纹,为"
#: DB:link_type/name:868 DB:link_type/reverse_link_phrase:983
#: DB:link_type/reverse_link_phrase:846 DB:link_type/reverse_link_phrase:922
@@ -4422,45 +4628,45 @@ msgstr ""
#: DB:link_type/name:928 DB:link_type/name:1171
msgid "design"
-msgstr ""
+msgstr "设计"
#: DB:link_type/name:19 DB:link_type/name:130
msgid "design/illustration"
-msgstr ""
+msgstr "设计/插图"
#: DB:link_type/link_phrase:88 DB:link_type/link_phrase:171
#: DB:link_type/name:88 DB:link_type/name:171
#: DB:link_type/reverse_link_phrase:88 DB:link_type/reverse_link_phrase:171
#: DB:link_type/long_link_phrase:88 DB:link_type/long_link_phrase:171
msgid "discography"
-msgstr ""
+msgstr "唱片"
#: DB:link_type/link_phrase:288 DB:link_type/link_phrase:1169
#: DB:link_type/name:288 DB:link_type/name:1169
msgid "discography entry"
-msgstr ""
+msgstr "唱片条目"
#: DB:link_type/reverse_link_phrase:288 DB:link_type/reverse_link_phrase:1169
msgid "discography entry for"
-msgstr ""
+msgstr "的唱片条目"
#: DB:link_type/name:184
msgid "discography page"
-msgstr ""
+msgstr "目录页面"
#: DB:link_type/reverse_link_phrase:184
msgid "discography page for"
-msgstr ""
+msgstr "音乐作品集页,关于"
#: DB:link_type/link_phrase:184
msgid "discography pages"
-msgstr ""
+msgstr "唱片页"
#: DB:link_type/name:1089 DB:link_type/name:180 DB:link_type/name:76
#: DB:link_type/name:217 DB:link_type/name:90 DB:link_type/name:747
#: DB:link_type/name:705 DB:link_type/name:971
msgid "discogs"
-msgstr ""
+msgstr "discogs"
#: DB:link_type/link_phrase:361 DB:link_type/name:361
#: DB:link_type/long_link_phrase:361
@@ -4481,7 +4687,7 @@ msgstr ""
#: DB:link_attribute_type/name:1139
msgid "doctoral degree"
-msgstr ""
+msgstr "博士学位"
#: DB:link_type/long_link_phrase:105
msgid "does/did {instrument} support for"
@@ -4495,20 +4701,20 @@ msgstr ""
#: DB:link_type/name:958 DB:link_type/name:75 DB:link_type/name:177
#: DB:link_type/name:255 DB:link_type/name:274
msgid "download for free"
-msgstr ""
+msgstr "免费下载"
#: DB:link_type/link_phrase:958 DB:link_type/link_phrase:177
msgid "download music for free"
-msgstr ""
+msgstr "免费下载音乐"
#: DB:link_type/reverse_link_phrase:959 DB:link_type/reverse_link_phrase:254
#: DB:link_type/reverse_link_phrase:74 DB:link_type/reverse_link_phrase:176
msgid "download purchase page for"
-msgstr ""
+msgstr "付费下载页,关于"
#: DB:link_type/link_phrase:912
msgid "download purchase page for the score of"
-msgstr ""
+msgstr "乐谱付费下载页,关于"
#: DB:link_type/reverse_link_phrase:274
msgid "download score for free"
@@ -4524,7 +4730,7 @@ msgstr ""
#: DB:link_type/name:309
msgid "edit"
-msgstr ""
+msgstr "编辑"
#: DB:link_type/link_phrase:309
msgid "edit of"
@@ -4532,11 +4738,11 @@ msgstr ""
#: DB:link_type/name:819 DB:link_type/name:820
msgid "edited at"
-msgstr ""
+msgstr "编辑于"
#: DB:link_type/name:822 DB:link_type/name:821
msgid "edited in"
-msgstr ""
+msgstr "编辑于"
#: DB:link_type/long_link_phrase:929
msgid "edited the booklet of"
@@ -4544,11 +4750,11 @@ msgstr ""
#: DB:link_type/name:144 DB:link_type/name:38
msgid "editor"
-msgstr ""
+msgstr "编辑"
#: DB:link_type/reverse_link_phrase:309
msgid "edits"
-msgstr ""
+msgstr "编辑"
#: DB:link_type/link_phrase:925 DB:link_type/name:925
msgid "educational institution connection"
@@ -4564,7 +4770,7 @@ msgstr ""
#: DB:link_attribute_type/name:1127
msgid "electronic music"
-msgstr ""
+msgstr "电子音乐"
#: DB:link_attribute_type/name:617
msgid "emeritus"
@@ -4572,15 +4778,15 @@ msgstr ""
#: DB:link_type/name:1084 DB:link_type/name:28 DB:link_type/name:138
msgid "engineer"
-msgstr ""
+msgstr "工程师"
#: DB:link_type/link_phrase:120 DB:link_type/name:120 DB:link_type/name:701
msgid "engineer position"
-msgstr ""
+msgstr "工程师职位"
#: DB:link_type/link_phrase:701
msgid "engineer position at"
-msgstr ""
+msgstr "以工程师职位任职于"
#: DB:link_type/link_phrase:1084
msgid "engineered"
@@ -4597,7 +4803,7 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:1084 DB:link_type/reverse_link_phrase:120
#: DB:link_type/reverse_link_phrase:701
msgid "engineers"
-msgstr ""
+msgstr "工程师"
#: DB:link_attribute_type/name:1094
msgid "eponymous"
@@ -4616,13 +4822,13 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:172 DB:link_type/reverse_link_phrase:1189
#: DB:link_type/reverse_link_phrase:1190 DB:link_type/reverse_link_phrase:1191
msgid "fan page for"
-msgstr ""
+msgstr "粉丝页,关于"
#: DB:link_type/link_phrase:214 DB:link_type/link_phrase:172
#: DB:link_type/link_phrase:1189 DB:link_type/link_phrase:1190
#: DB:link_type/link_phrase:1191 DB:link_type/reverse_link_phrase:1188
msgid "fan pages"
-msgstr ""
+msgstr "粉丝页面"
#: DB:link_type/name:214 DB:link_type/name:172 DB:link_type/name:1189
#: DB:link_type/name:1190 DB:link_type/name:1188 DB:link_type/name:1191
@@ -4647,46 +4853,46 @@ msgstr ""
#: DB:link_attribute_type/name:1133
msgid "folk music"
-msgstr ""
+msgstr "民俗音乐"
#: DB:link_type/link_phrase:832 DB:link_type/link_phrase:116
#: DB:link_type/link_phrase:895 DB:link_type/link_phrase:1004
#: DB:link_type/long_link_phrase:832 DB:link_type/long_link_phrase:116
#: DB:link_type/long_link_phrase:895 DB:link_type/long_link_phrase:1004
msgid "founded"
-msgstr ""
+msgstr "结成"
#: DB:link_type/reverse_link_phrase:895
msgid "founded by"
-msgstr ""
+msgstr "创办人"
#: DB:link_type/name:832 DB:link_type/name:895 DB:link_type/name:1004
msgid "founder"
-msgstr ""
+msgstr "创办人"
#: DB:link_type/reverse_link_phrase:832 DB:link_type/reverse_link_phrase:116
#: DB:link_type/reverse_link_phrase:1004
msgid "founders"
-msgstr ""
+msgstr "创办人"
#: DB:link_type/reverse_link_phrase:958 DB:link_type/reverse_link_phrase:75
#: DB:link_type/reverse_link_phrase:177 DB:link_type/reverse_link_phrase:255
msgid "free download page for"
-msgstr "…的免费下载页面"
+msgstr "免费下载页,关于"
#: DB:link_type/link_phrase:274
msgid "free download page for the score of"
-msgstr "…乐谱的免费下载页面"
+msgstr "乐谱免费下载页,关于"
#: DB:link_type/reverse_link_phrase:997 DB:link_type/reverse_link_phrase:194
msgid "free music streaming page for"
-msgstr "…的免费音乐试听页面"
+msgstr "免费音乐试听页,关于"
-#: DB:link_type/reverse_link_phrase:85 DB:link_type/reverse_link_phrase:268
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
msgid "free music {video} streaming page for"
-msgstr "…的免费音乐{视频}试听页面"
+msgstr "免费音乐{video:视频}播放页,关于"
-#: DB:link_type/name:997 DB:link_type/name:85 DB:link_type/name:268
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
#: DB:link_type/name:194
msgid "free streaming"
msgstr "免费试听"
@@ -4705,7 +4911,7 @@ msgstr ""
#: DB:link_type/link_phrase:1088
msgid "genres"
-msgstr ""
+msgstr "流派"
#: DB:link_type/name:934 DB:link_type/name:713
msgid "geonames"
@@ -4721,25 +4927,25 @@ msgstr ""
#: DB:link_type/long_link_phrase:257 DB:link_type/long_link_phrase:73
#: DB:link_type/long_link_phrase:1091 DB:link_type/long_link_phrase:187
msgid "get the music"
-msgstr ""
+msgstr "获取音乐"
#: DB:link_type/link_phrase:911 DB:link_type/name:911
#: DB:link_type/reverse_link_phrase:911 DB:link_type/long_link_phrase:911
msgid "get the score"
-msgstr ""
+msgstr "获取乐谱"
#: DB:link_type/link_phrase:955 DB:link_type/name:955
#: DB:link_type/long_link_phrase:955
msgid "glass mastered"
-msgstr ""
+msgstr "玻璃母盘处理"
#: DB:link_type/name:954 DB:link_type/reverse_link_phrase:954
msgid "glass mastered at"
-msgstr ""
+msgstr "玻璃母盘处理,在"
#: DB:link_type/reverse_link_phrase:955
msgid "glass mastered by"
-msgstr ""
+msgstr "玻璃母盘处理,处理者为"
#: DB:link_type/link_phrase:954
msgid "glass mastering location for"
@@ -4747,23 +4953,23 @@ msgstr ""
#: DB:link_type/name:1172 DB:link_type/name:125 DB:link_type/name:27
msgid "graphic design"
-msgstr ""
+msgstr "平面设计"
#: DB:link_attribute_type/name:194
msgid "guest"
-msgstr ""
+msgstr "特邀演出嘉宾"
#: DB:link_type/name:800
msgid "guest performer"
-msgstr ""
+msgstr "特邀表演者"
#: DB:link_type/link_phrase:800 DB:link_type/long_link_phrase:800
msgid "guest performer at"
-msgstr ""
+msgstr "特邀表演者,在"
#: DB:link_type/reverse_link_phrase:800
msgid "guest performers"
-msgstr ""
+msgstr "特邀表演者"
#: DB:link_type/long_link_phrase:115
msgid "had a creative position at"
@@ -4787,7 +4993,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:120
msgid "had an engineer position at"
-msgstr ""
+msgstr "以工程师职位任职于"
#: DB:link_type/long_link_phrase:936
msgid "had tribute event"
@@ -4851,7 +5057,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:90 DB:link_type/long_link_phrase:747
#: DB:link_type/long_link_phrase:705
msgid "has a Discogs page at"
-msgstr ""
+msgstr "在以下位置有唱片页面"
#: DB:link_type/long_link_phrase:934 DB:link_type/long_link_phrase:713
msgid "has a Geonames page at"
@@ -4890,7 +5096,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:210 DB:link_type/long_link_phrase:788
#: DB:link_type/long_link_phrase:1013
msgid "has a VGMdb page at"
-msgstr ""
+msgstr "有VGMdb页在"
#: DB:link_type/long_link_phrase:1087 DB:link_type/long_link_phrase:353
#: DB:link_type/long_link_phrase:749 DB:link_type/long_link_phrase:594
@@ -4905,11 +5111,11 @@ msgstr ""
#: DB:link_type/long_link_phrase:216 DB:link_type/long_link_phrase:731
#: DB:link_type/long_link_phrase:89 DB:link_type/long_link_phrase:789
msgid "has a Wikipedia page at"
-msgstr ""
+msgstr "在以下位置有维基百科页面"
#: DB:link_type/long_link_phrase:182
msgid "has a biography page at"
-msgstr ""
+msgstr "在以下位置有传记页面"
#: DB:link_type/long_link_phrase:224 DB:link_type/long_link_phrase:199
#: DB:link_type/long_link_phrase:627
@@ -4922,18 +5128,18 @@ msgstr ""
#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
-#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:910
-#: DB:link_type/long_link_phrase:902 DB:link_type/long_link_phrase:907
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
msgid "has a crowdfunding page at"
msgstr ""
#: DB:link_type/long_link_phrase:288 DB:link_type/long_link_phrase:1169
msgid "has a discography entry at"
-msgstr ""
+msgstr "在以下位置有唱片条目"
#: DB:link_type/long_link_phrase:184
msgid "has a discography page at"
-msgstr ""
+msgstr "在以下位置有唱片页面"
#: DB:link_type/long_link_phrase:214 DB:link_type/long_link_phrase:172
#: DB:link_type/long_link_phrase:1189 DB:link_type/long_link_phrase:1190
@@ -5126,7 +5332,7 @@ msgstr ""
#: DB:link_type/link_phrase:724 DB:link_type/long_link_phrase:724
msgid "has personal publisher"
-msgstr ""
+msgstr "有个人词曲版权方"
#: DB:link_type/long_link_phrase:808
msgid "has poster at"
@@ -5167,7 +5373,7 @@ msgstr ""
#: DB:link_type/link_phrase:794 DB:link_type/name:794 DB:link_type/name:995
#: DB:link_type/reverse_link_phrase:995
msgid "held at"
-msgstr ""
+msgstr "举办于"
#: DB:link_type/link_phrase:793 DB:link_type/reverse_link_phrase:794
msgid "held events"
@@ -5176,7 +5382,7 @@ msgstr ""
#: DB:link_type/name:793 DB:link_type/name:1085
#: DB:link_type/reverse_link_phrase:793 DB:link_type/reverse_link_phrase:1085
msgid "held in"
-msgstr ""
+msgstr "举办于"
#: DB:link_type/link_phrase:984 DB:link_type/link_phrase:211
msgid "history page"
@@ -5184,7 +5390,7 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:984 DB:link_type/reverse_link_phrase:211
msgid "history page for"
-msgstr ""
+msgstr "历史页,关于"
#: DB:link_type/name:984 DB:link_type/name:211
msgid "history site"
@@ -5220,12 +5426,12 @@ msgstr ""
#: DB:link_type/name:927 DB:link_type/name:1173
msgid "illustration"
-msgstr ""
+msgstr "插图"
#: DB:link_type/description:732 DB:link_type/name:173 DB:link_type/name:396
#: DB:link_type/name:732
msgid "image"
-msgstr ""
+msgstr "图片"
#: DB:link_type/name:725
msgid "imprint"
@@ -5241,15 +5447,15 @@ msgstr ""
#: DB:link_attribute_type/name:1134
msgid "improvisation"
-msgstr ""
+msgstr "即兴"
#: DB:link_type/link_phrase:894 DB:link_type/name:894
msgid "included in"
-msgstr ""
+msgstr "包含在"
#: DB:link_type/reverse_link_phrase:894
msgid "includes"
-msgstr ""
+msgstr "包括"
#: DB:link_type/link_phrase:1097 DB:link_type/name:1097
msgid "influenced by"
@@ -5263,7 +5469,7 @@ msgstr ""
#: DB:link_type/name:734 DB:link_type/reverse_link_phrase:734
#: DB:link_type/long_link_phrase:734
msgid "information page"
-msgstr ""
+msgstr "信息页"
#: DB:link_type/link_phrase:975 DB:link_type/link_phrase:1000
#: DB:link_type/reverse_link_phrase:973 DB:link_type/reverse_link_phrase:972
@@ -5273,11 +5479,11 @@ msgstr ""
#: DB:link_attribute_type/name:14 DB:link_type/name:44 DB:link_type/name:148
msgid "instrument"
-msgstr ""
+msgstr "乐器"
#: DB:link_type/name:41 DB:link_type/name:158 DB:link_type/name:282
msgid "instrument arranger"
-msgstr ""
+msgstr "乐器编曲"
#: DB:link_type/name:752
msgid "instrument origin"
@@ -5289,7 +5495,7 @@ msgstr ""
#: DB:link_attribute_type/name:580
msgid "instrumental"
-msgstr ""
+msgstr "纯乐器"
#: DB:link_type/name:105
msgid "instrumental supporting musician"
@@ -5297,11 +5503,11 @@ msgstr ""
#: DB:link_type/link_phrase:752
msgid "instruments"
-msgstr ""
+msgstr "乐器"
#: DB:link_type/name:707
msgid "interview"
-msgstr ""
+msgstr "采访"
#: DB:link_type/reverse_link_phrase:707
msgid "interview with"
@@ -5309,7 +5515,7 @@ msgstr ""
#: DB:link_type/link_phrase:707
msgid "interviews"
-msgstr ""
+msgstr "采访"
#: DB:link_type/link_phrase:896 DB:link_type/name:896 DB:link_type/name:918
#: DB:link_type/reverse_link_phrase:918 DB:link_type/long_link_phrase:896
@@ -5326,7 +5532,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:227 DB:link_type/long_link_phrase:8
msgid "is a DJ-mix of"
-msgstr ""
+msgstr "是DJ混音,对于"
#: DB:link_type/long_link_phrase:228
msgid "is a compilation of"
@@ -5354,7 +5560,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:730
msgid "is a page in a database for"
-msgstr ""
+msgstr "是数据库页,关于"
#: DB:link_type/long_link_phrase:802 DB:link_type/long_link_phrase:742
#: DB:link_type/long_link_phrase:740 DB:link_type/long_link_phrase:741
@@ -5439,7 +5645,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:2
msgid "is the original for the transliterated/translated track listing"
-msgstr ""
+msgstr "是音译/翻译曲目列表的原始内容"
#: DB:link_type/long_link_phrase:349
msgid "is the rights society associated with"
@@ -5447,7 +5653,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:109
msgid "is the {step}parent of"
-msgstr ""
+msgstr "是{step:继}父母,对于"
#: DB:link_type/long_link_phrase:722
msgid "is/was a subgroup of"
@@ -5479,7 +5685,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:200
msgid "is/was the parent label of"
-msgstr ""
+msgstr "是母厂牌,对于"
#: DB:link_type/long_link_phrase:103
msgid "is/was {additional:an|a} {additional} {original} {eponymous} member of"
@@ -5493,19 +5699,19 @@ msgstr ""
#: DB:link_attribute_type/name:1132
msgid "jazz"
-msgstr ""
+msgstr "爵士"
#: DB:link_attribute_type/name:1261 DB:link_type/name:226
msgid "karaoke"
-msgstr ""
+msgstr "卡拉OK"
#: DB:link_type/reverse_link_phrase:226
msgid "karaoke version of"
-msgstr ""
+msgstr "卡拉OK版本"
#: DB:link_type/link_phrase:226
msgid "karaoke versions"
-msgstr ""
+msgstr "卡拉OK版本"
#: DB:link_type/name:203
msgid "label distribution"
@@ -5513,11 +5719,11 @@ msgstr ""
#: DB:link_type/name:116
msgid "label founder"
-msgstr ""
+msgstr "厂牌创办者"
#: DB:link_type/name:200
msgid "label ownership"
-msgstr ""
+msgstr "厂牌所有者"
#: DB:link_type/name:201
msgid "label reissue"
@@ -5525,29 +5731,29 @@ msgstr ""
#: DB:link_type/name:202
msgid "label rename"
-msgstr ""
+msgstr "厂牌更名"
#: DB:link_type/link_phrase:969 DB:link_type/name:969
#: DB:link_type/reverse_link_phrase:969
msgid "lacquer cut"
-msgstr ""
+msgstr "刻纹"
#: DB:link_type/name:968 DB:link_type/reverse_link_phrase:968
msgid "lacquer cut at"
-msgstr ""
+msgstr "刻纹,在"
#: DB:link_type/name:967 DB:link_type/reverse_link_phrase:967
msgid "lacquer cut in"
-msgstr ""
+msgstr "刻纹,在"
#: DB:link_type/link_phrase:967 DB:link_type/link_phrase:968
msgid "lacquer cut location for"
-msgstr ""
+msgstr "刻纹地点,为"
#: DB:link_type/name:840 DB:link_type/name:837 DB:link_type/name:839
#: DB:link_type/name:838
msgid "last.fm"
-msgstr ""
+msgstr "last.fm"
#: DB:link_type/link_phrase:238
msgid "later releases"
@@ -5559,7 +5765,7 @@ msgstr ""
#: DB:link_type/name:796 DB:link_type/name:797
msgid "launch event"
-msgstr ""
+msgstr "首发活动"
#: DB:link_type/link_phrase:796 DB:link_type/link_phrase:797
msgid "launch event for"
@@ -5567,11 +5773,11 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:796 DB:link_type/reverse_link_phrase:797
msgid "launch events"
-msgstr ""
+msgstr "首发活动"
#: DB:link_attribute_type/name:4
msgid "lead vocals"
-msgstr ""
+msgstr "主唱"
#: DB:link_type/link_phrase:142 DB:link_type/name:22 DB:link_type/name:142
#: DB:link_type/reverse_link_phrase:142
@@ -5606,7 +5812,7 @@ msgstr ""
#: DB:link_type/name:302 DB:link_type/name:939 DB:link_type/name:301
#: DB:link_type/reverse_link_phrase:939
msgid "license"
-msgstr ""
+msgstr "许可协议"
#: DB:link_type/link_phrase:939 DB:link_type/reverse_link_phrase:302
#: DB:link_type/reverse_link_phrase:301
@@ -5644,11 +5850,11 @@ msgstr ""
#: DB:link_attribute_type/name:578
msgid "live"
-msgstr ""
+msgstr "现场表演"
#: DB:link_type/name:17
msgid "live performance"
-msgstr ""
+msgstr "现场表演"
#: DB:link_type/link_phrase:17
msgid "live performance of"
@@ -5668,11 +5874,11 @@ msgstr "logo"
#: DB:link_type/reverse_link_phrase:213
msgid "logo of"
-msgstr "…的 logo"
+msgstr "商标,属于"
#: DB:link_type/link_phrase:213
msgid "logos"
-msgstr ""
+msgstr "标志"
#: DB:link_type/name:1047
msgid "lyrical quotation"
@@ -5695,7 +5901,7 @@ msgstr "歌词页面"
#: DB:link_type/link_phrase:271 DB:link_type/reverse_link_phrase:93
#: DB:link_type/reverse_link_phrase:197 DB:link_type/reverse_link_phrase:982
msgid "lyrics page for"
-msgstr "…的歌词页面"
+msgstr "歌词页,关于"
#: DB:link_type/reverse_link_phrase:1047
msgid "lyrics quoted in"
@@ -5712,11 +5918,11 @@ msgstr "歌词作于某地"
#: DB:link_type/reverse_link_phrase:960 DB:link_type/reverse_link_phrase:175
#: DB:link_type/reverse_link_phrase:79
msgid "mail-order purchase page for"
-msgstr "…的邮购页面"
+msgstr "邮购页,关于"
#: DB:link_type/link_phrase:913
msgid "mail-order purchase page for the score of"
-msgstr "…曲谱的邮购页面"
+msgstr "曲谱邮购页,关于"
#: DB:link_type/name:798
msgid "main performer"
@@ -5724,7 +5930,7 @@ msgstr "主要表演者"
#: DB:link_type/link_phrase:798
msgid "main performer at"
-msgstr "…的主要表演者"
+msgstr "主要表演者,对于"
#: DB:link_type/reverse_link_phrase:798
msgid "main performers"
@@ -5753,7 +5959,7 @@ msgstr "生产于某地"
#: DB:link_type/link_phrase:835 DB:link_type/link_phrase:953
msgid "manufacturing location for"
-msgstr "…的生产地"
+msgstr "产地,对于"
#: DB:link_type/link_phrase:848 DB:link_type/name:848
#: DB:link_type/long_link_phrase:848
@@ -5767,7 +5973,7 @@ msgstr ""
#: DB:link_type/link_phrase:111 DB:link_type/name:111
#: DB:link_type/reverse_link_phrase:111
msgid "married"
-msgstr ""
+msgstr "婚姻"
#: DB:link_type/link_phrase:10 DB:link_type/link_phrase:232
msgid "mash-up of"
@@ -5783,7 +5989,7 @@ msgstr ""
#: DB:link_type/name:697
msgid "mastered at"
-msgstr ""
+msgstr "母带处理,在"
#: DB:link_type/name:1183 DB:link_type/reverse_link_phrase:1183
msgid "mastered for"
@@ -5791,23 +5997,23 @@ msgstr ""
#: DB:link_type/name:756
msgid "mastered in"
-msgstr ""
+msgstr "母带处理,在"
#: DB:link_type/name:136 DB:link_type/name:42
msgid "mastering"
-msgstr ""
+msgstr "母带制作"
#: DB:link_type/name:704
msgid "mastering engineer position"
-msgstr ""
+msgstr "母带工程师职位"
#: DB:link_type/link_phrase:704
msgid "mastering engineer position at"
-msgstr ""
+msgstr "以母带工程师职位任职于"
#: DB:link_type/reverse_link_phrase:704
msgid "mastering engineers"
-msgstr ""
+msgstr "母带工程师"
#: DB:link_attribute_type/name:1136
msgid "master’s degree"
@@ -5823,43 +6029,43 @@ msgstr ""
#: DB:link_attribute_type/name:570
msgid "medium 1"
-msgstr ""
+msgstr "媒介 1"
#: DB:link_attribute_type/name:569
msgid "medium 2"
-msgstr ""
+msgstr "媒介 2"
#: DB:link_attribute_type/name:571
msgid "medium 3"
-msgstr ""
+msgstr "媒介 3"
#: DB:link_attribute_type/name:577
msgid "medium 4"
-msgstr ""
+msgstr "媒介 4"
#: DB:link_attribute_type/name:576
msgid "medium 5"
-msgstr ""
+msgstr "媒介 5"
#: DB:link_attribute_type/name:575
msgid "medium 6"
-msgstr ""
+msgstr "媒介 6"
#: DB:link_attribute_type/name:574
msgid "medium 7"
-msgstr ""
+msgstr "媒介 7"
#: DB:link_attribute_type/name:573
msgid "medium 8"
-msgstr ""
+msgstr "媒介 8"
#: DB:link_attribute_type/name:572
msgid "medium 9"
-msgstr ""
+msgstr "媒介 9"
#: DB:link_attribute_type/name:750 DB:link_type/name:239
msgid "medley"
-msgstr ""
+msgstr "串烧"
#: DB:link_type/link_phrase:239
msgid "medley of"
@@ -5867,7 +6073,7 @@ msgstr ""
#: DB:link_type/name:103
msgid "member of band"
-msgstr ""
+msgstr "乐队成员"
#: DB:link_attribute_type/description:9 DB:link_attribute_type/name:9
msgid "mezzo-soprano vocals"
@@ -5896,7 +6102,7 @@ msgstr ""
#: DB:link_type/name:26 DB:link_type/name:143
msgid "mix"
-msgstr ""
+msgstr "混音"
#: DB:link_type/name:43 DB:link_type/name:155
msgid "mix-DJ"
@@ -5917,35 +6123,35 @@ msgstr ""
#: DB:link_type/name:703
msgid "mixing engineer position"
-msgstr ""
+msgstr "混音工程师职位"
#: DB:link_type/link_phrase:703
msgid "mixing engineer position at"
-msgstr ""
+msgstr "以混音工程师职位任职于"
#: DB:link_type/reverse_link_phrase:703
msgid "mixing engineers"
-msgstr ""
+msgstr "混音工程师"
#: DB:link_attribute_type/name:1031
msgid "movement"
-msgstr ""
+msgstr "乐章"
#: DB:link_type/long_link_phrase:958 DB:link_type/long_link_phrase:177
msgid "music can be downloaded for free at"
-msgstr ""
+msgstr "音乐可免费下载于"
#: DB:link_type/long_link_phrase:959 DB:link_type/long_link_phrase:176
msgid "music can be purchased for download at"
-msgstr ""
+msgstr "音乐可付费下载于"
#: DB:link_type/long_link_phrase:960 DB:link_type/long_link_phrase:175
msgid "music can be purchased for mail-order at"
-msgstr ""
+msgstr "音乐可邮购于"
#: DB:link_type/long_link_phrase:997 DB:link_type/long_link_phrase:194
msgid "music can be streamed for free at"
-msgstr ""
+msgstr "音乐可免费串流于"
#: DB:link_attribute_type/name:1202
msgid "music education"
@@ -5957,7 +6163,7 @@ msgstr ""
#: DB:link_attribute_type/name:1201
msgid "music production"
-msgstr ""
+msgstr "音乐制作"
#: DB:link_type/reverse_link_phrase:1046
msgid "music quoted in"
@@ -5965,7 +6171,7 @@ msgstr ""
#: DB:link_attribute_type/name:1222
msgid "music theory"
-msgstr ""
+msgstr "乐理"
#: DB:link_attribute_type/name:1203
msgid "music therapy"
@@ -6027,35 +6233,35 @@ msgstr ""
#: DB:link_type/name:745 DB:link_type/name:782 DB:link_type/name:183
#: DB:link_type/name:363 DB:link_type/name:287
msgid "official homepage"
-msgstr ""
+msgstr "官方主页"
#: DB:link_type/reverse_link_phrase:745 DB:link_type/reverse_link_phrase:782
#: DB:link_type/reverse_link_phrase:183 DB:link_type/reverse_link_phrase:219
#: DB:link_type/reverse_link_phrase:363
msgid "official homepage for"
-msgstr ""
+msgstr "官网,关于"
#: DB:link_type/link_phrase:745 DB:link_type/link_phrase:782
#: DB:link_type/link_phrase:183 DB:link_type/link_phrase:219
#: DB:link_type/link_phrase:363
msgid "official homepages"
-msgstr ""
+msgstr "官方主页"
#: DB:link_type/name:219
msgid "official site"
-msgstr ""
+msgstr "官网"
#: DB:link_type/link_phrase:185
msgid "online communities"
-msgstr ""
+msgstr "线上社区"
#: DB:link_type/name:185
msgid "online community"
-msgstr ""
+msgstr "线上社区"
#: DB:link_type/reverse_link_phrase:185
msgid "online community page for"
-msgstr ""
+msgstr "在线社区页,关于"
#: DB:link_type/link_phrase:841 DB:link_type/link_phrase:221
#: DB:link_type/link_phrase:660 DB:link_type/name:841 DB:link_type/name:221
@@ -6064,15 +6270,15 @@ msgstr ""
#: DB:link_type/long_link_phrase:841 DB:link_type/long_link_phrase:221
#: DB:link_type/long_link_phrase:660
msgid "online data"
-msgstr ""
+msgstr "线上数据"
#: DB:link_attribute_type/name:1220
msgid "opera"
-msgstr ""
+msgstr "歌剧"
#: DB:link_attribute_type/name:1053
msgid "optional"
-msgstr ""
+msgstr "可选"
#: DB:link_type/name:807
msgid "orchestra"
@@ -6112,7 +6318,7 @@ msgstr ""
#: DB:link_attribute_type/name:525
msgid "original"
-msgstr ""
+msgstr "原始"
#: DB:link_type/reverse_link_phrase:836
msgid "originally scheduled as"
@@ -6158,7 +6364,7 @@ msgstr "其他人声"
#: DB:link_type/reverse_link_phrase:988 DB:link_type/reverse_link_phrase:989
#: DB:link_type/reverse_link_phrase:991
msgid "owner"
-msgstr ""
+msgstr "所有者"
#: DB:link_type/link_phrase:990 DB:link_type/name:990
#: DB:link_type/reverse_link_phrase:990 DB:link_type/long_link_phrase:990
@@ -6169,15 +6375,15 @@ msgstr ""
#: DB:link_type/link_phrase:991 DB:link_type/long_link_phrase:988
#: DB:link_type/long_link_phrase:989 DB:link_type/long_link_phrase:991
msgid "owns"
-msgstr ""
+msgstr "拥有"
#: DB:link_type/name:109
msgid "parent"
-msgstr "上级"
+msgstr "父母"
#: DB:link_type/reverse_link_phrase:200
msgid "parent label"
-msgstr "上级厂牌"
+msgstr "母厂牌"
#: DB:link_attribute_type/name:511
msgid "parody"
@@ -6192,15 +6398,15 @@ msgstr "致敬"
#: DB:link_type/reverse_link_phrase:717 DB:link_type/reverse_link_phrase:356
#: DB:link_type/reverse_link_phrase:281 DB:link_type/reverse_link_phrase:743
msgid "part of"
-msgstr "…的部分"
+msgstr "部分,属于"
#: DB:link_attribute_type/name:1033
msgid "part of collection"
-msgstr "…合集的部分"
+msgstr "合集的部分,属于"
#: DB:link_type/name:1
msgid "part of set"
-msgstr "…套装的部分"
+msgstr "套装的部分,属于"
#: DB:link_attribute_type/name:579
msgid "partial"
@@ -6228,14 +6434,14 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:898 DB:link_type/reverse_link_phrase:899
#: DB:link_type/reverse_link_phrase:897
msgid "patronage page for"
-msgstr ""
+msgstr "资助页,关于"
#: DB:link_type/link_phrase:34 DB:link_type/link_phrase:122
#: DB:link_type/name:34 DB:link_type/name:122 DB:link_type/name:278
#: DB:link_type/reverse_link_phrase:34 DB:link_type/reverse_link_phrase:122
#: DB:link_type/long_link_phrase:34 DB:link_type/long_link_phrase:122
msgid "performance"
-msgstr ""
+msgstr "演出"
#: DB:link_type/reverse_link_phrase:108
msgid "performance name of"
@@ -6267,7 +6473,7 @@ msgstr ""
#: DB:link_type/name:51 DB:link_type/name:156
msgid "performer"
-msgstr ""
+msgstr "表演者"
#: DB:link_type/name:150 DB:link_type/name:45
msgid "performing orchestra"
@@ -6279,7 +6485,7 @@ msgstr ""
#: DB:link_type/name:723
msgid "personal label"
-msgstr ""
+msgstr "个人厂牌"
#: DB:link_type/reverse_link_phrase:723
msgid "personal label for"
@@ -6287,11 +6493,11 @@ msgstr ""
#: DB:link_type/name:724
msgid "personal publisher"
-msgstr ""
+msgstr "个人词曲版权方"
#: DB:link_type/reverse_link_phrase:724
msgid "personal publisher for"
-msgstr ""
+msgstr "个人词曲版权方,关于"
#: DB:link_type/link_phrase:113 DB:link_type/name:113
#: DB:link_type/reverse_link_phrase:113 DB:link_type/long_link_phrase:113
@@ -6301,7 +6507,7 @@ msgstr ""
#: DB:link_type/name:867 DB:link_type/name:711 DB:link_type/name:710
#: DB:link_type/name:869
msgid "phonographic copyright"
-msgstr ""
+msgstr "图像版权"
#: DB:link_type/reverse_link_phrase:867 DB:link_type/reverse_link_phrase:711
#: DB:link_type/reverse_link_phrase:710 DB:link_type/reverse_link_phrase:869
@@ -6315,7 +6521,7 @@ msgstr ""
#: DB:link_type/link_phrase:173 DB:link_type/link_phrase:396
#: DB:link_type/link_phrase:732
msgid "picture"
-msgstr ""
+msgstr "图片"
#: DB:link_type/reverse_link_phrase:173 DB:link_type/reverse_link_phrase:396
#: DB:link_type/reverse_link_phrase:732
@@ -6332,11 +6538,11 @@ msgstr ""
#: DB:link_attribute_type/name:1200
msgid "popular / rock music"
-msgstr ""
+msgstr "流行 / 摇滚音乐"
#: DB:link_type/link_phrase:808 DB:link_type/name:808
msgid "poster"
-msgstr ""
+msgstr "海报"
#: DB:link_type/reverse_link_phrase:808
msgid "poster for"
@@ -6357,7 +6563,7 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:845 DB:link_type/reverse_link_phrase:716
msgid "premiered at"
-msgstr ""
+msgstr "首演于"
#: DB:link_type/reverse_link_phrase:956
msgid "premiered by"
@@ -6365,7 +6571,7 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:715
msgid "premiered in"
-msgstr ""
+msgstr "首演于"
#: DB:link_type/link_phrase:845
msgid "premieres"
@@ -6386,19 +6592,19 @@ msgstr ""
#: DB:link_type/link_phrase:942 DB:link_type/name:942
#: DB:link_type/long_link_phrase:942
msgid "pressed"
-msgstr ""
+msgstr "压盘"
#: DB:link_type/name:941 DB:link_type/reverse_link_phrase:941
msgid "pressed at"
-msgstr ""
+msgstr "压盘,在"
#: DB:link_type/reverse_link_phrase:942
msgid "pressed by"
-msgstr ""
+msgstr "压盘,由"
#: DB:link_type/link_phrase:941
msgid "pressing location for"
-msgstr ""
+msgstr "压盘地点,为"
#: DB:link_type/link_phrase:834 DB:link_type/name:834
msgid "previous attribution"
@@ -6406,7 +6612,7 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:1
msgid "previous disc"
-msgstr ""
+msgstr "前置唱片"
#: DB:link_type/reverse_link_phrase:834
msgid "previously attributed to"
@@ -6435,7 +6641,7 @@ msgstr ""
#: DB:link_type/name:849 DB:link_type/reverse_link_phrase:849
msgid "printed in"
-msgstr ""
+msgstr "印刷于"
#: DB:link_type/link_phrase:849
msgid "printing location for"
@@ -6443,7 +6649,7 @@ msgstr ""
#: DB:link_type/name:825 DB:link_type/name:824
msgid "produced at"
-msgstr ""
+msgstr "制作于"
#: DB:link_type/name:951 DB:link_type/name:950
msgid "produced for"
@@ -6451,7 +6657,7 @@ msgstr ""
#: DB:link_type/name:827 DB:link_type/name:826
msgid "produced in"
-msgstr ""
+msgstr "制作于"
#: DB:link_type/link_phrase:154 DB:link_type/link_phrase:49
msgid "produced material that was {additional:additionally} sampled in"
@@ -6459,15 +6665,15 @@ msgstr ""
#: DB:link_type/name:141 DB:link_type/name:30
msgid "producer"
-msgstr ""
+msgstr "制作人"
#: DB:link_type/link_phrase:117 DB:link_type/name:117
msgid "producer position"
-msgstr ""
+msgstr "制作人职位"
#: DB:link_type/reverse_link_phrase:117
msgid "producers"
-msgstr ""
+msgstr "制作人"
#: DB:link_type/link_phrase:256 DB:link_type/link_phrase:160
#: DB:link_type/link_phrase:59 DB:link_type/link_phrase:72
@@ -6478,7 +6684,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:160 DB:link_type/long_link_phrase:59
#: DB:link_type/long_link_phrase:72
msgid "production"
-msgstr ""
+msgstr "制作"
#: DB:link_type/name:37 DB:link_type/name:132
msgid "programming"
@@ -6487,7 +6693,7 @@ msgstr ""
#: DB:link_type/link_phrase:359 DB:link_type/name:359
#: DB:link_type/long_link_phrase:359
msgid "promoted"
-msgstr ""
+msgstr "宣传"
#: DB:link_type/reverse_link_phrase:359
msgid "promoted by"
@@ -6506,7 +6712,6 @@ msgid "provided legal representation for"
msgstr ""
#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
-#: DB:link_type/long_link_phrase:18
msgid "provided {additional} art direction on"
msgstr ""
@@ -6518,7 +6723,7 @@ msgstr ""
msgid "provided {additional} creative direction on"
msgstr ""
-#: DB:link_type/long_link_phrase:928 DB:link_type/long_link_phrase:1171
+#: DB:link_type/long_link_phrase:1171
msgid "provided {additional} design on"
msgstr ""
@@ -6539,6 +6744,14 @@ msgstr ""
msgid "provided {additional} legal representation for"
msgstr ""
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
#: DB:link_type/long_link_phrase:127
@@ -6547,7 +6760,7 @@ msgstr "已出版"
#: DB:link_type/reverse_link_phrase:206 DB:link_type/reverse_link_phrase:127
msgid "publisher"
-msgstr "出版社"
+msgstr "词曲版权方"
#: DB:link_type/link_phrase:933 DB:link_type/name:933
#: DB:link_type/long_link_phrase:933
@@ -6561,7 +6774,7 @@ msgstr "出版"
#: DB:link_type/reverse_link_phrase:933
msgid "publishing label"
-msgstr "出版厂牌"
+msgstr "出版唱片公司"
#: DB:link_type/link_phrase:254 DB:link_type/link_phrase:74
#: DB:link_type/name:912 DB:link_type/name:959 DB:link_type/name:254
@@ -6618,13 +6831,13 @@ msgstr ""
#: DB:link_type/name:695 DB:link_type/reverse_link_phrase:809
#: DB:link_type/reverse_link_phrase:810
msgid "recorded at"
-msgstr ""
+msgstr "录制于"
#: DB:link_type/link_phrase:1006 DB:link_type/link_phrase:1007
#: DB:link_type/link_phrase:1008 DB:link_type/name:1006 DB:link_type/name:1007
#: DB:link_type/name:1008
msgid "recorded during"
-msgstr ""
+msgstr "录制于"
#: DB:link_type/long_link_phrase:1011 DB:link_type/long_link_phrase:1012
msgid "recorded field recordings for"
@@ -6632,7 +6845,7 @@ msgstr ""
#: DB:link_type/name:698 DB:link_type/name:699
msgid "recorded in"
-msgstr ""
+msgstr "录制于"
#: DB:link_type/reverse_link_phrase:1008
msgid "recorded music series"
@@ -6648,7 +6861,7 @@ msgstr ""
#: DB:link_type/name:36 DB:link_type/name:128
msgid "recording"
-msgstr ""
+msgstr "录音"
#: DB:link_type/name:121
msgid "recording contract"
@@ -6656,15 +6869,15 @@ msgstr ""
#: DB:link_type/name:702
msgid "recording engineer position"
-msgstr ""
+msgstr "录音工程师职位"
#: DB:link_type/link_phrase:702
msgid "recording engineer position at"
-msgstr ""
+msgstr "以录音工程师职位任职于"
#: DB:link_type/reverse_link_phrase:702
msgid "recording engineers"
-msgstr ""
+msgstr "录音工程师"
#: DB:link_type/link_phrase:809 DB:link_type/link_phrase:810
msgid "recording location for"
@@ -6709,7 +6922,7 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:6
msgid "remastered versions"
-msgstr ""
+msgstr "母带再处理版本"
#: DB:link_type/reverse_link_phrase:236
msgid "remasters"
@@ -6717,7 +6930,7 @@ msgstr ""
#: DB:link_type/name:230 DB:link_type/name:9
msgid "remix"
-msgstr ""
+msgstr "重混音"
#: DB:link_type/link_phrase:230 DB:link_type/link_phrase:9
msgid "remix of"
@@ -6725,7 +6938,7 @@ msgstr ""
#: DB:link_type/name:829 DB:link_type/name:828
msgid "remixed at"
-msgstr ""
+msgstr "重混音于"
#: DB:link_type/name:1178 DB:link_type/reverse_link_phrase:1178
msgid "remixed for"
@@ -6733,15 +6946,15 @@ msgstr ""
#: DB:link_type/name:831 DB:link_type/name:830
msgid "remixed in"
-msgstr ""
+msgstr "重混音于"
#: DB:link_type/name:153 DB:link_type/name:47
msgid "remixer"
-msgstr ""
+msgstr "重混音"
#: DB:link_type/reverse_link_phrase:9
msgid "remixes"
-msgstr ""
+msgstr "重混音"
#: DB:link_type/link_phrase:50 DB:link_type/link_phrase:157
#: DB:link_type/link_phrase:13 DB:link_type/link_phrase:234
@@ -6752,7 +6965,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:157 DB:link_type/long_link_phrase:13
#: DB:link_type/long_link_phrase:234
msgid "remixes and compilations"
-msgstr ""
+msgstr "重混音与合辑"
#: DB:link_type/reverse_link_phrase:202 DB:link_type/reverse_link_phrase:1079
msgid "renamed from"
@@ -6760,11 +6973,11 @@ msgstr ""
#: DB:link_type/link_phrase:202 DB:link_type/link_phrase:1079
msgid "renamed into"
-msgstr ""
+msgstr "更名为"
#: DB:link_type/reverse_link_phrase:1009
msgid "replaced"
-msgstr ""
+msgstr "替代"
#: DB:link_type/link_phrase:1009 DB:link_type/name:1009
msgid "replaced by"
@@ -6785,31 +6998,31 @@ msgstr ""
#: DB:link_type/name:994
msgid "residency"
-msgstr ""
+msgstr "驻留演出"
#: DB:link_type/reverse_link_phrase:994
msgid "residency by"
-msgstr ""
+msgstr "驻留演出,表演者为"
#: DB:link_type/name:842 DB:link_type/name:94
msgid "review"
-msgstr ""
+msgstr "评论"
#: DB:link_type/reverse_link_phrase:842 DB:link_type/reverse_link_phrase:94
msgid "review page for"
-msgstr ""
+msgstr "评论页,关于"
#: DB:link_type/link_phrase:842 DB:link_type/link_phrase:94
msgid "reviews"
-msgstr ""
+msgstr "评论"
#: DB:link_type/link_phrase:844 DB:link_type/long_link_phrase:844
msgid "revised"
-msgstr ""
+msgstr "修订"
#: DB:link_type/name:882 DB:link_type/reverse_link_phrase:882
msgid "revised at"
-msgstr ""
+msgstr "修订于"
#: DB:link_type/name:844 DB:link_type/reverse_link_phrase:844
msgid "revised by"
@@ -6817,7 +7030,7 @@ msgstr ""
#: DB:link_type/name:881 DB:link_type/reverse_link_phrase:881
msgid "revised in"
-msgstr ""
+msgstr "修订于"
#: DB:link_type/link_phrase:881 DB:link_type/link_phrase:882
msgid "revising location for"
@@ -6829,7 +7042,7 @@ msgstr ""
#: DB:link_type/name:349 DB:link_type/reverse_link_phrase:349
msgid "rights society"
-msgstr ""
+msgstr "版权协会"
#: DB:link_type/link_phrase:349
msgid "rights society associated with"
@@ -6880,7 +7093,7 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:811 DB:link_type/reverse_link_phrase:816
#: DB:link_type/reverse_link_phrase:817 DB:link_type/reverse_link_phrase:938
msgid "setlist.fm page for"
-msgstr ""
+msgstr "setlist.fm页,关于"
#: DB:link_type/name:811 DB:link_type/name:816 DB:link_type/name:817
#: DB:link_type/name:938
@@ -6922,19 +7135,19 @@ msgstr ""
#: DB:link_type/name:784 DB:link_type/name:783 DB:link_type/name:218
#: DB:link_type/name:429 DB:link_type/name:192
msgid "social network"
-msgstr ""
+msgstr "社交网络"
#: DB:link_type/link_phrase:784 DB:link_type/link_phrase:783
#: DB:link_type/link_phrase:218 DB:link_type/link_phrase:429
#: DB:link_type/link_phrase:192
msgid "social networking"
-msgstr ""
+msgstr "社交网络"
#: DB:link_type/reverse_link_phrase:784 DB:link_type/reverse_link_phrase:783
#: DB:link_type/reverse_link_phrase:218 DB:link_type/reverse_link_phrase:429
#: DB:link_type/reverse_link_phrase:192
msgid "social networking page for"
-msgstr ""
+msgstr "社交网络页,关于"
#: DB:link_attribute_type/name:1351
msgid "solfeggio"
@@ -6942,7 +7155,7 @@ msgstr ""
#: DB:link_attribute_type/name:596
msgid "solo"
-msgstr ""
+msgstr "独奏"
#: DB:link_type/name:289
msgid "songfacts"
@@ -6963,7 +7176,7 @@ msgstr ""
#: DB:link_type/name:870 DB:link_type/name:291 DB:link_type/name:290
#: DB:link_type/name:940
msgid "soundcloud"
-msgstr ""
+msgstr "soundcloud"
#: DB:link_attribute_type/name:561
msgid "spoken vocals"
@@ -6971,7 +7184,7 @@ msgstr ""
#: DB:link_type/link_phrase:287
msgid "standalone website"
-msgstr ""
+msgstr "独立网站"
#: DB:link_type/reverse_link_phrase:287
msgid "standalone website for"
@@ -6983,30 +7196,30 @@ msgstr ""
#: DB:link_type/link_phrase:997 DB:link_type/link_phrase:194
msgid "stream for free"
-msgstr ""
+msgstr "免费串流"
-#: DB:link_type/link_phrase:85 DB:link_type/link_phrase:268
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
msgid "stream {video} for free"
-msgstr ""
+msgstr "免费串流 {video}"
-#: DB:link_type/name:978 DB:link_type/name:979 DB:link_type/name:980
-#: DB:link_type/name:1005
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
msgid "streaming"
-msgstr ""
+msgstr "串流"
-#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:979
-#: DB:link_type/link_phrase:980 DB:link_type/link_phrase:1005
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
msgid "streaming page"
-msgstr ""
+msgstr "串流页面"
-#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:979
-#: DB:link_type/reverse_link_phrase:980 DB:link_type/reverse_link_phrase:1005
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
msgid "streaming page for"
-msgstr ""
+msgstr "在线播放页,关于"
#: DB:link_type/link_phrase:847 DB:link_type/reverse_link_phrase:923
msgid "students"
-msgstr ""
+msgstr "学生"
#: DB:link_type/link_phrase:923 DB:link_type/name:923
#: DB:link_type/long_link_phrase:923
@@ -7047,7 +7260,7 @@ msgstr ""
#: DB:link_type/link_phrase:823 DB:link_type/name:823
msgid "subseries"
-msgstr ""
+msgstr "子系列"
#: DB:link_type/reverse_link_phrase:823
msgid "subseries of"
@@ -7059,11 +7272,11 @@ msgstr ""
#: DB:link_type/name:736
msgid "subtype"
-msgstr ""
+msgstr "子类型"
#: DB:link_type/link_phrase:736
msgid "subtypes"
-msgstr ""
+msgstr "子类型"
#: DB:link_type/name:799
msgid "support act"
@@ -7129,11 +7342,11 @@ msgstr ""
#: DB:link_type/name:847 DB:link_type/name:893
msgid "teacher"
-msgstr ""
+msgstr "教师"
#: DB:link_type/reverse_link_phrase:847 DB:link_type/reverse_link_phrase:893
msgid "teachers"
-msgstr ""
+msgstr "教师"
#: DB:link_attribute_type/description:11 DB:link_attribute_type/name:11
msgid "tenor vocals"
@@ -7158,11 +7371,11 @@ msgstr ""
#: DB:link_attribute_type/name:830
msgid "time"
-msgstr ""
+msgstr "时间"
#: DB:link_type/name:859
msgid "tour"
-msgstr ""
+msgstr "巡演"
#: DB:link_type/reverse_link_phrase:859
msgid "tour by"
@@ -7174,7 +7387,7 @@ msgstr ""
#: DB:link_type/link_phrase:859
msgid "tours"
-msgstr ""
+msgstr "巡演"
#: DB:link_type/name:1179
msgid "transfer"
@@ -7206,7 +7419,7 @@ msgstr "翻译于某地"
#: DB:link_type/name:1082
msgid "translated version"
-msgstr ""
+msgstr "翻译版本"
#: DB:link_type/reverse_link_phrase:1082
msgid "translated version of"
@@ -7214,7 +7427,7 @@ msgstr ""
#: DB:link_type/link_phrase:1082
msgid "translated versions"
-msgstr ""
+msgstr "翻译版本"
#: DB:link_attribute_type/name:1018 DB:link_type/name:871 DB:link_type/name:872
msgid "translator"
@@ -7226,7 +7439,7 @@ msgstr "转写"
#: DB:link_type/reverse_link_phrase:2
msgid "transliterated/translated track listing of"
-msgstr "…的转写/翻译版音轨目录"
+msgstr "转写/翻译版音轨目录,关于"
#: DB:link_type/link_phrase:2
msgid "transliterated/translated track listings"
@@ -7246,7 +7459,7 @@ msgstr ""
#: DB:link_type/reverse_link_phrase:728
msgid "tribute artists"
-msgstr ""
+msgstr "致敬艺术家"
#: DB:link_type/link_phrase:936
msgid "tribute events"
@@ -7273,18 +7486,18 @@ msgstr ""
#: DB:link_type/name:86 DB:link_type/name:191 DB:link_type/name:210
#: DB:link_type/name:788 DB:link_type/name:992 DB:link_type/name:1013
msgid "vgmdb"
-msgstr ""
+msgstr "vgmdb"
#: DB:link_attribute_type/name:582 DB:link_type/link_phrase:1184
#: DB:link_type/link_phrase:961 DB:link_type/name:1184 DB:link_type/name:961
#: DB:link_type/reverse_link_phrase:1184 DB:link_type/reverse_link_phrase:961
#: DB:link_type/long_link_phrase:1184 DB:link_type/long_link_phrase:961
msgid "video"
-msgstr ""
+msgstr "视频"
#: DB:link_type/name:858
msgid "video appearance"
-msgstr ""
+msgstr "视频出演"
#: DB:link_type/link_phrase:804 DB:link_type/link_phrase:304
#: DB:link_type/link_phrase:805 DB:link_type/link_phrase:303
@@ -7317,11 +7530,11 @@ msgstr ""
#: DB:link_attribute_type/name:3 DB:link_type/name:60 DB:link_type/name:149
msgid "vocal"
-msgstr ""
+msgstr "人声"
#: DB:link_type/name:296 DB:link_type/name:298 DB:link_type/name:294
msgid "vocal arranger"
-msgstr ""
+msgstr "人声编曲"
#: DB:link_type/name:107
msgid "vocal supporting musician"
@@ -7329,15 +7542,15 @@ msgstr ""
#: DB:link_type/name:292
msgid "voice actor"
-msgstr ""
+msgstr "配音演员"
#: DB:link_type/link_phrase:292
msgid "voice of"
-msgstr ""
+msgstr "配音"
#: DB:link_type/reverse_link_phrase:292
msgid "voiced by"
-msgstr ""
+msgstr "配音演员"
#: DB:link_type/long_link_phrase:1163
msgid "was a VJ at"
@@ -7449,13 +7662,13 @@ msgstr ""
#: DB:link_type/name:790 DB:link_type/name:352 DB:link_type/name:733
#: DB:link_type/name:358
msgid "wikidata"
-msgstr ""
+msgstr "维基数据"
#: DB:link_type/name:179 DB:link_type/name:595 DB:link_type/name:355
#: DB:link_type/name:744 DB:link_type/name:279 DB:link_type/name:216
#: DB:link_type/name:731 DB:link_type/name:89 DB:link_type/name:789
msgid "wikipedia"
-msgstr ""
+msgstr "维基百科"
#: DB:link_attribute_type/name:1346
msgid "wind/brass conducting"
@@ -7496,7 +7709,7 @@ msgstr ""
#: DB:link_type/name:54 DB:link_type/name:167
msgid "writer"
-msgstr ""
+msgstr "作者"
#: DB:link_type/name:874
msgid "written at"
@@ -7509,11 +7722,11 @@ msgstr ""
#: DB:link_type/name:791 DB:link_type/name:792 DB:link_type/name:193
#: DB:link_type/name:225 DB:link_type/name:528
msgid "youtube"
-msgstr ""
+msgstr "youtube"
#: DB:link_type/name:1080
msgid "youtube music"
-msgstr ""
+msgstr "youtube music"
#: DB:link_type/reverse_link_phrase:886
msgid "{additional:additionally} arranged at"
@@ -7683,7 +7896,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:136
msgid "{additional:additionally} {assistant} {associate} {co:co-}mastered"
-msgstr ""
+msgstr "{additional:额外}{assistant:助理}{associate:联合}{co:共同}母带处理"
#: DB:link_type/link_phrase:26 DB:link_type/link_phrase:143
#: DB:link_type/long_link_phrase:26 DB:link_type/long_link_phrase:143
@@ -7769,8 +7982,7 @@ msgid "{additional} arranging location for"
msgstr ""
#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
-#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:137
-#: DB:link_type/reverse_link_phrase:1174 DB:link_type/reverse_link_phrase:18
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
msgid "{additional} art direction"
msgstr ""
@@ -7792,8 +8004,7 @@ msgstr ""
msgid "{additional} creative direction"
msgstr ""
-#: DB:link_type/link_phrase:928 DB:link_type/link_phrase:1171
-#: DB:link_type/reverse_link_phrase:928 DB:link_type/reverse_link_phrase:1171
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
msgid "{additional} design"
msgstr ""
@@ -7931,6 +8142,10 @@ msgstr ""
msgid "{additional} writing location for"
msgstr ""
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
msgid "{additional} {assistant} chorus master"
@@ -7940,6 +8155,10 @@ msgstr ""
msgid "{additional} {assistant} conductor"
msgstr ""
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
msgid "{additional} {assistant} remixer"
msgstr ""
@@ -8102,11 +8321,11 @@ msgstr ""
#: DB:link_type/link_phrase:1
msgid "{bonus:bonus|next} disc"
-msgstr ""
+msgstr "{bonus:bonus|next} 唱片"
#: DB:link_type/long_link_phrase:1
msgid "{bonus:may be|is} part of a set, the next disc in the set is"
-msgstr ""
+msgstr "{bonus:may be|is} 组合的一部分,组合中的下一张唱片为"
#: DB:link_type/reverse_link_phrase:951 DB:link_type/reverse_link_phrase:950
msgid "{co:co-}{executive:executive }produced for"
@@ -8199,11 +8418,11 @@ msgstr ""
#: DB:link_type/long_link_phrase:743
msgid "{entity1} is a part of {entity0}"
-msgstr ""
+msgstr "{entity1} 是 {entity0} 的一部分"
#: DB:link_type/long_link_phrase:994
msgid "{entity1} is a residency by {entity0}"
-msgstr ""
+msgstr "{entity1}是{entity0}的驻留演出"
#: DB:link_type/long_link_phrase:859
msgid "{entity1} is a tour by {entity0}"
@@ -8211,7 +8430,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:1082
msgid "{entity1} is a translated version of {entity0}"
-msgstr ""
+msgstr "{entity1} 是 {entity0} 的翻译版本"
#: DB:link_type/long_link_phrase:65 DB:link_type/long_link_phrase:970
msgid "{entity1} is a tribute to {entity0}"
@@ -8273,15 +8492,15 @@ msgstr ""
#: DB:link_type/long_link_phrase:954
msgid "{entity1} was glass mastered at {entity0}"
-msgstr ""
+msgstr "{entity1}在{entity0}进行玻璃母盘处理"
#: DB:link_type/long_link_phrase:995 DB:link_type/long_link_phrase:1085
msgid "{entity1} was held at {entity0}"
-msgstr ""
+msgstr "{entity1} 于 {entity0} 举行"
#: DB:link_type/long_link_phrase:793
msgid "{entity1} was held in {entity0}"
-msgstr ""
+msgstr "{entity1} 于 {entity0} 举行"
#: DB:link_type/long_link_phrase:833
msgid "{entity1} was licensed to {entity0}"
@@ -8289,7 +8508,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:953
msgid "{entity1} was manufactured at {entity0}"
-msgstr ""
+msgstr "{entity1} 于 {entity0} 制造"
#: DB:link_type/long_link_phrase:952
msgid "{entity1} was manufactured for {entity0}"
@@ -8297,7 +8516,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:835
msgid "{entity1} was manufactured in {entity0}"
-msgstr ""
+msgstr "{entity1} 于 {entity0} 制造"
#: DB:link_type/long_link_phrase:1183
msgid "{entity1} was mastered for {entity0}"
@@ -8321,7 +8540,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:941
msgid "{entity1} was pressed at {entity0}"
-msgstr ""
+msgstr "{entity1}在{entity0}压盘"
#: DB:link_type/long_link_phrase:834
msgid "{entity1} was previously attributed to {entity0}"
@@ -8333,7 +8552,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:809 DB:link_type/long_link_phrase:810
msgid "{entity1} was recorded at {entity0}"
-msgstr ""
+msgstr "{entity1} 录制于 {entity0}"
#: DB:link_type/long_link_phrase:1178
msgid "{entity1} was remixed for {entity0}"
@@ -8461,7 +8680,7 @@ msgstr ""
#: DB:link_type/long_link_phrase:967 DB:link_type/long_link_phrase:968
msgid "{entity1}'s lacquer was cut in {entity0}"
-msgstr ""
+msgstr "{entity1}在{entity0}进行刻纹"
#: DB:link_type/reverse_link_phrase:760 DB:link_type/reverse_link_phrase:759
msgid "{guest} concertmaster"
@@ -8497,11 +8716,11 @@ msgstr ""
#: DB:link_type/link_phrase:109
msgid "{step}children"
-msgstr ""
+msgstr "{step:继}子女"
#: DB:link_type/reverse_link_phrase:109
msgid "{step}parents"
-msgstr ""
+msgstr "{step:继}父母"
#: DB:link_type/link_phrase:161 DB:link_type/link_phrase:208
#: DB:link_type/link_phrase:32 DB:link_type/link_phrase:362
@@ -8531,9 +8750,9 @@ msgstr ""
msgid "{translator:translated|wrote} {additional} liner notes for"
msgstr ""
-#: DB:link_type/long_link_phrase:85 DB:link_type/long_link_phrase:268
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
msgid "{video} can be streamed for free at"
-msgstr ""
+msgstr "{video:视频} 可免费串流于"
#: DB:link_type/reverse_link_phrase:107
msgid "{vocal:%|vocals} support by"
diff --git a/po/relationships.zh_Hant.po b/po/relationships.zh_Hant.po
new file mode 100644
index 00000000000..46bd9cbf9fb
--- /dev/null
+++ b/po/relationships.zh_Hant.po
@@ -0,0 +1,8549 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: zh_Hant\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: DB:link_attribute_type/description:1355
+msgid "A performance-centered, usually one to three year postgraduate program."
+msgstr ""
+
+#: DB:link_type/description:218
+msgid ""
+"A social network page is a label's own page on a social network which only "
+"people involved with the label can post content to. Examples include "
+"Facebook pages, and accounts on Twitter, Instagram and Flickr."
+msgstr ""
+
+#: DB:link_type/description:784
+msgid ""
+"A social network page is a page for a series on a social network which only "
+"people involved with the series can post content to. Examples include "
+"Facebook pages, and accounts on Twitter, Instagram and Flickr."
+msgstr ""
+
+#: DB:link_type/description:429
+msgid ""
+"A social network page is a place's own page on a social network which only "
+"people involved with the place can post content to. Examples include "
+"Facebook pages, and accounts on Twitter, Instagram and Flickr."
+msgstr ""
+
+#: DB:link_type/description:192
+msgid ""
+"A social network page is an artist's own profile page on a social "
+"network which only they (or their management) can post content to. Other "
+"people can create their own profiles and interact with the artist, for "
+"example by adding them as a friend or by commenting on the things that they "
+"post. Examples include Facebook pages and profiles, Last.fm users and "
+"accounts on Twitter, Instagram and Flickr."
+msgstr ""
+
+#: DB:link_type/description:783
+msgid ""
+"A social network page is an event's own page on a social network which only "
+"people involved with the event can post content to. Examples include "
+"Facebook pages and event entries, and accounts on Twitter, Instagram and "
+"Flickr."
+msgstr ""
+
+#: DB:link_type/link_phrase:77 DB:link_type/reverse_link_phrase:77
+msgid "ASIN"
+msgstr ""
+
+#: DB:link_type/link_phrase:755 DB:link_type/link_phrase:284
+#: DB:link_type/link_phrase:283 DB:link_type/link_phrase:285
+#: DB:link_type/link_phrase:1093 DB:link_type/reverse_link_phrase:286
+msgid "Allmusic"
+msgstr ""
+
+#: DB:link_type/link_phrase:286 DB:link_type/reverse_link_phrase:755
+#: DB:link_type/reverse_link_phrase:284 DB:link_type/reverse_link_phrase:283
+#: DB:link_type/reverse_link_phrase:285 DB:link_type/reverse_link_phrase:1093
+msgid "Allmusic page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1131 DB:link_type/link_phrase:1130
+msgid "Apple Music"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1131 DB:link_type/reverse_link_phrase:1130
+msgid "Apple Music page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:190
+msgid "BBC Music"
+msgstr ""
+
+#: DB:link_type/name:190
+msgid "BBC Music page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:190
+msgid "BBC Music page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1092 DB:link_type/link_phrase:718
+#: DB:link_type/link_phrase:719
+msgid "Bandcamp"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1092 DB:link_type/reverse_link_phrase:718
+#: DB:link_type/reverse_link_phrase:719
+msgid "Bandcamp page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:861 DB:link_type/link_phrase:862
+#: DB:link_type/link_phrase:860
+msgid "Bandsintown"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:861 DB:link_type/reverse_link_phrase:862
+#: DB:link_type/reverse_link_phrase:860
+msgid "Bandsintown page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:851 DB:link_type/link_phrase:852
+#: DB:link_type/link_phrase:853 DB:link_type/link_phrase:1167
+#: DB:link_type/link_phrase:850 DB:link_type/name:851 DB:link_type/name:852
+#: DB:link_type/name:853 DB:link_type/name:1167 DB:link_type/name:854
+#: DB:link_type/name:850 DB:link_type/reverse_link_phrase:854
+msgid "BookBrainz"
+msgstr ""
+
+#: DB:link_type/link_phrase:854 DB:link_type/reverse_link_phrase:851
+#: DB:link_type/reverse_link_phrase:852 DB:link_type/reverse_link_phrase:853
+#: DB:link_type/reverse_link_phrase:1167 DB:link_type/reverse_link_phrase:850
+msgid "BookBrainz page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:919 DB:link_type/name:919
+msgid "CD Baby"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:919
+msgid "CD Baby page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:981 DB:link_type/name:981
+msgid "CPDL"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:981
+msgid "CPDL page for"
+msgstr ""
+
+#: DB:link_type/name:227 DB:link_type/name:8
+msgid "DJ-mix"
+msgstr ""
+
+#: DB:link_type/link_phrase:227 DB:link_type/link_phrase:8
+msgid "DJ-mix of"
+msgstr ""
+
+#: DB:link_type/link_phrase:155 DB:link_type/long_link_phrase:155
+msgid "DJ-mixed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:8
+msgid "DJ-mixed versions"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:43
+msgid "DJ-mixed {medium:% of}"
+msgstr ""
+
+#: DB:link_type/link_phrase:43
+msgid "DJ-mixed {medium}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:155
+msgid "DJ-mixer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:43
+msgid "DJ-mixer {medium}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:227
+msgid "DJ-mixes"
+msgstr ""
+
+#: DB:link_type/description:704
+msgid ""
+"Describes the fact a person was contracted by a place as a mastering "
+"engineer."
+msgstr ""
+
+#: DB:link_type/description:703
+msgid ""
+"Describes the fact a person was contracted by a place as a mixing engineer."
+msgstr ""
+
+#: DB:link_type/description:702
+msgid ""
+"Describes the fact a person was contracted by a place as a recording "
+"engineer."
+msgstr ""
+
+#: DB:link_type/description:701
+msgid "Describes the fact a person was contracted by a place as an engineer."
+msgstr ""
+
+#: DB:link_type/description:357
+msgid "Designates that a work is or was the anthem for an area"
+msgstr ""
+
+#: DB:link_type/description:356
+msgid "Designates that one area is contained by another."
+msgstr ""
+
+#: DB:link_type/link_phrase:1089 DB:link_type/link_phrase:180
+#: DB:link_type/link_phrase:76 DB:link_type/link_phrase:217
+#: DB:link_type/link_phrase:90 DB:link_type/link_phrase:747
+#: DB:link_type/link_phrase:705 DB:link_type/reverse_link_phrase:971
+msgid "Discogs"
+msgstr ""
+
+#: DB:link_type/link_phrase:971 DB:link_type/reverse_link_phrase:1089
+#: DB:link_type/reverse_link_phrase:180 DB:link_type/reverse_link_phrase:76
+#: DB:link_type/reverse_link_phrase:217 DB:link_type/reverse_link_phrase:90
+#: DB:link_type/reverse_link_phrase:747 DB:link_type/reverse_link_phrase:705
+msgid "Discogs page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:1020
+msgid ""
+"For indicating the step-spouse of the artist's parent, or the sibling "
+"relationship with the children of such a spouse"
+msgstr ""
+
+#: DB:link_attribute_type/description:580
+msgid ""
+"For works that have lyrics, this indicates that those lyrics are not "
+"relevant to this recording. Examples include instrumental arrangements, or "
+"\"beats\" from hip-hop songs which may be reused with different lyrics."
+msgstr ""
+
+#: DB:link_type/link_phrase:934 DB:link_type/link_phrase:713
+msgid "Geonames"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:934 DB:link_type/reverse_link_phrase:713
+msgid "Geonames page for"
+msgstr ""
+
+#: DB:link_type/name:83 DB:link_type/name:258
+msgid "IMDB samples"
+msgstr ""
+
+#: DB:link_type/link_phrase:313 DB:link_type/link_phrase:178
+#: DB:link_type/link_phrase:97 DB:link_type/link_phrase:706
+#: DB:link_type/name:843 DB:link_type/name:313 DB:link_type/name:178
+#: DB:link_type/name:97 DB:link_type/name:706
+#: DB:link_type/reverse_link_phrase:843
+msgid "IMDb"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:83 DB:link_type/reverse_link_phrase:258
+msgid "IMDb entry sampled in"
+msgstr ""
+
+#: DB:link_type/link_phrase:843 DB:link_type/reverse_link_phrase:313
+#: DB:link_type/reverse_link_phrase:178 DB:link_type/reverse_link_phrase:97
+#: DB:link_type/reverse_link_phrase:706
+msgid "IMDb page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:754 DB:link_type/name:754
+msgid "IMSLP"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:754
+msgid "IMSLP page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:516
+msgid "Indicates a bonus disc"
+msgstr ""
+
+#: DB:link_type/description:162
+msgid ""
+"Indicates a miscellaneous support role. This is usually stated in the liner "
+"notes of an album."
+msgstr ""
+
+#: DB:link_type/description:105
+msgid ""
+"Indicates a musician doing long-time instrumental support for another one on "
+"albums and/or at concerts. This is a person-to-artist relationship that "
+"normally applies to well-known solo artists, although it can sometimes apply "
+"to groups."
+msgstr ""
+
+#: DB:link_type/description:107
+msgid ""
+"Indicates a musician doing long-time vocal support for another one on albums "
+"and/or at concerts. This is a person-to-artist relationship that normally "
+"applies to well-known solo artists, although it can sometimes apply to "
+"groups."
+msgstr ""
+
+#: DB:link_type/description:94
+msgid ""
+"Indicates a page that reviews the release (group) in question, whether it be "
+"in text, audio or video form."
+msgstr ""
+
+#: DB:link_type/description:1083
+msgid "Indicates a page with an official schedule for an event series."
+msgstr ""
+
+#: DB:link_type/description:109
+msgid "Indicates a parent-child relationship."
+msgstr ""
+
+#: DB:link_type/description:396
+msgid "Indicates a pictorial image (JPEG, GIF, PNG) of a place"
+msgstr ""
+
+#: DB:link_type/description:173
+msgid "Indicates a pictorial image (JPEG, GIF, PNG) of an artist."
+msgstr ""
+
+#: DB:link_type/description:943
+msgid ""
+"Indicates a place that moved from one location to another, while still being "
+"generally considered the same."
+msgstr ""
+
+#: DB:link_attribute_type/description:1019
+msgid "Indicates a sibling with whom the artist has only one parent in common"
+msgstr ""
+
+#: DB:link_type/description:842
+msgid "Indicates a webpage that reviews the event in question."
+msgstr ""
+
+#: DB:link_type/description:958
+msgid "Indicates a webpage where you can download a label's releases for free."
+msgstr ""
+
+#: DB:link_type/description:177
+msgid "Indicates a webpage where you can download an artist's work for free."
+msgstr ""
+
+#: DB:link_type/description:834
+msgid ""
+"Indicates an artist (generally a composer) this work was previously "
+"attributed to, but who is currently confirmed (or very strongly suspected) "
+"not to be the real author."
+msgstr ""
+
+#: DB:link_type/description:104
+msgid ""
+"Indicates an artist doing long-time instrumental or vocal support for "
+"another one on albums and/or at concerts. This is a person-to-artist "
+"relationship that normally applies to well-known solo artists, although it "
+"can sometimes apply to groups."
+msgstr ""
+
+#: DB:link_type/description:156
+msgid "Indicates an artist that performed on this recording."
+msgstr ""
+
+#: DB:link_type/description:51
+msgid "Indicates an artist that performed on this release."
+msgstr ""
+
+#: DB:link_type/description:148
+msgid ""
+"Indicates an artist that performed one or more instruments on this recording."
+msgstr ""
+
+#: DB:link_type/description:44
+msgid ""
+"Indicates an artist that performed one or more instruments on this release."
+msgstr ""
+
+#: DB:link_type/description:149
+msgid "Indicates an artist that performed vocals on this recording."
+msgstr ""
+
+#: DB:link_type/description:60
+msgid "Indicates an artist that performed vocals on this release."
+msgstr ""
+
+#: DB:link_type/description:150
+msgid "Indicates an orchestra that performed on this recording."
+msgstr ""
+
+#: DB:link_type/description:45
+msgid "Indicates an orchestra that performed on this release."
+msgstr ""
+
+#: DB:link_attribute_type/description:1080
+msgid ""
+"Indicates how many of a specific instrument an ensemble usually includes."
+msgstr ""
+
+#: DB:link_type/description:844
+msgid ""
+"Indicates that an artist revised a work. In most cases, this will be the "
+"original composer revising the work at a later date."
+msgstr ""
+
+#: DB:link_type/description:887
+msgid ""
+"Indicates that an event was intended as a performance of a specific release "
+"group (usually an album)."
+msgstr ""
+
+#: DB:link_attribute_type/description:567
+msgid "Indicates that one entity is a cover of another entity"
+msgstr ""
+
+#: DB:link_type/description:996
+msgid "Indicates that the artist is part of a series."
+msgstr ""
+
+#: DB:link_type/description:802
+msgid "Indicates that the event is part of a series."
+msgstr ""
+
+#: DB:link_type/description:231
+msgid "Indicates that the recording contains samples from another."
+msgstr ""
+
+#: DB:link_type/description:154
+msgid ""
+"Indicates that the recording contains samples from material by the indicated "
+"artist. Use this only if you really cannot figure out the particular "
+"recording that has been sampled."
+msgstr ""
+
+#: DB:link_type/description:69
+msgid "Indicates that the recording contains samples from this release."
+msgstr ""
+
+#: DB:link_type/description:740
+msgid "Indicates that the recording is part of a series."
+msgstr ""
+
+#: DB:link_attribute_type/description:1053
+msgid "Indicates that the relationship is optional - doesn't always apply."
+msgstr ""
+
+#: DB:link_type/description:49
+msgid ""
+"Indicates that the release contains samples from material by the indicated "
+"artist. Use this only if you really cannot figure out the particular "
+"recording that has been sampled."
+msgstr ""
+
+#: DB:link_type/description:742
+msgid "Indicates that the release group is part of a series."
+msgstr ""
+
+#: DB:link_type/description:741
+msgid "Indicates that the release is part of a series."
+msgstr ""
+
+#: DB:link_type/description:743
+msgid "Indicates that the work is part of a series."
+msgstr ""
+
+#: DB:link_type/description:112
+msgid ""
+"Indicates that two persons were romantically involved with each other "
+"without being married."
+msgstr ""
+
+#: DB:link_type/description:1085
+msgid "Indicates the area an event series was held at."
+msgstr ""
+
+#: DB:link_type/description:715
+msgid "Indicates the area where the work had its first performance"
+msgstr ""
+
+#: DB:link_type/description:956
+msgid ""
+"Indicates the artist(s) who gave the first performance of the work; this is "
+"usually mostly relevant for classical music"
+msgstr ""
+
+#: DB:link_type/description:55
+msgid ""
+"Indicates the composer for this release, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
+msgstr ""
+
+#: DB:link_type/description:168
+msgid ""
+"Indicates the composer for this work, that is, the artist who wrote the "
+"music (not necessarily the lyrics)."
+msgstr ""
+
+#: DB:link_type/description:845
+msgid "Indicates the event where the work had its first performance"
+msgstr ""
+
+#: DB:link_type/description:986
+msgid ""
+"Indicates the instrument technician for this recording. Use also for \"piano "
+"tuner\" credits and other similar ones."
+msgstr ""
+
+#: DB:link_type/description:987
+msgid ""
+"Indicates the instrument technician for this release. Use also for \"piano "
+"tuner\" credits and other similar ones."
+msgstr ""
+
+#: DB:link_type/description:57
+msgid "Indicates the librettist for this release."
+msgstr ""
+
+#: DB:link_type/description:169
+msgid "Indicates the librettist for this work."
+msgstr ""
+
+#: DB:link_type/description:995
+msgid "Indicates the location a run or residency was held at."
+msgstr ""
+
+#: DB:link_type/description:56
+msgid "Indicates the lyricist for this release."
+msgstr ""
+
+#: DB:link_type/description:165
+msgid "Indicates the lyricist for this work."
+msgstr ""
+
+#: DB:link_type/description:42
+msgid "Indicates the mastering engineer for this work."
+msgstr ""
+
+#: DB:link_type/description:219
+msgid "Indicates the official homepage for a label."
+msgstr ""
+
+#: DB:link_type/description:363
+msgid "Indicates the official homepage for a place."
+msgstr ""
+
+#: DB:link_type/description:745
+msgid "Indicates the official homepage for a series."
+msgstr ""
+
+#: DB:link_type/description:183
+msgid "Indicates the official homepage for an artist."
+msgstr ""
+
+#: DB:link_type/description:782
+msgid "Indicates the official homepage for an event."
+msgstr ""
+
+#: DB:link_type/description:871
+msgid ""
+"Indicates the person who translated the lyrics/libretto for this release."
+msgstr ""
+
+#: DB:link_type/description:872
+msgid "Indicates the person who translated the lyrics/libretto for this work."
+msgstr ""
+
+#: DB:link_type/description:716
+msgid "Indicates the place where the work had its first performance"
+msgstr ""
+
+#: DB:link_type/description:32
+msgid ""
+"Indicates the publisher of this release. This is not the "
+"same concept as the record label"
+"a>."
+msgstr ""
+
+#: DB:link_type/description:161
+msgid ""
+"Indicates the publisher of this work. This is not the same "
+"concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:208
+msgid ""
+"Indicates the publisher of this work. This is not the same "
+"concept as the record label."
+msgstr ""
+
+#: DB:link_type/link_phrase:840 DB:link_type/link_phrase:837
+#: DB:link_type/link_phrase:839 DB:link_type/link_phrase:838
+msgid "Last.fm"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:840 DB:link_type/reverse_link_phrase:837
+#: DB:link_type/reverse_link_phrase:839 DB:link_type/reverse_link_phrase:838
+msgid "Last.fm page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:4
+msgid "Lead or solo vocal"
+msgstr ""
+
+#: DB:link_type/description:864
+msgid ""
+"Links a recording to the area it was arranged in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:821
+msgid ""
+"Links a recording to the area it was edited in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:814
+msgid ""
+"Links a recording to the area it was engineered in. Use only when the place "
+"is unknown!"
+msgstr ""
+
+#: DB:link_type/description:758
+msgid ""
+"Links a recording to the area it was mixed in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:827
+msgid ""
+"Links a recording to the area it was produced in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:698
+msgid ""
+"Links a recording to the area it was recorded in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:830
+msgid ""
+"Links a recording to the area it was remixed in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:809
+msgid "Links a recording to the event it was recorded at."
+msgstr ""
+
+#: DB:link_type/description:1006
+msgid ""
+"Links a recording to the event series (tour, residency, etc.) it was "
+"recorded during."
+msgstr ""
+
+#: DB:link_type/description:866
+msgid "Links a recording to the place it was arranged at."
+msgstr ""
+
+#: DB:link_type/description:819
+msgid "Links a recording to the place it was edited at."
+msgstr ""
+
+#: DB:link_type/description:813
+msgid "Links a recording to the place it was engineered at."
+msgstr ""
+
+#: DB:link_type/description:694
+msgid "Links a recording to the place it was mixed at."
+msgstr ""
+
+#: DB:link_type/description:825
+msgid "Links a recording to the place it was produced at."
+msgstr ""
+
+#: DB:link_type/description:693
+msgid "Links a recording to the place it was recorded at."
+msgstr ""
+
+#: DB:link_type/description:829
+msgid "Links a recording to the place it was remixed at."
+msgstr ""
+
+#: DB:link_type/description:1008
+msgid ""
+"Links a recording, release or release group series to the event series "
+"(tour, residency, etc.) it was recorded during."
+msgstr ""
+
+#: DB:link_type/description:1007
+msgid ""
+"Links a release group to the event series (tour, residency, etc.) it was "
+"recorded during."
+msgstr ""
+
+#: DB:link_type/description:797
+msgid "Links a release group with a launch event for it."
+msgstr ""
+
+#: DB:link_type/description:863
+msgid ""
+"Links a release to the area it was arranged in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:822
+msgid ""
+"Links a release to the area it was edited in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:815
+msgid ""
+"Links a release to the area it was engineered in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:835
+msgid "Links a release to the area it was manufactured (\"made\") in."
+msgstr ""
+
+#: DB:link_type/description:756
+msgid ""
+"Links a release to the area it was mastered in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:757
+msgid ""
+"Links a release to the area it was mixed in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:849
+msgid "Links a release to the area it was printed in."
+msgstr ""
+
+#: DB:link_type/description:826
+msgid ""
+"Links a release to the area it was produced in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:699
+msgid ""
+"Links a release to the area it was recorded in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:831
+msgid ""
+"Links a release to the area it was remixed in. Use only when the place is "
+"unknown!"
+msgstr ""
+
+#: DB:link_type/description:1181
+msgid ""
+"Links a release to the area it was transferred in (for example from an old "
+"tape to digital). Use only when the place is unknown!"
+msgstr ""
+
+#: DB:link_type/description:967
+msgid ""
+"Links a release to the area where the lacquer cutting took place. Use only "
+"when the place is unknown!"
+msgstr ""
+
+#: DB:link_type/description:969
+msgid "Links a release to the engineer who did the lacquer cutting for it."
+msgstr ""
+
+#: DB:link_type/description:810
+msgid "Links a release to the event it was recorded at."
+msgstr ""
+
+#: DB:link_type/description:865
+msgid "Links a release to the place it was arranged at."
+msgstr ""
+
+#: DB:link_type/description:820
+msgid "Links a release to the place it was edited at."
+msgstr ""
+
+#: DB:link_type/description:812
+msgid "Links a release to the place it was engineered at."
+msgstr ""
+
+#: DB:link_type/description:953
+msgid ""
+"Links a release to the place it was manufactured at. Use a more specific "
+"credit if available"
+msgstr ""
+
+#: DB:link_type/description:697
+msgid "Links a release to the place it was mastered at."
+msgstr ""
+
+#: DB:link_type/description:696
+msgid "Links a release to the place it was mixed at."
+msgstr ""
+
+#: DB:link_type/description:941
+msgid "Links a release to the place it was pressed at."
+msgstr ""
+
+#: DB:link_type/description:824
+msgid "Links a release to the place it was produced at."
+msgstr ""
+
+#: DB:link_type/description:695
+msgid "Links a release to the place it was recorded at."
+msgstr ""
+
+#: DB:link_type/description:828
+msgid "Links a release to the place it was remixed at."
+msgstr ""
+
+#: DB:link_type/description:1182
+msgid ""
+"Links a release to the place it was transferred at (for example from an old "
+"tape to digital)."
+msgstr ""
+
+#: DB:link_type/description:954
+msgid ""
+"Links a release to the place where the glass master for pressing was made. "
+"Not the same as mastered!"
+msgstr ""
+
+#: DB:link_type/description:968
+msgid "Links a release to the place where the lacquer cutting took place."
+msgstr ""
+
+#: DB:link_type/description:796
+msgid "Links a release with a launch event for it."
+msgstr ""
+
+#: DB:link_type/description:795
+msgid ""
+"Links a release with an event where it was available. This is intended for "
+"event-exclusive releases and/or releases available at events before the "
+"official launch date, not for every release in the merchandise stall."
+msgstr ""
+
+#: DB:link_type/description:823
+msgid "Links a series to another series that exists within it."
+msgstr ""
+
+#: DB:link_type/description:1094
+msgid ""
+"Links an award series to the award ceremony series of events where it's "
+"announced and/or awarded."
+msgstr ""
+
+#: DB:link_type/description:798
+msgid "Links an event to (one of) its main performer(s)."
+msgstr ""
+
+#: DB:link_type/description:799
+msgid ""
+"Links an event to (one of) its support act(s) (also known as opening acts or "
+"warm-up acts)."
+msgstr ""
+
+#: DB:link_type/description:932
+msgid ""
+"Links an event to a DJ that appeared in a supporting role (such as DJing "
+"between artists, or closing the night after a concert)."
+msgstr ""
+
+#: DB:link_type/description:800
+msgid ""
+"Links an event to a guest performer. Guest performers usually make short "
+"appearances during other artist's set."
+msgstr ""
+
+#: DB:link_type/description:1168
+msgid ""
+"Links an event to a label or other organization credited for presenting it "
+"(often as \"Label presents Event\")."
+msgstr ""
+
+#: DB:link_type/description:806
+msgid "Links an event to an artist that was a conductor in it."
+msgstr ""
+
+#: DB:link_type/description:1163
+msgid ""
+"Links an event to an artist who was a VJ during it, either as the background "
+"for someone else’s musical performance or as its own performance."
+msgstr ""
+
+#: DB:link_type/description:1084
+msgid "Links an event to an engineer or sound technician who worked on it."
+msgstr ""
+
+#: DB:link_type/description:807
+msgid "Links an event to an orchestra that performed in it."
+msgstr ""
+
+#: DB:link_type/description:801
+msgid ""
+"Links an event to its host/MC. Event hosts usually do introductions to the "
+"show or each song."
+msgstr ""
+
+#: DB:link_type/description:793
+msgid ""
+"Links an event to the area where it was held. Use only if the exact place is "
+"unknown."
+msgstr ""
+
+#: DB:link_type/description:794
+msgid "Links an event to the place where it was held."
+msgstr ""
+
+#: DB:link_attribute_type/description:830
+msgid "Local time a band's performance is scheduled to start, formatted HH:MM."
+msgstr ""
+
+#: DB:link_attribute_type/description:1060
+msgid "Meane or mean is a young male singer with a voice lower than a treble"
+msgstr ""
+
+#: DB:link_type/link_phrase:215 DB:link_type/link_phrase:462
+#: DB:link_type/link_phrase:189
+msgid "Myspace"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:215 DB:link_type/reverse_link_phrase:462
+#: DB:link_type/reverse_link_phrase:189
+msgid "Myspace page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:461
+msgid "Other vocalizations"
+msgstr ""
+
+#: DB:link_type/description:852
+msgid "Points to the BookBrainz page for this artist."
+msgstr ""
+
+#: DB:link_type/description:851
+msgid "Points to the BookBrainz page for this label."
+msgstr ""
+
+#: DB:link_type/description:853
+msgid "Points to the BookBrainz page for this release group."
+msgstr ""
+
+#: DB:link_type/description:850
+msgid "Points to the BookBrainz page for this release."
+msgstr ""
+
+#: DB:link_type/description:1167
+msgid "Points to the BookBrainz page for this series."
+msgstr ""
+
+#: DB:link_type/description:854
+msgid "Points to the BookBrainz page for this work."
+msgstr ""
+
+#: DB:link_type/description:713
+msgid "Points to the Geonames page for this area."
+msgstr ""
+
+#: DB:link_type/description:934
+msgid "Points to the Geonames page for this place."
+msgstr ""
+
+#: DB:link_type/description:706
+msgid "Points to the Internet Movie Database page for this place."
+msgstr ""
+
+#: DB:link_type/description:358
+msgid ""
+"Points to the Wikidata page for this area, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:352
+msgid ""
+"Points to the Wikidata page for this artist, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:790
+msgid ""
+"Points to the Wikidata page for this event, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:1087
+msgid ""
+"Points to the Wikidata page for this genre, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:733
+msgid ""
+"Points to the Wikidata page for this instrument, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:354
+msgid ""
+"Points to the Wikidata page for this label, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:594
+msgid ""
+"Points to the Wikidata page for this place, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:353
+msgid ""
+"Points to the Wikidata page for this release group, and will be used to "
+"fetch Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:749
+msgid ""
+"Points to the Wikidata page for this series, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:351
+msgid ""
+"Points to the Wikidata page for this work, and will be used to fetch "
+"Wikipedia summaries"
+msgstr ""
+
+#: DB:link_type/description:89
+msgid "Points to the Wikipedia page for this album."
+msgstr ""
+
+#: DB:link_type/description:355
+msgid "Points to the Wikipedia page for this area."
+msgstr ""
+
+#: DB:link_type/description:179
+msgid "Points to the Wikipedia page for this artist."
+msgstr ""
+
+#: DB:link_type/description:789
+msgid "Points to the Wikipedia page for this event."
+msgstr ""
+
+#: DB:link_type/description:731
+msgid "Points to the Wikipedia page for this instrument."
+msgstr ""
+
+#: DB:link_type/description:595
+msgid "Points to the Wikipedia page for this place"
+msgstr ""
+
+#: DB:link_type/description:744
+msgid "Points to the Wikipedia page for this series."
+msgstr ""
+
+#: DB:link_type/description:279
+msgid "Points to the Wikipedia page for this work."
+msgstr ""
+
+#: DB:link_type/description:127
+msgid ""
+"Publishers should be added on works instead. Keep in mind this is "
+"not the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/link_phrase:174
+msgid "PureVolume"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:174
+msgid "PureVolume page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:308 DB:link_type/link_phrase:976
+#: DB:link_type/link_phrase:977 DB:link_type/link_phrase:307
+#: DB:link_type/reverse_link_phrase:280
+msgid "SecondHandSongs"
+msgstr ""
+
+#: DB:link_type/link_phrase:280 DB:link_type/reverse_link_phrase:308
+#: DB:link_type/reverse_link_phrase:976 DB:link_type/reverse_link_phrase:977
+#: DB:link_type/reverse_link_phrase:307
+msgid "SecondHandSongs page for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:289
+msgid "Songfacts"
+msgstr ""
+
+#: DB:link_type/link_phrase:289
+msgid "Songfacts page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:786 DB:link_type/link_phrase:785
+#: DB:link_type/link_phrase:787
+msgid "Songkick"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:786 DB:link_type/reverse_link_phrase:785
+#: DB:link_type/reverse_link_phrase:787
+msgid "Songkick page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:870 DB:link_type/link_phrase:291
+#: DB:link_type/link_phrase:290 DB:link_type/link_phrase:940
+msgid "SoundCloud"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:870 DB:link_type/reverse_link_phrase:291
+#: DB:link_type/reverse_link_phrase:290 DB:link_type/reverse_link_phrase:940
+msgid "SoundCloud page for"
+msgstr ""
+
+#: DB:link_attribute_type/description:1135
+msgid ""
+"Specifies the level of studies that a student studied towards in an "
+"educational institution."
+msgstr ""
+
+#: DB:link_attribute_type/description:1125
+msgid ""
+"Specifies the subject that was taught by a teacher in an institution and/or "
+"to a student."
+msgstr ""
+
+#: DB:link_attribute_type/description:561
+msgid "Spoken vocals (speech)"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:880
+msgid ""
+"The libretto for {entity1} was {additional:additionally} written at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:879
+msgid ""
+"The libretto for {entity1} was {additional:additionally} written in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:878
+msgid ""
+"The lyrics for {entity1} were {additional:additionally} written at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:877
+msgid ""
+"The lyrics for {entity1} were {additional:additionally} written in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:274
+msgid "The score for {entity1} can be downloaded for free at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:912
+msgid "The score for {entity1} can be purchased for download at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:913
+msgid "The score for {entity1} can be purchased for mail-order at {entity0}"
+msgstr ""
+
+#: DB:link_type/description:933
+msgid "This allows linking a series to the label who publishes it."
+msgstr ""
+
+#: DB:link_attribute_type/description:3
+msgid "This attribute describes a type of vocal performance."
+msgstr ""
+
+#: DB:link_attribute_type/description:2
+msgid ""
+"This attribute describes if a particular collaboration was considered equal "
+"or minor."
+msgstr ""
+
+#: DB:link_attribute_type/description:1
+msgid ""
+"This attribute describes if a particular role was considered normal or "
+"additional."
+msgstr ""
+
+#: DB:link_attribute_type/description:14
+msgid ""
+"This attribute describes the possible instruments that can be captured as "
+"part of a performance.\n"
+"
\n"
+"Can't find an instrument? Request it!"
+msgstr ""
+
+#: DB:link_attribute_type/description:194
+msgid ""
+"This attribute indicates a 'guest' performance where the performer is not "
+"usually part of the band."
+msgstr ""
+
+#: DB:link_attribute_type/description:1094
+msgid ""
+"This attribute indicates a member the band is named after and without which "
+"it wouldn't exist (such as Miles Davis -> Miles Davis Sextet)"
+msgstr ""
+
+#: DB:link_attribute_type/description:511
+msgid ""
+"This attribute indicates a version with satirical, ironic, or otherwise "
+"humorous intent. Parodies in most cases have altered lyrics."
+msgstr ""
+
+#: DB:link_attribute_type/description:517
+msgid ""
+"This attribute indicates a version with the lyrics in a different language "
+"than the original."
+msgstr ""
+
+#: DB:link_attribute_type/description:525
+msgid ""
+"This attribute indicates that an artist was an original member of a group "
+"artist."
+msgstr ""
+
+#: DB:link_attribute_type/description:582
+msgid ""
+"This attribute indicates that the content is not audio (or text) but video."
+msgstr ""
+
+#: DB:link_attribute_type/description:788
+msgid "This attribute indicates the number of an entity in a series."
+msgstr ""
+
+#: DB:link_attribute_type/description:425
+msgid ""
+"This attribute is to be used if the role was fulfilled in an executive "
+"capacity."
+msgstr ""
+
+#: DB:link_type/description:146
+msgid ""
+"This credits a person or agency who provided some kind of general creative "
+"inspiration during the recording of this recording, without actually "
+"contributing to the writing or performance."
+msgstr ""
+
+#: DB:link_type/description:63
+msgid ""
+"This credits a person or agency who provided some kind of general creative "
+"inspiration during the recording of this release group, without actually "
+"contributing to the writing or performance."
+msgstr ""
+
+#: DB:link_type/description:123
+msgid ""
+"This credits a person or agency whose photographs are included as part of a "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:134
+msgid ""
+"This credits a person who was responsible for booking the studio or "
+"performance venue where the recording was recorded."
+msgstr ""
+
+#: DB:link_type/description:23
+msgid ""
+"This credits a person who was responsible for booking the studio or "
+"performance venue where the release was recorded."
+msgstr ""
+
+#: DB:link_type/description:1175
+msgid ""
+"This credits an agency whose photographs are included as part of a release."
+msgstr ""
+
+#: DB:link_type/description:20
+msgid ""
+"This credits an artist whose photographs are included as part of a release."
+msgstr ""
+
+#: DB:link_type/description:24
+msgid ""
+"This credits the author of liner notes provided with the release (usually on "
+"the sleeve). While most time liner notes are just personnel information and "
+"production data, in some cases they consist of a blurb of text (article). "
+"This relationship type should be used in this last case."
+msgstr ""
+
+#: DB:link_type/description:125
+msgid ""
+"This credits the people or agency who did the graphic design, arranging "
+"pieces of content into a coherent and aesthetically-pleasing sleeve design."
+msgstr ""
+
+#: DB:link_type/description:202
+msgid ""
+"This describes a situation where a label has changed its name, either for "
+"purely aesthetic reasons or following a buyout/sellout/spin-off. Extra care "
+"should be taken with cases where complicated merge/split/restructure "
+"financial operations are done. For example, it's not a good idea to rename "
+"the label Verve "
+"into The Verve Music "
+"Group, as Verve continued its existence thereafter as an imprint."
+msgstr ""
+
+#: DB:link_type/description:1079
+msgid ""
+"This describes a situation where an artist (generally a group) changed its "
+"name, leading to the start of a new project."
+msgstr ""
+
+#: DB:link_type/description:200
+msgid ""
+"This describes a situation where one label is (or was) a subsidiary of "
+"another label, during a given period of time. This should be used either to "
+"describe the fact a label is a subdivision of another one, or, through "
+"corporate acquisition of the former label, has become a subdivision of "
+"another one."
+msgstr ""
+
+#: DB:link_type/description:203
+msgid ""
+"This describes a situation where one label is distributing (part of) another "
+"label's catalog, in a country/region of the world, during a period of time."
+msgstr ""
+
+#: DB:link_type/description:201
+msgid ""
+"This describes a situation where one label is reissuing, under its own name, "
+"(part of) another label's catalog. This can happen in at least three cases:\n"
+"\n"
+"- A label acquires a lease on another label's catalog, for a period of "
+"time, in a specific region of the world.
\n"
+"- A label buys the rights to a defunct label's catalog, or buys a label "
+"(with its catalog) and dismantles it.
\n"
+"- A bootleg label reissues another label's catalog.
\n"
+"
"
+msgstr ""
+
+#: DB:link_type/description:140 DB:link_type/description:31
+msgid ""
+"This describes an engineer involved with the machines used to generate "
+"sound, such as effects processors and digital audio equipment used to modify "
+"or manipulate sound in either an analogue or digital form."
+msgstr ""
+
+#: DB:link_type/description:36 DB:link_type/description:128
+msgid ""
+"This describes an engineer responsible for committing the performance to "
+"tape or another recording medium. This can be as complex as setting up the "
+"microphones, amplifiers, and recording devices, or as simple as pressing the "
+"'record' button on a 4-track or a digital audio workstation."
+msgstr ""
+
+#: DB:link_type/description:144 DB:link_type/description:38
+msgid ""
+"This describes an engineer responsible for either connecting disparate "
+"elements of the audio recording, or otherwise redistributing material "
+"recorded in the sessions. This is usually secondary, or additional to the "
+"work done by the mix engineer. It can also involve streamlining a longer "
+"track to around the 3 minute mark in order to make it suitable for radio "
+"play (a \"radio edit\")."
+msgstr ""
+
+#: DB:link_type/description:133 DB:link_type/description:29
+msgid ""
+"This describes an engineer responsible for ensuring that the sounds that the "
+"artists make reach the microphones sounding pleasant, without unwanted "
+"resonance or noise. Sometimes known as acoustical engineering."
+msgstr ""
+
+#: DB:link_type/description:1179
+msgid ""
+"This describes an engineer responsible for transferring a release, for "
+"example from an old tape to digital."
+msgstr ""
+
+#: DB:link_type/description:143
+msgid ""
+"This describes an engineer responsible for using a mixing console to mix a "
+"recorded track into a single piece of music suitable for release. For "
+"remixing, see remixer."
+msgstr ""
+
+#: DB:link_type/description:26
+msgid ""
+"This describes an engineer responsible for using a mixing console to mix a "
+"recorded track into a single piece of music suitable for release. For "
+"remixing, see remixer."
+msgstr ""
+
+#: DB:link_type/description:28 DB:link_type/description:138
+msgid "This describes an engineer who performed a general engineering role."
+msgstr ""
+
+#: DB:link_type/description:103
+msgid "This indicates a person is a member of a group."
+msgstr ""
+
+#: DB:link_type/description:135 DB:link_type/description:62
+msgid ""
+"This indicates a person or agency which is responsible for talent scouting, "
+"overseeing the artistic development of an artist, and acting as liaison "
+"between artists and the labels."
+msgstr ""
+
+#: DB:link_type/description:19
+msgid ""
+"This indicates a person or agency who did design or illustration for the "
+"release. This relationship is deprecated, please use either \"design\" or "
+"\"illustration\" (or both!)"
+msgstr ""
+
+#: DB:link_type/description:130
+msgid ""
+"This indicates a person or agency who did design or illustration for the "
+"track."
+msgstr ""
+
+#: DB:link_type/description:723
+msgid ""
+"This indicates a personal production label for an artist. A personal label "
+"is a small label (usually a subdivision of a larger one) that exclusively "
+"handles releases by that artist."
+msgstr ""
+
+#: DB:link_type/description:724
+msgid ""
+"This indicates a personal publishing label for an artist. A personal "
+"publishing label is a small label (usually a subdivision of a larger one) "
+"that exclusively handles the rights to works by that artist."
+msgstr ""
+
+#: DB:link_type/description:1011
+msgid ""
+"This indicates a recording engineer that recorded field recordings for the "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:1012
+msgid ""
+"This indicates a recording engineer that recorded field recordings for the "
+"release."
+msgstr ""
+
+#: DB:link_type/description:1174
+msgid "This indicates an agency that did the art direction for the release."
+msgstr ""
+
+#: DB:link_type/description:1171
+msgid "This indicates an agency who did design for the release."
+msgstr ""
+
+#: DB:link_type/description:1173
+msgid "This indicates an agency who did illustration for the release."
+msgstr ""
+
+#: DB:link_type/description:1172
+msgid ""
+"This indicates an agency who did the graphic design for the release, "
+"arranging pieces of content into a coherent and aesthetically-pleasing "
+"sleeve design."
+msgstr ""
+
+#: DB:link_type/description:1170
+msgid ""
+"This indicates an agency who provided artwork for the release when no more "
+"specific information is available."
+msgstr ""
+
+#: DB:link_type/description:895
+msgid ""
+"This indicates an artist (generally a person) was the founder of a group."
+msgstr ""
+
+#: DB:link_type/description:1004
+msgid ""
+"This indicates an artist (generally a person) was the founder of a series "
+"(mostly, but not always, an event series such as a festival)."
+msgstr ""
+
+#: DB:link_attribute_type/description:921
+msgid "This indicates an artist cancelled their appearance at an event."
+msgstr ""
+
+#: DB:link_type/description:917
+msgid ""
+"This indicates an artist reconstructed a work (usually one where the score "
+"was lost) to make it ready for performance."
+msgstr ""
+
+#: DB:link_type/description:18
+msgid "This indicates an artist that did the art direction for the release."
+msgstr ""
+
+#: DB:link_type/description:151
+msgid ""
+"This indicates an artist who conducted an orchestra, band or choir on this "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:46
+msgid ""
+"This indicates an artist who conducted an orchestra, band or choir on this "
+"release."
+msgstr ""
+
+#: DB:link_type/description:928
+msgid "This indicates an artist who did design for the release."
+msgstr ""
+
+#: DB:link_type/description:927
+msgid "This indicates an artist who did illustration for the release."
+msgstr ""
+
+#: DB:link_type/description:27
+msgid ""
+"This indicates an artist who did the graphic design for the release, "
+"arranging pieces of content into a coherent and aesthetically-pleasing "
+"sleeve design."
+msgstr ""
+
+#: DB:link_type/description:141 DB:link_type/description:30
+msgid ""
+"This indicates an artist who is responsible for the creative and practical "
+"day-to-day aspects involved with making a musical recording."
+msgstr ""
+
+#: DB:link_type/description:993
+msgid ""
+"This indicates an artist who provided artwork for the release when no more "
+"specific information is available."
+msgstr ""
+
+#: DB:link_type/description:760
+msgid ""
+"This indicates an artist who was the concertmaster/leader for an orchestra "
+"or band on this recording."
+msgstr ""
+
+#: DB:link_type/description:759
+msgid ""
+"This indicates an artist who was the concertmaster/leader for an orchestra "
+"or band on this release."
+msgstr ""
+
+#: DB:link_type/description:891
+msgid ""
+"This indicates that (most commonly) a festival commissioned the work. This "
+"is most common for classical works, but also exists in other genres to a "
+"degree."
+msgstr ""
+
+#: DB:link_type/description:1097
+msgid ""
+"This indicates that a genre has influences of another, but is not connected "
+"to it enough to be a subgenre of it."
+msgstr ""
+
+#: DB:link_type/description:1096
+msgid ""
+"This indicates that a genre originated as a hybrid of two or more other "
+"genres."
+msgstr ""
+
+#: DB:link_type/description:305
+msgid "This indicates that a person is, or was, a conductor for a group."
+msgstr ""
+
+#: DB:link_type/description:965
+msgid ""
+"This indicates that a person is, or was, the artistic director of a group "
+"(such as a ballet/opera company)."
+msgstr ""
+
+#: DB:link_type/description:137
+msgid ""
+"This indicates that a person or agency did the art direction for the "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:142
+msgid ""
+"This indicates that a person or firm provided legal representation for the "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:22
+msgid ""
+"This indicates that a person or firm provided legal representation for the "
+"release."
+msgstr ""
+
+#: DB:link_type/description:717
+msgid "This indicates that a place is part of another place."
+msgstr ""
+
+#: DB:link_type/description:725
+msgid ""
+"This indicates that a record label (company) owns or has the right to use an "
+"imprint."
+msgstr ""
+
+#: DB:link_type/description:228
+msgid ""
+"This indicates that a recording is a compilation of several other "
+"recordings. This applies to one long recording that contains multiple songs, "
+"one after the other, in which the audio material of the original recordings "
+"has not been altered. If the tracks are pitched or blended into each other, "
+"the DJ-mix "
+"relationship type may be more appropriate."
+msgstr ""
+
+#: DB:link_type/description:894
+msgid ""
+"This indicates that a release group was included in another. This allows "
+"linking release groups (often albums) to box sets and other compilations "
+"that contain them."
+msgstr ""
+
+#: DB:link_type/description:3
+msgid ""
+"This indicates that a release was released in support of another release. "
+"This allows a release to be linked to its supporting singles, EPs, and remix "
+"releases. A 'supporting release' is one which is released to increase sales "
+"of an album or to create publicity for an album."
+msgstr ""
+
+#: DB:link_type/description:11
+msgid ""
+"This indicates that a single or EP release group includes at least one track "
+"taken from an album release group. This allows a release group to be linked "
+"to its associated singles and EPs."
+msgstr ""
+
+#: DB:link_type/description:281
+msgid ""
+"This indicates that a work is made up of multiple parts (such as an "
+"orchestral suite broken into movements)"
+msgstr ""
+
+#: DB:link_type/description:858
+msgid ""
+"This indicates that an artist appears on a music video, but doesn't actually "
+"perform on the audio track."
+msgstr ""
+
+#: DB:link_type/description:121
+msgid "This indicates that an artist had a recording contract with a label."
+msgstr ""
+
+#: DB:link_type/description:117
+msgid ""
+"This indicates that an artist was officially employed by a label as a "
+"producer."
+msgstr ""
+
+#: DB:link_type/description:120
+msgid ""
+"This indicates that an artist was officially employed by a label as an "
+"engineer."
+msgstr ""
+
+#: DB:link_type/description:115
+msgid ""
+"This indicates that an artist was officially employed by a label in a "
+"creative position, such as photographer or graphic designer."
+msgstr ""
+
+#: DB:link_type/description:1081
+msgid ""
+"This indicates that an artist was officially employed by a label in an "
+"artists and repertoire (A&R) position."
+msgstr ""
+
+#: DB:link_type/description:818
+msgid ""
+"This indicates that an event is made up of multiple parts (e.g. a festival "
+"happening on multiple venues over the course of a few days)."
+msgstr ""
+
+#: DB:link_type/description:739
+msgid ""
+"This indicates that an instrument (often an ensemble or family) consists of "
+"two or more other instruments."
+msgstr ""
+
+#: DB:link_type/description:916
+msgid ""
+"This indicates that an instrument is a hybrid of two or more other "
+"instruments."
+msgstr ""
+
+#: DB:link_type/description:2
+msgid ""
+"This indicates that one release is identical to another release, but that "
+"the release title and track titles have been either translated (into another "
+"language) or transliterated (into another script)."
+msgstr ""
+
+#: DB:link_type/description:889
+msgid ""
+"This indicates that the artist commissioned the work. This is most common "
+"for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:129 DB:link_type/description:25
+msgid ""
+"This indicates that the artist performed a role not covered by other "
+"relationship types."
+msgstr ""
+
+#: DB:link_attribute_type/description:618
+msgid ""
+"This indicates that the group had multiple conductors or multiple players of "
+"the selected instrument who were led by this artist. This is often indicated "
+"by the title of \"principal conductor\" or \"first conductor\" for "
+"conductors, and by the title of \"principal [instrument]\" or "
+"\"concertmaster\" (principal violin) for instruments."
+msgstr ""
+
+#: DB:link_type/description:998 DB:link_type/description:999
+msgid ""
+"This indicates that the label performed a role not covered by other "
+"relationship types."
+msgstr ""
+
+#: DB:link_type/description:890
+msgid ""
+"This indicates that the organisation commissioned the work. This is most "
+"common for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:892
+msgid ""
+"This indicates that the place commissioned the work. This is most common for "
+"classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_attribute_type/description:579
+msgid ""
+"This indicates that the recording is not of the entire work, such as "
+"excerpts from, conclusion of, etc."
+msgstr ""
+
+#: DB:link_attribute_type/description:578
+msgid "This indicates that the recording is of a live performance."
+msgstr ""
+
+#: DB:link_attribute_type/description:750
+msgid ""
+"This indicates that the recording is of a medley, of which the work is one "
+"part."
+msgstr ""
+
+#: DB:link_attribute_type/description:1261
+msgid ""
+"This indicates that this is a karaoke recording of the work. This is "
+"different from an instrumental recording in that it is actively meant to "
+"sing on top of, and as such the lyrics info is still relevant. It might "
+"still contain backing vocals and other sections that would not be present in "
+"a true instrumental recording."
+msgstr ""
+
+#: DB:link_type/description:738
+msgid ""
+"This indicates that two instruments are related in a way not covered by "
+"other, more specific relationships."
+msgstr ""
+
+#: DB:link_type/description:1185
+msgid "This indicates the artist directed video on this release."
+msgstr ""
+
+#: DB:link_type/description:973
+msgid "This indicates the artist that inspired this artist’s name."
+msgstr ""
+
+#: DB:link_type/description:975
+msgid "This indicates the artist that inspired this place’s name."
+msgstr ""
+
+#: DB:link_type/description:1000
+msgid ""
+"This indicates the artist that inspired this series' name, for example for "
+"an award named after a musician."
+msgstr ""
+
+#: DB:link_type/description:1186
+msgid ""
+"This indicates the artist was an audio director for this recording.\n"
+"\n"
+"This is the artist responsible for the creative realization of an audio "
+"project (such as an audio drama or audiobook), which is usually based on a "
+"written template and involves the performance of voice actors."
+msgstr ""
+
+#: DB:link_type/description:1187
+msgid ""
+"This indicates the artist was an audio director for this release.\n"
+"\n"
+"This is the artist responsible for the creative realization of an audio "
+"project (such as an audio drama or audiobook), which is usually based on a "
+"written template and involves the performance of voice actors."
+msgstr ""
+
+#: DB:link_type/description:962
+msgid "This indicates the artist was the director of this video recording."
+msgstr ""
+
+#: DB:link_type/description:991
+msgid "This indicates the artist was the owner of this label."
+msgstr ""
+
+#: DB:link_type/description:988
+msgid ""
+"This indicates the artist was the owner of this place (often a studio, but "
+"sometimes also a venue)."
+msgstr ""
+
+#: DB:link_type/description:295 DB:link_type/description:41
+#: DB:link_type/description:296 DB:link_type/description:297
+#: DB:link_type/description:298 DB:link_type/description:158
+#: DB:link_type/description:294 DB:link_type/description:282
+#: DB:link_type/description:293
+msgid ""
+"This indicates the artist who arranged a tune into a form suitable for "
+"performance. 'Arrangement' is used as a catch-all term for all processes "
+"that turn a composition into a form that can be played by a specific type of "
+"ensemble."
+msgstr ""
+
+#: DB:link_type/description:152
+msgid ""
+"This indicates the chorus master of a choir which performed on this "
+"recording."
+msgstr ""
+
+#: DB:link_type/description:53
+msgid ""
+"This indicates the chorus master of a choir which performed on this release."
+msgstr ""
+
+#: DB:link_type/description:955
+msgid ""
+"This indicates the company that made the glass master for a release. This is "
+"not the same concept as the record "
+"label, nor as mastering engineering."
+msgstr ""
+
+#: DB:link_type/description:989
+msgid ""
+"This indicates the label / organization was the owner of this place (often a "
+"studio, but sometimes also a venue)."
+msgstr ""
+
+#: DB:link_attribute_type/description:1018
+msgid ""
+"This indicates the linked entity translated something, rather than being the "
+"original writer."
+msgstr ""
+
+#: DB:link_type/description:361
+msgid ""
+"This indicates the organization that distributes (or contracts out "
+"distribution). \n"
+"\n"
+"This is not the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:360
+msgid ""
+"This indicates the organization that manufactures (or contracts out "
+"manufacturing). \n"
+"This is not the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:848
+msgid ""
+"This indicates the organization that markets a release. This is not"
+"strong> the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:985
+msgid ""
+"This indicates the organization that printed a release. This is not"
+"strong> the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:359
+msgid ""
+"This indicates the organization that promotes (or contracts out promotion) "
+"for a release. This is not the same concept as the record label."
+msgstr ""
+
+#: DB:link_type/description:362
+msgid ""
+"This indicates the organization which releases a release. This is "
+"not the same concept as the record "
+"label."
+msgstr ""
+
+#: DB:link_type/description:300
+msgid ""
+"This indicates the person who orchestrated the recording. Orchestration is a "
+"special type of arrangement. It means the adaptation of a composition for an "
+"orchestra, done in a way that the musical substance remains essentially "
+"unchanged. The orchestrator is also responsible for writing scores for an "
+"orchestra, band, choral group, individual instrumentalist(s) or vocalist(s). "
+"In practical terms it consists of deciding which instruments should play "
+"which notes in a piece of music."
+msgstr ""
+
+#: DB:link_type/description:40
+msgid ""
+"This indicates the person who orchestrated the release. Orchestration is a "
+"special type of arrangement. It means the adaptation of a composition for an "
+"orchestra, done in a way that the musical substance remains essentially "
+"unchanged. The orchestrator is also responsible for writing scores for an "
+"orchestra, band, choral group, individual instrumentalist(s) or vocalist(s). "
+"In practical terms it consists of deciding which instruments should play "
+"which notes in a piece of music."
+msgstr ""
+
+#: DB:link_type/description:164
+msgid ""
+"This indicates the person who orchestrated the work. Orchestration is a "
+"special type of arrangement. It means the adaptation of a composition for an "
+"orchestra, done in a way that the musical substance remains essentially "
+"unchanged. The orchestrator is also responsible for writing scores for an "
+"orchestra, band, choral group, individual instrumentalist(s) or vocalist(s). "
+"In practical terms it consists of deciding which instruments should play "
+"which notes in a piece of music."
+msgstr ""
+
+#: DB:link_type/description:48
+msgid ""
+"This indicates the person who selected the tracks and the sequence for a "
+"compilation. If the tracks are pitched or blended into each other, it is "
+"more appropriate to credit this person as a DJ-"
+"mixer."
+msgstr ""
+
+#: DB:link_type/description:147
+msgid ""
+"This indicates the person who selected the tracks and the sequence for a "
+"compilation. This applies to one long recording which contains multiple "
+"songs, one after the other. If the tracks are pitched or blended into each "
+"other, it is more appropriate to credit this person as a DJ-"
+"mixer."
+msgstr ""
+
+#: DB:link_type/description:942
+msgid ""
+"This indicates the pressing company that presses a release. This is "
+"not the same concept as the record "
+"label."
+msgstr ""
+
+#: DB:link_attribute_type/description:1310
+msgid ""
+"This indicates the publisher subcontracted to publish a release or work in a "
+"specific territory. Use this only when you have a specific sub-publisher "
+"credit, do not guess."
+msgstr ""
+
+#: DB:link_type/description:974
+msgid "This indicates the release group that inspired this artist’s name."
+msgstr ""
+
+#: DB:link_type/description:349
+msgid ""
+"This indicates the rights society associated with a release. The rights "
+"society is an organization which collects royalties on behalf of the artists."
+msgstr ""
+
+#: DB:link_type/description:963
+msgid "This indicates the video was shot at this place."
+msgstr ""
+
+#: DB:link_type/description:966
+msgid "This indicates the video was shot at/during this event."
+msgstr ""
+
+#: DB:link_type/description:964
+msgid "This indicates the video was shot in this area."
+msgstr ""
+
+#: DB:link_type/description:914
+msgid ""
+"This indicates the work is dedicated to a specific area. This is most common "
+"for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:922
+msgid ""
+"This indicates the work is dedicated to a specific organization. This is "
+"most common for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:846
+msgid ""
+"This indicates the work is dedicated to a specific person. This is most "
+"common for classical works, but also exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:983
+msgid ""
+"This indicates the work is dedicated to a specific place (such an "
+"educational institution). This is most common for classical works, but also "
+"exists in other genres to a degree."
+msgstr ""
+
+#: DB:link_type/description:972
+msgid "This indicates the work that inspired this artist’s name."
+msgstr ""
+
+#: DB:link_type/description:915
+msgid "This indicates where a feed for this podcast can be found."
+msgstr ""
+
+#: DB:link_type/description:17
+msgid ""
+"This is used to indicate that a release group is a live performance of a "
+"studio release group."
+msgstr ""
+
+#: DB:link_type/description:1082
+msgid ""
+"This is used to indicate that a release group is a translated version of "
+"another."
+msgstr ""
+
+#: DB:link_type/description:239
+msgid ""
+"This is used to indicate that a work is a medley of several other songs. "
+"This means that the original songs were rearranged to create a new work in "
+"the form of a medley. See arranger for crediting the person "
+"who arranges songs into a medley."
+msgstr ""
+
+#: DB:link_type/description:232
+msgid ""
+"This is used to indicate that the recording is a mash-up of two (or more) other recordings."
+msgstr ""
+
+#: DB:link_type/description:10
+msgid ""
+"This is used to indicate that the release group is a mash-up mash-up of two (or more) other release groups."
+msgstr ""
+
+#: DB:link_type/description:227
+msgid ""
+"This is used to link a DJ-mixed "
+"recording to each of the source recordings. See DJ-mixer for "
+"crediting the person who created the DJ-mix."
+msgstr ""
+
+#: DB:link_type/description:1093
+msgid "This is used to link a genre to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:226
+msgid ""
+"This is used to link a karaoke version of a song to the original song.
\n"
+"A karaoke version is a version of the song with the main vocals removed, "
+"designed to be used for karaoke. These are generally produced from the "
+"original masters by muting the main vocal track or by using post-processing "
+"filters to remove the vocals. Karaoke versions can be found labelled in "
+"numerous different ways other than \"karaoke\": instrumental (even if "
+"backing vocals are still present), off vocal, backing track, etc."
+msgstr ""
+
+#: DB:link_type/description:213
+msgid "This is used to link a label to an image of its logo."
+msgstr ""
+
+#: DB:link_type/description:216
+msgid "This is used to link a label to its corresponding Wikipedia page."
+msgstr ""
+
+#: DB:link_type/description:977
+msgid ""
+"This is used to link a label to its corresponding page in the "
+"SecondHandSongs database."
+msgstr ""
+
+#: DB:link_type/description:857
+msgid ""
+"This is used to link a music video to the corresponding audio recording."
+msgstr ""
+
+#: DB:link_type/description:705
+msgid "This is used to link a place to the equivalent entry in Discogs."
+msgstr ""
+
+#: DB:link_type/description:976
+msgid ""
+"This is used to link a recording to its corresponding page in the "
+"SecondHandSongs database."
+msgstr ""
+
+#: DB:link_type/description:285
+msgid "This is used to link a recording to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:8
+msgid ""
+"This is used to link a release group containing a DJ-mixed version of a release to the release "
+"group containing the source release. See DJ-mixer for "
+"crediting the person who created the DJ-mix."
+msgstr ""
+
+#: DB:link_type/description:284
+msgid ""
+"This is used to link a release group to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:308
+msgid ""
+"This is used to link a release to its corresponding page in the "
+"SecondHandSongs database."
+msgstr ""
+
+#: DB:link_type/description:755
+msgid "This is used to link a release to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:747
+msgid "This is used to link a series to the equivalent entry in Discogs."
+msgstr ""
+
+#: DB:link_type/description:280
+msgid ""
+"This is used to link a work to its corresponding page in the SecondHandSongs "
+"database."
+msgstr ""
+
+#: DB:link_type/description:286
+msgid "This is used to link a work to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:307
+msgid ""
+"This is used to link an artist to its corresponding page in the "
+"SecondHandSongs database."
+msgstr ""
+
+#: DB:link_type/description:283
+msgid "This is used to link an artist to its corresponding page on Allmusic."
+msgstr ""
+
+#: DB:link_type/description:714
+msgid "This is used to link an artist to its primary concert venue."
+msgstr ""
+
+#: DB:link_type/description:180
+msgid "This is used to link the Discogs page for this artist."
+msgstr ""
+
+#: DB:link_type/description:1089
+msgid "This is used to link the Discogs page for this genre/style."
+msgstr ""
+
+#: DB:link_type/description:217
+msgid "This is used to link the Discogs page for this label."
+msgstr ""
+
+#: DB:link_type/description:90
+msgid "This is used to link the Discogs page for this release group."
+msgstr ""
+
+#: DB:link_type/description:76
+msgid "This is used to link the Discogs page for this release."
+msgstr ""
+
+#: DB:link_type/description:971
+msgid "This is used to link the Discogs page for this work."
+msgstr ""
+
+#: DB:link_type/description:176
+msgid ""
+"This is used to link to a page where the artist's releases can be purchased "
+"for download."
+msgstr ""
+
+#: DB:link_type/description:959
+msgid ""
+"This is used to link to a page where the label's releases can be purchased "
+"for download."
+msgstr ""
+
+#: DB:link_type/description:254
+msgid ""
+"This is used to link to a page where the recording can be purchased for "
+"download."
+msgstr ""
+
+#: DB:link_type/description:74
+msgid ""
+"This is used to link to a page where the release can be purchased for "
+"download."
+msgstr ""
+
+#: DB:link_type/description:278
+msgid "This is used to link works to their recordings."
+msgstr ""
+
+#: DB:link_type/description:102
+msgid ""
+"This is used to specify that an artist collaborated on a short-term project, for cases "
+"where artist credits can't be used."
+msgstr ""
+
+#: DB:link_type/description:1047
+msgid ""
+"This is used when a work includes a brief quotation of the lyrics of another "
+"work. In most cases the quotation is uncredited, although this is not a "
+"requirement. For a work that includes significantly more of another than "
+"just a brief quotation, consider using “based on” instead."
+msgstr ""
+
+#: DB:link_type/description:1046
+msgid ""
+"This is used when a work includes a brief quotation of the music of another "
+"work. In most cases the quotation is uncredited, although this is not a "
+"requirement. For a work that includes significantly more of another than "
+"just a brief quotation, consider using “based on” instead."
+msgstr ""
+
+#: DB:link_type/description:1169
+msgid ""
+"This link points to a page for a particular release group within a "
+"discography for an artist or label. If the page is for a particular release, "
+"prefer the release level relationship."
+msgstr ""
+
+#: DB:link_type/description:288
+msgid ""
+"This link points to a page for a particular release within a discography for "
+"an artist or label."
+msgstr ""
+
+#: DB:link_type/description:921
+msgid ""
+"This link points to a page for a particular work within a work list for an "
+"artist."
+msgstr ""
+
+#: DB:link_type/description:43 DB:link_type/description:155
+msgid ""
+"This links a DJ-"
+"mix to the artist who mixed it."
+msgstr ""
+
+#: DB:link_type/description:9
+msgid ""
+"This links a remix release group "
+"to the source release group and is used to indicate that the release group "
+"includes remixed versions of all (or most of) the tracks in the other "
+"release group."
+msgstr ""
+
+#: DB:link_type/description:230
+msgid ""
+"This links a remixed recording to "
+"the source recording."
+msgstr ""
+
+#: DB:link_type/description:77
+msgid ""
+"This links a MusicBrainz release to the equivalent entry at Amazon and will "
+"often provide cover art if there is no cover art in the Cover Art Archive."
+msgstr ""
+
+#: DB:link_type/description:888
+msgid ""
+"This links a concert tour with a release group (generally an album) the tour "
+"is connected with."
+msgstr ""
+
+#: DB:link_type/description:1092
+msgid "This links a genre to its page at Bandcamp."
+msgstr ""
+
+#: DB:link_type/description:1095
+msgid "This links a genre to its subgenres."
+msgstr ""
+
+#: DB:link_type/description:855
+msgid ""
+"This links a group (often an orchestra) to a composer who has a composer-in-"
+"residence position with the group."
+msgstr ""
+
+#: DB:link_type/description:304
+msgid ""
+"This links a label to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:214
+msgid "This links a label to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:899
+msgid ""
+"This links a label to a site where the label can receive donations/"
+"patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:1194
+msgid ""
+"This links a label to a site where tickets can be purchased for their events."
+msgstr ""
+
+#: DB:link_type/description:1130
+msgid "This links a label to its page at Apple Music."
+msgstr ""
+
+#: DB:link_type/description:719
+msgid "This links a label to its page at Bandcamp."
+msgstr ""
+
+#: DB:link_type/description:313
+msgid ""
+"This links a label to its page in IMDb."
+msgstr ""
+
+#: DB:link_type/description:290
+msgid "This links a label to its profile at SoundCloud."
+msgstr ""
+
+#: DB:link_type/description:225
+msgid "This links a label to the equivalent entry at YouTube."
+msgstr ""
+
+#: DB:link_type/description:903
+msgid ""
+"This links a label to their profile at a crowdfunding site like Kickstarter "
+"or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:937
+msgid ""
+"This links a place (often a concert hall or educational institution) to a "
+"composer who has a composer-in-residence position with it."
+msgstr ""
+
+#: DB:link_type/description:495
+msgid ""
+"This links a place to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:1191
+msgid "This links a place to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:900
+msgid ""
+"This links a place to a site where the place or the organisation behind it "
+"can receive donations/patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:1195
+msgid ""
+"This links a place to a site where tickets can be purchased for its events."
+msgstr ""
+
+#: DB:link_type/description:940
+msgid "This links a place to its profile at SoundCloud."
+msgstr ""
+
+#: DB:link_type/description:909
+msgid ""
+"This links a place to its profile at a crowdfunding site like Kickstarter or "
+"Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:836
+msgid "This links a postponed event to the later rescheduled event."
+msgstr ""
+
+#: DB:link_type/description:302
+msgid "This links a recording to a license under which it is available."
+msgstr ""
+
+#: DB:link_type/description:255
+msgid ""
+"This links a recording to a page where it can be legally downloaded for free."
+msgstr ""
+
+#: DB:link_type/description:1177
+msgid ""
+"This links a recording to another containing official commentary for it "
+"(usually the artist talking about it)."
+msgstr ""
+
+#: DB:link_type/description:132
+msgid ""
+"This links a recording to the artist who did the programming for electronic "
+"instruments used on the recording. In the most cases, the 'electronic "
+"instrument' is either a synthesizer or a drum machine."
+msgstr ""
+
+#: DB:link_type/description:726
+msgid "This links a recording to the balance engineer who engineered it."
+msgstr ""
+
+#: DB:link_type/description:153
+msgid ""
+"This links a recording to the person who remixed it by taking one or more "
+"other tracks, substantially altering them and mixing them together with "
+"other material. Note that this includes the artist who created a mash-up or "
+"used samples as well."
+msgstr ""
+
+#: DB:link_type/description:905
+msgid ""
+"This links a recording to the relevant crowdfunding project at a "
+"crowdfunding site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:1190
+msgid "This links a release group to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:970
+msgid ""
+"This links a release group to a label, to indicate that it is a tribute "
+"album. Tribute albums often have a title in the form \"A Tribute to Label\" "
+"or \"A Tribute to Artists from Label\", and they consist of covers of songs "
+"put out by the label, played by other (sometimes very unknown) artists, to "
+"honor the label. Often they are various artist compilations, but a single "
+"artist can perform the entire tribute album."
+msgstr ""
+
+#: DB:link_type/description:868
+msgid ""
+"This links a release group to an artist it is dedicated to. This is for "
+"dedications such as \"This album is dedicated to the memory of Artist\" - "
+"for tribute albums consisting of covers of the artist, use the tribute relationship."
+msgstr ""
+
+#: DB:link_type/description:65
+msgid ""
+"This links a release group to an artist, to indicate that it is a tribute "
+"album. Tribute albums often have a title in the form \"A Tribute to "
+"Artist\", and they consist of covers of songs by the target artist, played "
+"by other (sometimes very unknown) bands, to honor the target artist. Often "
+"they are various artist compilations, but a single artist can perform the "
+"entire tribute album."
+msgstr ""
+
+#: DB:link_type/description:1176
+msgid ""
+"This links a release group to another containing official commentary for it "
+"(usually the artist talking about each specific track in an album)."
+msgstr ""
+
+#: DB:link_type/description:907
+msgid ""
+"This links a release group to the relevant crowdfunding project at a "
+"crowdfunding site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:1009
+msgid ""
+"This links a release that was withdrawn (usually because of having some "
+"defect, but sometimes just to change the artist credits) to a new release "
+"put out to replaced it."
+msgstr ""
+
+#: DB:link_type/description:301
+msgid "This links a release to a license under which it is available."
+msgstr ""
+
+#: DB:link_type/description:75
+msgid ""
+"This links a release to a page where it can be legally downloaded for free."
+msgstr ""
+
+#: DB:link_type/description:37
+msgid ""
+"This links a release to the artist who did the programming for electronic "
+"instruments used on the release. In the most cases, the 'electronic "
+"instrument' is either a synthesizer or a drum machine."
+msgstr ""
+
+#: DB:link_type/description:727
+msgid "This links a release to the balance engineer who engineered it."
+msgstr ""
+
+#: DB:link_type/description:47
+msgid ""
+"This links a release to the person who remixed it by taking one or more "
+"other tracks, substantially altering them and mixing them together with "
+"other material. Note that this includes the artist who created a mash-up or "
+"used samples as well."
+msgstr ""
+
+#: DB:link_type/description:906
+msgid ""
+"This links a release to the relevant crowdfunding project at a crowdfunding "
+"site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:870
+msgid ""
+"This links a series (most commonly, but not necessarily always, a music "
+"festival) to its official page at SoundCloud."
+msgstr ""
+
+#: DB:link_type/description:901
+msgid ""
+"This links a series (usually, but not exclusively, a festival or concert "
+"series) to a site where the organisers/creators can receive donations/"
+"patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:805
+msgid ""
+"This links a series to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:1189
+msgid "This links a series to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:1196
+msgid ""
+"This links a series to a site where tickets can be purchased for events in "
+"it."
+msgstr ""
+
+#: DB:link_type/description:910
+msgid ""
+"This links a series to its profile page (such as for a festival) or project "
+"page (such as for a specific tour, or for compiling a classical catalogue) "
+"at a crowdfunding site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:97
+msgid ""
+"This links a soundtrack release group to the IMDb page for the movie, show or game of which it is a soundtrack."
+msgstr ""
+
+#: DB:link_type/description:992
+msgid ""
+"This links a soundtrack work to the VGMdb "
+"page for the movie, show or game of which it is a soundtrack. VGMdb is a "
+"community project dedicated to cataloguing the music of video games and "
+"anime."
+msgstr ""
+
+#: DB:link_type/description:843
+msgid ""
+"This links a soundtrack work to the IMDb"
+"a> page for the movie, show or game of which it is a soundtrack."
+msgstr ""
+
+#: DB:link_type/description:722
+msgid "This links a subgroup to the group from which it was created."
+msgstr ""
+
+#: DB:link_type/description:1188
+msgid "This links a work to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:939
+msgid "This links a work to a license under which it is available."
+msgstr ""
+
+#: DB:link_type/description:908
+msgid ""
+"This links a work to its project at a crowdfunding site like Kickstarter or "
+"Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:885
+msgid "This links a work with the area it was arranged in."
+msgstr ""
+
+#: DB:link_type/description:875
+msgid "This links a work with the area it was composed in."
+msgstr ""
+
+#: DB:link_type/description:881
+msgid "This links a work with the area it was revised in."
+msgstr ""
+
+#: DB:link_type/description:884
+msgid "This links a work with the area it was translated in."
+msgstr ""
+
+#: DB:link_type/description:873
+msgid "This links a work with the area it was written in."
+msgstr ""
+
+#: DB:link_type/description:879
+msgid "This links a work with the area its libretto was written in."
+msgstr ""
+
+#: DB:link_type/description:877
+msgid "This links a work with the area its lyrics were written in."
+msgstr ""
+
+#: DB:link_type/description:886
+msgid "This links a work with the place it was arranged at."
+msgstr ""
+
+#: DB:link_type/description:876
+msgid "This links a work with the place it was composed at."
+msgstr ""
+
+#: DB:link_type/description:882
+msgid "This links a work with the place it was revised at."
+msgstr ""
+
+#: DB:link_type/description:883
+msgid "This links a work with the place it was translated at."
+msgstr ""
+
+#: DB:link_type/description:874
+msgid "This links a work with the place it was written at."
+msgstr ""
+
+#: DB:link_type/description:880
+msgid "This links a work with the place its libretto was written at."
+msgstr ""
+
+#: DB:link_type/description:878
+msgid "This links a work with the place its lyrics were written at."
+msgstr ""
+
+#: DB:link_type/description:292
+msgid "This links an (fictional) artist to the person that voice acted it."
+msgstr ""
+
+#: DB:link_type/description:303
+msgid ""
+"This links an artist to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:172
+msgid "This links an artist to a fan-created website."
+msgstr ""
+
+#: DB:link_type/description:897
+msgid ""
+"This links an artist to a site where the artist can receive donations/"
+"patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:1193
+msgid ""
+"This links an artist to a site where tickets can be purchased for their "
+"events."
+msgstr ""
+
+#: DB:link_type/description:707
+msgid ""
+"This links an artist to an URL containing an interview with that artist."
+msgstr ""
+
+#: DB:link_type/description:182
+msgid "This links an artist to an online biography for that artist."
+msgstr ""
+
+#: DB:link_type/description:184
+msgid ""
+"This links an artist to an online discography of their works. The "
+"discography should provide a summary of most, if not all, releases by the "
+"artist, and be as comprehensive as possible."
+msgstr ""
+
+#: DB:link_type/description:1080
+msgid "This links an artist to its channel at YouTube Music."
+msgstr ""
+
+#: DB:link_type/description:1131
+msgid "This links an artist to its page at Apple Music."
+msgstr ""
+
+#: DB:link_type/description:718
+msgid "This links an artist to its page at Bandcamp."
+msgstr ""
+
+#: DB:link_type/description:919
+msgid "This links an artist to its page at CD Baby."
+msgstr ""
+
+#: DB:link_type/description:178
+msgid ""
+"This links an artist to its page in IMDb"
+"a>."
+msgstr ""
+
+#: DB:link_type/description:754
+msgid ""
+"This links an artist to its page in IMSLP"
+"a>."
+msgstr ""
+
+#: DB:link_type/description:981
+msgid ""
+"This links an artist to its page in CPDL"
+"a>."
+msgstr ""
+
+#: DB:link_type/description:291
+msgid "This links an artist to its profile at SoundCloud."
+msgstr ""
+
+#: DB:link_type/description:190
+msgid ""
+"This links an artist to that artist's page at BBC Music."
+msgstr ""
+
+#: DB:link_type/description:174
+msgid "This links an artist to the equivalent entry at PureVolume."
+msgstr ""
+
+#: DB:link_type/description:193
+msgid "This links an artist to the equivalent entry at YouTube."
+msgstr ""
+
+#: DB:link_type/description:902
+msgid ""
+"This links an artist to their profile at a crowdfunding site like "
+"Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:108
+msgid ""
+"This links an artist's performance name (a stage name or alias) with their "
+"legal name (or a more well know performance name if the legal name is "
+"unknown)."
+msgstr ""
+
+#: DB:link_type/description:309
+msgid ""
+"This links an edit to its original recording. An \"edit\", for this "
+"relationship, can be a radio edit (which involves streamlining a longer "
+"track to around the 3 minute mark in order to make it suitable for radio "
+"play), or a shortened, censored, or otherwise edited version of the same "
+"material. The person who edited the recording can be linked using the editor "
+"relationship type."
+msgstr ""
+
+#: DB:link_type/description:289
+msgid ""
+"This links an entity to the appropriate listing in the Songfacts database, a "
+"user contributed database concerned with the stories behind the songs."
+msgstr ""
+
+#: DB:link_type/description:1086 DB:link_type/description:753
+#: DB:link_type/description:730 DB:link_type/description:82
+#: DB:link_type/description:273 DB:link_type/description:222
+#: DB:link_type/description:188 DB:link_type/description:306
+#: DB:link_type/description:561 DB:link_type/description:746
+#: DB:link_type/description:96 DB:link_type/description:803
+msgid ""
+"This links an entity to the equivalent entry in another database. Please "
+"respect the whitelist."
+msgstr ""
+
+#: DB:link_type/description:804
+msgid ""
+"This links an event to a channel, playlist, or user page on a video sharing "
+"site containing videos curated by it."
+msgstr ""
+
+#: DB:link_type/description:898
+msgid ""
+"This links an event to a site where the event organisers can receive "
+"donations/patronage, such as Flattr or PayPal.me."
+msgstr ""
+
+#: DB:link_type/description:1197
+msgid "This links an event to a site where tickets can be purchased for it."
+msgstr ""
+
+#: DB:link_type/description:904
+msgid ""
+"This links an event to the relevant crowdfunding project at a crowdfunding "
+"site like Kickstarter or Indiegogo."
+msgstr ""
+
+#: DB:link_type/description:737
+msgid "This links an instrument to an older instrument that it was based on."
+msgstr ""
+
+#: DB:link_type/description:736
+msgid "This links an instrument to more specific subtypes of it."
+msgstr ""
+
+#: DB:link_type/description:111
+msgid "This links artists who were married."
+msgstr ""
+
+#: DB:link_type/description:315
+msgid ""
+"This links different revisions of the same work."
+msgstr ""
+
+#: DB:link_type/description:212
+msgid "This links to a catalog or list of records published by the label."
+msgstr ""
+
+#: DB:link_type/description:211
+msgid ""
+"This links to a site describing relevant details about a label's history."
+msgstr ""
+
+#: DB:link_type/description:984
+msgid ""
+"This links to a site describing relevant details about a place's history."
+msgstr ""
+
+#: DB:link_type/description:350
+msgid ""
+"This links two works where one work "
+"is an arrangement of the other."
+msgstr ""
+
+#: DB:link_type/description:316
+msgid ""
+"This links two works where one work "
+"is an orchestration of the other."
+msgstr ""
+
+#: DB:link_type/description:314
+msgid ""
+"This links two works, where the "
+"second work is based on music or text from the first, but isn't directly a "
+"revision or an arrangement of it."
+msgstr ""
+
+#: DB:link_type/description:6
+msgid ""
+"This links two releases, where one is a remaster of the other. This is usually done "
+"to improve the audio quality or to adjust for more modern playback "
+"equipment. The process generally doesn't involve changing the music in any "
+"artistically important way. It may, however, result in recordings that "
+"differ in length by a few seconds."
+msgstr ""
+
+#: DB:link_type/description:110
+msgid "This links two siblings (brothers or sisters)."
+msgstr ""
+
+#: DB:link_type/description:241
+msgid ""
+"This links two versions of a work."
+msgstr ""
+
+#: DB:link_type/description:310
+msgid ""
+"This points to the VIAF page for this artist. "
+"VIAF is an international project to make a common authority file available "
+"to libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)"
+msgstr ""
+
+#: DB:link_type/description:311
+msgid ""
+"This points to the VIAF page for this label. "
+"VIAF is an international project to make a common authority file available "
+"to libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)"
+msgstr ""
+
+#: DB:link_type/description:920
+msgid ""
+"This points to the VIAF page for this place. "
+"VIAF is an international project to make a common authority file available "
+"to libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)"
+msgstr ""
+
+#: DB:link_type/description:1001
+msgid ""
+"This points to the VIAF page for this series. "
+"VIAF is an international project to make a common authority file available "
+"to libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)"
+msgstr ""
+
+#: DB:link_type/description:312
+msgid ""
+"This points to the VIAF page for this work. VIAF "
+"is an international project to make a common authority file available to "
+"libraries across the world. An authority file is similar to an MBID for "
+"libraries. (more information on Wikipedia)\n"
+"
\n"
+"Note: Works in VIAF aren't very detailed. Only add links to "
+"MusicBrainz works if you're absolutely sure it's the same work."
+msgstr ""
+
+#: DB:link_type/description:197
+msgid ""
+"This relationship describes a URL where lyrics for the artist can be found. "
+"Only sites on the whitelist are permitted."
+msgstr ""
+
+#: DB:link_type/description:982
+msgid ""
+"This relationship describes a URL where lyrics for the label (most often as "
+"a publisher) can be found. Only sites on the whitelist are permitted."
+msgstr ""
+
+#: DB:link_type/description:93
+msgid ""
+"This relationship describes a URL where lyrics for the release group can be "
+"found. Only sites on the whitelist are permitted."
+msgstr ""
+
+#: DB:link_type/description:271
+msgid ""
+"This relationship describes a URL where lyrics for the work can be found. "
+"Only sites on the whitelist are permitted."
+msgstr ""
+
+#: DB:link_type/description:929
+msgid ""
+"This relationship indicates an artist credited as the booklet editor for a "
+"release."
+msgstr ""
+
+#: DB:link_type/description:893
+msgid ""
+"This relationship indicates that a person was a teacher at an event (such as "
+"a masterclass)."
+msgstr ""
+
+#: DB:link_type/description:847
+msgid ""
+"This relationship indicates that a person was another's teacher/student."
+msgstr ""
+
+#: DB:link_type/description:869
+msgid ""
+"This relationship indicates the artist is the phonographic "
+"copyright holder for this recording, usually indicated with a ℗ symbol."
+msgstr ""
+
+#: DB:link_type/description:710
+msgid ""
+"This relationship indicates the artist is the phonographic "
+"copyright holder for this release, usually indicated with a ℗ symbol."
+msgstr ""
+
+#: DB:link_type/description:709
+msgid ""
+"This relationship indicates the artist is the copyright holder for this "
+"release, usually indicated with a © symbol."
+msgstr ""
+
+#: DB:link_type/description:1010
+msgid ""
+"This relationship indicates the artist that was the licensor of this release."
+msgstr ""
+
+#: DB:link_type/description:833
+msgid ""
+"This relationship indicates the company that was the licensee of this "
+"release (that is, received a license for it from other company)."
+msgstr ""
+
+#: DB:link_type/description:712
+msgid ""
+"This relationship indicates the company that was the licensor of this "
+"release."
+msgstr ""
+
+#: DB:link_type/description:867
+msgid ""
+"This relationship indicates the label is the phonographic copyright holder "
+"for this recording, usually indicated with a ℗ symbol."
+msgstr ""
+
+#: DB:link_type/description:711
+msgid ""
+"This relationship indicates the label is the phonographic copyright holder "
+"for this release, usually indicated with a ℗ symbol."
+msgstr ""
+
+#: DB:link_type/description:708
+msgid ""
+"This relationship indicates the label is the copyright holder for this "
+"release, usually indicated with a © symbol."
+msgstr ""
+
+#: DB:link_type/description:83
+msgid ""
+"This relationship is deprecated, since it's almost always misused. To "
+"specify that a recording on this release contains samples taken from a "
+"movie, show or game, use the recording - URL relationship. If you don't know "
+"what recording(s) use the samples, please just indicate it in the "
+"annotation.\n"
+"
\n"
+"To say that the release is a soundtrack, please use the IMDB relationship type "
+"for release groups."
+msgstr ""
+
+#: DB:link_type/description:206
+msgid ""
+"This relationship is deprecated. To indicate work publishers, add label-work "
+"relationships. To indicate (P) holders, use the phonographic copyright "
+"relationship."
+msgstr ""
+
+#: DB:link_type/description:751
+msgid ""
+"This relationship is used to link a catalogue work series to a person who "
+"was involved in compiling it."
+msgstr ""
+
+#: DB:link_type/description:750
+msgid ""
+"This relationship is used to link a catalogue work series to a person whose "
+"work it catalogues."
+msgstr ""
+
+#: DB:link_type/description:54
+msgid ""
+"This relationship is used to link a release to the artist responsible for "
+"writing the music and/or the words (lyrics, libretto, etc.), when no more "
+"specific information is available. If possible, the more specific composer, "
+"lyricist and/or librettist types should be used, rather than this "
+"relationship type."
+msgstr ""
+
+#: DB:link_type/description:167
+msgid ""
+"This relationship is used to link a work to the artist responsible for "
+"writing the music and/or the words (lyrics, libretto, etc.), when no more "
+"specific information is available. If possible, the more specific composer, "
+"lyricist and/or librettist types should be used, rather than this "
+"relationship type."
+msgstr ""
+
+#: DB:link_type/description:994
+msgid ""
+"This relationship links a concert residency to the artist(s) "
+"who held the residency."
+msgstr ""
+
+#: DB:link_type/description:1165
+msgid ""
+"This relationship links a carillonneur to the place(s) (most commonly "
+"religious buildings) at which they are the resident carillonneur."
+msgstr ""
+
+#: DB:link_type/description:859
+msgid "This relationship links a concert tour to the artist(s) the tour is by."
+msgstr ""
+
+#: DB:link_type/description:926
+msgid ""
+"This relationship links a group with the institution (esp. educational "
+"institution) they're associated with."
+msgstr ""
+
+#: DB:link_type/description:924
+msgid ""
+"This relationship links a musician to the music school(s) they taught at."
+msgstr ""
+
+#: DB:link_type/description:923
+msgid ""
+"This relationship links a musician to the music school(s) they were educated "
+"at."
+msgstr ""
+
+#: DB:link_type/description:1166
+msgid "This relationship links a person to the music school(s) they directed."
+msgstr ""
+
+#: DB:link_type/description:918
+msgid ""
+"This relationship links an instrument to the company that invented or "
+"designed it."
+msgstr ""
+
+#: DB:link_type/description:896
+msgid ""
+"This relationship links an instrument to the person(s) who invented or "
+"designed it."
+msgstr ""
+
+#: DB:link_type/description:856
+msgid ""
+"This relationship links an organist to the place(s) (most commonly religious "
+"buildings) at which they are the resident organist."
+msgstr ""
+
+#: DB:link_type/description:729
+msgid ""
+"This relationship links the release of a show's episode (for example a "
+"podcast) to the show notes for this episode."
+msgstr ""
+
+#: DB:link_type/description:728
+msgid ""
+"This relationship specifies that an artist is a tribute to another specific artist/"
+"band; that is, it primarily performs covers of that artist. They may also be "
+"referred to as cover bands. Some tribute artists may name themselves, dress, "
+"and/or act similarly to the artists they pay tribute to."
+msgstr ""
+
+#: DB:link_type/description:936
+msgid ""
+"This relationship specifies that an event was held as a tribute/homage to a "
+"specific artist."
+msgstr ""
+
+#: DB:link_type/description:462
+msgid ""
+"This relationship type can be used to link a MusicBrainz place to the "
+"equivalent entry in Myspace."
+msgstr ""
+
+#: DB:link_type/description:116
+msgid ""
+"This relationship type can be used to link a label to the person(s) who "
+"founded it."
+msgstr ""
+
+#: DB:link_type/description:832
+msgid ""
+"This relationship type can be used to link a place (generally a studio or "
+"venue) to the person(s) who founded it."
+msgstr ""
+
+#: DB:link_type/description:627
+msgid "This relationship type can be used to link a place to its blog"
+msgstr ""
+
+#: DB:link_type/description:528
+msgid ""
+"This relationship type can be used to link a place to the equivalent entry "
+"in YouTube. URLs should follow the format http://www.youtube.com/user/<"
+"username>."
+msgstr ""
+
+#: DB:link_type/description:792
+msgid ""
+"This relationship type can be used to link a series to the equivalent entry "
+"in YouTube. URLs should follow the format http://www.youtube.com/user/<"
+"username>"
+msgstr ""
+
+#: DB:link_type/description:791
+msgid ""
+"This relationship type can be used to link an event to the equivalent entry "
+"in YouTube. URLs should follow the format http://www.youtube.com/user/<"
+"username>"
+msgstr ""
+
+#: DB:link_type/description:258
+msgid ""
+"This relationship type describes that the recording contains samples taken "
+"from a movie, show or game, which has an IMDB page at the given URL.\n"
+"
\n"
+"To say that the recording is part of a soundtrack, please use the IMDB relationship type "
+"for release groups."
+msgstr ""
+
+#: DB:link_type/description:236
+msgid ""
+"This relationship type is deprecated! Different remasters should "
+"be merged."
+msgstr ""
+
+#: DB:link_type/description:238
+msgid ""
+"This relationship type is deprecated! If two recordings are "
+"identical, please merge them."
+msgstr ""
+
+#: DB:link_type/description:136
+msgid ""
+"This relationship type is deprecated! Please add mastering "
+"engineers at the release level."
+msgstr ""
+
+#: DB:link_type/description:1
+msgid ""
+"This relationship type is deprecated! Please enter a "
+"release with multiple discs as a single release containing multiple discs."
+msgstr ""
+
+#: DB:link_type/description:78
+msgid ""
+"This relationship type is deprecated! Please upload covers "
+"on the cover art tab for the release and/or add an ASIN relationship.\n"
+"\n"
+"Note about CD Baby: Many CD Baby releases are also available (usually with "
+"bigger covers) on Amazon.com."
+msgstr ""
+
+#: DB:link_type/description:15
+msgid ""
+"This relationship type is used to indicate that a release group is a cover "
+"version of another release group, that is, when an artist performs a new "
+"rendition of another artist's album.
\n"
+"For individual songs, see the recording-work performance relationship type."
+msgstr ""
+
+#: DB:link_type/description:1005
+msgid ""
+"This relationship type is used to link a label to a site where music can be "
+"legally streamed for a subscription fee, such as Apple Music.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:997
+msgid ""
+"This relationship type is used to link a label to a site where music can be "
+"legally streamed for free, such as Spotify."
+msgstr ""
+
+#: DB:link_type/description:224
+msgid "This relationship type is used to link a label to its blog."
+msgstr ""
+
+#: DB:link_type/description:979
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:268
+msgid ""
+"This relationship type is used to link a recording to a site where it can be "
+"legally streamed for free, such as Spotify for audio tracks or YouTube for "
+"videos."
+msgstr ""
+
+#: DB:link_type/description:287
+msgid ""
+"This relationship type is used to link a release group to an official "
+"website created specifically for the release group."
+msgstr ""
+
+#: DB:link_type/description:980
+msgid ""
+"This relationship type is used to link a release to a site where the tracks "
+"can be legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:85
+msgid ""
+"This relationship type is used to link a release to a site where the tracks "
+"can be legally streamed for free, such as Spotify."
+msgstr ""
+
+#: DB:link_type/description:978
+msgid ""
+"This relationship type is used to link an artist to a site where music can "
+"be legally streamed for a subscription fee, such as Tidal.\n"
+"\n"
+"If the site allows free streaming, use \"free streaming\" instead."
+msgstr ""
+
+#: DB:link_type/description:194
+msgid ""
+"This relationship type is used to link an artist to a site where music can "
+"be legally streamed for free, such as Spotify."
+msgstr ""
+
+#: DB:link_type/description:199
+msgid "This relationship type is used to link an artist to their blog."
+msgstr ""
+
+#: DB:link_type/description:175
+msgid ""
+"This relationship type is used to link to a page where the artist's releases "
+"can be purchased for mail order."
+msgstr ""
+
+#: DB:link_type/description:960
+msgid ""
+"This relationship type is used to link to a page where the label's releases "
+"can be purchased for mail order."
+msgstr ""
+
+#: DB:link_type/description:79
+msgid ""
+"This relationship type is used to link to a page where the release can be "
+"purchased for mail order."
+msgstr ""
+
+#: DB:link_type/description:274
+msgid ""
+"This relationship type is used to link to a page where the score / sheet "
+"music for this work can be legally downloaded for free."
+msgstr ""
+
+#: DB:link_type/description:912
+msgid ""
+"This relationship type is used to link to a page where the score / sheet "
+"music for this work can be legally purchased for download."
+msgstr ""
+
+#: DB:link_type/description:913
+msgid ""
+"This relationship type is used to link to a page where the score / sheet "
+"music for this work can be legally purchased for mail order."
+msgstr ""
+
+#: DB:link_type/description:215
+msgid "This relationship type links a label to its Myspace page."
+msgstr ""
+
+#: DB:link_type/description:210
+msgid ""
+"This relationship type links a label to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:838
+msgid ""
+"This relationship type links a label to its corresponding page at Last.fm"
+msgstr ""
+
+#: DB:link_type/description:1013
+msgid ""
+"This relationship type links a place (usually a studio) to its corresponding "
+"page at VGMdb. VGMdb is a community "
+"project dedicated to cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:861
+msgid ""
+"This relationship type links a place to its corresponding page at "
+"Bandsintown."
+msgstr ""
+
+#: DB:link_type/description:837
+msgid ""
+"This relationship type links a place to its corresponding page at Last.fm"
+msgstr ""
+
+#: DB:link_type/description:787
+msgid ""
+"This relationship type links a place to its corresponding page at Songkick."
+msgstr ""
+
+#: DB:link_type/description:817
+msgid ""
+"This relationship type links a place to its corresponding page at setlist.fm"
+msgstr ""
+
+#: DB:link_type/description:86
+msgid ""
+"This relationship type links a release to its corresponding page VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:938
+msgid ""
+"This relationship type links a series (like a festival) to its corresponding "
+"page at setlist.fm"
+msgstr ""
+
+#: DB:link_type/description:1192
+msgid ""
+"This relationship type links an artist (usually a visual artist) to their "
+"art gallery page(s), such as DeviantArt or pixiv."
+msgstr ""
+
+#: DB:link_type/description:191
+msgid ""
+"This relationship type links an artist to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:862
+msgid ""
+"This relationship type links an artist to its corresponding page at "
+"Bandsintown."
+msgstr ""
+
+#: DB:link_type/description:840
+msgid ""
+"This relationship type links an artist to its corresponding page at Last.fm"
+msgstr ""
+
+#: DB:link_type/description:785
+msgid ""
+"This relationship type links an artist to its corresponding page at Songkick."
+msgstr ""
+
+#: DB:link_type/description:816
+msgid ""
+"This relationship type links an artist to its corresponding page at setlist."
+"fm"
+msgstr ""
+
+#: DB:link_type/description:189
+msgid "This relationship type links an artist to their Myspace page."
+msgstr ""
+
+#: DB:link_type/description:185
+msgid ""
+"This relationship type links an artist to their online community page(s). An "
+"online community is a group where any member can comment and contribute "
+"content. The artist may or may not be a member of the group. Examples "
+"include forums, LiveJournal communities and groups on Facebook, Last.fm and "
+"Flickr."
+msgstr ""
+
+#: DB:link_type/description:808
+msgid ""
+"This relationship type links an event to a promotional poster for the event."
+msgstr ""
+
+#: DB:link_type/description:788
+msgid ""
+"This relationship type links an event to its corresponding page at VGMdb. VGMdb is a community project dedicated "
+"to cataloguing the music of video games and anime."
+msgstr ""
+
+#: DB:link_type/description:860
+msgid ""
+"This relationship type links an event to its corresponding page at "
+"Bandsintown."
+msgstr ""
+
+#: DB:link_type/description:839
+msgid ""
+"This relationship type links an event to its corresponding page at Last.fm"
+msgstr ""
+
+#: DB:link_type/description:786
+msgid ""
+"This relationship type links an event to its corresponding page at Songkick."
+msgstr ""
+
+#: DB:link_type/description:811
+msgid ""
+"This relationship type links an event to its corresponding page at setlist.fm"
+msgstr ""
+
+#: DB:link_type/description:1088
+msgid "This relationship type links genres to the areas they originate from."
+msgstr ""
+
+#: DB:link_type/description:1090
+msgid ""
+"This relationship type links instruments to genres they are commonly used in."
+msgstr ""
+
+#: DB:link_type/description:752
+msgid ""
+"This relationship type links instruments to the areas they originate from."
+msgstr ""
+
+#: DB:link_attribute_type/description:596
+msgid ""
+"This should be used when an artist is credited in liner notes or a similar "
+"source as performing a solo part."
+msgstr ""
+
+#: DB:link_attribute_type/description:1150
+msgid ""
+"This specifies the credited task(s) for a relationship that can be credited "
+"in many different ways, such as \"producer\", or one that is otherwise "
+"generic, such as \"miscellaneous support\"."
+msgstr ""
+
+#: DB:link_attribute_type/description:568
+msgid "This specifies the medium the relationship applies to."
+msgstr ""
+
+#: DB:link_attribute_type/description:617
+msgid ""
+"This title indicates that a conductor has at least partially retired, and no "
+"longer plays an active role with the group."
+msgstr ""
+
+#: DB:link_attribute_type/description:526
+msgid ""
+"This typically indicates someone who is either a first-timer, or less "
+"experienced, and who is working under the direction of someone who is more "
+"experienced."
+msgstr ""
+
+#: DB:link_attribute_type/description:527
+msgid ""
+"This typically indicates someone who is less experienced and who is working "
+"under the direction of someone who is more experienced."
+msgstr ""
+
+#: DB:link_attribute_type/description:477
+msgid ""
+"Transliterated track listings don't change the language, just the script or "
+"spelling."
+msgstr ""
+
+#: DB:link_attribute_type/description:834
+msgid ""
+"Treble or boy soprano is a young male singer with an unchanged voice in the "
+"soprano range"
+msgstr ""
+
+#: DB:link_attribute_type/description:1032
+msgid ""
+"Use this for operas and similar works that are separated in numbers, to specify what "
+"parts are numbers (as opposed to spoken dialog or other non-numbered parts)."
+msgstr ""
+
+#: DB:link_attribute_type/description:424
+msgid ""
+"Use this only for cases when someone is credited as co-[role] (co-producer, "
+"co-engineer, etc.) - which generally has a specific meaning that depends on "
+"the specific activity but is different from just \"there were several people "
+"collaborating\"."
+msgstr ""
+
+#: DB:link_type/description:949
+msgid ""
+"Use this relationship for credits like \"Recording was arranged by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:946
+msgid ""
+"Use this relationship for credits like \"Recording was mixed by X for Label\""
+msgstr ""
+
+#: DB:link_type/description:950
+msgid ""
+"Use this relationship for credits like \"Recording was produced by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:1178
+msgid ""
+"Use this relationship for credits like \"Recording was remixed by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:948
+msgid ""
+"Use this relationship for credits like \"Release was arranged by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:952
+msgid ""
+"Use this relationship for credits like \"Release was manufactured by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:1183
+msgid ""
+"Use this relationship for credits like \"Release was mastered by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_type/description:947
+msgid ""
+"Use this relationship for credits like \"Release was mixed by X for Label\""
+msgstr ""
+
+#: DB:link_type/description:951
+msgid ""
+"Use this relationship for credits like \"Release was produced by X for "
+"Label\""
+msgstr ""
+
+#: DB:link_attribute_type/description:1353
+msgid ""
+"Use this to indicate that the mastering relationship is specifically for a "
+"pre-master"
+msgstr ""
+
+#: DB:link_attribute_type/description:952
+msgid ""
+"Use this to indicate that the mastering relationship is specifically for a "
+"remaster."
+msgstr ""
+
+#: DB:link_attribute_type/description:1033
+msgid ""
+"Use this to indicate the parent work is not intended to be performed as a "
+"whole, but is just a grouping of pieces or works that can be performed "
+"individually (collections of songs, several sonatas or concertos published "
+"as a set, books of piano pieces, etc.)"
+msgstr ""
+
+#: DB:link_attribute_type/description:1030
+msgid ""
+"Use this to mark acts of an opera (as opposed to other parts that are not "
+"acts)"
+msgstr ""
+
+#: DB:link_attribute_type/description:1079
+msgid ""
+"Use this to mark that a tour was for the anniversary (rather than the "
+"launch) of a release group."
+msgstr ""
+
+#: DB:link_attribute_type/description:1031
+msgid ""
+"Use this when the parent work consists of several parts which are generally "
+"meant to be performed one after another in a particular order (rather than "
+"in any order, or multiple times, or in arbitrary selections rather than as a "
+"whole)."
+msgstr ""
+
+#: DB:link_type/link_phrase:86 DB:link_type/link_phrase:191
+#: DB:link_type/link_phrase:210 DB:link_type/link_phrase:788
+#: DB:link_type/link_phrase:1013 DB:link_type/reverse_link_phrase:992
+msgid "VGMdb"
+msgstr ""
+
+#: DB:link_type/link_phrase:992 DB:link_type/reverse_link_phrase:86
+#: DB:link_type/reverse_link_phrase:191 DB:link_type/reverse_link_phrase:210
+#: DB:link_type/reverse_link_phrase:788 DB:link_type/reverse_link_phrase:1013
+msgid "VGMdb page for"
+msgstr ""
+
+#: DB:link_type/name:311 DB:link_type/name:310 DB:link_type/name:312
+#: DB:link_type/name:920 DB:link_type/name:1001
+msgid "VIAF"
+msgstr ""
+
+#: DB:link_type/link_phrase:311 DB:link_type/link_phrase:310
+#: DB:link_type/link_phrase:920 DB:link_type/link_phrase:1001
+#: DB:link_type/reverse_link_phrase:312
+msgid "VIAF ID"
+msgstr ""
+
+#: DB:link_type/link_phrase:312 DB:link_type/reverse_link_phrase:311
+#: DB:link_type/reverse_link_phrase:310 DB:link_type/reverse_link_phrase:920
+#: DB:link_type/reverse_link_phrase:1001
+msgid "VIAF ID for"
+msgstr ""
+
+#: DB:link_type/name:1163 DB:link_type/reverse_link_phrase:1163
+msgid "VJ"
+msgstr ""
+
+#: DB:link_type/link_phrase:1163
+msgid "VJ at"
+msgstr ""
+
+#: DB:link_attribute_type/description:1151
+msgid "Whistling (with mouth, not a whistle)"
+msgstr ""
+
+#: DB:link_type/link_phrase:1087 DB:link_type/link_phrase:353
+#: DB:link_type/link_phrase:749 DB:link_type/link_phrase:594
+#: DB:link_type/link_phrase:354 DB:link_type/link_phrase:790
+#: DB:link_type/link_phrase:352 DB:link_type/link_phrase:733
+#: DB:link_type/link_phrase:358 DB:link_type/reverse_link_phrase:351
+msgid "Wikidata"
+msgstr ""
+
+#: DB:link_type/link_phrase:351 DB:link_type/reverse_link_phrase:1087
+#: DB:link_type/reverse_link_phrase:353 DB:link_type/reverse_link_phrase:749
+#: DB:link_type/reverse_link_phrase:594 DB:link_type/reverse_link_phrase:354
+#: DB:link_type/reverse_link_phrase:790 DB:link_type/reverse_link_phrase:352
+#: DB:link_type/reverse_link_phrase:733 DB:link_type/reverse_link_phrase:358
+msgid "Wikidata page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:179 DB:link_type/link_phrase:595
+#: DB:link_type/link_phrase:355 DB:link_type/link_phrase:744
+#: DB:link_type/link_phrase:216 DB:link_type/link_phrase:731
+#: DB:link_type/link_phrase:89 DB:link_type/link_phrase:789
+#: DB:link_type/reverse_link_phrase:279
+msgid "Wikipedia"
+msgstr ""
+
+#: DB:link_type/link_phrase:279 DB:link_type/reverse_link_phrase:179
+#: DB:link_type/reverse_link_phrase:595 DB:link_type/reverse_link_phrase:355
+#: DB:link_type/reverse_link_phrase:744 DB:link_type/reverse_link_phrase:216
+#: DB:link_type/reverse_link_phrase:731 DB:link_type/reverse_link_phrase:89
+#: DB:link_type/reverse_link_phrase:789
+msgid "Wikipedia page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1080
+msgid "YouTube Music"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1080
+msgid "YouTube Music channel for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:791 DB:link_type/reverse_link_phrase:792
+#: DB:link_type/reverse_link_phrase:193 DB:link_type/reverse_link_phrase:225
+#: DB:link_type/reverse_link_phrase:528
+msgid "YouTube channel for"
+msgstr ""
+
+#: DB:link_type/link_phrase:791 DB:link_type/link_phrase:792
+#: DB:link_type/link_phrase:193 DB:link_type/link_phrase:225
+#: DB:link_type/link_phrase:528
+msgid "YouTube channels"
+msgstr ""
+
+#: DB:link_attribute_type/name:1345
+msgid "accompanying"
+msgstr ""
+
+#: DB:link_attribute_type/name:1030
+msgid "act"
+msgstr ""
+
+#: DB:link_attribute_type/name:1
+msgid "additional"
+msgstr ""
+
+#: DB:link_type/name:755 DB:link_type/name:284 DB:link_type/name:283
+#: DB:link_type/name:285 DB:link_type/name:286 DB:link_type/name:1093
+msgid "allmusic"
+msgstr ""
+
+#: DB:link_attribute_type/description:5 DB:link_attribute_type/name:5
+msgid "alto vocals"
+msgstr ""
+
+#: DB:link_type/name:77
+msgid "amazon asin"
+msgstr ""
+
+#: DB:link_attribute_type/name:1080
+msgid "amount"
+msgstr ""
+
+#: DB:link_attribute_type/name:1079
+msgid "anniversary"
+msgstr ""
+
+#: DB:link_type/link_phrase:357 DB:link_type/name:357
+msgid "anthem"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:357
+msgid "anthem of"
+msgstr ""
+
+#: DB:link_type/link_phrase:858 DB:link_type/long_link_phrase:858
+msgid "appears on video"
+msgstr ""
+
+#: DB:link_type/name:1131 DB:link_type/name:1130
+msgid "apple music"
+msgstr ""
+
+#: DB:link_type/name:866 DB:link_type/name:865 DB:link_type/name:886
+#: DB:link_type/reverse_link_phrase:866 DB:link_type/reverse_link_phrase:865
+msgid "arranged at"
+msgstr ""
+
+#: DB:link_type/name:948 DB:link_type/name:949
+#: DB:link_type/reverse_link_phrase:948 DB:link_type/reverse_link_phrase:949
+msgid "arranged for"
+msgstr ""
+
+#: DB:link_type/name:864 DB:link_type/name:863 DB:link_type/name:885
+#: DB:link_type/reverse_link_phrase:864 DB:link_type/reverse_link_phrase:863
+msgid "arranged in"
+msgstr ""
+
+#: DB:link_type/name:350
+msgid "arrangement"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:350
+msgid "arrangement of"
+msgstr ""
+
+#: DB:link_type/link_phrase:350
+msgid "arrangements"
+msgstr ""
+
+#: DB:link_type/name:295 DB:link_type/name:297 DB:link_type/name:293
+msgid "arranger"
+msgstr ""
+
+#: DB:link_attribute_type/name:1347
+msgid "arranging"
+msgstr ""
+
+#: DB:link_type/link_phrase:864 DB:link_type/link_phrase:863
+#: DB:link_type/link_phrase:866 DB:link_type/link_phrase:865
+msgid "arranging location for"
+msgstr ""
+
+#: DB:link_type/name:137 DB:link_type/name:1174 DB:link_type/name:18
+msgid "art direction"
+msgstr ""
+
+#: DB:link_type/link_phrase:1192
+msgid "art galleries"
+msgstr ""
+
+#: DB:link_type/name:1192
+msgid "art gallery"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1192
+msgid "art gallery for"
+msgstr ""
+
+#: DB:link_type/link_phrase:135 DB:link_type/link_phrase:62
+#: DB:link_type/reverse_link_phrase:135 DB:link_type/reverse_link_phrase:62
+msgid "artist & repertoire support"
+msgstr ""
+
+#: DB:link_attribute_type/name:1355
+msgid "artist diploma"
+msgstr ""
+
+#: DB:link_type/name:1079
+msgid "artist rename"
+msgstr ""
+
+#: DB:link_type/name:965 DB:link_type/reverse_link_phrase:965
+msgid "artistic director"
+msgstr ""
+
+#: DB:link_type/link_phrase:965
+msgid "artistic director for"
+msgstr ""
+
+#: DB:link_type/name:135 DB:link_type/name:62
+msgid "artists and repertoire"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1081
+msgid "artists and repertoire persons"
+msgstr ""
+
+#: DB:link_type/link_phrase:1081 DB:link_type/name:1081
+msgid "artists and repertoire position"
+msgstr ""
+
+#: DB:link_type/name:993 DB:link_type/name:1170
+msgid "artwork"
+msgstr ""
+
+#: DB:link_attribute_type/name:526
+msgid "assistant"
+msgstr ""
+
+#: DB:link_attribute_type/name:527
+msgid "associate"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:926
+msgid "associated groups"
+msgstr ""
+
+#: DB:link_type/name:1090
+msgid "associated instrument"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:11
+msgid "associated singles/EPs"
+msgstr ""
+
+#: DB:link_type/link_phrase:926 DB:link_type/name:926
+msgid "associated with"
+msgstr ""
+
+#: DB:link_type/name:140 DB:link_type/name:31
+msgid "audio"
+msgstr ""
+
+#: DB:link_type/name:1186 DB:link_type/name:1187
+msgid "audio director"
+msgstr ""
+
+#: DB:link_type/name:795 DB:link_type/reverse_link_phrase:795
+msgid "available at"
+msgstr ""
+
+#: DB:link_type/link_phrase:795
+msgid "available releases"
+msgstr ""
+
+#: DB:link_type/link_phrase:1094 DB:link_type/name:1094
+msgid "award ceremony"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1094
+msgid "award ceremony for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1137
+msgid "bachelor’s degree"
+msgstr ""
+
+#: DB:link_attribute_type/description:12 DB:link_attribute_type/name:12
+msgid "background vocals"
+msgstr ""
+
+#: DB:link_type/name:727 DB:link_type/name:726
+msgid "balance"
+msgstr ""
+
+#: DB:link_type/name:1092 DB:link_type/name:718 DB:link_type/name:719
+msgid "bandcamp"
+msgstr ""
+
+#: DB:link_type/name:861 DB:link_type/name:862 DB:link_type/name:860
+msgid "bandsintown"
+msgstr ""
+
+#: DB:link_attribute_type/description:6 DB:link_attribute_type/name:6
+msgid "baritone vocals"
+msgstr ""
+
+#: DB:link_type/name:314
+msgid "based on"
+msgstr ""
+
+#: DB:link_attribute_type/description:7 DB:link_attribute_type/name:7
+msgid "bass vocals"
+msgstr ""
+
+#: DB:link_attribute_type/description:231 DB:link_attribute_type/name:231
+msgid "bass-baritone vocals"
+msgstr ""
+
+#: DB:link_type/link_phrase:182
+msgid "biographies"
+msgstr ""
+
+#: DB:link_type/name:182
+msgid "biography"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:182
+msgid "biography of"
+msgstr ""
+
+#: DB:link_type/name:224 DB:link_type/name:199 DB:link_type/name:627
+msgid "blog"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:224 DB:link_type/reverse_link_phrase:199
+#: DB:link_type/reverse_link_phrase:627
+msgid "blog of"
+msgstr ""
+
+#: DB:link_type/link_phrase:224 DB:link_type/link_phrase:199
+#: DB:link_type/link_phrase:627
+msgid "blogs"
+msgstr ""
+
+#: DB:link_attribute_type/name:516
+msgid "bonus"
+msgstr ""
+
+#: DB:link_type/link_phrase:23 DB:link_type/link_phrase:134
+#: DB:link_type/name:23 DB:link_type/name:134
+#: DB:link_type/reverse_link_phrase:23 DB:link_type/reverse_link_phrase:134
+msgid "booking"
+msgstr ""
+
+#: DB:link_type/name:929 DB:link_type/reverse_link_phrase:929
+msgid "booklet editor"
+msgstr ""
+
+#: DB:link_type/link_phrase:929
+msgid "booklet editor for"
+msgstr ""
+
+#: DB:link_type/link_phrase:66 DB:link_type/link_phrase:205
+#: DB:link_type/name:205 DB:link_type/reverse_link_phrase:205
+#: DB:link_type/long_link_phrase:205
+msgid "business association"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:66
+msgid "business association with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:75 DB:link_type/long_link_phrase:255
+msgid "can be downloaded for free at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:254 DB:link_type/long_link_phrase:74
+msgid "can be purchased for download at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:79
+msgid "can be purchased for mail-order at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:978 DB:link_type/long_link_phrase:980
+#: DB:link_type/long_link_phrase:1005 DB:link_type/long_link_phrase:979
+msgid "can be streamed at"
+msgstr ""
+
+#: DB:link_attribute_type/name:921
+msgid "cancelled"
+msgstr ""
+
+#: DB:link_type/name:1165
+msgid "carillonneur"
+msgstr ""
+
+#: DB:link_type/link_phrase:212 DB:link_type/reverse_link_phrase:212
+msgid "catalog of records"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:201
+msgid "catalog reissued by"
+msgstr ""
+
+#: DB:link_type/name:212
+msgid "catalog site"
+msgstr ""
+
+#: DB:link_type/link_phrase:751 DB:link_type/name:751
+#: DB:link_type/long_link_phrase:751
+msgid "catalogued"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:751
+msgid "cataloguer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:750
+msgid "catalogues work of"
+msgstr ""
+
+#: DB:link_attribute_type/name:1223
+msgid "chamber music"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:735
+msgid "child of"
+msgstr ""
+
+#: DB:link_type/link_phrase:735 DB:link_type/name:735
+msgid "children"
+msgstr ""
+
+#: DB:link_attribute_type/description:13 DB:link_attribute_type/name:13
+msgid "choir vocals"
+msgstr ""
+
+#: DB:link_attribute_type/name:1224
+msgid "choral conducting"
+msgstr ""
+
+#: DB:link_type/name:152 DB:link_type/name:53
+msgid "chorus master"
+msgstr ""
+
+#: DB:link_attribute_type/name:1204
+msgid "classical music"
+msgstr ""
+
+#: DB:link_attribute_type/name:424
+msgid "co"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:102
+msgid "collaborated {minor:minorly} {additional:additionally} on"
+msgstr ""
+
+#: DB:link_type/name:102
+msgid "collaboration"
+msgstr ""
+
+#: DB:link_type/link_phrase:1176 DB:link_type/link_phrase:1177
+#: DB:link_type/name:1176 DB:link_type/name:1177
+msgid "commentary"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1176 DB:link_type/reverse_link_phrase:1177
+msgid "commentary for"
+msgstr ""
+
+#: DB:link_type/link_phrase:890 DB:link_type/link_phrase:889
+#: DB:link_type/link_phrase:892 DB:link_type/link_phrase:891
+#: DB:link_type/name:890 DB:link_type/name:889 DB:link_type/name:892
+#: DB:link_type/name:891 DB:link_type/long_link_phrase:890
+#: DB:link_type/long_link_phrase:889 DB:link_type/long_link_phrase:892
+#: DB:link_type/long_link_phrase:891
+msgid "commissioned"
+msgstr ""
+
+#: DB:link_type/name:228
+msgid "compilation"
+msgstr ""
+
+#: DB:link_type/link_phrase:228
+msgid "compilation of"
+msgstr ""
+
+#: DB:link_type/link_phrase:48 DB:link_type/link_phrase:147
+#: DB:link_type/long_link_phrase:48 DB:link_type/long_link_phrase:147
+msgid "compiled"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:228
+msgid "compiled in"
+msgstr ""
+
+#: DB:link_type/name:48 DB:link_type/name:147
+#: DB:link_type/reverse_link_phrase:48 DB:link_type/reverse_link_phrase:147
+msgid "compiler"
+msgstr ""
+
+#: DB:link_type/name:876
+msgid "composed at"
+msgstr ""
+
+#: DB:link_type/name:875
+msgid "composed in"
+msgstr ""
+
+#: DB:link_type/name:55 DB:link_type/name:168
+msgid "composer"
+msgstr ""
+
+#: DB:link_type/name:937 DB:link_type/name:855
+msgid "composer-in-residence"
+msgstr ""
+
+#: DB:link_type/link_phrase:937 DB:link_type/link_phrase:855
+msgid "composer-in-residence at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:937 DB:link_type/reverse_link_phrase:855
+msgid "composers-in-residence"
+msgstr ""
+
+#: DB:link_attribute_type/name:1126 DB:link_type/link_phrase:58
+#: DB:link_type/link_phrase:170 DB:link_type/name:58 DB:link_type/name:170
+#: DB:link_type/reverse_link_phrase:58 DB:link_type/reverse_link_phrase:170
+#: DB:link_type/long_link_phrase:58 DB:link_type/long_link_phrase:170
+msgid "composition"
+msgstr ""
+
+#: DB:link_type/name:760 DB:link_type/name:759
+msgid "concertmaster"
+msgstr ""
+
+#: DB:link_attribute_type/name:1130
+msgid "conducting"
+msgstr ""
+
+#: DB:link_type/name:806 DB:link_type/name:46 DB:link_type/name:151
+msgid "conductor"
+msgstr ""
+
+#: DB:link_type/link_phrase:806
+msgid "conductor at"
+msgstr ""
+
+#: DB:link_type/name:305
+msgid "conductor position"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:806
+msgid "conductors"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:925
+msgid "connected with"
+msgstr ""
+
+#: DB:link_type/link_phrase:739
+msgid "consists of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1008
+msgid "contains music recorded during"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:83 DB:link_type/long_link_phrase:258
+msgid "contains samples from the IMDb entry at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:154 DB:link_type/reverse_link_phrase:49
+msgid "contains {additional} samples by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:231
+msgid "contains {additional} samples from"
+msgstr ""
+
+#: DB:link_attribute_type/name:1227
+msgid "contemporary music"
+msgstr ""
+
+#: DB:link_type/link_phrase:119 DB:link_type/name:119
+#: DB:link_type/reverse_link_phrase:119 DB:link_type/long_link_phrase:119
+msgid "contract"
+msgstr ""
+
+#: DB:link_type/link_phrase:948 DB:link_type/link_phrase:949
+msgid "contracted arrangement for"
+msgstr ""
+
+#: DB:link_type/link_phrase:952
+msgid "contracted manufacturing for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1183
+msgid "contracted mastered for"
+msgstr ""
+
+#: DB:link_type/link_phrase:946 DB:link_type/link_phrase:947
+msgid "contracted mixing for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1178
+msgid "contracted remixing for"
+msgstr ""
+
+#: DB:link_type/link_phrase:945 DB:link_type/link_phrase:944
+#: DB:link_type/name:945 DB:link_type/name:944
+#: DB:link_type/reverse_link_phrase:945 DB:link_type/reverse_link_phrase:944
+#: DB:link_type/long_link_phrase:945 DB:link_type/long_link_phrase:944
+msgid "contracted tasks"
+msgstr ""
+
+#: DB:link_type/link_phrase:951 DB:link_type/link_phrase:950
+msgid "contracted {co:co-}{executive:executive }production for"
+msgstr ""
+
+#: DB:link_attribute_type/description:230 DB:link_attribute_type/name:230
+msgid "contralto vocals"
+msgstr ""
+
+#: DB:link_type/name:708 DB:link_type/name:709
+msgid "copyright"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:708 DB:link_type/reverse_link_phrase:709
+msgid "copyrighted (©) by"
+msgstr ""
+
+#: DB:link_attribute_type/name:1349
+msgid "counterpoint"
+msgstr ""
+
+#: DB:link_attribute_type/description:8 DB:link_attribute_type/name:8
+msgid "countertenor vocals"
+msgstr ""
+
+#: DB:link_attribute_type/name:567 DB:link_type/name:15
+msgid "cover"
+msgstr ""
+
+#: DB:link_type/link_phrase:78
+msgid "cover art"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:78
+msgid "cover art for"
+msgstr ""
+
+#: DB:link_type/name:78
+msgid "cover art link"
+msgstr ""
+
+#: DB:link_type/name:12 DB:link_type/name:4 DB:link_type/long_link_phrase:12
+msgid "covers and versions"
+msgstr ""
+
+#: DB:link_type/link_phrase:12 DB:link_type/link_phrase:4
+#: DB:link_type/reverse_link_phrase:12 DB:link_type/reverse_link_phrase:4
+#: DB:link_type/long_link_phrase:4
+msgid "covers or other versions"
+msgstr ""
+
+#: DB:link_type/name:63 DB:link_type/name:146
+msgid "creative direction"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:115
+msgid "creative persons"
+msgstr ""
+
+#: DB:link_type/link_phrase:115 DB:link_type/name:115
+msgid "creative position"
+msgstr ""
+
+#: DB:link_type/name:904 DB:link_type/name:909 DB:link_type/name:903
+#: DB:link_type/name:905 DB:link_type/name:906 DB:link_type/name:902
+#: DB:link_type/name:907 DB:link_type/name:908 DB:link_type/name:910
+msgid "crowdfunding"
+msgstr ""
+
+#: DB:link_type/link_phrase:904 DB:link_type/link_phrase:909
+#: DB:link_type/link_phrase:903 DB:link_type/link_phrase:905
+#: DB:link_type/link_phrase:906 DB:link_type/link_phrase:902
+#: DB:link_type/link_phrase:907 DB:link_type/link_phrase:910
+#: DB:link_type/reverse_link_phrase:908
+msgid "crowdfunding page"
+msgstr ""
+
+#: DB:link_type/link_phrase:908 DB:link_type/reverse_link_phrase:904
+#: DB:link_type/reverse_link_phrase:909 DB:link_type/reverse_link_phrase:903
+#: DB:link_type/reverse_link_phrase:905 DB:link_type/reverse_link_phrase:906
+#: DB:link_type/reverse_link_phrase:902 DB:link_type/reverse_link_phrase:907
+#: DB:link_type/reverse_link_phrase:910
+msgid "crowdfunding page for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:969
+msgid "cut the lacquer for"
+msgstr ""
+
+#: DB:link_type/name:868 DB:link_type/reverse_link_phrase:983
+#: DB:link_type/reverse_link_phrase:846 DB:link_type/reverse_link_phrase:922
+#: DB:link_type/reverse_link_phrase:914 DB:link_type/reverse_link_phrase:868
+msgid "dedicated to"
+msgstr ""
+
+#: DB:link_type/link_phrase:983 DB:link_type/link_phrase:846
+#: DB:link_type/link_phrase:922 DB:link_type/link_phrase:914
+msgid "dedicated works"
+msgstr ""
+
+#: DB:link_type/name:983 DB:link_type/name:846 DB:link_type/name:922
+#: DB:link_type/name:914
+msgid "dedication"
+msgstr ""
+
+#: DB:link_type/link_phrase:868
+msgid "dedications"
+msgstr ""
+
+#: DB:link_type/name:737
+msgid "derivation"
+msgstr ""
+
+#: DB:link_type/link_phrase:737
+msgid "derivations"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:737
+msgid "derived from"
+msgstr ""
+
+#: DB:link_type/name:928 DB:link_type/name:1171
+msgid "design"
+msgstr ""
+
+#: DB:link_type/name:19 DB:link_type/name:130
+msgid "design/illustration"
+msgstr ""
+
+#: DB:link_type/link_phrase:88 DB:link_type/link_phrase:171
+#: DB:link_type/name:88 DB:link_type/name:171
+#: DB:link_type/reverse_link_phrase:88 DB:link_type/reverse_link_phrase:171
+#: DB:link_type/long_link_phrase:88 DB:link_type/long_link_phrase:171
+msgid "discography"
+msgstr ""
+
+#: DB:link_type/link_phrase:288 DB:link_type/link_phrase:1169
+#: DB:link_type/name:288 DB:link_type/name:1169
+msgid "discography entry"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:288 DB:link_type/reverse_link_phrase:1169
+msgid "discography entry for"
+msgstr ""
+
+#: DB:link_type/name:184
+msgid "discography page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:184
+msgid "discography page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:184
+msgid "discography pages"
+msgstr ""
+
+#: DB:link_type/name:1089 DB:link_type/name:180 DB:link_type/name:76
+#: DB:link_type/name:217 DB:link_type/name:90 DB:link_type/name:747
+#: DB:link_type/name:705 DB:link_type/name:971
+msgid "discogs"
+msgstr ""
+
+#: DB:link_type/link_phrase:361 DB:link_type/name:361
+#: DB:link_type/long_link_phrase:361
+msgid "distributed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:361
+msgid "distributed by"
+msgstr ""
+
+#: DB:link_type/link_phrase:203
+msgid "distributor for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:203
+msgid "distributors"
+msgstr ""
+
+#: DB:link_attribute_type/name:1139
+msgid "doctoral degree"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:105
+msgid "does/did {instrument} support for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:107
+msgid "does/did {vocal:%|vocals} support for"
+msgstr ""
+
+#: DB:link_type/link_phrase:75 DB:link_type/link_phrase:255
+#: DB:link_type/name:958 DB:link_type/name:75 DB:link_type/name:177
+#: DB:link_type/name:255 DB:link_type/name:274
+msgid "download for free"
+msgstr ""
+
+#: DB:link_type/link_phrase:958 DB:link_type/link_phrase:177
+msgid "download music for free"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:959 DB:link_type/reverse_link_phrase:254
+#: DB:link_type/reverse_link_phrase:74 DB:link_type/reverse_link_phrase:176
+msgid "download purchase page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:912
+msgid "download purchase page for the score of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:274
+msgid "download score for free"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:238
+msgid "earliest release"
+msgstr ""
+
+#: DB:link_attribute_type/name:1131
+msgid "early music"
+msgstr ""
+
+#: DB:link_type/name:309
+msgid "edit"
+msgstr ""
+
+#: DB:link_type/link_phrase:309
+msgid "edit of"
+msgstr ""
+
+#: DB:link_type/name:819 DB:link_type/name:820
+msgid "edited at"
+msgstr ""
+
+#: DB:link_type/name:822 DB:link_type/name:821
+msgid "edited in"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:929
+msgid "edited the booklet of"
+msgstr ""
+
+#: DB:link_type/name:144 DB:link_type/name:38
+msgid "editor"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:309
+msgid "edits"
+msgstr ""
+
+#: DB:link_type/link_phrase:925 DB:link_type/name:925
+msgid "educational institution connection"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:924
+msgid "educators"
+msgstr ""
+
+#: DB:link_attribute_type/name:1352
+msgid "electroacoustic music"
+msgstr ""
+
+#: DB:link_attribute_type/name:1127
+msgid "electronic music"
+msgstr ""
+
+#: DB:link_attribute_type/name:617
+msgid "emeritus"
+msgstr ""
+
+#: DB:link_type/name:1084 DB:link_type/name:28 DB:link_type/name:138
+msgid "engineer"
+msgstr ""
+
+#: DB:link_type/link_phrase:120 DB:link_type/name:120 DB:link_type/name:701
+msgid "engineer position"
+msgstr ""
+
+#: DB:link_type/link_phrase:701
+msgid "engineer position at"
+msgstr ""
+
+#: DB:link_type/link_phrase:1084
+msgid "engineered"
+msgstr ""
+
+#: DB:link_type/name:813 DB:link_type/name:812
+msgid "engineered at"
+msgstr ""
+
+#: DB:link_type/name:814 DB:link_type/name:815
+msgid "engineered in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1084 DB:link_type/reverse_link_phrase:120
+#: DB:link_type/reverse_link_phrase:701
+msgid "engineers"
+msgstr ""
+
+#: DB:link_attribute_type/name:1094
+msgid "eponymous"
+msgstr ""
+
+#: DB:link_type/link_phrase:1003 DB:link_type/name:1003
+#: DB:link_type/reverse_link_phrase:1003 DB:link_type/long_link_phrase:1003
+msgid "event artists"
+msgstr ""
+
+#: DB:link_attribute_type/name:425
+msgid "executive"
+msgstr ""
+
+#: DB:link_type/link_phrase:1188 DB:link_type/reverse_link_phrase:214
+#: DB:link_type/reverse_link_phrase:172 DB:link_type/reverse_link_phrase:1189
+#: DB:link_type/reverse_link_phrase:1190 DB:link_type/reverse_link_phrase:1191
+msgid "fan page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:214 DB:link_type/link_phrase:172
+#: DB:link_type/link_phrase:1189 DB:link_type/link_phrase:1190
+#: DB:link_type/link_phrase:1191 DB:link_type/reverse_link_phrase:1188
+msgid "fan pages"
+msgstr ""
+
+#: DB:link_type/name:214 DB:link_type/name:172 DB:link_type/name:1189
+#: DB:link_type/name:1190 DB:link_type/name:1188 DB:link_type/name:1191
+msgid "fanpage"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1011 DB:link_type/reverse_link_phrase:1012
+msgid "field recordings"
+msgstr ""
+
+#: DB:link_type/name:1011 DB:link_type/name:1012
+msgid "field recordist"
+msgstr ""
+
+#: DB:link_type/link_phrase:1011 DB:link_type/link_phrase:1012
+msgid "field recordist for"
+msgstr ""
+
+#: DB:link_type/name:238
+msgid "first track release"
+msgstr ""
+
+#: DB:link_attribute_type/name:1133
+msgid "folk music"
+msgstr ""
+
+#: DB:link_type/link_phrase:832 DB:link_type/link_phrase:116
+#: DB:link_type/link_phrase:895 DB:link_type/link_phrase:1004
+#: DB:link_type/long_link_phrase:832 DB:link_type/long_link_phrase:116
+#: DB:link_type/long_link_phrase:895 DB:link_type/long_link_phrase:1004
+msgid "founded"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:895
+msgid "founded by"
+msgstr ""
+
+#: DB:link_type/name:832 DB:link_type/name:895 DB:link_type/name:1004
+msgid "founder"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:832 DB:link_type/reverse_link_phrase:116
+#: DB:link_type/reverse_link_phrase:1004
+msgid "founders"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:958 DB:link_type/reverse_link_phrase:75
+#: DB:link_type/reverse_link_phrase:177 DB:link_type/reverse_link_phrase:255
+msgid "free download page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:274
+msgid "free download page for the score of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:997 DB:link_type/reverse_link_phrase:194
+msgid "free music streaming page for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:268 DB:link_type/reverse_link_phrase:85
+msgid "free music {video} streaming page for"
+msgstr ""
+
+#: DB:link_type/name:997 DB:link_type/name:268 DB:link_type/name:85
+#: DB:link_type/name:194
+msgid "free streaming"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1088 DB:link_type/reverse_link_phrase:752
+msgid "from"
+msgstr ""
+
+#: DB:link_type/link_phrase:1096 DB:link_type/name:1096
+msgid "fusion of"
+msgstr ""
+
+#: DB:link_type/name:1088
+msgid "genre origin"
+msgstr ""
+
+#: DB:link_type/link_phrase:1088
+msgid "genres"
+msgstr ""
+
+#: DB:link_type/name:934 DB:link_type/name:713
+msgid "geonames"
+msgstr ""
+
+#: DB:link_type/link_phrase:957 DB:link_type/link_phrase:257
+#: DB:link_type/link_phrase:73 DB:link_type/link_phrase:1091
+#: DB:link_type/link_phrase:187 DB:link_type/name:957 DB:link_type/name:257
+#: DB:link_type/name:73 DB:link_type/name:1091 DB:link_type/name:187
+#: DB:link_type/reverse_link_phrase:957 DB:link_type/reverse_link_phrase:257
+#: DB:link_type/reverse_link_phrase:73 DB:link_type/reverse_link_phrase:1091
+#: DB:link_type/reverse_link_phrase:187 DB:link_type/long_link_phrase:957
+#: DB:link_type/long_link_phrase:257 DB:link_type/long_link_phrase:73
+#: DB:link_type/long_link_phrase:1091 DB:link_type/long_link_phrase:187
+msgid "get the music"
+msgstr ""
+
+#: DB:link_type/link_phrase:911 DB:link_type/name:911
+#: DB:link_type/reverse_link_phrase:911 DB:link_type/long_link_phrase:911
+msgid "get the score"
+msgstr ""
+
+#: DB:link_type/link_phrase:955 DB:link_type/name:955
+#: DB:link_type/long_link_phrase:955
+msgid "glass mastered"
+msgstr ""
+
+#: DB:link_type/name:954 DB:link_type/reverse_link_phrase:954
+msgid "glass mastered at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:955
+msgid "glass mastered by"
+msgstr ""
+
+#: DB:link_type/link_phrase:954
+msgid "glass mastering location for"
+msgstr ""
+
+#: DB:link_type/name:1172 DB:link_type/name:125 DB:link_type/name:27
+msgid "graphic design"
+msgstr ""
+
+#: DB:link_attribute_type/name:194
+msgid "guest"
+msgstr ""
+
+#: DB:link_type/name:800
+msgid "guest performer"
+msgstr ""
+
+#: DB:link_type/link_phrase:800 DB:link_type/long_link_phrase:800
+msgid "guest performer at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:800
+msgid "guest performers"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:115
+msgid "had a creative position at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:162
+msgid "had a miscellaneous role on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:117
+msgid "had a producer position at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:121
+msgid "had a recording contract with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1081
+msgid "had an artists and repertoire position at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:120
+msgid "had an engineer position at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:936
+msgid "had tribute event"
+msgstr ""
+
+#: DB:link_attribute_type/name:1019
+msgid "half"
+msgstr ""
+
+#: DB:link_attribute_type/name:1350
+msgid "harmony"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:77
+msgid "has Amazon ASIN"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1131 DB:link_type/long_link_phrase:1130
+msgid "has Apple Music page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1092 DB:link_type/long_link_phrase:718
+#: DB:link_type/long_link_phrase:719
+msgid "has Bandcamp page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:919
+msgid "has CD Baby page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:311 DB:link_type/long_link_phrase:310
+#: DB:link_type/long_link_phrase:920 DB:link_type/long_link_phrase:1001
+msgid "has VIAF ID at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1080
+msgid "has YouTube Music channel at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:190
+msgid "has a BBC Music page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:861 DB:link_type/long_link_phrase:862
+#: DB:link_type/long_link_phrase:860
+msgid "has a Bandsintown page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:851 DB:link_type/long_link_phrase:852
+#: DB:link_type/long_link_phrase:853 DB:link_type/long_link_phrase:1167
+#: DB:link_type/long_link_phrase:850
+msgid "has a BookBrainz page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:981
+msgid "has a CPDL page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1089 DB:link_type/long_link_phrase:180
+#: DB:link_type/long_link_phrase:76 DB:link_type/long_link_phrase:217
+#: DB:link_type/long_link_phrase:90 DB:link_type/long_link_phrase:747
+#: DB:link_type/long_link_phrase:705
+msgid "has a Discogs page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:934 DB:link_type/long_link_phrase:713
+msgid "has a Geonames page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:840 DB:link_type/long_link_phrase:837
+#: DB:link_type/long_link_phrase:839 DB:link_type/long_link_phrase:838
+msgid "has a Last.fm page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:215 DB:link_type/long_link_phrase:462
+#: DB:link_type/long_link_phrase:189
+msgid "has a Myspace page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:174
+msgid "has a PureVolume page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:308 DB:link_type/long_link_phrase:976
+#: DB:link_type/long_link_phrase:977 DB:link_type/long_link_phrase:307
+msgid "has a SecondHandSongs page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:786 DB:link_type/long_link_phrase:785
+#: DB:link_type/long_link_phrase:787
+msgid "has a Songkick page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:870 DB:link_type/long_link_phrase:291
+#: DB:link_type/long_link_phrase:290 DB:link_type/long_link_phrase:940
+msgid "has a SoundCloud page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:86 DB:link_type/long_link_phrase:191
+#: DB:link_type/long_link_phrase:210 DB:link_type/long_link_phrase:788
+#: DB:link_type/long_link_phrase:1013
+msgid "has a VGMdb page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1087 DB:link_type/long_link_phrase:353
+#: DB:link_type/long_link_phrase:749 DB:link_type/long_link_phrase:594
+#: DB:link_type/long_link_phrase:354 DB:link_type/long_link_phrase:790
+#: DB:link_type/long_link_phrase:352 DB:link_type/long_link_phrase:733
+#: DB:link_type/long_link_phrase:358
+msgid "has a Wikidata page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:179 DB:link_type/long_link_phrase:595
+#: DB:link_type/long_link_phrase:355 DB:link_type/long_link_phrase:744
+#: DB:link_type/long_link_phrase:216 DB:link_type/long_link_phrase:731
+#: DB:link_type/long_link_phrase:89 DB:link_type/long_link_phrase:789
+msgid "has a Wikipedia page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:182
+msgid "has a biography page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:224 DB:link_type/long_link_phrase:199
+#: DB:link_type/long_link_phrase:627
+msgid "has a blog at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:212
+msgid "has a catalog of records at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:904 DB:link_type/long_link_phrase:909
+#: DB:link_type/long_link_phrase:903 DB:link_type/long_link_phrase:905
+#: DB:link_type/long_link_phrase:906 DB:link_type/long_link_phrase:902
+#: DB:link_type/long_link_phrase:907 DB:link_type/long_link_phrase:910
+msgid "has a crowdfunding page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:288 DB:link_type/long_link_phrase:1169
+msgid "has a discography entry at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:184
+msgid "has a discography page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:214 DB:link_type/long_link_phrase:172
+#: DB:link_type/long_link_phrase:1189 DB:link_type/long_link_phrase:1190
+#: DB:link_type/long_link_phrase:1191
+msgid "has a fan page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:226
+msgid "has a karaoke version"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:213
+msgid "has a logo at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:129 DB:link_type/long_link_phrase:25
+#: DB:link_type/long_link_phrase:998 DB:link_type/long_link_phrase:999
+msgid "has a miscellaneous role on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1086 DB:link_type/long_link_phrase:753
+#: DB:link_type/long_link_phrase:82 DB:link_type/long_link_phrase:222
+#: DB:link_type/long_link_phrase:188 DB:link_type/long_link_phrase:306
+#: DB:link_type/long_link_phrase:561 DB:link_type/long_link_phrase:746
+#: DB:link_type/long_link_phrase:96 DB:link_type/long_link_phrase:803
+msgid "has a page in a database at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:901 DB:link_type/long_link_phrase:900
+#: DB:link_type/long_link_phrase:898 DB:link_type/long_link_phrase:899
+#: DB:link_type/long_link_phrase:897
+msgid "has a patronage page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:173 DB:link_type/long_link_phrase:396
+#: DB:link_type/long_link_phrase:732
+msgid "has a picture at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:842 DB:link_type/long_link_phrase:94
+msgid "has a review page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1083
+msgid "has a schedule at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:811 DB:link_type/long_link_phrase:816
+#: DB:link_type/long_link_phrase:817 DB:link_type/long_link_phrase:938
+msgid "has a setlist.fm page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:784 DB:link_type/long_link_phrase:783
+#: DB:link_type/long_link_phrase:218 DB:link_type/long_link_phrase:429
+#: DB:link_type/long_link_phrase:192
+msgid "has a social networking page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:287
+msgid "has a standalone website at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1193 DB:link_type/long_link_phrase:1194
+#: DB:link_type/long_link_phrase:1195 DB:link_type/long_link_phrase:1196
+#: DB:link_type/long_link_phrase:1197
+msgid "has a ticketing page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:755 DB:link_type/long_link_phrase:284
+#: DB:link_type/long_link_phrase:283 DB:link_type/long_link_phrase:285
+#: DB:link_type/long_link_phrase:1093
+msgid "has an Allmusic page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:313 DB:link_type/long_link_phrase:178
+#: DB:link_type/long_link_phrase:97 DB:link_type/long_link_phrase:706
+msgid "has an IMDb page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:754
+msgid "has an IMSLP page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1192
+msgid "has an art gallery at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:707
+msgid "has an interview at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:791 DB:link_type/long_link_phrase:792
+#: DB:link_type/long_link_phrase:193 DB:link_type/long_link_phrase:225
+#: DB:link_type/long_link_phrase:528
+msgid "has an official YouTube channel at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:745 DB:link_type/long_link_phrase:782
+#: DB:link_type/long_link_phrase:183 DB:link_type/long_link_phrase:219
+#: DB:link_type/long_link_phrase:363
+msgid "has an official homepage at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:804 DB:link_type/long_link_phrase:304
+#: DB:link_type/long_link_phrase:805 DB:link_type/long_link_phrase:303
+#: DB:link_type/long_link_phrase:495
+msgid "has an official video channel at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:185
+msgid "has an online community page at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:350
+msgid "has arrangement"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1094
+msgid "has award ceremony"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:66
+msgid "has business association with"
+msgstr ""
+
+#: DB:link_type/link_phrase:750 DB:link_type/name:750
+msgid "has catalogue"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:735
+msgid "has child"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:78
+msgid "has cover art at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:737
+msgid "has derived instrument"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1096
+msgid "has fusion genres"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:916
+msgid "has hybrids"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:725
+msgid "has imprint"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1097
+msgid "has influences of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:984 DB:link_type/long_link_phrase:211
+msgid "has its history presented at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:93 DB:link_type/long_link_phrase:197
+#: DB:link_type/long_link_phrase:982
+msgid "has lyrics available at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:857
+msgid "has music video"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:316
+msgid "has orchestration"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:739 DB:link_type/long_link_phrase:717
+#: DB:link_type/long_link_phrase:356 DB:link_type/long_link_phrase:281
+msgid "has part"
+msgstr ""
+
+#: DB:link_type/link_phrase:743 DB:link_type/reverse_link_phrase:802
+#: DB:link_type/reverse_link_phrase:742 DB:link_type/reverse_link_phrase:740
+#: DB:link_type/reverse_link_phrase:741 DB:link_type/reverse_link_phrase:996
+#: DB:link_type/long_link_phrase:818
+msgid "has parts"
+msgstr ""
+
+#: DB:link_type/link_phrase:723 DB:link_type/long_link_phrase:723
+msgid "has personal label"
+msgstr ""
+
+#: DB:link_type/link_phrase:724 DB:link_type/long_link_phrase:724
+msgid "has personal publisher"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:808
+msgid "has poster at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:230
+msgid "has remixes"
+msgstr ""
+
+#: DB:link_type/link_phrase:315 DB:link_type/long_link_phrase:315
+msgid "has revision"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:729
+msgid "has show notes at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1095
+msgid "has subgenre"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:823
+msgid "has subseries"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:736
+msgid "has subtype"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:69
+msgid "has {additional} samples taken from"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:110
+msgid "has {half:half-}{step}sibling"
+msgstr ""
+
+#: DB:link_type/link_phrase:794 DB:link_type/name:794 DB:link_type/name:995
+#: DB:link_type/reverse_link_phrase:995
+msgid "held at"
+msgstr ""
+
+#: DB:link_type/link_phrase:793 DB:link_type/reverse_link_phrase:794
+msgid "held events"
+msgstr ""
+
+#: DB:link_type/name:793 DB:link_type/name:1085
+#: DB:link_type/reverse_link_phrase:793 DB:link_type/reverse_link_phrase:1085
+msgid "held in"
+msgstr ""
+
+#: DB:link_type/link_phrase:984 DB:link_type/link_phrase:211
+msgid "history page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:984 DB:link_type/reverse_link_phrase:211
+msgid "history page for"
+msgstr ""
+
+#: DB:link_type/name:984 DB:link_type/name:211
+msgid "history site"
+msgstr ""
+
+#: DB:link_type/link_phrase:708 DB:link_type/link_phrase:709
+#: DB:link_type/long_link_phrase:708 DB:link_type/long_link_phrase:709
+msgid "holds copyright (©) for"
+msgstr ""
+
+#: DB:link_type/link_phrase:867 DB:link_type/link_phrase:711
+#: DB:link_type/link_phrase:710 DB:link_type/link_phrase:869
+#: DB:link_type/long_link_phrase:867 DB:link_type/long_link_phrase:711
+#: DB:link_type/long_link_phrase:710 DB:link_type/long_link_phrase:869
+msgid "holds phonographic copyright (℗) for"
+msgstr ""
+
+#: DB:link_type/name:801
+msgid "host"
+msgstr ""
+
+#: DB:link_type/link_phrase:801 DB:link_type/long_link_phrase:801
+msgid "host at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:801
+msgid "hosts"
+msgstr ""
+
+#: DB:link_type/link_phrase:916 DB:link_type/name:916
+msgid "hybrid of"
+msgstr ""
+
+#: DB:link_type/name:927 DB:link_type/name:1173
+msgid "illustration"
+msgstr ""
+
+#: DB:link_type/description:732 DB:link_type/name:173 DB:link_type/name:396
+#: DB:link_type/name:732
+msgid "image"
+msgstr ""
+
+#: DB:link_type/name:725
+msgid "imprint"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:725
+msgid "imprint of"
+msgstr ""
+
+#: DB:link_type/link_phrase:725
+msgid "imprints"
+msgstr ""
+
+#: DB:link_attribute_type/name:1134
+msgid "improvisation"
+msgstr ""
+
+#: DB:link_type/link_phrase:894 DB:link_type/name:894
+msgid "included in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:894
+msgid "includes"
+msgstr ""
+
+#: DB:link_type/link_phrase:1097 DB:link_type/name:1097
+msgid "influenced by"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1097
+msgid "influenced genres"
+msgstr ""
+
+#: DB:link_type/description:734 DB:link_type/link_phrase:734
+#: DB:link_type/name:734 DB:link_type/reverse_link_phrase:734
+#: DB:link_type/long_link_phrase:734
+msgid "information page"
+msgstr ""
+
+#: DB:link_type/link_phrase:975 DB:link_type/link_phrase:1000
+#: DB:link_type/reverse_link_phrase:973 DB:link_type/reverse_link_phrase:972
+#: DB:link_type/reverse_link_phrase:974
+msgid "inspired the name of"
+msgstr ""
+
+#: DB:link_attribute_type/name:14 DB:link_type/name:44 DB:link_type/name:148
+msgid "instrument"
+msgstr ""
+
+#: DB:link_type/name:41 DB:link_type/name:158 DB:link_type/name:282
+msgid "instrument arranger"
+msgstr ""
+
+#: DB:link_type/name:752
+msgid "instrument origin"
+msgstr ""
+
+#: DB:link_type/name:986 DB:link_type/name:987
+msgid "instrument technician"
+msgstr ""
+
+#: DB:link_attribute_type/name:580
+msgid "instrumental"
+msgstr ""
+
+#: DB:link_type/name:105
+msgid "instrumental supporting musician"
+msgstr ""
+
+#: DB:link_type/link_phrase:752
+msgid "instruments"
+msgstr ""
+
+#: DB:link_type/name:707
+msgid "interview"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:707
+msgid "interview with"
+msgstr ""
+
+#: DB:link_type/link_phrase:707
+msgid "interviews"
+msgstr ""
+
+#: DB:link_type/link_phrase:896 DB:link_type/name:896 DB:link_type/name:918
+#: DB:link_type/reverse_link_phrase:918 DB:link_type/long_link_phrase:896
+msgid "invented"
+msgstr ""
+
+#: DB:link_type/link_phrase:918 DB:link_type/reverse_link_phrase:896
+msgid "invented by"
+msgstr ""
+
+#: DB:link_type/name:112
+msgid "involved with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:227 DB:link_type/long_link_phrase:8
+msgid "is a DJ-mix of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:228
+msgid "is a compilation of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1096
+msgid "is a fusion of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:916
+msgid "is a hybrid of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:17
+msgid "is a live performance of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:10 DB:link_type/long_link_phrase:232
+msgid "is a mash-up of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:239
+msgid "is a medley of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:730
+msgid "is a page in a database for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:802 DB:link_type/long_link_phrase:742
+#: DB:link_type/long_link_phrase:740 DB:link_type/long_link_phrase:741
+#: DB:link_type/long_link_phrase:996
+msgid "is a part of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:6 DB:link_type/long_link_phrase:236
+msgid "is a remaster of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:230 DB:link_type/long_link_phrase:9
+msgid "is a remix of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:11
+msgid "is a single/EP which was taken from"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:728
+msgid "is a tribute to"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:278
+msgid ""
+"is a {live} {medley:medley including a} {partial} {instrumental} {cover} "
+"{karaoke} recording of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:15
+msgid "is a {translated} {parody} cover of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:309
+msgid "is an edit of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:926
+msgid "is associated with"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:314
+msgid "is based on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:925
+msgid "is connected to the educational institution"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:894
+msgid "is included in"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:302 DB:link_type/long_link_phrase:301
+msgid "is licensed under"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:973 DB:link_type/long_link_phrase:972
+#: DB:link_type/long_link_phrase:974
+msgid "is named after"
+msgstr ""
+
+#: DB:link_type/name:108
+msgid "is person"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:738
+msgid "is related to"
+msgstr ""
+
+#: DB:link_type/link_phrase:314 DB:link_type/long_link_phrase:314
+msgid "is the basis for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:238
+msgid "is the earliest release of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:241
+msgid "is the earliest version of {translated} {parody}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:2
+msgid "is the original for the transliterated/translated track listing"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:349
+msgid "is the rights society associated with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:109
+msgid "is the {step}parent of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:722
+msgid "is/was a subgroup of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:104
+msgid "is/was a supporting artist for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:965
+msgid "is/was artistic director for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:203
+msgid "is/was distributing the catalog of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:111
+msgid "is/was married to"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:201
+msgid "is/was reissuing the catalog of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:112
+msgid "is/was romantically involved with"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:200
+msgid "is/was the parent label of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:103
+msgid "is/was {additional:an|a} {additional} {original} {eponymous} member of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:305
+msgid ""
+"is/was {assistant:an|a} {assistant} {principal} {guest} conductor {emeritus} "
+"for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1132
+msgid "jazz"
+msgstr ""
+
+#: DB:link_attribute_type/name:1261 DB:link_type/name:226
+msgid "karaoke"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:226
+msgid "karaoke version of"
+msgstr ""
+
+#: DB:link_type/link_phrase:226
+msgid "karaoke versions"
+msgstr ""
+
+#: DB:link_type/name:203
+msgid "label distribution"
+msgstr ""
+
+#: DB:link_type/name:116
+msgid "label founder"
+msgstr ""
+
+#: DB:link_type/name:200
+msgid "label ownership"
+msgstr ""
+
+#: DB:link_type/name:201
+msgid "label reissue"
+msgstr ""
+
+#: DB:link_type/name:202
+msgid "label rename"
+msgstr ""
+
+#: DB:link_type/link_phrase:969 DB:link_type/name:969
+#: DB:link_type/reverse_link_phrase:969
+msgid "lacquer cut"
+msgstr ""
+
+#: DB:link_type/name:968 DB:link_type/reverse_link_phrase:968
+msgid "lacquer cut at"
+msgstr ""
+
+#: DB:link_type/name:967 DB:link_type/reverse_link_phrase:967
+msgid "lacquer cut in"
+msgstr ""
+
+#: DB:link_type/link_phrase:967 DB:link_type/link_phrase:968
+msgid "lacquer cut location for"
+msgstr ""
+
+#: DB:link_type/name:840 DB:link_type/name:837 DB:link_type/name:839
+#: DB:link_type/name:838
+msgid "last.fm"
+msgstr ""
+
+#: DB:link_type/link_phrase:238
+msgid "later releases"
+msgstr ""
+
+#: DB:link_type/link_phrase:241
+msgid "later {translated} {parody} versions"
+msgstr ""
+
+#: DB:link_type/name:796 DB:link_type/name:797
+msgid "launch event"
+msgstr ""
+
+#: DB:link_type/link_phrase:796 DB:link_type/link_phrase:797
+msgid "launch event for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:796 DB:link_type/reverse_link_phrase:797
+msgid "launch events"
+msgstr ""
+
+#: DB:link_attribute_type/name:4
+msgid "lead vocals"
+msgstr ""
+
+#: DB:link_type/link_phrase:142 DB:link_type/name:22 DB:link_type/name:142
+#: DB:link_type/reverse_link_phrase:142
+msgid "legal representation"
+msgstr ""
+
+#: DB:link_attribute_type/name:1135
+msgid "level of studies"
+msgstr ""
+
+#: DB:link_type/name:57 DB:link_type/name:169
+msgid "librettist"
+msgstr ""
+
+#: DB:link_type/name:880
+msgid "libretto written at"
+msgstr ""
+
+#: DB:link_type/name:879
+msgid "libretto written in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:880
+msgid "libretto {additional:additionally} written at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:879
+msgid "libretto {additional:additionally} written in"
+msgstr ""
+
+#: DB:link_type/link_phrase:302 DB:link_type/link_phrase:301
+#: DB:link_type/name:302 DB:link_type/name:939 DB:link_type/name:301
+#: DB:link_type/reverse_link_phrase:939
+msgid "license"
+msgstr ""
+
+#: DB:link_type/link_phrase:939 DB:link_type/reverse_link_phrase:302
+#: DB:link_type/reverse_link_phrase:301
+msgid "license for"
+msgstr ""
+
+#: DB:link_type/link_phrase:712 DB:link_type/link_phrase:1010
+#: DB:link_type/long_link_phrase:712 DB:link_type/long_link_phrase:1010
+msgid "licensed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:712 DB:link_type/reverse_link_phrase:1010
+msgid "licensed from"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:833
+msgid "licensed to"
+msgstr ""
+
+#: DB:link_type/name:833
+msgid "licensee"
+msgstr ""
+
+#: DB:link_type/link_phrase:833
+msgid "licensee for"
+msgstr ""
+
+#: DB:link_type/name:712 DB:link_type/name:1010
+msgid "licensor"
+msgstr ""
+
+#: DB:link_type/name:24
+msgid "liner notes"
+msgstr ""
+
+#: DB:link_attribute_type/name:578
+msgid "live"
+msgstr ""
+
+#: DB:link_type/name:17
+msgid "live performance"
+msgstr ""
+
+#: DB:link_type/link_phrase:17
+msgid "live performance of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:17
+msgid "live performances"
+msgstr ""
+
+#: DB:link_type/link_phrase:995 DB:link_type/link_phrase:1085
+msgid "location for"
+msgstr ""
+
+#: DB:link_type/name:213
+msgid "logo"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:213
+msgid "logo of"
+msgstr ""
+
+#: DB:link_type/link_phrase:213
+msgid "logos"
+msgstr ""
+
+#: DB:link_type/name:1047
+msgid "lyrical quotation"
+msgstr ""
+
+#: DB:link_type/name:56 DB:link_type/name:165
+msgid "lyricist"
+msgstr ""
+
+#: DB:link_type/name:93 DB:link_type/name:271 DB:link_type/name:197
+#: DB:link_type/name:982
+msgid "lyrics"
+msgstr ""
+
+#: DB:link_type/link_phrase:93 DB:link_type/link_phrase:197
+#: DB:link_type/link_phrase:982 DB:link_type/reverse_link_phrase:271
+msgid "lyrics page"
+msgstr ""
+
+#: DB:link_type/link_phrase:271 DB:link_type/reverse_link_phrase:93
+#: DB:link_type/reverse_link_phrase:197 DB:link_type/reverse_link_phrase:982
+msgid "lyrics page for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1047
+msgid "lyrics quoted in"
+msgstr ""
+
+#: DB:link_type/name:878
+msgid "lyrics written at"
+msgstr ""
+
+#: DB:link_type/name:877
+msgid "lyrics written in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:960 DB:link_type/reverse_link_phrase:175
+#: DB:link_type/reverse_link_phrase:79
+msgid "mail-order purchase page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:913
+msgid "mail-order purchase page for the score of"
+msgstr ""
+
+#: DB:link_type/name:798
+msgid "main performer"
+msgstr ""
+
+#: DB:link_type/link_phrase:798
+msgid "main performer at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:798
+msgid "main performers"
+msgstr ""
+
+#: DB:link_type/link_phrase:360 DB:link_type/name:360
+#: DB:link_type/long_link_phrase:360
+msgid "manufactured"
+msgstr ""
+
+#: DB:link_type/name:953 DB:link_type/reverse_link_phrase:953
+msgid "manufactured at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:360
+msgid "manufactured by"
+msgstr ""
+
+#: DB:link_type/name:952 DB:link_type/reverse_link_phrase:952
+msgid "manufactured for"
+msgstr ""
+
+#: DB:link_type/name:835 DB:link_type/reverse_link_phrase:835
+msgid "manufactured in"
+msgstr ""
+
+#: DB:link_type/link_phrase:835 DB:link_type/link_phrase:953
+msgid "manufacturing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:848 DB:link_type/name:848
+#: DB:link_type/long_link_phrase:848
+msgid "marketed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:848
+msgid "marketed by"
+msgstr ""
+
+#: DB:link_type/link_phrase:111 DB:link_type/name:111
+#: DB:link_type/reverse_link_phrase:111
+msgid "married"
+msgstr ""
+
+#: DB:link_type/link_phrase:10 DB:link_type/link_phrase:232
+msgid "mash-up of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:10 DB:link_type/reverse_link_phrase:232
+msgid "mash-ups"
+msgstr ""
+
+#: DB:link_type/name:10 DB:link_type/name:232
+msgid "mashes up"
+msgstr ""
+
+#: DB:link_type/name:697
+msgid "mastered at"
+msgstr ""
+
+#: DB:link_type/name:1183 DB:link_type/reverse_link_phrase:1183
+msgid "mastered for"
+msgstr ""
+
+#: DB:link_type/name:756
+msgid "mastered in"
+msgstr ""
+
+#: DB:link_type/name:136 DB:link_type/name:42
+msgid "mastering"
+msgstr ""
+
+#: DB:link_type/name:704
+msgid "mastering engineer position"
+msgstr ""
+
+#: DB:link_type/link_phrase:704
+msgid "mastering engineer position at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:704
+msgid "mastering engineers"
+msgstr ""
+
+#: DB:link_attribute_type/name:1136
+msgid "master’s degree"
+msgstr ""
+
+#: DB:link_attribute_type/name:1060
+msgid "meane vocals"
+msgstr ""
+
+#: DB:link_attribute_type/name:568
+msgid "medium"
+msgstr ""
+
+#: DB:link_attribute_type/name:570
+msgid "medium 1"
+msgstr ""
+
+#: DB:link_attribute_type/name:569
+msgid "medium 2"
+msgstr ""
+
+#: DB:link_attribute_type/name:571
+msgid "medium 3"
+msgstr ""
+
+#: DB:link_attribute_type/name:577
+msgid "medium 4"
+msgstr ""
+
+#: DB:link_attribute_type/name:576
+msgid "medium 5"
+msgstr ""
+
+#: DB:link_attribute_type/name:575
+msgid "medium 6"
+msgstr ""
+
+#: DB:link_attribute_type/name:574
+msgid "medium 7"
+msgstr ""
+
+#: DB:link_attribute_type/name:573
+msgid "medium 8"
+msgstr ""
+
+#: DB:link_attribute_type/name:572
+msgid "medium 9"
+msgstr ""
+
+#: DB:link_attribute_type/name:750 DB:link_type/name:239
+msgid "medley"
+msgstr ""
+
+#: DB:link_type/link_phrase:239
+msgid "medley of"
+msgstr ""
+
+#: DB:link_type/name:103
+msgid "member of band"
+msgstr ""
+
+#: DB:link_attribute_type/description:9 DB:link_attribute_type/name:9
+msgid "mezzo-soprano vocals"
+msgstr ""
+
+#: DB:link_attribute_type/name:2
+msgid "minor"
+msgstr ""
+
+#: DB:link_type/name:162 DB:link_type/name:129 DB:link_type/name:25
+#: DB:link_type/name:998 DB:link_type/name:999
+msgid "misc"
+msgstr ""
+
+#: DB:link_type/link_phrase:162 DB:link_type/link_phrase:129
+#: DB:link_type/link_phrase:25 DB:link_type/link_phrase:998
+#: DB:link_type/link_phrase:999
+msgid "miscellaneous roles"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:162 DB:link_type/reverse_link_phrase:129
+#: DB:link_type/reverse_link_phrase:25 DB:link_type/reverse_link_phrase:998
+#: DB:link_type/reverse_link_phrase:999
+msgid "miscellaneous support"
+msgstr ""
+
+#: DB:link_type/name:26 DB:link_type/name:143
+msgid "mix"
+msgstr ""
+
+#: DB:link_type/name:43 DB:link_type/name:155
+msgid "mix-DJ"
+msgstr ""
+
+#: DB:link_type/name:694 DB:link_type/name:696
+msgid "mixed at"
+msgstr ""
+
+#: DB:link_type/name:946 DB:link_type/name:947
+#: DB:link_type/reverse_link_phrase:946 DB:link_type/reverse_link_phrase:947
+msgid "mixed for"
+msgstr ""
+
+#: DB:link_type/name:757 DB:link_type/name:758
+msgid "mixed in"
+msgstr ""
+
+#: DB:link_type/name:703
+msgid "mixing engineer position"
+msgstr ""
+
+#: DB:link_type/link_phrase:703
+msgid "mixing engineer position at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:703
+msgid "mixing engineers"
+msgstr ""
+
+#: DB:link_attribute_type/name:1031
+msgid "movement"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:958 DB:link_type/long_link_phrase:177
+msgid "music can be downloaded for free at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:959 DB:link_type/long_link_phrase:176
+msgid "music can be purchased for download at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:960 DB:link_type/long_link_phrase:175
+msgid "music can be purchased for mail-order at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:997 DB:link_type/long_link_phrase:194
+msgid "music can be streamed for free at"
+msgstr ""
+
+#: DB:link_attribute_type/name:1202
+msgid "music education"
+msgstr ""
+
+#: DB:link_attribute_type/name:1348
+msgid "music history"
+msgstr ""
+
+#: DB:link_attribute_type/name:1201
+msgid "music production"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1046
+msgid "music quoted in"
+msgstr ""
+
+#: DB:link_attribute_type/name:1222
+msgid "music theory"
+msgstr ""
+
+#: DB:link_attribute_type/name:1203
+msgid "music therapy"
+msgstr ""
+
+#: DB:link_type/name:857
+msgid "music video"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:857
+msgid "music video for"
+msgstr ""
+
+#: DB:link_type/link_phrase:857
+msgid "music videos"
+msgstr ""
+
+#: DB:link_type/name:1046
+msgid "musical quotation"
+msgstr ""
+
+#: DB:link_type/link_phrase:106 DB:link_type/reverse_link_phrase:106
+#: DB:link_type/long_link_phrase:106
+msgid "musical relationship"
+msgstr ""
+
+#: DB:link_type/name:106
+msgid "musical relationships"
+msgstr ""
+
+#: DB:link_attribute_type/name:1221
+msgid "musical theatre"
+msgstr ""
+
+#: DB:link_attribute_type/name:1141
+msgid "musicology"
+msgstr ""
+
+#: DB:link_type/name:215 DB:link_type/name:462 DB:link_type/name:189
+msgid "myspace"
+msgstr ""
+
+#: DB:link_type/link_phrase:973 DB:link_type/link_phrase:972
+#: DB:link_type/link_phrase:974 DB:link_type/name:973 DB:link_type/name:972
+#: DB:link_type/name:975 DB:link_type/name:974 DB:link_type/name:1000
+#: DB:link_type/reverse_link_phrase:975 DB:link_type/reverse_link_phrase:1000
+msgid "named after"
+msgstr ""
+
+#: DB:link_type/link_phrase:935 DB:link_type/name:935
+#: DB:link_type/reverse_link_phrase:935 DB:link_type/long_link_phrase:935
+msgid "non-performing relationships"
+msgstr ""
+
+#: DB:link_attribute_type/name:788 DB:link_attribute_type/name:1032
+msgid "number"
+msgstr ""
+
+#: DB:link_type/name:745 DB:link_type/name:782 DB:link_type/name:183
+#: DB:link_type/name:363 DB:link_type/name:287
+msgid "official homepage"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:745 DB:link_type/reverse_link_phrase:782
+#: DB:link_type/reverse_link_phrase:183 DB:link_type/reverse_link_phrase:219
+#: DB:link_type/reverse_link_phrase:363
+msgid "official homepage for"
+msgstr ""
+
+#: DB:link_type/link_phrase:745 DB:link_type/link_phrase:782
+#: DB:link_type/link_phrase:183 DB:link_type/link_phrase:219
+#: DB:link_type/link_phrase:363
+msgid "official homepages"
+msgstr ""
+
+#: DB:link_type/name:219
+msgid "official site"
+msgstr ""
+
+#: DB:link_type/link_phrase:185
+msgid "online communities"
+msgstr ""
+
+#: DB:link_type/name:185
+msgid "online community"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:185
+msgid "online community page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:841 DB:link_type/link_phrase:221
+#: DB:link_type/link_phrase:660 DB:link_type/name:841 DB:link_type/name:221
+#: DB:link_type/name:660 DB:link_type/reverse_link_phrase:841
+#: DB:link_type/reverse_link_phrase:221 DB:link_type/reverse_link_phrase:660
+#: DB:link_type/long_link_phrase:841 DB:link_type/long_link_phrase:221
+#: DB:link_type/long_link_phrase:660
+msgid "online data"
+msgstr ""
+
+#: DB:link_attribute_type/name:1220
+msgid "opera"
+msgstr ""
+
+#: DB:link_attribute_type/name:1053
+msgid "optional"
+msgstr ""
+
+#: DB:link_type/name:807
+msgid "orchestra"
+msgstr ""
+
+#: DB:link_type/link_phrase:807
+msgid "orchestra at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:150 DB:link_type/long_link_phrase:45
+msgid "orchestra {additional:additionally} performed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:807
+msgid "orchestras"
+msgstr ""
+
+#: DB:link_type/name:316
+msgid "orchestration"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:316
+msgid "orchestration of"
+msgstr ""
+
+#: DB:link_type/link_phrase:316
+msgid "orchestrations"
+msgstr ""
+
+#: DB:link_type/name:40 DB:link_type/name:164 DB:link_type/name:300
+msgid "orchestrator"
+msgstr ""
+
+#: DB:link_type/name:856
+msgid "organist"
+msgstr ""
+
+#: DB:link_attribute_type/name:525
+msgid "original"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:836
+msgid "originally scheduled as"
+msgstr ""
+
+#: DB:link_attribute_type/name:1225 DB:link_attribute_type/name:1128
+msgid "other"
+msgstr ""
+
+#: DB:link_type/link_phrase:1086 DB:link_type/link_phrase:753
+#: DB:link_type/link_phrase:730 DB:link_type/link_phrase:82
+#: DB:link_type/link_phrase:273 DB:link_type/link_phrase:222
+#: DB:link_type/link_phrase:188 DB:link_type/link_phrase:306
+#: DB:link_type/link_phrase:561 DB:link_type/link_phrase:746
+#: DB:link_type/link_phrase:96 DB:link_type/link_phrase:803
+#: DB:link_type/name:1086 DB:link_type/name:753 DB:link_type/name:730
+#: DB:link_type/name:82 DB:link_type/name:273 DB:link_type/name:222
+#: DB:link_type/name:188 DB:link_type/name:306 DB:link_type/name:561
+#: DB:link_type/name:746 DB:link_type/name:96 DB:link_type/name:803
+#: DB:link_type/reverse_link_phrase:1086 DB:link_type/reverse_link_phrase:753
+#: DB:link_type/reverse_link_phrase:730 DB:link_type/reverse_link_phrase:82
+#: DB:link_type/reverse_link_phrase:273 DB:link_type/reverse_link_phrase:222
+#: DB:link_type/reverse_link_phrase:188 DB:link_type/reverse_link_phrase:306
+#: DB:link_type/reverse_link_phrase:561 DB:link_type/reverse_link_phrase:746
+#: DB:link_type/reverse_link_phrase:96 DB:link_type/reverse_link_phrase:803
+msgid "other databases"
+msgstr ""
+
+#: DB:link_type/name:241
+msgid "other version"
+msgstr ""
+
+#: DB:link_type/link_phrase:233 DB:link_type/name:233
+#: DB:link_type/reverse_link_phrase:233 DB:link_type/long_link_phrase:233
+msgid "other versions"
+msgstr ""
+
+#: DB:link_attribute_type/name:461
+msgid "other vocals"
+msgstr ""
+
+#: DB:link_type/name:988 DB:link_type/name:989 DB:link_type/name:991
+#: DB:link_type/reverse_link_phrase:988 DB:link_type/reverse_link_phrase:989
+#: DB:link_type/reverse_link_phrase:991
+msgid "owner"
+msgstr ""
+
+#: DB:link_type/link_phrase:990 DB:link_type/name:990
+#: DB:link_type/reverse_link_phrase:990 DB:link_type/long_link_phrase:990
+msgid "ownership"
+msgstr ""
+
+#: DB:link_type/link_phrase:988 DB:link_type/link_phrase:989
+#: DB:link_type/link_phrase:991 DB:link_type/long_link_phrase:988
+#: DB:link_type/long_link_phrase:989 DB:link_type/long_link_phrase:991
+msgid "owns"
+msgstr ""
+
+#: DB:link_type/name:109
+msgid "parent"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:200
+msgid "parent label"
+msgstr ""
+
+#: DB:link_attribute_type/name:511
+msgid "parody"
+msgstr ""
+
+#: DB:link_type/link_phrase:802 DB:link_type/link_phrase:742
+#: DB:link_type/link_phrase:740 DB:link_type/link_phrase:741
+#: DB:link_type/link_phrase:996 DB:link_type/name:802 DB:link_type/name:356
+#: DB:link_type/name:743 DB:link_type/name:742 DB:link_type/name:740
+#: DB:link_type/name:741 DB:link_type/name:996
+#: DB:link_type/reverse_link_phrase:739 DB:link_type/reverse_link_phrase:818
+#: DB:link_type/reverse_link_phrase:717 DB:link_type/reverse_link_phrase:356
+#: DB:link_type/reverse_link_phrase:281 DB:link_type/reverse_link_phrase:743
+msgid "part of"
+msgstr ""
+
+#: DB:link_attribute_type/name:1033
+msgid "part of collection"
+msgstr ""
+
+#: DB:link_type/name:1
+msgid "part of set"
+msgstr ""
+
+#: DB:link_attribute_type/name:579
+msgid "partial"
+msgstr ""
+
+#: DB:link_type/link_phrase:818 DB:link_type/link_phrase:717
+#: DB:link_type/link_phrase:356 DB:link_type/link_phrase:281
+#: DB:link_type/name:739 DB:link_type/name:818 DB:link_type/name:717
+#: DB:link_type/name:281
+msgid "parts"
+msgstr ""
+
+#: DB:link_type/name:901 DB:link_type/name:900 DB:link_type/name:898
+#: DB:link_type/name:899 DB:link_type/name:897
+msgid "patronage"
+msgstr ""
+
+#: DB:link_type/link_phrase:901 DB:link_type/link_phrase:900
+#: DB:link_type/link_phrase:898 DB:link_type/link_phrase:899
+#: DB:link_type/link_phrase:897
+msgid "patronage page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:901 DB:link_type/reverse_link_phrase:900
+#: DB:link_type/reverse_link_phrase:898 DB:link_type/reverse_link_phrase:899
+#: DB:link_type/reverse_link_phrase:897
+msgid "patronage page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:34 DB:link_type/link_phrase:122
+#: DB:link_type/name:34 DB:link_type/name:122 DB:link_type/name:278
+#: DB:link_type/reverse_link_phrase:34 DB:link_type/reverse_link_phrase:122
+#: DB:link_type/long_link_phrase:34 DB:link_type/long_link_phrase:122
+msgid "performance"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:108
+msgid "performance name of"
+msgstr ""
+
+#: DB:link_type/link_phrase:887 DB:link_type/name:887
+msgid "performance of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:887
+msgid "performed at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:292
+msgid "performed the voice of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:152 DB:link_type/long_link_phrase:53
+msgid "performed {additional} {assistant} chorus master on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:44 DB:link_type/long_link_phrase:148
+msgid "performed {additional} {guest} {solo} {instrument:%|instruments} on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:60 DB:link_type/long_link_phrase:149
+msgid "performed {additional} {guest} {solo} {vocal:%|vocals} on"
+msgstr ""
+
+#: DB:link_type/name:51 DB:link_type/name:156
+msgid "performer"
+msgstr ""
+
+#: DB:link_type/name:150 DB:link_type/name:45
+msgid "performing orchestra"
+msgstr ""
+
+#: DB:link_type/link_phrase:108 DB:link_type/long_link_phrase:108
+msgid "performs as"
+msgstr ""
+
+#: DB:link_type/name:723
+msgid "personal label"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:723
+msgid "personal label for"
+msgstr ""
+
+#: DB:link_type/name:724
+msgid "personal publisher"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:724
+msgid "personal publisher for"
+msgstr ""
+
+#: DB:link_type/link_phrase:113 DB:link_type/name:113
+#: DB:link_type/reverse_link_phrase:113 DB:link_type/long_link_phrase:113
+msgid "personal relationship"
+msgstr ""
+
+#: DB:link_type/name:867 DB:link_type/name:711 DB:link_type/name:710
+#: DB:link_type/name:869
+msgid "phonographic copyright"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:867 DB:link_type/reverse_link_phrase:711
+#: DB:link_type/reverse_link_phrase:710 DB:link_type/reverse_link_phrase:869
+msgid "phonographic copyright (℗) by"
+msgstr ""
+
+#: DB:link_type/name:123 DB:link_type/name:1175 DB:link_type/name:20
+msgid "photography"
+msgstr ""
+
+#: DB:link_type/link_phrase:173 DB:link_type/link_phrase:396
+#: DB:link_type/link_phrase:732
+msgid "picture"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:173 DB:link_type/reverse_link_phrase:396
+#: DB:link_type/reverse_link_phrase:732
+msgid "picture of"
+msgstr ""
+
+#: DB:link_type/link_phrase:915 DB:link_type/name:915
+msgid "podcast feed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:915
+msgid "podcast feed for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1200
+msgid "popular / rock music"
+msgstr ""
+
+#: DB:link_type/link_phrase:808 DB:link_type/name:808
+msgid "poster"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:808
+msgid "poster for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1219
+msgid "postgraduate"
+msgstr ""
+
+#: DB:link_attribute_type/name:1353
+msgid "pre"
+msgstr ""
+
+#: DB:link_type/name:845 DB:link_type/name:716 DB:link_type/name:715
+#: DB:link_type/name:956
+msgid "premiere"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:845 DB:link_type/reverse_link_phrase:716
+msgid "premiered at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:956
+msgid "premiered by"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:715
+msgid "premiered in"
+msgstr ""
+
+#: DB:link_type/link_phrase:845
+msgid "premieres"
+msgstr ""
+
+#: DB:link_type/link_phrase:716 DB:link_type/link_phrase:715
+msgid "premieres hosted"
+msgstr ""
+
+#: DB:link_type/name:1168 DB:link_type/reverse_link_phrase:1168
+msgid "presented"
+msgstr ""
+
+#: DB:link_type/link_phrase:1168
+msgid "presented by"
+msgstr ""
+
+#: DB:link_type/link_phrase:942 DB:link_type/name:942
+#: DB:link_type/long_link_phrase:942
+msgid "pressed"
+msgstr ""
+
+#: DB:link_type/name:941 DB:link_type/reverse_link_phrase:941
+msgid "pressed at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:942
+msgid "pressed by"
+msgstr ""
+
+#: DB:link_type/link_phrase:941
+msgid "pressing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:834 DB:link_type/name:834
+msgid "previous attribution"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1
+msgid "previous disc"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:834
+msgid "previously attributed to"
+msgstr ""
+
+#: DB:link_type/link_phrase:714 DB:link_type/name:714
+msgid "primary concert venue"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:714
+msgid "primary concert venue of"
+msgstr ""
+
+#: DB:link_attribute_type/name:618
+msgid "principal"
+msgstr ""
+
+#: DB:link_type/link_phrase:985 DB:link_type/name:985
+#: DB:link_type/long_link_phrase:985
+msgid "printed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:985
+msgid "printed by"
+msgstr ""
+
+#: DB:link_type/name:849 DB:link_type/reverse_link_phrase:849
+msgid "printed in"
+msgstr ""
+
+#: DB:link_type/link_phrase:849
+msgid "printing location for"
+msgstr ""
+
+#: DB:link_type/name:825 DB:link_type/name:824
+msgid "produced at"
+msgstr ""
+
+#: DB:link_type/name:951 DB:link_type/name:950
+msgid "produced for"
+msgstr ""
+
+#: DB:link_type/name:827 DB:link_type/name:826
+msgid "produced in"
+msgstr ""
+
+#: DB:link_type/link_phrase:154 DB:link_type/link_phrase:49
+msgid "produced material that was {additional:additionally} sampled in"
+msgstr ""
+
+#: DB:link_type/name:141 DB:link_type/name:30
+msgid "producer"
+msgstr ""
+
+#: DB:link_type/link_phrase:117 DB:link_type/name:117
+msgid "producer position"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:117
+msgid "producers"
+msgstr ""
+
+#: DB:link_type/link_phrase:256 DB:link_type/link_phrase:160
+#: DB:link_type/link_phrase:59 DB:link_type/link_phrase:72
+#: DB:link_type/name:256 DB:link_type/name:160 DB:link_type/name:59
+#: DB:link_type/name:72 DB:link_type/reverse_link_phrase:256
+#: DB:link_type/reverse_link_phrase:160 DB:link_type/reverse_link_phrase:59
+#: DB:link_type/reverse_link_phrase:72 DB:link_type/long_link_phrase:256
+#: DB:link_type/long_link_phrase:160 DB:link_type/long_link_phrase:59
+#: DB:link_type/long_link_phrase:72
+msgid "production"
+msgstr ""
+
+#: DB:link_type/name:37 DB:link_type/name:132
+msgid "programming"
+msgstr ""
+
+#: DB:link_type/link_phrase:359 DB:link_type/name:359
+#: DB:link_type/long_link_phrase:359
+msgid "promoted"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:359
+msgid "promoted by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:135 DB:link_type/long_link_phrase:62
+msgid "provided artist & repertoire support for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:23 DB:link_type/long_link_phrase:134
+msgid "provided booking for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:142
+msgid "provided legal representation for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:137 DB:link_type/long_link_phrase:1174
+msgid "provided {additional} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:993 DB:link_type/long_link_phrase:1170
+msgid "provided {additional} artwork on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:63 DB:link_type/long_link_phrase:146
+msgid "provided {additional} creative direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1171
+msgid "provided {additional} design on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:19 DB:link_type/long_link_phrase:130
+msgid "provided {additional} design/illustration on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1172 DB:link_type/long_link_phrase:125
+#: DB:link_type/long_link_phrase:27
+msgid "provided {additional} graphic design on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:927 DB:link_type/long_link_phrase:1173
+msgid "provided {additional} illustration on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:22
+msgid "provided {additional} legal representation for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:18
+msgid "provided {additional} {assistant} art direction on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:928
+msgid "provided {additional} {assistant} design on"
+msgstr ""
+
+#: DB:link_type/link_phrase:206 DB:link_type/link_phrase:127
+#: DB:link_type/name:362 DB:link_type/long_link_phrase:206
+#: DB:link_type/long_link_phrase:127
+msgid "published"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:206 DB:link_type/reverse_link_phrase:127
+msgid "publisher"
+msgstr ""
+
+#: DB:link_type/link_phrase:933 DB:link_type/name:933
+#: DB:link_type/long_link_phrase:933
+msgid "publishes series"
+msgstr ""
+
+#: DB:link_type/name:206 DB:link_type/name:127 DB:link_type/name:161
+#: DB:link_type/name:66 DB:link_type/name:208 DB:link_type/name:32
+msgid "publishing"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:933
+msgid "publishing label"
+msgstr ""
+
+#: DB:link_type/link_phrase:254 DB:link_type/link_phrase:74
+#: DB:link_type/name:912 DB:link_type/name:959 DB:link_type/name:254
+#: DB:link_type/name:74 DB:link_type/name:176
+msgid "purchase for download"
+msgstr ""
+
+#: DB:link_type/link_phrase:79 DB:link_type/name:960 DB:link_type/name:175
+#: DB:link_type/name:79 DB:link_type/name:913
+msgid "purchase for mail-order"
+msgstr ""
+
+#: DB:link_type/link_phrase:959 DB:link_type/link_phrase:176
+msgid "purchase music for download"
+msgstr ""
+
+#: DB:link_type/link_phrase:960 DB:link_type/link_phrase:175
+msgid "purchase music for mail-order"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:912
+msgid "purchase score for download"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:913
+msgid "purchase score for mail-order"
+msgstr ""
+
+#: DB:link_type/name:174
+msgid "purevolume"
+msgstr ""
+
+#: DB:link_type/link_phrase:1047 DB:link_type/long_link_phrase:1047
+msgid "quotes lyrics from"
+msgstr ""
+
+#: DB:link_type/link_phrase:1046 DB:link_type/long_link_phrase:1046
+msgid "quotes music from"
+msgstr ""
+
+#: DB:link_attribute_type/name:952
+msgid "re"
+msgstr ""
+
+#: DB:link_type/link_phrase:917 DB:link_type/long_link_phrase:917
+msgid "reconstructed"
+msgstr ""
+
+#: DB:link_type/name:917 DB:link_type/reverse_link_phrase:917
+msgid "reconstructed by"
+msgstr ""
+
+#: DB:link_type/name:809 DB:link_type/name:810 DB:link_type/name:693
+#: DB:link_type/name:695 DB:link_type/reverse_link_phrase:809
+#: DB:link_type/reverse_link_phrase:810
+msgid "recorded at"
+msgstr ""
+
+#: DB:link_type/link_phrase:1006 DB:link_type/link_phrase:1007
+#: DB:link_type/link_phrase:1008 DB:link_type/name:1006 DB:link_type/name:1007
+#: DB:link_type/name:1008
+msgid "recorded during"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1011 DB:link_type/long_link_phrase:1012
+msgid "recorded field recordings for"
+msgstr ""
+
+#: DB:link_type/name:698 DB:link_type/name:699
+msgid "recorded in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1008
+msgid "recorded music series"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1006
+msgid "recorded recordings"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1007
+msgid "recorded release groups"
+msgstr ""
+
+#: DB:link_type/name:36 DB:link_type/name:128
+msgid "recording"
+msgstr ""
+
+#: DB:link_type/name:121
+msgid "recording contract"
+msgstr ""
+
+#: DB:link_type/name:702
+msgid "recording engineer position"
+msgstr ""
+
+#: DB:link_type/link_phrase:702
+msgid "recording engineer position at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:702
+msgid "recording engineers"
+msgstr ""
+
+#: DB:link_type/link_phrase:809 DB:link_type/link_phrase:810
+msgid "recording location for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:239
+msgid "referred to in medleys"
+msgstr ""
+
+#: DB:link_type/link_phrase:201
+msgid "reissuing the catalog of"
+msgstr ""
+
+#: DB:link_type/link_phrase:738 DB:link_type/reverse_link_phrase:738
+msgid "related instruments"
+msgstr ""
+
+#: DB:link_type/name:738
+msgid "related to"
+msgstr ""
+
+#: DB:link_type/link_phrase:3
+msgid "released in support of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:943
+msgid "relocated from"
+msgstr ""
+
+#: DB:link_type/link_phrase:943 DB:link_type/name:943
+#: DB:link_type/long_link_phrase:943
+msgid "relocated to"
+msgstr ""
+
+#: DB:link_type/name:6 DB:link_type/name:236
+msgid "remaster"
+msgstr ""
+
+#: DB:link_type/link_phrase:6 DB:link_type/link_phrase:236
+msgid "remaster of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:6
+msgid "remastered versions"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:236
+msgid "remasters"
+msgstr ""
+
+#: DB:link_type/name:230 DB:link_type/name:9
+msgid "remix"
+msgstr ""
+
+#: DB:link_type/link_phrase:230 DB:link_type/link_phrase:9
+msgid "remix of"
+msgstr ""
+
+#: DB:link_type/name:829 DB:link_type/name:828
+msgid "remixed at"
+msgstr ""
+
+#: DB:link_type/name:1178 DB:link_type/reverse_link_phrase:1178
+msgid "remixed for"
+msgstr ""
+
+#: DB:link_type/name:831 DB:link_type/name:830
+msgid "remixed in"
+msgstr ""
+
+#: DB:link_type/name:153 DB:link_type/name:47
+msgid "remixer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:9
+msgid "remixes"
+msgstr ""
+
+#: DB:link_type/link_phrase:50 DB:link_type/link_phrase:157
+#: DB:link_type/link_phrase:13 DB:link_type/link_phrase:234
+#: DB:link_type/name:50 DB:link_type/name:157 DB:link_type/name:13
+#: DB:link_type/name:234 DB:link_type/reverse_link_phrase:50
+#: DB:link_type/reverse_link_phrase:157 DB:link_type/reverse_link_phrase:13
+#: DB:link_type/reverse_link_phrase:234 DB:link_type/long_link_phrase:50
+#: DB:link_type/long_link_phrase:157 DB:link_type/long_link_phrase:13
+#: DB:link_type/long_link_phrase:234
+msgid "remixes and compilations"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:202 DB:link_type/reverse_link_phrase:1079
+msgid "renamed from"
+msgstr ""
+
+#: DB:link_type/link_phrase:202 DB:link_type/link_phrase:1079
+msgid "renamed into"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1009
+msgid "replaced"
+msgstr ""
+
+#: DB:link_type/link_phrase:1009 DB:link_type/name:1009
+msgid "replaced by"
+msgstr ""
+
+#: DB:link_type/link_phrase:836 DB:link_type/name:836
+msgid "rescheduled as"
+msgstr ""
+
+#: DB:link_type/link_phrase:1164 DB:link_type/name:1164
+#: DB:link_type/reverse_link_phrase:1164 DB:link_type/long_link_phrase:1164
+msgid "residence position"
+msgstr ""
+
+#: DB:link_type/link_phrase:994
+msgid "residencies"
+msgstr ""
+
+#: DB:link_type/name:994
+msgid "residency"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:994
+msgid "residency by"
+msgstr ""
+
+#: DB:link_type/name:842 DB:link_type/name:94
+msgid "review"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:842 DB:link_type/reverse_link_phrase:94
+msgid "review page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:842 DB:link_type/link_phrase:94
+msgid "reviews"
+msgstr ""
+
+#: DB:link_type/link_phrase:844 DB:link_type/long_link_phrase:844
+msgid "revised"
+msgstr ""
+
+#: DB:link_type/name:882 DB:link_type/reverse_link_phrase:882
+msgid "revised at"
+msgstr ""
+
+#: DB:link_type/name:844 DB:link_type/reverse_link_phrase:844
+msgid "revised by"
+msgstr ""
+
+#: DB:link_type/name:881 DB:link_type/reverse_link_phrase:881
+msgid "revised in"
+msgstr ""
+
+#: DB:link_type/link_phrase:881 DB:link_type/link_phrase:882
+msgid "revising location for"
+msgstr ""
+
+#: DB:link_type/name:315 DB:link_type/reverse_link_phrase:315
+msgid "revision of"
+msgstr ""
+
+#: DB:link_type/name:349 DB:link_type/reverse_link_phrase:349
+msgid "rights society"
+msgstr ""
+
+#: DB:link_type/link_phrase:349
+msgid "rights society associated with"
+msgstr ""
+
+#: DB:link_type/link_phrase:112 DB:link_type/reverse_link_phrase:112
+msgid "romantically involved with"
+msgstr ""
+
+#: DB:link_type/link_phrase:83 DB:link_type/link_phrase:258
+msgid "samples IMDb entry"
+msgstr ""
+
+#: DB:link_type/name:154 DB:link_type/name:49
+msgid "samples from artist"
+msgstr ""
+
+#: DB:link_type/name:69 DB:link_type/name:231
+msgid "samples material"
+msgstr ""
+
+#: DB:link_type/link_phrase:1083 DB:link_type/name:1083
+msgid "schedule"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1083
+msgid "schedule for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1166 DB:link_type/name:1166
+msgid "school director at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1166
+msgid "school directors"
+msgstr ""
+
+#: DB:link_type/name:308 DB:link_type/name:976 DB:link_type/name:977
+#: DB:link_type/name:307 DB:link_type/name:280
+msgid "secondhandsongs"
+msgstr ""
+
+#: DB:link_type/link_phrase:811 DB:link_type/link_phrase:816
+#: DB:link_type/link_phrase:817 DB:link_type/link_phrase:938
+msgid "setlist.fm"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:811 DB:link_type/reverse_link_phrase:816
+#: DB:link_type/reverse_link_phrase:817 DB:link_type/reverse_link_phrase:938
+msgid "setlist.fm page for"
+msgstr ""
+
+#: DB:link_type/name:811 DB:link_type/name:816 DB:link_type/name:817
+#: DB:link_type/name:938
+msgid "setlistfm"
+msgstr ""
+
+#: DB:link_type/link_phrase:729 DB:link_type/name:729
+msgid "show notes"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:729
+msgid "show notes for"
+msgstr ""
+
+#: DB:link_type/name:110
+msgid "sibling"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:121
+msgid "signed"
+msgstr ""
+
+#: DB:link_type/link_phrase:121
+msgid "signed by"
+msgstr ""
+
+#: DB:link_attribute_type/name:1199
+msgid "singing"
+msgstr ""
+
+#: DB:link_type/name:11
+msgid "single from"
+msgstr ""
+
+#: DB:link_type/link_phrase:11
+msgid "single/EP which was taken from"
+msgstr ""
+
+#: DB:link_type/name:784 DB:link_type/name:783 DB:link_type/name:218
+#: DB:link_type/name:429 DB:link_type/name:192
+msgid "social network"
+msgstr ""
+
+#: DB:link_type/link_phrase:784 DB:link_type/link_phrase:783
+#: DB:link_type/link_phrase:218 DB:link_type/link_phrase:429
+#: DB:link_type/link_phrase:192
+msgid "social networking"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:784 DB:link_type/reverse_link_phrase:783
+#: DB:link_type/reverse_link_phrase:218 DB:link_type/reverse_link_phrase:429
+#: DB:link_type/reverse_link_phrase:192
+msgid "social networking page for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1351
+msgid "solfeggio"
+msgstr ""
+
+#: DB:link_attribute_type/name:596
+msgid "solo"
+msgstr ""
+
+#: DB:link_type/name:289
+msgid "songfacts"
+msgstr ""
+
+#: DB:link_type/name:786 DB:link_type/name:785 DB:link_type/name:787
+msgid "songkick"
+msgstr ""
+
+#: DB:link_attribute_type/description:10 DB:link_attribute_type/name:10
+msgid "soprano vocals"
+msgstr ""
+
+#: DB:link_type/name:133 DB:link_type/name:29
+msgid "sound"
+msgstr ""
+
+#: DB:link_type/name:870 DB:link_type/name:291 DB:link_type/name:290
+#: DB:link_type/name:940
+msgid "soundcloud"
+msgstr ""
+
+#: DB:link_attribute_type/name:561
+msgid "spoken vocals"
+msgstr ""
+
+#: DB:link_type/link_phrase:287
+msgid "standalone website"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:287
+msgid "standalone website for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1020
+msgid "step"
+msgstr ""
+
+#: DB:link_type/link_phrase:997 DB:link_type/link_phrase:194
+msgid "stream for free"
+msgstr ""
+
+#: DB:link_type/link_phrase:268 DB:link_type/link_phrase:85
+msgid "stream {video} for free"
+msgstr ""
+
+#: DB:link_type/name:978 DB:link_type/name:980 DB:link_type/name:1005
+#: DB:link_type/name:979
+msgid "streaming"
+msgstr ""
+
+#: DB:link_type/link_phrase:978 DB:link_type/link_phrase:980
+#: DB:link_type/link_phrase:1005 DB:link_type/link_phrase:979
+msgid "streaming page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:978 DB:link_type/reverse_link_phrase:980
+#: DB:link_type/reverse_link_phrase:1005 DB:link_type/reverse_link_phrase:979
+msgid "streaming page for"
+msgstr ""
+
+#: DB:link_type/link_phrase:847 DB:link_type/reverse_link_phrase:923
+msgid "students"
+msgstr ""
+
+#: DB:link_type/link_phrase:923 DB:link_type/name:923
+#: DB:link_type/long_link_phrase:923
+msgid "studied at"
+msgstr ""
+
+#: DB:link_attribute_type/name:1310
+msgid "sub"
+msgstr ""
+
+#: DB:link_type/name:1095
+msgid "subgenre"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1095
+msgid "subgenre of"
+msgstr ""
+
+#: DB:link_type/link_phrase:1095
+msgid "subgenres"
+msgstr ""
+
+#: DB:link_type/name:722
+msgid "subgroup"
+msgstr ""
+
+#: DB:link_type/link_phrase:722
+msgid "subgroup of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:722
+msgid "subgroups"
+msgstr ""
+
+#: DB:link_attribute_type/name:1125
+msgid "subject"
+msgstr ""
+
+#: DB:link_type/link_phrase:823 DB:link_type/name:823
+msgid "subseries"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:823
+msgid "subseries of"
+msgstr ""
+
+#: DB:link_type/link_phrase:200
+msgid "subsidiaries"
+msgstr ""
+
+#: DB:link_type/name:736
+msgid "subtype"
+msgstr ""
+
+#: DB:link_type/link_phrase:736
+msgid "subtypes"
+msgstr ""
+
+#: DB:link_type/name:799
+msgid "support act"
+msgstr ""
+
+#: DB:link_type/link_phrase:799
+msgid "support act at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:799
+msgid "support acts"
+msgstr ""
+
+#: DB:link_type/name:932 DB:link_type/reverse_link_phrase:932
+msgid "supporting DJ"
+msgstr ""
+
+#: DB:link_type/link_phrase:932
+msgid "supporting DJ at"
+msgstr ""
+
+#: DB:link_type/link_phrase:104
+msgid "supporting artist for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:104
+msgid "supporting artists"
+msgstr ""
+
+#: DB:link_type/name:104
+msgid "supporting musician"
+msgstr ""
+
+#: DB:link_type/name:3
+msgid "supporting release"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:3
+msgid "supporting releases"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:105
+msgid "supporting {instrument} by"
+msgstr ""
+
+#: DB:link_type/link_phrase:105
+msgid "supporting {instrument} for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1150
+msgid "task"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:847
+msgid "taught"
+msgstr ""
+
+#: DB:link_type/link_phrase:893 DB:link_type/link_phrase:924
+#: DB:link_type/name:924 DB:link_type/long_link_phrase:893
+#: DB:link_type/long_link_phrase:924
+msgid "taught at"
+msgstr ""
+
+#: DB:link_type/name:847 DB:link_type/name:893
+msgid "teacher"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:847 DB:link_type/reverse_link_phrase:893
+msgid "teachers"
+msgstr ""
+
+#: DB:link_attribute_type/description:11 DB:link_attribute_type/name:11
+msgid "tenor vocals"
+msgstr ""
+
+#: DB:link_type/name:1193 DB:link_type/name:1194 DB:link_type/name:1195
+#: DB:link_type/name:1196 DB:link_type/name:1197
+msgid "ticketing"
+msgstr ""
+
+#: DB:link_type/link_phrase:1193 DB:link_type/link_phrase:1194
+#: DB:link_type/link_phrase:1195 DB:link_type/link_phrase:1196
+#: DB:link_type/link_phrase:1197
+msgid "ticketing page"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1193 DB:link_type/reverse_link_phrase:1194
+#: DB:link_type/reverse_link_phrase:1195 DB:link_type/reverse_link_phrase:1196
+#: DB:link_type/reverse_link_phrase:1197
+msgid "ticketing page for"
+msgstr ""
+
+#: DB:link_attribute_type/name:830
+msgid "time"
+msgstr ""
+
+#: DB:link_type/name:859
+msgid "tour"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:859
+msgid "tour by"
+msgstr ""
+
+#: DB:link_type/name:888
+msgid "tour in support of"
+msgstr ""
+
+#: DB:link_type/link_phrase:859
+msgid "tours"
+msgstr ""
+
+#: DB:link_type/name:1179
+msgid "transfer"
+msgstr ""
+
+#: DB:link_type/name:1182
+msgid "transferred at"
+msgstr ""
+
+#: DB:link_type/name:1181
+msgid "transferred in"
+msgstr ""
+
+#: DB:link_type/name:2
+msgid "transl-tracklisting"
+msgstr ""
+
+#: DB:link_attribute_type/name:517 DB:link_type/link_phrase:871
+msgid "translated"
+msgstr ""
+
+#: DB:link_type/name:883 DB:link_type/reverse_link_phrase:883
+msgid "translated at"
+msgstr ""
+
+#: DB:link_type/name:884
+msgid "translated in"
+msgstr ""
+
+#: DB:link_type/name:1082
+msgid "translated version"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1082
+msgid "translated version of"
+msgstr ""
+
+#: DB:link_type/link_phrase:1082
+msgid "translated versions"
+msgstr ""
+
+#: DB:link_attribute_type/name:1018 DB:link_type/name:871 DB:link_type/name:872
+msgid "translator"
+msgstr ""
+
+#: DB:link_attribute_type/name:477
+msgid "transliterated"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:2
+msgid "transliterated/translated track listing of"
+msgstr ""
+
+#: DB:link_type/link_phrase:2
+msgid "transliterated/translated track listings"
+msgstr ""
+
+#: DB:link_attribute_type/name:834
+msgid "treble vocals"
+msgstr ""
+
+#: DB:link_type/name:728 DB:link_type/name:65 DB:link_type/name:970
+msgid "tribute"
+msgstr ""
+
+#: DB:link_type/link_phrase:65 DB:link_type/link_phrase:970
+msgid "tribute albums"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:728
+msgid "tribute artists"
+msgstr ""
+
+#: DB:link_type/link_phrase:936
+msgid "tribute events"
+msgstr ""
+
+#: DB:link_type/link_phrase:728 DB:link_type/name:936
+#: DB:link_type/reverse_link_phrase:936 DB:link_type/reverse_link_phrase:65
+#: DB:link_type/reverse_link_phrase:970
+msgid "tribute to"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:736
+msgid "type of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1090
+msgid "used in"
+msgstr ""
+
+#: DB:link_type/link_phrase:1090
+msgid "used instruments"
+msgstr ""
+
+#: DB:link_type/name:86 DB:link_type/name:191 DB:link_type/name:210
+#: DB:link_type/name:788 DB:link_type/name:992 DB:link_type/name:1013
+msgid "vgmdb"
+msgstr ""
+
+#: DB:link_attribute_type/name:582 DB:link_type/link_phrase:1184
+#: DB:link_type/link_phrase:961 DB:link_type/name:1184 DB:link_type/name:961
+#: DB:link_type/reverse_link_phrase:1184 DB:link_type/reverse_link_phrase:961
+#: DB:link_type/long_link_phrase:1184 DB:link_type/long_link_phrase:961
+msgid "video"
+msgstr ""
+
+#: DB:link_type/name:858
+msgid "video appearance"
+msgstr ""
+
+#: DB:link_type/link_phrase:804 DB:link_type/link_phrase:304
+#: DB:link_type/link_phrase:805 DB:link_type/link_phrase:303
+#: DB:link_type/link_phrase:495 DB:link_type/name:804 DB:link_type/name:304
+#: DB:link_type/name:805 DB:link_type/name:303 DB:link_type/name:495
+msgid "video channel"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:804 DB:link_type/reverse_link_phrase:304
+#: DB:link_type/reverse_link_phrase:805 DB:link_type/reverse_link_phrase:303
+#: DB:link_type/reverse_link_phrase:495
+msgid "video channel for"
+msgstr ""
+
+#: DB:link_type/name:962 DB:link_type/name:1185
+msgid "video director"
+msgstr ""
+
+#: DB:link_type/name:963 DB:link_type/name:966
+msgid "video shot at"
+msgstr ""
+
+#: DB:link_type/name:964
+msgid "video shot in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:858
+msgid "visual appearances"
+msgstr ""
+
+#: DB:link_attribute_type/name:3 DB:link_type/name:60 DB:link_type/name:149
+msgid "vocal"
+msgstr ""
+
+#: DB:link_type/name:296 DB:link_type/name:298 DB:link_type/name:294
+msgid "vocal arranger"
+msgstr ""
+
+#: DB:link_type/name:107
+msgid "vocal supporting musician"
+msgstr ""
+
+#: DB:link_type/name:292
+msgid "voice actor"
+msgstr ""
+
+#: DB:link_type/link_phrase:292
+msgid "voice of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:292
+msgid "voiced by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1163
+msgid "was a VJ at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:937 DB:link_type/long_link_phrase:855
+msgid "was a composer-in-residence at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:806
+msgid "was a conductor at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:796 DB:link_type/long_link_phrase:797
+msgid "was a launch event for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:798
+msgid "was a main performer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:887
+msgid "was a performance of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1166
+msgid "was a school director at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:799
+msgid "was a support act at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:932
+msgid "was a supporting DJ at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1084
+msgid "was an engineer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:807
+msgid "was an orchestra at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:890 DB:link_type/reverse_link_phrase:889
+#: DB:link_type/reverse_link_phrase:892 DB:link_type/reverse_link_phrase:891
+msgid "was commissioned by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:794
+msgid "was held at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1006 DB:link_type/long_link_phrase:1007
+msgid "was recorded during"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:3
+msgid "was released in support of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:202 DB:link_type/long_link_phrase:1079
+msgid "was renamed into"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1009
+msgid "was replaced by"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:836
+msgid "was rescheduled as"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:760 DB:link_type/long_link_phrase:759
+msgid "was the {guest} concertmaster for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:986 DB:link_type/long_link_phrase:987
+msgid "was the {instrument:%|instruments} technician for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:36 DB:link_type/long_link_phrase:128
+msgid "was {additional} {assistant} {associate} {co:co-}recording engineer for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1186 DB:link_type/long_link_phrase:1187
+msgid "was {assistant} audio director for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1165
+msgid "was {assistant} carillonneur at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:856
+msgid "was {assistant} organist at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:962 DB:link_type/long_link_phrase:1185
+msgid "was {assistant} video director for"
+msgstr ""
+
+#: DB:link_attribute_type/name:1151
+msgid "whistling"
+msgstr ""
+
+#: DB:link_type/name:1087 DB:link_type/name:351 DB:link_type/name:353
+#: DB:link_type/name:749 DB:link_type/name:594 DB:link_type/name:354
+#: DB:link_type/name:790 DB:link_type/name:352 DB:link_type/name:733
+#: DB:link_type/name:358
+msgid "wikidata"
+msgstr ""
+
+#: DB:link_type/name:179 DB:link_type/name:595 DB:link_type/name:355
+#: DB:link_type/name:744 DB:link_type/name:279 DB:link_type/name:216
+#: DB:link_type/name:731 DB:link_type/name:89 DB:link_type/name:789
+msgid "wikipedia"
+msgstr ""
+
+#: DB:link_attribute_type/name:1346
+msgid "wind/brass conducting"
+msgstr ""
+
+#: DB:link_type/link_phrase:1002 DB:link_type/name:1002
+#: DB:link_type/reverse_link_phrase:1002 DB:link_type/long_link_phrase:1002
+msgid "work cataloguing"
+msgstr ""
+
+#: DB:link_type/name:921 DB:link_type/reverse_link_phrase:921
+msgid "work list entry"
+msgstr ""
+
+#: DB:link_type/link_phrase:921
+msgid "work list entry for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:704
+msgid "works as a mastering engineer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:703
+msgid "works as a mixing engineer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:702
+msgid "works as a recording engineer at"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:701
+msgid "works as an engineer at"
+msgstr ""
+
+#: DB:link_type/link_phrase:956
+msgid "works premiered"
+msgstr ""
+
+#: DB:link_type/name:54 DB:link_type/name:167
+msgid "writer"
+msgstr ""
+
+#: DB:link_type/name:874
+msgid "written at"
+msgstr ""
+
+#: DB:link_type/name:873
+msgid "written in"
+msgstr ""
+
+#: DB:link_type/name:791 DB:link_type/name:792 DB:link_type/name:193
+#: DB:link_type/name:225 DB:link_type/name:528
+msgid "youtube"
+msgstr ""
+
+#: DB:link_type/name:1080
+msgid "youtube music"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:886
+msgid "{additional:additionally} arranged at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:885
+msgid "{additional:additionally} arranged in"
+msgstr ""
+
+#: DB:link_type/link_phrase:55 DB:link_type/link_phrase:168
+#: DB:link_type/long_link_phrase:55 DB:link_type/long_link_phrase:168
+msgid "{additional:additionally} composed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:876
+msgid "{additional:additionally} composed at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:875
+msgid "{additional:additionally} composed in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:819 DB:link_type/reverse_link_phrase:820
+msgid "{additional:additionally} edited at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:822 DB:link_type/reverse_link_phrase:821
+msgid "{additional:additionally} edited in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:813 DB:link_type/reverse_link_phrase:812
+msgid "{additional:additionally} engineered at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:814 DB:link_type/reverse_link_phrase:815
+msgid "{additional:additionally} engineered in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:694 DB:link_type/reverse_link_phrase:696
+msgid "{additional:additionally} mixed at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:757 DB:link_type/reverse_link_phrase:758
+msgid "{additional:additionally} mixed in"
+msgstr ""
+
+#: DB:link_type/link_phrase:40 DB:link_type/link_phrase:164
+#: DB:link_type/link_phrase:300 DB:link_type/long_link_phrase:40
+#: DB:link_type/long_link_phrase:164 DB:link_type/long_link_phrase:300
+msgid "{additional:additionally} orchestrated"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:40
+msgid "{additional:additionally} orchestrator"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:825 DB:link_type/reverse_link_phrase:824
+msgid "{additional:additionally} produced at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:827 DB:link_type/reverse_link_phrase:826
+msgid "{additional:additionally} produced in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:693 DB:link_type/reverse_link_phrase:695
+msgid "{additional:additionally} recorded at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:698 DB:link_type/reverse_link_phrase:699
+msgid "{additional:additionally} recorded in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:829 DB:link_type/reverse_link_phrase:828
+msgid "{additional:additionally} remixed at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:831 DB:link_type/reverse_link_phrase:830
+msgid "{additional:additionally} remixed in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:69 DB:link_type/reverse_link_phrase:231
+msgid "{additional:additionally} sampled by"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:963 DB:link_type/reverse_link_phrase:966
+msgid "{additional:additionally} shot at"
+msgstr ""
+
+#: DB:link_type/link_phrase:966
+msgid "{additional:additionally} shot for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:964
+msgid "{additional:additionally} shot in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1182
+msgid "{additional:additionally} transferred at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1181
+msgid "{additional:additionally} transferred in"
+msgstr ""
+
+#: DB:link_type/link_phrase:872 DB:link_type/long_link_phrase:871
+#: DB:link_type/long_link_phrase:872
+msgid "{additional:additionally} translated"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:884
+msgid "{additional:additionally} translated in"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:874
+msgid "{additional:additionally} written at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:873
+msgid "{additional:additionally} written in"
+msgstr ""
+
+#: DB:link_type/link_phrase:54 DB:link_type/link_phrase:167
+#: DB:link_type/long_link_phrase:54 DB:link_type/long_link_phrase:167
+msgid "{additional:additionally} wrote"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:57 DB:link_type/long_link_phrase:169
+msgid "{additional:additionally} wrote the libretto for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:56 DB:link_type/long_link_phrase:165
+msgid "{additional:additionally} wrote the lyrics for"
+msgstr ""
+
+#: DB:link_type/link_phrase:46 DB:link_type/link_phrase:151
+#: DB:link_type/long_link_phrase:46 DB:link_type/long_link_phrase:151
+msgid "{additional:additionally} {assistant} conducted"
+msgstr ""
+
+#: DB:link_type/link_phrase:153 DB:link_type/link_phrase:47
+#: DB:link_type/long_link_phrase:153 DB:link_type/long_link_phrase:47
+msgid "{additional:additionally} {assistant} remixed"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:37 DB:link_type/long_link_phrase:132
+msgid ""
+"{additional:additionally} {assistant} {associate} programmed {instrument:% "
+"on}"
+msgstr ""
+
+#: DB:link_type/link_phrase:140 DB:link_type/link_phrase:31
+#: DB:link_type/long_link_phrase:140 DB:link_type/long_link_phrase:31
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}audio engineered"
+msgstr ""
+
+#: DB:link_type/link_phrase:727 DB:link_type/link_phrase:726
+#: DB:link_type/long_link_phrase:727 DB:link_type/long_link_phrase:726
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}balance engineered"
+msgstr ""
+
+#: DB:link_type/link_phrase:144 DB:link_type/link_phrase:38
+#: DB:link_type/long_link_phrase:144 DB:link_type/long_link_phrase:38
+msgid "{additional:additionally} {assistant} {associate} {co:co-}edited"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:136
+msgid "{additional:additionally} {assistant} {associate} {co:co-}mastered"
+msgstr ""
+
+#: DB:link_type/link_phrase:26 DB:link_type/link_phrase:143
+#: DB:link_type/long_link_phrase:26 DB:link_type/long_link_phrase:143
+msgid "{additional:additionally} {assistant} {associate} {co:co-}mixed"
+msgstr ""
+
+#: DB:link_type/link_phrase:133 DB:link_type/link_phrase:29
+#: DB:link_type/long_link_phrase:133 DB:link_type/long_link_phrase:29
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}sound engineered"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1179
+msgid "{additional:additionally} {assistant} {associate} {co:co-}transferred"
+msgstr ""
+
+#: DB:link_type/link_phrase:28 DB:link_type/link_phrase:138
+#: DB:link_type/long_link_phrase:28 DB:link_type/long_link_phrase:138
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}{executive:"
+"executive }engineered"
+msgstr ""
+
+#: DB:link_type/link_phrase:141 DB:link_type/link_phrase:30
+#: DB:link_type/long_link_phrase:141 DB:link_type/long_link_phrase:30
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}{executive:"
+"executive }produced"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:42
+msgid ""
+"{additional:additionally} {assistant} {associate} {co:co-}{pre:pre-}{re}"
+"mastered"
+msgstr ""
+
+#: DB:link_type/link_phrase:295 DB:link_type/link_phrase:297
+#: DB:link_type/link_phrase:293 DB:link_type/long_link_phrase:295
+#: DB:link_type/long_link_phrase:297 DB:link_type/long_link_phrase:293
+msgid "{additional:additionally} {associate} {co:co-}arranged"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:41 DB:link_type/long_link_phrase:158
+#: DB:link_type/long_link_phrase:282
+msgid ""
+"{additional:additionally} {associate} {co:co-}arranged {instrument:%|"
+"instruments} on"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:296 DB:link_type/long_link_phrase:298
+#: DB:link_type/long_link_phrase:294
+msgid ""
+"{additional:additionally} {associate} {co:co-}arranged {vocal:%|vocals} on"
+msgstr ""
+
+#: DB:link_type/link_phrase:41 DB:link_type/link_phrase:158
+#: DB:link_type/link_phrase:282
+msgid ""
+"{additional:additionally} {associate} {instrument:%|instruments} {co:co-}"
+"arranged"
+msgstr ""
+
+#: DB:link_type/link_phrase:296 DB:link_type/link_phrase:298
+#: DB:link_type/link_phrase:294
+msgid "{additional:additionally} {associate} {vocal:%|vocals} {co:co-}arranged"
+msgstr ""
+
+#: DB:link_type/link_phrase:51 DB:link_type/link_phrase:156
+#: DB:link_type/long_link_phrase:51 DB:link_type/long_link_phrase:156
+msgid "{additional:additionally} {guest} {solo} performed"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:697
+msgid "{additional:additionally} {pre:pre-}{re}mastered at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:756
+msgid "{additional:additionally} {pre:pre-}{re}mastered in"
+msgstr ""
+
+#: DB:link_type/link_phrase:885 DB:link_type/link_phrase:886
+msgid "{additional} arranging location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:137 DB:link_type/link_phrase:1174
+#: DB:link_type/reverse_link_phrase:137 DB:link_type/reverse_link_phrase:1174
+msgid "{additional} art direction"
+msgstr ""
+
+#: DB:link_type/link_phrase:993 DB:link_type/link_phrase:1170
+#: DB:link_type/reverse_link_phrase:993 DB:link_type/reverse_link_phrase:1170
+msgid "{additional} artwork"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:55 DB:link_type/reverse_link_phrase:168
+msgid "{additional} composer"
+msgstr ""
+
+#: DB:link_type/link_phrase:875 DB:link_type/link_phrase:876
+msgid "{additional} composing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:63 DB:link_type/link_phrase:146
+#: DB:link_type/reverse_link_phrase:63 DB:link_type/reverse_link_phrase:146
+msgid "{additional} creative direction"
+msgstr ""
+
+#: DB:link_type/link_phrase:1171 DB:link_type/reverse_link_phrase:1171
+msgid "{additional} design"
+msgstr ""
+
+#: DB:link_type/link_phrase:19 DB:link_type/link_phrase:130
+#: DB:link_type/reverse_link_phrase:19 DB:link_type/reverse_link_phrase:130
+msgid "{additional} design/illustration"
+msgstr ""
+
+#: DB:link_type/link_phrase:822 DB:link_type/link_phrase:821
+#: DB:link_type/link_phrase:819 DB:link_type/link_phrase:820
+msgid "{additional} editing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:814 DB:link_type/link_phrase:815
+#: DB:link_type/link_phrase:813 DB:link_type/link_phrase:812
+msgid "{additional} engineering location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1172 DB:link_type/link_phrase:125
+#: DB:link_type/link_phrase:27 DB:link_type/reverse_link_phrase:1172
+#: DB:link_type/reverse_link_phrase:125 DB:link_type/reverse_link_phrase:27
+msgid "{additional} graphic design"
+msgstr ""
+
+#: DB:link_type/link_phrase:927 DB:link_type/link_phrase:1173
+#: DB:link_type/reverse_link_phrase:927 DB:link_type/reverse_link_phrase:1173
+msgid "{additional} illustration"
+msgstr ""
+
+#: DB:link_type/link_phrase:22 DB:link_type/reverse_link_phrase:22
+msgid "{additional} legal representation"
+msgstr ""
+
+#: DB:link_type/link_phrase:57 DB:link_type/reverse_link_phrase:57
+#: DB:link_type/reverse_link_phrase:169
+msgid "{additional} librettist"
+msgstr ""
+
+#: DB:link_type/link_phrase:169
+msgid "{additional} libretto"
+msgstr ""
+
+#: DB:link_type/link_phrase:879 DB:link_type/link_phrase:880
+msgid "{additional} libretto writing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:24 DB:link_type/reverse_link_phrase:24
+msgid "{additional} liner notes {translator}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:56 DB:link_type/reverse_link_phrase:165
+msgid "{additional} lyricist"
+msgstr ""
+
+#: DB:link_type/link_phrase:56 DB:link_type/link_phrase:165
+msgid "{additional} lyrics"
+msgstr ""
+
+#: DB:link_type/link_phrase:877 DB:link_type/link_phrase:878
+msgid "{additional} lyrics writing location for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:878
+msgid "{additional} lyrics written at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:877
+msgid "{additional} lyrics written in"
+msgstr ""
+
+#: DB:link_type/link_phrase:757 DB:link_type/link_phrase:758
+#: DB:link_type/link_phrase:694 DB:link_type/link_phrase:696
+msgid "{additional} mixing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:150 DB:link_type/link_phrase:45
+#: DB:link_type/reverse_link_phrase:150 DB:link_type/reverse_link_phrase:45
+msgid "{additional} orchestra"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:164 DB:link_type/reverse_link_phrase:300
+msgid "{additional} orchestrator"
+msgstr ""
+
+#: DB:link_type/link_phrase:123 DB:link_type/link_phrase:1175
+#: DB:link_type/link_phrase:20 DB:link_type/reverse_link_phrase:123
+#: DB:link_type/reverse_link_phrase:1175 DB:link_type/reverse_link_phrase:20
+msgid "{additional} photography"
+msgstr ""
+
+#: DB:link_type/link_phrase:827 DB:link_type/link_phrase:826
+#: DB:link_type/link_phrase:825 DB:link_type/link_phrase:824
+msgid "{additional} producing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:698 DB:link_type/link_phrase:693
+#: DB:link_type/link_phrase:695 DB:link_type/link_phrase:699
+msgid "{additional} recording location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:831 DB:link_type/link_phrase:830
+#: DB:link_type/link_phrase:829 DB:link_type/link_phrase:828
+msgid "{additional} remixing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:231
+msgid "{additional} samples"
+msgstr ""
+
+#: DB:link_type/link_phrase:69
+msgid "{additional} samples from"
+msgstr ""
+
+#: DB:link_type/link_phrase:963 DB:link_type/link_phrase:964
+msgid "{additional} shooting location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1181 DB:link_type/link_phrase:1182
+msgid "{additional} transferring location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:883 DB:link_type/link_phrase:884
+msgid "{additional} translating location for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:871 DB:link_type/reverse_link_phrase:872
+msgid "{additional} translator"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:54 DB:link_type/reverse_link_phrase:167
+msgid "{additional} writer"
+msgstr ""
+
+#: DB:link_type/link_phrase:873 DB:link_type/link_phrase:874
+msgid "{additional} writing location for"
+msgstr ""
+
+#: DB:link_type/link_phrase:18 DB:link_type/reverse_link_phrase:18
+msgid "{additional} {assistant} art direction"
+msgstr ""
+
+#: DB:link_type/link_phrase:152 DB:link_type/link_phrase:53
+#: DB:link_type/reverse_link_phrase:152 DB:link_type/reverse_link_phrase:53
+msgid "{additional} {assistant} chorus master"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:46 DB:link_type/reverse_link_phrase:151
+msgid "{additional} {assistant} conductor"
+msgstr ""
+
+#: DB:link_type/link_phrase:928 DB:link_type/reverse_link_phrase:928
+msgid "{additional} {assistant} design"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:153 DB:link_type/reverse_link_phrase:47
+msgid "{additional} {assistant} remixer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:140 DB:link_type/reverse_link_phrase:31
+msgid "{additional} {assistant} {associate} {co:co-}audio engineer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:727 DB:link_type/reverse_link_phrase:726
+msgid "{additional} {assistant} {associate} {co:co-}balance engineer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:144 DB:link_type/reverse_link_phrase:38
+msgid "{additional} {assistant} {associate} {co:co-}editor"
+msgstr ""
+
+#: DB:link_type/link_phrase:136 DB:link_type/reverse_link_phrase:136
+msgid "{additional} {assistant} {associate} {co:co-}mastering"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:26 DB:link_type/reverse_link_phrase:143
+msgid "{additional} {assistant} {associate} {co:co-}mixer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:36 DB:link_type/reverse_link_phrase:128
+msgid "{additional} {assistant} {associate} {co:co-}recording engineer"
+msgstr ""
+
+#: DB:link_type/link_phrase:36 DB:link_type/link_phrase:128
+msgid "{additional} {assistant} {associate} {co:co-}recording engineer for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:133 DB:link_type/reverse_link_phrase:29
+msgid "{additional} {assistant} {associate} {co:co-}sound engineer"
+msgstr ""
+
+#: DB:link_type/link_phrase:1179
+msgid "{additional} {assistant} {associate} {co:co-}transferred"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1179
+msgid "{additional} {assistant} {associate} {co:co-}transferrer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:28 DB:link_type/reverse_link_phrase:138
+msgid ""
+"{additional} {assistant} {associate} {co:co-}{executive:executive }engineer"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:141 DB:link_type/reverse_link_phrase:30
+msgid ""
+"{additional} {assistant} {associate} {co:co-}{executive:executive }producer"
+msgstr ""
+
+#: DB:link_type/link_phrase:42 DB:link_type/reverse_link_phrase:42
+msgid "{additional} {assistant} {associate} {co:co-}{pre:pre-}{re}mastering"
+msgstr ""
+
+#: DB:link_type/link_phrase:37 DB:link_type/link_phrase:132
+#: DB:link_type/reverse_link_phrase:37 DB:link_type/reverse_link_phrase:132
+msgid "{additional} {assistant} {associate} {instrument} programming"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:295 DB:link_type/reverse_link_phrase:297
+#: DB:link_type/reverse_link_phrase:293
+msgid "{additional} {associate} {co:co-}arranger"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:41 DB:link_type/reverse_link_phrase:158
+#: DB:link_type/reverse_link_phrase:282
+msgid "{additional} {associate} {instrument:%|instruments} {co:co-}arranger"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:296 DB:link_type/reverse_link_phrase:298
+#: DB:link_type/reverse_link_phrase:294
+msgid "{additional} {associate} {vocal:%|vocals} {co:co-}arranger"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:51 DB:link_type/reverse_link_phrase:156
+msgid "{additional} {guest} {solo} performer"
+msgstr ""
+
+#: DB:link_type/link_phrase:44 DB:link_type/link_phrase:148
+#: DB:link_type/reverse_link_phrase:44 DB:link_type/reverse_link_phrase:148
+msgid "{additional} {guest} {solo} {instrument:%|instruments}"
+msgstr ""
+
+#: DB:link_type/link_phrase:60 DB:link_type/link_phrase:149
+#: DB:link_type/reverse_link_phrase:60 DB:link_type/reverse_link_phrase:149
+msgid "{additional} {guest} {solo} {vocal:%|vocals}"
+msgstr ""
+
+#: DB:link_type/link_phrase:102
+msgid "{additional} {minor} collaborator on"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:102
+msgid "{additional} {minor} collaborators"
+msgstr ""
+
+#: DB:link_type/link_phrase:103
+msgid "{additional} {original} {eponymous} member of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:103
+msgid "{additional} {original} {eponymous} members"
+msgstr ""
+
+#: DB:link_type/link_phrase:756 DB:link_type/link_phrase:697
+msgid "{additional} {pre:pre-}{re}mastering location for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:888
+msgid "{anniversary:anniversary tour for|tour in support of}"
+msgstr ""
+
+#: DB:link_type/link_phrase:888
+msgid "{anniversary:anniversary tours|supporting tours}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1186 DB:link_type/reverse_link_phrase:1187
+msgid "{assistant} audio director"
+msgstr ""
+
+#: DB:link_type/link_phrase:1186 DB:link_type/link_phrase:1187
+msgid "{assistant} audio director for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:1165
+msgid "{assistant} carillonneur"
+msgstr ""
+
+#: DB:link_type/link_phrase:1165
+msgid "{assistant} carillonneur at"
+msgstr ""
+
+#: DB:link_type/link_phrase:856
+msgid "{assistant} organist at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:856
+msgid "{assistant} organists"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:962 DB:link_type/reverse_link_phrase:1185
+msgid "{assistant} video director"
+msgstr ""
+
+#: DB:link_type/link_phrase:962 DB:link_type/link_phrase:1185
+msgid "{assistant} video director for"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:305
+msgid "{assistant} {principal} {guest} conductor {emeritus}"
+msgstr ""
+
+#: DB:link_type/link_phrase:305
+msgid "{assistant} {principal} {guest} conductor {emeritus} for"
+msgstr ""
+
+#: DB:link_type/link_phrase:1
+msgid "{bonus:bonus|next} disc"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1
+msgid "{bonus:may be|is} part of a set, the next disc in the set is"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:951 DB:link_type/reverse_link_phrase:950
+msgid "{co:co-}{executive:executive }produced for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:750
+msgid "{entity1} catalogues the work of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:154 DB:link_type/long_link_phrase:49
+msgid "{entity1} contains {additional} samples by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:312
+msgid "{entity1} has VIAF ID at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:854
+msgid "{entity1} has a BookBrainz page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:971
+msgid "{entity1} has a Discogs page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:280
+msgid "{entity1} has a SecondHandSongs page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:289
+msgid "{entity1} has a Songfacts page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:992
+msgid "{entity1} has a VGMdb page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:351
+msgid "{entity1} has a Wikidata page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:279
+msgid "{entity1} has a Wikipedia page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:908
+msgid "{entity1} has a crowdfunding page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1188
+msgid "{entity1} has a fan page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:273
+msgid "{entity1} has a page in a database at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:921
+msgid "{entity1} has a work list entry at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:286
+msgid "{entity1} has an Allmusic page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:843
+msgid "{entity1} has an IMDb page at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:271
+msgid "{entity1} has lyrics available at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:123 DB:link_type/long_link_phrase:1175
+#: DB:link_type/long_link_phrase:20
+msgid "{entity1} has {additional} photography by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:918
+msgid "{entity1} invented {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:915
+msgid "{entity1} is a feed for podcast {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1088
+msgid "{entity1} is a genre from {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:743
+msgid "{entity1} is a part of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:994
+msgid "{entity1} is a residency by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:859
+msgid "{entity1} is a tour by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1082
+msgid "{entity1} is a translated version of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:65 DB:link_type/long_link_phrase:970
+msgid "{entity1} is a tribute to {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:752
+msgid "{entity1} is an instrument from {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1176 DB:link_type/long_link_phrase:1177
+msgid "{entity1} is commentary for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1090
+msgid "{entity1} is commonly used in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:983 DB:link_type/long_link_phrase:846
+#: DB:link_type/long_link_phrase:922 DB:link_type/long_link_phrase:914
+#: DB:link_type/long_link_phrase:868
+msgid "{entity1} is dedicated to {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:939
+msgid "{entity1} is licensed under {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:975 DB:link_type/long_link_phrase:1000
+msgid "{entity1} is named after {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:357
+msgid "{entity1} is/was an anthem of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:714
+msgid "{entity1} is/was the primary concert venue of {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1168
+msgid "{entity1} presented {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:866 DB:link_type/long_link_phrase:865
+msgid "{entity1} was arranged at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:948 DB:link_type/long_link_phrase:949
+msgid "{entity1} was arranged for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:864 DB:link_type/long_link_phrase:863
+msgid "{entity1} was arranged in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:795
+msgid "{entity1} was available at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:954
+msgid "{entity1} was glass mastered at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:995 DB:link_type/long_link_phrase:1085
+msgid "{entity1} was held at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:793
+msgid "{entity1} was held in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:833
+msgid "{entity1} was licensed to {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:953
+msgid "{entity1} was manufactured at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:952
+msgid "{entity1} was manufactured for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:835
+msgid "{entity1} was manufactured in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1183
+msgid "{entity1} was mastered for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:946 DB:link_type/long_link_phrase:947
+msgid "{entity1} was mixed for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:845 DB:link_type/long_link_phrase:716
+msgid "{entity1} was premiered at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:956
+msgid "{entity1} was premiered by {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:715
+msgid "{entity1} was premiered in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:941
+msgid "{entity1} was pressed at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:834
+msgid "{entity1} was previously attributed to {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:849
+msgid "{entity1} was printed in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:809 DB:link_type/long_link_phrase:810
+msgid "{entity1} was recorded at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1178
+msgid "{entity1} was remixed for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:882
+msgid "{entity1} was revised at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:881
+msgid "{entity1} was revised in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:886
+msgid "{entity1} was {additional:additionally} arranged at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:885
+msgid "{entity1} was {additional:additionally} arranged in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:876
+msgid "{entity1} was {additional:additionally} composed at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:875
+msgid "{entity1} was {additional:additionally} composed in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:819 DB:link_type/long_link_phrase:820
+msgid "{entity1} was {additional:additionally} edited at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:822 DB:link_type/long_link_phrase:821
+msgid "{entity1} was {additional:additionally} edited in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:813 DB:link_type/long_link_phrase:812
+msgid "{entity1} was {additional:additionally} engineered at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:814 DB:link_type/long_link_phrase:815
+msgid "{entity1} was {additional:additionally} engineered in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:694 DB:link_type/long_link_phrase:696
+msgid "{entity1} was {additional:additionally} mixed at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:757 DB:link_type/long_link_phrase:758
+msgid "{entity1} was {additional:additionally} mixed in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:825 DB:link_type/long_link_phrase:824
+msgid "{entity1} was {additional:additionally} produced at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:827 DB:link_type/long_link_phrase:826
+msgid "{entity1} was {additional:additionally} produced in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:693 DB:link_type/long_link_phrase:695
+msgid "{entity1} was {additional:additionally} recorded at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:698 DB:link_type/long_link_phrase:699
+msgid "{entity1} was {additional:additionally} recorded in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:829 DB:link_type/long_link_phrase:828
+msgid "{entity1} was {additional:additionally} remixed at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:831 DB:link_type/long_link_phrase:830
+msgid "{entity1} was {additional:additionally} remixed in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:963 DB:link_type/long_link_phrase:966
+msgid "{entity1} was {additional:additionally} shot at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:964
+msgid "{entity1} was {additional:additionally} shot in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:1181 DB:link_type/long_link_phrase:1182
+msgid "{entity1} was {additional:additionally} transferred at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:883
+msgid "{entity1} was {additional:additionally} translated at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:884
+msgid "{entity1} was {additional:additionally} translated in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:874
+msgid "{entity1} was {additional:additionally} written at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:873
+msgid "{entity1} was {additional:additionally} written in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:697
+msgid ""
+"{entity1} was {additional:additionally} {pre:pre-}{re}mastered at {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:756
+msgid ""
+"{entity1} was {additional:additionally} {pre:pre-}{re}mastered in {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:888
+msgid ""
+"{entity1} was {anniversary:an anniversary tour for|a tour in support of} "
+"{entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:951 DB:link_type/long_link_phrase:950
+msgid "{entity1} was {co:co-}{executive:executive }produced for {entity0}"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:967 DB:link_type/long_link_phrase:968
+msgid "{entity1}'s lacquer was cut in {entity0}"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:760 DB:link_type/reverse_link_phrase:759
+msgid "{guest} concertmaster"
+msgstr ""
+
+#: DB:link_type/link_phrase:760 DB:link_type/link_phrase:759
+msgid "{guest} concertmaster for"
+msgstr ""
+
+#: DB:link_type/link_phrase:110 DB:link_type/reverse_link_phrase:110
+msgid "{half:half-}{step}siblings"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:986 DB:link_type/reverse_link_phrase:987
+msgid "{instrument:%|instruments} technician"
+msgstr ""
+
+#: DB:link_type/link_phrase:986 DB:link_type/link_phrase:987
+msgid "{instrument:%|instruments} technician for"
+msgstr ""
+
+#: DB:link_type/link_phrase:278
+msgid ""
+"{live} {medley:medley including a} {partial} {instrumental} {cover} "
+"{karaoke} recording of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:278
+msgid ""
+"{live} {medley:medleys including} {partial} {instrumental} {cover} {karaoke} "
+"recordings"
+msgstr ""
+
+#: DB:link_type/link_phrase:109
+msgid "{step}children"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:109
+msgid "{step}parents"
+msgstr ""
+
+#: DB:link_type/link_phrase:161 DB:link_type/link_phrase:208
+#: DB:link_type/link_phrase:32 DB:link_type/link_phrase:362
+#: DB:link_type/long_link_phrase:161 DB:link_type/long_link_phrase:208
+#: DB:link_type/long_link_phrase:32 DB:link_type/long_link_phrase:362
+msgid "{sub:sub-}published"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:161 DB:link_type/reverse_link_phrase:208
+#: DB:link_type/reverse_link_phrase:32 DB:link_type/reverse_link_phrase:362
+msgid "{sub:sub-}publisher"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:15
+msgid "{translated} {parody:parodies|covers}"
+msgstr ""
+
+#: DB:link_type/link_phrase:15
+msgid "{translated} {parody:parody|cover} of"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:241
+msgid "{translated} {parody} version of"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:24
+msgid "{translator:translated|wrote} {additional} liner notes for"
+msgstr ""
+
+#: DB:link_type/long_link_phrase:268 DB:link_type/long_link_phrase:85
+msgid "{video} can be streamed for free at"
+msgstr ""
+
+#: DB:link_type/reverse_link_phrase:107
+msgid "{vocal:%|vocals} support by"
+msgstr ""
+
+#: DB:link_type/link_phrase:107
+msgid "{vocal:%|vocals} support for"
+msgstr ""
diff --git a/po/scripts.bn.po b/po/scripts.bn.po
index 5991b51f386..d52273e5a69 100644
--- a/po/scripts.bn.po
+++ b/po/scripts.bn.po
@@ -1,11 +1,12 @@
#
# Translators:
# Philipp Wolfer , 2023.
+# "joysriram.sarkar.56" , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
-"PO-Revision-Date: 2023-08-24 14:27+0000\n"
-"Last-Translator: Philipp Wolfer \n"
+"PO-Revision-Date: 2023-10-10 13:27+0000\n"
+"Last-Translator: \"joysriram.sarkar.56\" \n"
"Language-Team: Bengali \n"
"Language: bn\n"
@@ -13,12 +14,12 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 4.18.2\n"
+"X-Generator: Weblate 5.0.2\n"
#. frequency:1 iso_code:Afak
#: DB:script/name:133
msgid "Afaka"
-msgstr ""
+msgstr "আফাকা"
#. frequency:4 iso_code:Arab
#: DB:script/name:18
@@ -43,17 +44,17 @@ msgstr "বালি"
#. frequency:1 iso_code:Bamu
#: DB:script/name:155
msgid "Bamum"
-msgstr ""
+msgstr "বামুম"
#. frequency:1 iso_code:Bass
#: DB:script/name:145
msgid "Bassa Vah"
-msgstr ""
+msgstr "বাস্সা বাহ"
#. frequency:1 iso_code:Batk
#: DB:script/name:74
msgid "Batak"
-msgstr ""
+msgstr "বাটাক"
#. frequency:3 iso_code:Beng
#: DB:script/name:53
@@ -63,62 +64,62 @@ msgstr "বাংলা"
#. frequency:1 iso_code:Blis
#: DB:script/name:95
msgid "Blissymbols"
-msgstr ""
+msgstr "ব্লিসসিমবল"
#. frequency:1 iso_code:Phlv
#: DB:script/name:123
msgid "Book Pahlavi"
-msgstr ""
+msgstr "বই পহলভি"
#. frequency:3 iso_code:Bopo
#: DB:script/name:42
msgid "Bopomofo"
-msgstr ""
+msgstr "বোপোমোফো"
#. frequency:1 iso_code:Brah
#: DB:script/name:47
msgid "Brahmi"
-msgstr ""
+msgstr "ব্রাহ্মী"
#. frequency:2 iso_code:Brai
#: DB:script/name:96
msgid "Braille"
-msgstr ""
+msgstr "ব্রেইল"
#. frequency:2 iso_code:Bugi
#: DB:script/name:75
msgid "Buginese"
-msgstr ""
+msgstr "বুগিনিজ"
#. frequency:2 iso_code:Buhd
#: DB:script/name:78
msgid "Buhid"
-msgstr ""
+msgstr "বুহিদ"
#. frequency:2 iso_code:Cans
#: DB:script/name:87
msgid "Canadian Syllabics"
-msgstr ""
+msgstr "কানাডীয় সিলেবিক্স"
#. frequency:2 iso_code:Cari
#: DB:script/name:108
msgid "Carian"
-msgstr ""
+msgstr "ক্যারীয়"
#. frequency:1 iso_code:Cakm
#: DB:script/name:115
msgid "Chakma"
-msgstr ""
+msgstr "চাকমা"
#. frequency:2 iso_code:Cham
#: DB:script/name:71
msgid "Cham"
-msgstr ""
+msgstr "চাম"
#. frequency:2 iso_code:Cher
#: DB:script/name:88
msgid "Cherokee"
-msgstr ""
+msgstr "চেরোকি"
#. frequency:1 iso_code:Cirt
#: DB:script/name:45
@@ -128,107 +129,107 @@ msgstr ""
#. frequency:1 iso_code:Zinh
#: DB:script/name:159
msgid "Code for inherited script"
-msgstr ""
+msgstr "উত্তরাধিকারসূত্রে পাওয়া স্ক্রিপ্টের জন্য কোড"
#. frequency:1 iso_code:Zzzz
#: DB:script/name:130
msgid "Code for uncoded script"
-msgstr ""
+msgstr "আনকোডেড লিপির জন্য কোড"
#. frequency:1 iso_code:Zyyy
#: DB:script/name:129
msgid "Code for undetermined script"
-msgstr ""
+msgstr "অনির্ধারিত লিপির জন্য কোড"
#. frequency:1 iso_code:Zxxx
#: DB:script/name:128
msgid "Code for unwritten documents"
-msgstr ""
+msgstr "অলিখিত নথিগুলির জন্য কোড"
#. frequency:2 iso_code:Copt
#: DB:script/name:23
msgid "Coptic"
-msgstr ""
+msgstr "চোপটিক"
#. frequency:2 iso_code:Xsux
#: DB:script/name:1
msgid "Cuneiform, Sumero-Akkadian"
-msgstr ""
+msgstr "কিউনিফর্ম, সুমেরো-আক্কাদীয়"
#. frequency:2 iso_code:Cprt
#: DB:script/name:82
msgid "Cypriot"
-msgstr ""
+msgstr "সাইপ্রিয়ট"
#. frequency:4 iso_code:Cyrl
#: DB:script/name:31
msgid "Cyrillic"
-msgstr ""
+msgstr "সিরিলিক"
#. frequency:1 iso_code:Cyrs
#: DB:script/name:32
msgid "Cyrillic (Old Church Slavonic variant)"
-msgstr ""
+msgstr "সিরিলিক (পুরাতন চার্চ স্লাভোনিক বৈকল্পিক)"
#. frequency:2 iso_code:Dsrt
#: DB:script/name:37
msgid "Deseret"
-msgstr ""
+msgstr "ডেসেরেট"
#. frequency:3 iso_code:Deva
#: DB:script/name:50
msgid "Devanagari"
-msgstr ""
+msgstr "দেননাগরী"
#. frequency:1 iso_code:Dupl
#: DB:script/name:142
msgid "Duployan shorthand"
-msgstr ""
+msgstr "ডুপ্লয়ন শর্টহ্যান্ড"
#. frequency:1 iso_code:Egyd
#: DB:script/name:6
msgid "Egyptian demotic"
-msgstr ""
+msgstr "মিশরীয় ডেমোটিক"
#. frequency:1 iso_code:Egyh
#: DB:script/name:5
msgid "Egyptian hieratic"
-msgstr ""
+msgstr "মিশরীয় হায়ারেটিক"
#. frequency:2 iso_code:Egyp
#: DB:script/name:4
msgid "Egyptian hieroglyphs"
-msgstr ""
+msgstr "মিশরীয় হায়ারোগ্লিফ"
#. frequency:1 iso_code:Elba
#: DB:script/name:143
msgid "Elbasan"
-msgstr ""
+msgstr "এলবাসন"
#. frequency:3 iso_code:Ethi
#: DB:script/name:86
msgid "Ethiopic"
-msgstr ""
+msgstr "ইথিওপিক"
#. frequency:3 iso_code:Geor
#: DB:script/name:36
msgid "Georgian"
-msgstr ""
+msgstr "জর্জীয়"
#. frequency:2 iso_code:Glag
#: DB:script/name:33
msgid "Glagolitic"
-msgstr ""
+msgstr "গ্লাগোলিটিক"
#. frequency:2 iso_code:Goth
#: DB:script/name:24
msgid "Gothic"
-msgstr ""
+msgstr "গথিক"
#. frequency:1 iso_code:Gran
#: DB:script/name:152
msgid "Grantha"
-msgstr ""
+msgstr "গ্রন্থ"
#. frequency:4 iso_code:Grek
#: DB:script/name:22
@@ -243,32 +244,32 @@ msgstr "গুজরাটি"
#. frequency:3 iso_code:Guru
#: DB:script/name:49
msgid "Gurmukhi"
-msgstr ""
+msgstr "গুরুমুখী"
#. frequency:4 iso_code:Hani
#: DB:script/name:92
msgid "Han (Hanzi, Kanji, Hanja)"
-msgstr ""
+msgstr "হান (হানজি, কাঞ্জি, হানজা)"
#. frequency:4 iso_code:Hans
#: DB:script/name:93
msgid "Han (Simplified variant)"
-msgstr ""
+msgstr "হান (সরলীকৃত রূপ)"
#. frequency:4 iso_code:Hant
#: DB:script/name:94
msgid "Han (Traditional variant)"
-msgstr ""
+msgstr "হান (ঐতিহ্যবাহী রূপ)"
#. frequency:3 iso_code:Hang
#: DB:script/name:101
msgid "Hangul"
-msgstr ""
+msgstr "হাঙ্গুল"
#. frequency:2 iso_code:Hano
#: DB:script/name:77
msgid "Hanunoo"
-msgstr ""
+msgstr "হনুনু"
#. frequency:4 iso_code:Hebr
#: DB:script/name:11
@@ -278,27 +279,27 @@ msgstr "হিব্রু"
#. frequency:3 iso_code:Hira
#: DB:script/name:83
msgid "Hiragana"
-msgstr ""
+msgstr "হিরাগানা"
#. frequency:1 iso_code:Armi
#: DB:script/name:113
msgid "Imperial Aramaic"
-msgstr ""
+msgstr "ইম্পেরিয়াল আরামাইক"
#. frequency:1 iso_code:Inds
#: DB:script/name:97
msgid "Indus"
-msgstr ""
+msgstr "সিন্ধু"
#. frequency:1 iso_code:Phli
#: DB:script/name:121
msgid "Inscriptional Pahlavi"
-msgstr ""
+msgstr "শিলালৈপিক পহলভি"
#. frequency:1 iso_code:Prti
#: DB:script/name:124
msgid "Inscriptional Parthian"
-msgstr ""
+msgstr "শিলালৈপিক পার্থিয়ান"
#. frequency:4 iso_code:Jpan
#: DB:script/name:85
@@ -308,7 +309,7 @@ msgstr "জাপানি"
#. frequency:3 iso_code:Hrkt
#: DB:script/name:100
msgid "Japanese syllabaries"
-msgstr ""
+msgstr "জাপানি সিলাবারিস"
#. frequency:1 iso_code:Java
#: DB:script/name:73
@@ -318,12 +319,12 @@ msgstr "জাভানিজ"
#. frequency:1 iso_code:Jurc
#: DB:script/name:134
msgid "Jurchen"
-msgstr ""
+msgstr "জুরচেন"
#. frequency:1 iso_code:Kthi
#: DB:script/name:116
msgid "Kaithi"
-msgstr ""
+msgstr "কাইথি"
#. frequency:3 iso_code:Knda
#: DB:script/name:60
@@ -333,52 +334,52 @@ msgstr "কন্নড়"
#. frequency:4 iso_code:Kana
#: DB:script/name:84
msgid "Katakana"
-msgstr ""
+msgstr "কাটাকানা"
#. frequency:2 iso_code:Kali
#: DB:script/name:70
msgid "Kayah Li"
-msgstr ""
+msgstr "কায়াহ লি"
#. frequency:2 iso_code:Khar
#: DB:script/name:48
msgid "Kharoshthi"
-msgstr ""
+msgstr "খরোষ্ঠী"
#. frequency:3 iso_code:Khmr
#: DB:script/name:68
msgid "Khmer"
-msgstr ""
+msgstr "খ্মের"
#. frequency:1 iso_code:Khoj
#: DB:script/name:131
msgid "Khojki"
-msgstr ""
+msgstr "খোজকি"
#. frequency:1 iso_code:Sind
#: DB:script/name:144
msgid "Khudawadi"
-msgstr ""
+msgstr "খুদাওয়াদি"
#. frequency:2 iso_code:Geok
#: DB:script/name:102
msgid "Khutsuri"
-msgstr ""
+msgstr "খুটসুরি"
#. frequency:4 iso_code:Kore
#: DB:script/name:43
msgid "Korean"
-msgstr ""
+msgstr "কোরীয়"
#. frequency:1 iso_code:Kpel
#: DB:script/name:146
msgid "Kpelle"
-msgstr ""
+msgstr "কেপেলে"
#. frequency:3 iso_code:Laoo
#: DB:script/name:69
msgid "Lao"
-msgstr ""
+msgstr "লাও"
#. frequency:4 iso_code:Latn
#: DB:script/name:28
@@ -388,27 +389,27 @@ msgstr "লাতিন"
#. frequency:1 iso_code:Latf
#: DB:script/name:30
msgid "Latin (Fraktur variant)"
-msgstr ""
+msgstr "ল্যাটিন (ফ্রাক্টুর বৈকল্পিক)"
#. frequency:1 iso_code:Latg
#: DB:script/name:29
msgid "Latin (Gaelic variant)"
-msgstr ""
+msgstr "ল্যাটিন (গ্যালিক বৈকল্পিক)"
#. frequency:2 iso_code:Lepc
#: DB:script/name:57
msgid "Lepcha"
-msgstr ""
+msgstr "লেপচা"
#. frequency:2 iso_code:Limb
#: DB:script/name:58
msgid "Limbu"
-msgstr ""
+msgstr "লিম্বু"
#. frequency:1 iso_code:Lina
#: DB:script/name:80
msgid "Linear A"
-msgstr ""
+msgstr "লি"
#. frequency:2 iso_code:Linb
#: DB:script/name:81
diff --git a/po/scripts.es.po b/po/scripts.es.po
index a4f25832908..6021cf55888 100644
--- a/po/scripts.es.po
+++ b/po/scripts.es.po
@@ -5,21 +5,23 @@
# Héctor Arroyo , 2012
# Nicolás Tamargo , 2011, 2012
# Kevin López Brante , 2012
-# Tobias Quathamer , 2007
+# Tobias Quathamer , 2007
# t0n3t , 2012
+# "joysriram.sarkar.56" , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
-"PO-Revision-Date: 2012-05-24 19:21+0000\n"
-"Last-Translator: t0n3t , 2012\n"
-"Language-Team: Spanish (http://app.transifex.com/musicbrainz/musicbrainz/"
-"language/es/)\n"
+"PO-Revision-Date: 2023-10-10 13:27+0000\n"
+"Last-Translator: \"joysriram.sarkar.56\" \n"
+"Language-Team: Spanish \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
-"1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
+"0) ? 1 : 2);\n"
+"X-Generator: Weblate 5.0.2\n"
#. frequency:1 iso_code:Afak
#: DB:script/name:133
@@ -579,7 +581,7 @@ msgstr "Árabe meridional antiguo"
#. frequency:2 iso_code:Orkh
#: DB:script/name:20
msgid "Old Turkic"
-msgstr ""
+msgstr "viejo turco"
#. frequency:3 iso_code:Orya
#: DB:script/name:54
diff --git a/po/scripts.es_419.po b/po/scripts.es_419.po
new file mode 100644
index 00000000000..0d6905b00c0
--- /dev/null
+++ b/po/scripts.es_419.po
@@ -0,0 +1,805 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: es_419\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. frequency:1 iso_code:Afak
+#: DB:script/name:133
+msgid "Afaka"
+msgstr ""
+
+#. frequency:4 iso_code:Arab
+#: DB:script/name:18
+msgid "Arabic"
+msgstr ""
+
+#. frequency:3 iso_code:Armn
+#: DB:script/name:35
+msgid "Armenian"
+msgstr ""
+
+#. frequency:1 iso_code:Avst
+#: DB:script/name:114
+msgid "Avestan"
+msgstr ""
+
+#. frequency:2 iso_code:Bali
+#: DB:script/name:72
+msgid "Balinese"
+msgstr ""
+
+#. frequency:1 iso_code:Bamu
+#: DB:script/name:155
+msgid "Bamum"
+msgstr ""
+
+#. frequency:1 iso_code:Bass
+#: DB:script/name:145
+msgid "Bassa Vah"
+msgstr ""
+
+#. frequency:1 iso_code:Batk
+#: DB:script/name:74
+msgid "Batak"
+msgstr ""
+
+#. frequency:3 iso_code:Beng
+#: DB:script/name:53
+msgid "Bengali"
+msgstr ""
+
+#. frequency:1 iso_code:Blis
+#: DB:script/name:95
+msgid "Blissymbols"
+msgstr ""
+
+#. frequency:1 iso_code:Phlv
+#: DB:script/name:123
+msgid "Book Pahlavi"
+msgstr ""
+
+#. frequency:3 iso_code:Bopo
+#: DB:script/name:42
+msgid "Bopomofo"
+msgstr ""
+
+#. frequency:1 iso_code:Brah
+#: DB:script/name:47
+msgid "Brahmi"
+msgstr ""
+
+#. frequency:2 iso_code:Brai
+#: DB:script/name:96
+msgid "Braille"
+msgstr ""
+
+#. frequency:2 iso_code:Bugi
+#: DB:script/name:75
+msgid "Buginese"
+msgstr ""
+
+#. frequency:2 iso_code:Buhd
+#: DB:script/name:78
+msgid "Buhid"
+msgstr ""
+
+#. frequency:2 iso_code:Cans
+#: DB:script/name:87
+msgid "Canadian Syllabics"
+msgstr ""
+
+#. frequency:2 iso_code:Cari
+#: DB:script/name:108
+msgid "Carian"
+msgstr ""
+
+#. frequency:1 iso_code:Cakm
+#: DB:script/name:115
+msgid "Chakma"
+msgstr ""
+
+#. frequency:2 iso_code:Cham
+#: DB:script/name:71
+msgid "Cham"
+msgstr ""
+
+#. frequency:2 iso_code:Cher
+#: DB:script/name:88
+msgid "Cherokee"
+msgstr ""
+
+#. frequency:1 iso_code:Cirt
+#: DB:script/name:45
+msgid "Cirth"
+msgstr ""
+
+#. frequency:1 iso_code:Zinh
+#: DB:script/name:159
+msgid "Code for inherited script"
+msgstr ""
+
+#. frequency:1 iso_code:Zzzz
+#: DB:script/name:130
+msgid "Code for uncoded script"
+msgstr ""
+
+#. frequency:1 iso_code:Zyyy
+#: DB:script/name:129
+msgid "Code for undetermined script"
+msgstr ""
+
+#. frequency:1 iso_code:Zxxx
+#: DB:script/name:128
+msgid "Code for unwritten documents"
+msgstr ""
+
+#. frequency:2 iso_code:Copt
+#: DB:script/name:23
+msgid "Coptic"
+msgstr ""
+
+#. frequency:2 iso_code:Xsux
+#: DB:script/name:1
+msgid "Cuneiform, Sumero-Akkadian"
+msgstr ""
+
+#. frequency:2 iso_code:Cprt
+#: DB:script/name:82
+msgid "Cypriot"
+msgstr ""
+
+#. frequency:4 iso_code:Cyrl
+#: DB:script/name:31
+msgid "Cyrillic"
+msgstr ""
+
+#. frequency:1 iso_code:Cyrs
+#: DB:script/name:32
+msgid "Cyrillic (Old Church Slavonic variant)"
+msgstr ""
+
+#. frequency:2 iso_code:Dsrt
+#: DB:script/name:37
+msgid "Deseret"
+msgstr ""
+
+#. frequency:3 iso_code:Deva
+#: DB:script/name:50
+msgid "Devanagari"
+msgstr ""
+
+#. frequency:1 iso_code:Dupl
+#: DB:script/name:142
+msgid "Duployan shorthand"
+msgstr ""
+
+#. frequency:1 iso_code:Egyd
+#: DB:script/name:6
+msgid "Egyptian demotic"
+msgstr ""
+
+#. frequency:1 iso_code:Egyh
+#: DB:script/name:5
+msgid "Egyptian hieratic"
+msgstr ""
+
+#. frequency:2 iso_code:Egyp
+#: DB:script/name:4
+msgid "Egyptian hieroglyphs"
+msgstr ""
+
+#. frequency:1 iso_code:Elba
+#: DB:script/name:143
+msgid "Elbasan"
+msgstr ""
+
+#. frequency:3 iso_code:Ethi
+#: DB:script/name:86
+msgid "Ethiopic"
+msgstr ""
+
+#. frequency:3 iso_code:Geor
+#: DB:script/name:36
+msgid "Georgian"
+msgstr ""
+
+#. frequency:2 iso_code:Glag
+#: DB:script/name:33
+msgid "Glagolitic"
+msgstr ""
+
+#. frequency:2 iso_code:Goth
+#: DB:script/name:24
+msgid "Gothic"
+msgstr ""
+
+#. frequency:1 iso_code:Gran
+#: DB:script/name:152
+msgid "Grantha"
+msgstr ""
+
+#. frequency:4 iso_code:Grek
+#: DB:script/name:22
+msgid "Greek"
+msgstr ""
+
+#. frequency:3 iso_code:Gujr
+#: DB:script/name:52
+msgid "Gujarati"
+msgstr ""
+
+#. frequency:3 iso_code:Guru
+#: DB:script/name:49
+msgid "Gurmukhi"
+msgstr ""
+
+#. frequency:4 iso_code:Hani
+#: DB:script/name:92
+msgid "Han (Hanzi, Kanji, Hanja)"
+msgstr ""
+
+#. frequency:4 iso_code:Hans
+#: DB:script/name:93
+msgid "Han (Simplified variant)"
+msgstr ""
+
+#. frequency:4 iso_code:Hant
+#: DB:script/name:94
+msgid "Han (Traditional variant)"
+msgstr ""
+
+#. frequency:3 iso_code:Hang
+#: DB:script/name:101
+msgid "Hangul"
+msgstr ""
+
+#. frequency:2 iso_code:Hano
+#: DB:script/name:77
+msgid "Hanunoo"
+msgstr ""
+
+#. frequency:4 iso_code:Hebr
+#: DB:script/name:11
+msgid "Hebrew"
+msgstr ""
+
+#. frequency:3 iso_code:Hira
+#: DB:script/name:83
+msgid "Hiragana"
+msgstr ""
+
+#. frequency:1 iso_code:Armi
+#: DB:script/name:113
+msgid "Imperial Aramaic"
+msgstr ""
+
+#. frequency:1 iso_code:Inds
+#: DB:script/name:97
+msgid "Indus"
+msgstr ""
+
+#. frequency:1 iso_code:Phli
+#: DB:script/name:121
+msgid "Inscriptional Pahlavi"
+msgstr ""
+
+#. frequency:1 iso_code:Prti
+#: DB:script/name:124
+msgid "Inscriptional Parthian"
+msgstr ""
+
+#. frequency:4 iso_code:Jpan
+#: DB:script/name:85
+msgid "Japanese"
+msgstr ""
+
+#. frequency:3 iso_code:Hrkt
+#: DB:script/name:100
+msgid "Japanese syllabaries"
+msgstr ""
+
+#. frequency:1 iso_code:Java
+#: DB:script/name:73
+msgid "Javanese"
+msgstr ""
+
+#. frequency:1 iso_code:Jurc
+#: DB:script/name:134
+msgid "Jurchen"
+msgstr ""
+
+#. frequency:1 iso_code:Kthi
+#: DB:script/name:116
+msgid "Kaithi"
+msgstr ""
+
+#. frequency:3 iso_code:Knda
+#: DB:script/name:60
+msgid "Kannada"
+msgstr ""
+
+#. frequency:4 iso_code:Kana
+#: DB:script/name:84
+msgid "Katakana"
+msgstr ""
+
+#. frequency:2 iso_code:Kali
+#: DB:script/name:70
+msgid "Kayah Li"
+msgstr ""
+
+#. frequency:2 iso_code:Khar
+#: DB:script/name:48
+msgid "Kharoshthi"
+msgstr ""
+
+#. frequency:3 iso_code:Khmr
+#: DB:script/name:68
+msgid "Khmer"
+msgstr ""
+
+#. frequency:1 iso_code:Khoj
+#: DB:script/name:131
+msgid "Khojki"
+msgstr ""
+
+#. frequency:1 iso_code:Sind
+#: DB:script/name:144
+msgid "Khudawadi"
+msgstr ""
+
+#. frequency:2 iso_code:Geok
+#: DB:script/name:102
+msgid "Khutsuri"
+msgstr ""
+
+#. frequency:4 iso_code:Kore
+#: DB:script/name:43
+msgid "Korean"
+msgstr ""
+
+#. frequency:1 iso_code:Kpel
+#: DB:script/name:146
+msgid "Kpelle"
+msgstr ""
+
+#. frequency:3 iso_code:Laoo
+#: DB:script/name:69
+msgid "Lao"
+msgstr ""
+
+#. frequency:4 iso_code:Latn
+#: DB:script/name:28
+msgid "Latin"
+msgstr ""
+
+#. frequency:1 iso_code:Latf
+#: DB:script/name:30
+msgid "Latin (Fraktur variant)"
+msgstr ""
+
+#. frequency:1 iso_code:Latg
+#: DB:script/name:29
+msgid "Latin (Gaelic variant)"
+msgstr ""
+
+#. frequency:2 iso_code:Lepc
+#: DB:script/name:57
+msgid "Lepcha"
+msgstr ""
+
+#. frequency:2 iso_code:Limb
+#: DB:script/name:58
+msgid "Limbu"
+msgstr ""
+
+#. frequency:1 iso_code:Lina
+#: DB:script/name:80
+msgid "Linear A"
+msgstr ""
+
+#. frequency:2 iso_code:Linb
+#: DB:script/name:81
+msgid "Linear B"
+msgstr ""
+
+#. frequency:1 iso_code:Lisu
+#: DB:script/name:157
+msgid "Lisu (Fraser)"
+msgstr ""
+
+#. frequency:1 iso_code:Loma
+#: DB:script/name:147
+msgid "Loma"
+msgstr ""
+
+#. frequency:2 iso_code:Lyci
+#: DB:script/name:109
+msgid "Lycian"
+msgstr ""
+
+#. frequency:2 iso_code:Lydi
+#: DB:script/name:110
+msgid "Lydian"
+msgstr ""
+
+#. frequency:3 iso_code:Mlym
+#: DB:script/name:62
+msgid "Malayalam"
+msgstr ""
+
+#. frequency:1 iso_code:Mand
+#: DB:script/name:16
+msgid "Mandaic"
+msgstr ""
+
+#. frequency:1 iso_code:Mani
+#: DB:script/name:118
+msgid "Manichaean"
+msgstr ""
+
+#. frequency:2 iso_code:Zmth
+#: DB:script/name:111
+msgid "Mathematical notation"
+msgstr ""
+
+#. frequency:1 iso_code:Maya
+#: DB:script/name:7
+msgid "Mayan hieroglyphs"
+msgstr ""
+
+#. frequency:1 iso_code:Mtei
+#: DB:script/name:120
+msgid "Meitei Mayek"
+msgstr ""
+
+#. frequency:1 iso_code:Mend
+#: DB:script/name:148
+msgid "Mende"
+msgstr ""
+
+#. frequency:1 iso_code:Merc
+#: DB:script/name:153
+msgid "Meroitic Cursive"
+msgstr ""
+
+#. frequency:1 iso_code:Mero
+#: DB:script/name:8
+msgid "Meroitic Hieroglyphs"
+msgstr ""
+
+#. frequency:1 iso_code:Plrd
+#: DB:script/name:41
+msgid "Miao"
+msgstr ""
+
+#. frequency:3 iso_code:Mong
+#: DB:script/name:17
+msgid "Mongolian"
+msgstr ""
+
+#. frequency:1 iso_code:Moon
+#: DB:script/name:119
+msgid "Moon"
+msgstr ""
+
+#. frequency:1 iso_code:Mroo
+#: DB:script/name:135
+msgid "Mro, Mru"
+msgstr ""
+
+#. frequency:3 iso_code:Mymr
+#: DB:script/name:64
+msgid "Myanmar"
+msgstr ""
+
+#. frequency:2 iso_code:Nkoo
+#: DB:script/name:103
+msgid "N'ko"
+msgstr ""
+
+#. frequency:1 iso_code:Nbat
+#: DB:script/name:149
+msgid "Nabataean"
+msgstr ""
+
+#. frequency:1 iso_code:Nkgb
+#: DB:script/name:158
+msgid "Nakhi Geba"
+msgstr ""
+
+#. frequency:2 iso_code:Talu
+#: DB:script/name:67
+msgid "New Tai Lue"
+msgstr ""
+
+#. frequency:1 iso_code:Nshu
+#: DB:script/name:136
+msgid "Nüshu"
+msgstr ""
+
+#. frequency:2 iso_code:Ogam
+#: DB:script/name:27
+msgid "Ogham"
+msgstr ""
+
+#. frequency:2 iso_code:Olck
+#: DB:script/name:104
+msgid "Ol Chiki"
+msgstr ""
+
+#. frequency:1 iso_code:Hung
+#: DB:script/name:21
+msgid "Old Hungarian"
+msgstr ""
+
+#. frequency:2 iso_code:Ital
+#: DB:script/name:25
+msgid "Old Italic"
+msgstr ""
+
+#. frequency:1 iso_code:Narb
+#: DB:script/name:150
+msgid "Old North Arabian"
+msgstr ""
+
+#. frequency:1 iso_code:Perm
+#: DB:script/name:34
+msgid "Old Permic"
+msgstr ""
+
+#. frequency:2 iso_code:Xpeo
+#: DB:script/name:2
+msgid "Old Persian"
+msgstr ""
+
+#. frequency:1 iso_code:Sarb
+#: DB:script/name:156
+msgid "Old South Arabian"
+msgstr ""
+
+#. frequency:2 iso_code:Orkh
+#: DB:script/name:20
+msgid "Old Turkic"
+msgstr ""
+
+#. frequency:3 iso_code:Orya
+#: DB:script/name:54
+msgid "Oriya"
+msgstr ""
+
+#. frequency:2 iso_code:Osma
+#: DB:script/name:38
+msgid "Osmanya"
+msgstr ""
+
+#. frequency:1 iso_code:Hmng
+#: DB:script/name:89
+msgid "Pahawh Hmong"
+msgstr ""
+
+#. frequency:1 iso_code:Palm
+#: DB:script/name:151
+msgid "Palmyrene"
+msgstr ""
+
+#. frequency:2 iso_code:Phag
+#: DB:script/name:56
+msgid "Phags-pa"
+msgstr ""
+
+#. frequency:2 iso_code:Phnx
+#: DB:script/name:9
+msgid "Phoenician"
+msgstr ""
+
+#. frequency:1 iso_code:Phlp
+#: DB:script/name:122
+msgid "Psalter Pahlavi"
+msgstr ""
+
+#. frequency:2 iso_code:Rjng
+#: DB:script/name:105
+msgid "Rejang"
+msgstr ""
+
+#. frequency:1 iso_code:Roro
+#: DB:script/name:98
+msgid "Rongorongo"
+msgstr ""
+
+#. frequency:2 iso_code:Runr
+#: DB:script/name:26
+msgid "Runic"
+msgstr ""
+
+#. frequency:1 iso_code:Samr
+#: DB:script/name:125
+msgid "Samaritan"
+msgstr ""
+
+#. frequency:1 iso_code:Sara
+#: DB:script/name:46
+msgid "Sarati"
+msgstr ""
+
+#. frequency:2 iso_code:Saur
+#: DB:script/name:106
+msgid "Saurashtra"
+msgstr ""
+
+#. frequency:1 iso_code:Shrd
+#: DB:script/name:138
+msgid "Sharada"
+msgstr ""
+
+#. frequency:2 iso_code:Shaw
+#: DB:script/name:40
+msgid "Shavian"
+msgstr ""
+
+#. frequency:1 iso_code:Sgnw
+#: DB:script/name:126
+msgid "SignWriting"
+msgstr ""
+
+#. frequency:3 iso_code:Sinh
+#: DB:script/name:63
+msgid "Sinhala"
+msgstr ""
+
+#. frequency:1 iso_code:Sora
+#: DB:script/name:137
+msgid "Sora Sompeng"
+msgstr ""
+
+#. frequency:2 iso_code:Sund
+#: DB:script/name:107
+msgid "Sundanese"
+msgstr ""
+
+#. frequency:2 iso_code:Sylo
+#: DB:script/name:51
+msgid "Syloti Nagri"
+msgstr ""
+
+#. frequency:3 iso_code:Zsym
+#: DB:script/name:112
+msgid "Symbols"
+msgstr ""
+
+#. frequency:2 iso_code:Syrc
+#: DB:script/name:12
+msgid "Syriac"
+msgstr ""
+
+#. frequency:1 iso_code:Syrn
+#: DB:script/name:13
+msgid "Syriac (Eastern variant)"
+msgstr ""
+
+#. frequency:1 iso_code:Syre
+#: DB:script/name:15
+msgid "Syriac (Estrangelo variant)"
+msgstr ""
+
+#. frequency:1 iso_code:Syrj
+#: DB:script/name:14
+msgid "Syriac (Western variant)"
+msgstr ""
+
+#. frequency:2 iso_code:Tglg
+#: DB:script/name:76
+msgid "Tagalog"
+msgstr ""
+
+#. frequency:2 iso_code:Tagb
+#: DB:script/name:79
+msgid "Tagbanwa"
+msgstr ""
+
+#. frequency:2 iso_code:Tale
+#: DB:script/name:66
+msgid "Tai Le"
+msgstr ""
+
+#. frequency:1 iso_code:Lana
+#: DB:script/name:117
+msgid "Tai Tham"
+msgstr ""
+
+#. frequency:1 iso_code:Tavt
+#: DB:script/name:127
+msgid "Tai Viet"
+msgstr ""
+
+#. frequency:1 iso_code:Takr
+#: DB:script/name:139
+msgid "Takri"
+msgstr ""
+
+#. frequency:3 iso_code:Taml
+#: DB:script/name:61
+msgid "Tamil"
+msgstr ""
+
+#. frequency:1 iso_code:Tang
+#: DB:script/name:140
+msgid "Tangut"
+msgstr ""
+
+#. frequency:3 iso_code:Telu
+#: DB:script/name:59
+msgid "Telugu"
+msgstr ""
+
+#. frequency:1 iso_code:Teng
+#: DB:script/name:44
+msgid "Tengwar"
+msgstr ""
+
+#. frequency:2 iso_code:Thaa
+#: DB:script/name:19
+msgid "Thaana"
+msgstr ""
+
+#. frequency:4 iso_code:Thai
+#: DB:script/name:65
+msgid "Thai"
+msgstr ""
+
+#. frequency:3 iso_code:Tibt
+#: DB:script/name:55
+msgid "Tibetan"
+msgstr ""
+
+#. frequency:3 iso_code:Tfng
+#: DB:script/name:10
+msgid "Tifinagh"
+msgstr ""
+
+#. frequency:1 iso_code:Tirh
+#: DB:script/name:132
+msgid "Tiruta"
+msgstr ""
+
+#. frequency:2 iso_code:Ugar
+#: DB:script/name:3
+msgid "Ugaritic"
+msgstr ""
+
+#. frequency:2 iso_code:Vaii
+#: DB:script/name:91
+msgid "Vai"
+msgstr ""
+
+#. frequency:1 iso_code:Visp
+#: DB:script/name:39
+msgid "Visible Speech"
+msgstr ""
+
+#. frequency:1 iso_code:Wara
+#: DB:script/name:154
+msgid "Warang Citi"
+msgstr ""
+
+#. frequency:1 iso_code:Wole
+#: DB:script/name:141
+msgid "Woleai"
+msgstr ""
+
+#. frequency:2 iso_code:Yiii
+#: DB:script/name:90
+msgid "Yi"
+msgstr ""
+
+#. frequency:2 iso_code:Qaaa
+#: DB:script/name:160
+msgid "[Multiple scripts]"
+msgstr ""
diff --git a/po/scripts.it.po b/po/scripts.it.po
index 1fca2b5b79d..3fa5ab6f2f7 100644
--- a/po/scripts.it.po
+++ b/po/scripts.it.po
@@ -17,8 +17,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0)"
-" ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
+"0) ? 1 : 2);\n"
"X-Generator: Weblate 4.18.2\n"
#. frequency:1 iso_code:Afak
diff --git a/po/scripts.ja.po b/po/scripts.ja.po
index f0d4fdfcf73..33a2928e80c 100644
--- a/po/scripts.ja.po
+++ b/po/scripts.ja.po
@@ -1,18 +1,21 @@
#
# Translators:
# Nozomu KURASAWA , 2012
+# "joysriram.sarkar.56" , 2023.
+# julian45 , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
-"PO-Revision-Date: 2012-05-24 19:21+0000\n"
-"Last-Translator: Nozomu KURASAWA , 2012\n"
-"Language-Team: Japanese (http://app.transifex.com/musicbrainz/musicbrainz/"
-"language/ja/)\n"
+"PO-Revision-Date: 2023-10-27 01:27+0000\n"
+"Last-Translator: julian45 \n"
+"Language-Team: Japanese \n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.1\n"
#. frequency:1 iso_code:Afak
#: DB:script/name:133
@@ -32,7 +35,7 @@ msgstr "アルメニア文字"
#. frequency:1 iso_code:Avst
#: DB:script/name:114
msgid "Avestan"
-msgstr "アヴェスター文字"
+msgstr "アベスタ語"
#. frequency:2 iso_code:Bali
#: DB:script/name:72
@@ -87,7 +90,7 @@ msgstr "ブライユ点字"
#. frequency:2 iso_code:Bugi
#: DB:script/name:75
msgid "Buginese"
-msgstr "ブギス文字"
+msgstr "ブギス語"
#. frequency:2 iso_code:Buhd
#: DB:script/name:78
@@ -237,7 +240,7 @@ msgstr "ギリシア文字"
#. frequency:3 iso_code:Gujr
#: DB:script/name:52
msgid "Gujarati"
-msgstr "グジャラーティー文字"
+msgstr "グジャラート語"
#. frequency:3 iso_code:Guru
#: DB:script/name:49
@@ -272,7 +275,7 @@ msgstr "ハヌノオ文字"
#. frequency:4 iso_code:Hebr
#: DB:script/name:11
msgid "Hebrew"
-msgstr "ヘブライ文字"
+msgstr "ヘブライ語"
#. frequency:3 iso_code:Hira
#: DB:script/name:83
@@ -377,7 +380,7 @@ msgstr "クペレ文字"
#. frequency:3 iso_code:Laoo
#: DB:script/name:69
msgid "Lao"
-msgstr "ラーオ文字"
+msgstr "ラーオ語"
#. frequency:4 iso_code:Latn
#: DB:script/name:28
@@ -572,7 +575,7 @@ msgstr "南アラビア文字"
#. frequency:2 iso_code:Orkh
#: DB:script/name:20
msgid "Old Turkic"
-msgstr ""
+msgstr "古チュルク語"
#. frequency:3 iso_code:Orya
#: DB:script/name:54
@@ -682,7 +685,7 @@ msgstr "シンボル"
#. frequency:2 iso_code:Syrc
#: DB:script/name:12
msgid "Syriac"
-msgstr "シリア文字"
+msgstr "シリア語"
#. frequency:1 iso_code:Syrn
#: DB:script/name:13
@@ -702,7 +705,7 @@ msgstr "シリア文字(セルトー体。西方書体とも)"
#. frequency:2 iso_code:Tglg
#: DB:script/name:76
msgid "Tagalog"
-msgstr "タガログ文字"
+msgstr "タガログ語"
#. frequency:2 iso_code:Tagb
#: DB:script/name:79
diff --git a/po/scripts.lt.po b/po/scripts.lt.po
index cdc7bbc544c..f77cfdf33a2 100644
--- a/po/scripts.lt.po
+++ b/po/scripts.lt.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
-"PO-Revision-Date: 2023-10-01 20:27+0000\n"
+"PO-Revision-Date: 2023-10-09 17:27+0000\n"
"Last-Translator: \"Vac31.\" \n"
"Language-Team: Lithuanian \n"
@@ -14,14 +14,14 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < "
-"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 :"
-" n % 1 != 0 ? 2: 3);\n"
+"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? "
+"1 : n % 1 != 0 ? 2: 3);\n"
"X-Generator: Weblate 5.0.2\n"
#. frequency:1 iso_code:Afak
#: DB:script/name:133
msgid "Afaka"
-msgstr "Afakų"
+msgstr "Afaka"
#. frequency:4 iso_code:Arab
#: DB:script/name:18
@@ -76,12 +76,12 @@ msgstr "Knyga Pahlavų"
#. frequency:3 iso_code:Bopo
#: DB:script/name:42
msgid "Bopomofo"
-msgstr "Bopomofotų"
+msgstr "Bopomofo"
#. frequency:1 iso_code:Brah
#: DB:script/name:47
msgid "Brahmi"
-msgstr "Brahmų"
+msgstr "Brahmi"
#. frequency:2 iso_code:Brai
#: DB:script/name:96
@@ -216,27 +216,27 @@ msgstr "Etiopų"
#. frequency:3 iso_code:Geor
#: DB:script/name:36
msgid "Georgian"
-msgstr "Gruziniškas"
+msgstr "Gruzinų"
#. frequency:2 iso_code:Glag
#: DB:script/name:33
msgid "Glagolitic"
-msgstr "Glagolinis"
+msgstr "Glagolų"
#. frequency:2 iso_code:Goth
#: DB:script/name:24
msgid "Gothic"
-msgstr "Gotikinis"
+msgstr "Gotų"
#. frequency:1 iso_code:Gran
#: DB:script/name:152
msgid "Grantha"
-msgstr "Granthos"
+msgstr "Grantha"
#. frequency:4 iso_code:Grek
#: DB:script/name:22
msgid "Greek"
-msgstr "Graikiškas"
+msgstr "Graikų"
#. frequency:3 iso_code:Gujr
#: DB:script/name:52
@@ -246,7 +246,7 @@ msgstr "Gudžaratų"
#. frequency:3 iso_code:Guru
#: DB:script/name:49
msgid "Gurmukhi"
-msgstr "Gurmuchų"
+msgstr "Gurmuchi"
#. frequency:4 iso_code:Hani
#: DB:script/name:92
@@ -266,7 +266,7 @@ msgstr "Hanų (tradicinis variantas)"
#. frequency:3 iso_code:Hang
#: DB:script/name:101
msgid "Hangul"
-msgstr "Hangulo"
+msgstr "Hangul"
#. frequency:2 iso_code:Hano
#: DB:script/name:77
@@ -371,7 +371,7 @@ msgstr "Chutsurų"
#. frequency:4 iso_code:Kore
#: DB:script/name:43
msgid "Korean"
-msgstr "Korėjietiškas"
+msgstr "Korėjiečių"
#. frequency:1 iso_code:Kpel
#: DB:script/name:146
@@ -381,7 +381,7 @@ msgstr "Kpelių"
#. frequency:3 iso_code:Laoo
#: DB:script/name:69
msgid "Lao"
-msgstr "Laoso"
+msgstr "Laosų"
#. frequency:4 iso_code:Latn
#: DB:script/name:28
@@ -471,32 +471,32 @@ msgstr "Meitei Majekų"
#. frequency:1 iso_code:Mend
#: DB:script/name:148
msgid "Mende"
-msgstr ""
+msgstr "Mendų"
#. frequency:1 iso_code:Merc
#: DB:script/name:153
msgid "Meroitic Cursive"
-msgstr ""
+msgstr "Meroitų kursyvas"
#. frequency:1 iso_code:Mero
#: DB:script/name:8
msgid "Meroitic Hieroglyphs"
-msgstr ""
+msgstr "Meroitų hieroglifai"
#. frequency:1 iso_code:Plrd
#: DB:script/name:41
msgid "Miao"
-msgstr ""
+msgstr "Miao"
#. frequency:3 iso_code:Mong
#: DB:script/name:17
msgid "Mongolian"
-msgstr ""
+msgstr "Mongolų"
#. frequency:1 iso_code:Moon
#: DB:script/name:119
msgid "Moon"
-msgstr ""
+msgstr "Mėnulis"
#. frequency:1 iso_code:Mroo
#: DB:script/name:135
@@ -686,7 +686,7 @@ msgstr "Simbolių"
#. frequency:2 iso_code:Syrc
#: DB:script/name:12
msgid "Syriac"
-msgstr "Siriškas"
+msgstr "Sirų"
#. frequency:1 iso_code:Syrn
#: DB:script/name:13
diff --git a/po/scripts.pl.po b/po/scripts.pl.po
index 8378f1856e4..f2c143766c3 100644
--- a/po/scripts.pl.po
+++ b/po/scripts.pl.po
@@ -17,9 +17,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
-"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
-"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
+"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
+"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#. frequency:1 iso_code:Afak
#: DB:script/name:133
diff --git a/po/scripts.ru.po b/po/scripts.ru.po
index decb5f1da17..245939a7650 100644
--- a/po/scripts.ru.po
+++ b/po/scripts.ru.po
@@ -21,9 +21,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
-"%100>=11 && n%100<=14)? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
+"(n%100>=11 && n%100<=14)? 2 : 3);\n"
#. frequency:1 iso_code:Afak
#: DB:script/name:133
diff --git a/po/scripts.sr.po b/po/scripts.sr.po
index 615e9a32594..7c6fd1ecd45 100644
--- a/po/scripts.sr.po
+++ b/po/scripts.sr.po
@@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. frequency:1 iso_code:Afak
#: DB:script/name:133
diff --git a/po/scripts.th.po b/po/scripts.th.po
new file mode 100644
index 00000000000..bf27fcd423c
--- /dev/null
+++ b/po/scripts.th.po
@@ -0,0 +1,805 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: th\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. frequency:1 iso_code:Afak
+#: DB:script/name:133
+msgid "Afaka"
+msgstr ""
+
+#. frequency:4 iso_code:Arab
+#: DB:script/name:18
+msgid "Arabic"
+msgstr ""
+
+#. frequency:3 iso_code:Armn
+#: DB:script/name:35
+msgid "Armenian"
+msgstr ""
+
+#. frequency:1 iso_code:Avst
+#: DB:script/name:114
+msgid "Avestan"
+msgstr ""
+
+#. frequency:2 iso_code:Bali
+#: DB:script/name:72
+msgid "Balinese"
+msgstr ""
+
+#. frequency:1 iso_code:Bamu
+#: DB:script/name:155
+msgid "Bamum"
+msgstr ""
+
+#. frequency:1 iso_code:Bass
+#: DB:script/name:145
+msgid "Bassa Vah"
+msgstr ""
+
+#. frequency:1 iso_code:Batk
+#: DB:script/name:74
+msgid "Batak"
+msgstr ""
+
+#. frequency:3 iso_code:Beng
+#: DB:script/name:53
+msgid "Bengali"
+msgstr ""
+
+#. frequency:1 iso_code:Blis
+#: DB:script/name:95
+msgid "Blissymbols"
+msgstr ""
+
+#. frequency:1 iso_code:Phlv
+#: DB:script/name:123
+msgid "Book Pahlavi"
+msgstr ""
+
+#. frequency:3 iso_code:Bopo
+#: DB:script/name:42
+msgid "Bopomofo"
+msgstr ""
+
+#. frequency:1 iso_code:Brah
+#: DB:script/name:47
+msgid "Brahmi"
+msgstr ""
+
+#. frequency:2 iso_code:Brai
+#: DB:script/name:96
+msgid "Braille"
+msgstr ""
+
+#. frequency:2 iso_code:Bugi
+#: DB:script/name:75
+msgid "Buginese"
+msgstr ""
+
+#. frequency:2 iso_code:Buhd
+#: DB:script/name:78
+msgid "Buhid"
+msgstr ""
+
+#. frequency:2 iso_code:Cans
+#: DB:script/name:87
+msgid "Canadian Syllabics"
+msgstr ""
+
+#. frequency:2 iso_code:Cari
+#: DB:script/name:108
+msgid "Carian"
+msgstr ""
+
+#. frequency:1 iso_code:Cakm
+#: DB:script/name:115
+msgid "Chakma"
+msgstr ""
+
+#. frequency:2 iso_code:Cham
+#: DB:script/name:71
+msgid "Cham"
+msgstr ""
+
+#. frequency:2 iso_code:Cher
+#: DB:script/name:88
+msgid "Cherokee"
+msgstr ""
+
+#. frequency:1 iso_code:Cirt
+#: DB:script/name:45
+msgid "Cirth"
+msgstr ""
+
+#. frequency:1 iso_code:Zinh
+#: DB:script/name:159
+msgid "Code for inherited script"
+msgstr ""
+
+#. frequency:1 iso_code:Zzzz
+#: DB:script/name:130
+msgid "Code for uncoded script"
+msgstr ""
+
+#. frequency:1 iso_code:Zyyy
+#: DB:script/name:129
+msgid "Code for undetermined script"
+msgstr ""
+
+#. frequency:1 iso_code:Zxxx
+#: DB:script/name:128
+msgid "Code for unwritten documents"
+msgstr ""
+
+#. frequency:2 iso_code:Copt
+#: DB:script/name:23
+msgid "Coptic"
+msgstr ""
+
+#. frequency:2 iso_code:Xsux
+#: DB:script/name:1
+msgid "Cuneiform, Sumero-Akkadian"
+msgstr ""
+
+#. frequency:2 iso_code:Cprt
+#: DB:script/name:82
+msgid "Cypriot"
+msgstr ""
+
+#. frequency:4 iso_code:Cyrl
+#: DB:script/name:31
+msgid "Cyrillic"
+msgstr ""
+
+#. frequency:1 iso_code:Cyrs
+#: DB:script/name:32
+msgid "Cyrillic (Old Church Slavonic variant)"
+msgstr ""
+
+#. frequency:2 iso_code:Dsrt
+#: DB:script/name:37
+msgid "Deseret"
+msgstr ""
+
+#. frequency:3 iso_code:Deva
+#: DB:script/name:50
+msgid "Devanagari"
+msgstr ""
+
+#. frequency:1 iso_code:Dupl
+#: DB:script/name:142
+msgid "Duployan shorthand"
+msgstr ""
+
+#. frequency:1 iso_code:Egyd
+#: DB:script/name:6
+msgid "Egyptian demotic"
+msgstr ""
+
+#. frequency:1 iso_code:Egyh
+#: DB:script/name:5
+msgid "Egyptian hieratic"
+msgstr ""
+
+#. frequency:2 iso_code:Egyp
+#: DB:script/name:4
+msgid "Egyptian hieroglyphs"
+msgstr ""
+
+#. frequency:1 iso_code:Elba
+#: DB:script/name:143
+msgid "Elbasan"
+msgstr ""
+
+#. frequency:3 iso_code:Ethi
+#: DB:script/name:86
+msgid "Ethiopic"
+msgstr ""
+
+#. frequency:3 iso_code:Geor
+#: DB:script/name:36
+msgid "Georgian"
+msgstr ""
+
+#. frequency:2 iso_code:Glag
+#: DB:script/name:33
+msgid "Glagolitic"
+msgstr ""
+
+#. frequency:2 iso_code:Goth
+#: DB:script/name:24
+msgid "Gothic"
+msgstr ""
+
+#. frequency:1 iso_code:Gran
+#: DB:script/name:152
+msgid "Grantha"
+msgstr ""
+
+#. frequency:4 iso_code:Grek
+#: DB:script/name:22
+msgid "Greek"
+msgstr ""
+
+#. frequency:3 iso_code:Gujr
+#: DB:script/name:52
+msgid "Gujarati"
+msgstr ""
+
+#. frequency:3 iso_code:Guru
+#: DB:script/name:49
+msgid "Gurmukhi"
+msgstr ""
+
+#. frequency:4 iso_code:Hani
+#: DB:script/name:92
+msgid "Han (Hanzi, Kanji, Hanja)"
+msgstr ""
+
+#. frequency:4 iso_code:Hans
+#: DB:script/name:93
+msgid "Han (Simplified variant)"
+msgstr ""
+
+#. frequency:4 iso_code:Hant
+#: DB:script/name:94
+msgid "Han (Traditional variant)"
+msgstr ""
+
+#. frequency:3 iso_code:Hang
+#: DB:script/name:101
+msgid "Hangul"
+msgstr ""
+
+#. frequency:2 iso_code:Hano
+#: DB:script/name:77
+msgid "Hanunoo"
+msgstr ""
+
+#. frequency:4 iso_code:Hebr
+#: DB:script/name:11
+msgid "Hebrew"
+msgstr ""
+
+#. frequency:3 iso_code:Hira
+#: DB:script/name:83
+msgid "Hiragana"
+msgstr ""
+
+#. frequency:1 iso_code:Armi
+#: DB:script/name:113
+msgid "Imperial Aramaic"
+msgstr ""
+
+#. frequency:1 iso_code:Inds
+#: DB:script/name:97
+msgid "Indus"
+msgstr ""
+
+#. frequency:1 iso_code:Phli
+#: DB:script/name:121
+msgid "Inscriptional Pahlavi"
+msgstr ""
+
+#. frequency:1 iso_code:Prti
+#: DB:script/name:124
+msgid "Inscriptional Parthian"
+msgstr ""
+
+#. frequency:4 iso_code:Jpan
+#: DB:script/name:85
+msgid "Japanese"
+msgstr ""
+
+#. frequency:3 iso_code:Hrkt
+#: DB:script/name:100
+msgid "Japanese syllabaries"
+msgstr ""
+
+#. frequency:1 iso_code:Java
+#: DB:script/name:73
+msgid "Javanese"
+msgstr ""
+
+#. frequency:1 iso_code:Jurc
+#: DB:script/name:134
+msgid "Jurchen"
+msgstr ""
+
+#. frequency:1 iso_code:Kthi
+#: DB:script/name:116
+msgid "Kaithi"
+msgstr ""
+
+#. frequency:3 iso_code:Knda
+#: DB:script/name:60
+msgid "Kannada"
+msgstr ""
+
+#. frequency:4 iso_code:Kana
+#: DB:script/name:84
+msgid "Katakana"
+msgstr ""
+
+#. frequency:2 iso_code:Kali
+#: DB:script/name:70
+msgid "Kayah Li"
+msgstr ""
+
+#. frequency:2 iso_code:Khar
+#: DB:script/name:48
+msgid "Kharoshthi"
+msgstr ""
+
+#. frequency:3 iso_code:Khmr
+#: DB:script/name:68
+msgid "Khmer"
+msgstr ""
+
+#. frequency:1 iso_code:Khoj
+#: DB:script/name:131
+msgid "Khojki"
+msgstr ""
+
+#. frequency:1 iso_code:Sind
+#: DB:script/name:144
+msgid "Khudawadi"
+msgstr ""
+
+#. frequency:2 iso_code:Geok
+#: DB:script/name:102
+msgid "Khutsuri"
+msgstr ""
+
+#. frequency:4 iso_code:Kore
+#: DB:script/name:43
+msgid "Korean"
+msgstr ""
+
+#. frequency:1 iso_code:Kpel
+#: DB:script/name:146
+msgid "Kpelle"
+msgstr ""
+
+#. frequency:3 iso_code:Laoo
+#: DB:script/name:69
+msgid "Lao"
+msgstr ""
+
+#. frequency:4 iso_code:Latn
+#: DB:script/name:28
+msgid "Latin"
+msgstr ""
+
+#. frequency:1 iso_code:Latf
+#: DB:script/name:30
+msgid "Latin (Fraktur variant)"
+msgstr ""
+
+#. frequency:1 iso_code:Latg
+#: DB:script/name:29
+msgid "Latin (Gaelic variant)"
+msgstr ""
+
+#. frequency:2 iso_code:Lepc
+#: DB:script/name:57
+msgid "Lepcha"
+msgstr ""
+
+#. frequency:2 iso_code:Limb
+#: DB:script/name:58
+msgid "Limbu"
+msgstr ""
+
+#. frequency:1 iso_code:Lina
+#: DB:script/name:80
+msgid "Linear A"
+msgstr ""
+
+#. frequency:2 iso_code:Linb
+#: DB:script/name:81
+msgid "Linear B"
+msgstr ""
+
+#. frequency:1 iso_code:Lisu
+#: DB:script/name:157
+msgid "Lisu (Fraser)"
+msgstr ""
+
+#. frequency:1 iso_code:Loma
+#: DB:script/name:147
+msgid "Loma"
+msgstr ""
+
+#. frequency:2 iso_code:Lyci
+#: DB:script/name:109
+msgid "Lycian"
+msgstr ""
+
+#. frequency:2 iso_code:Lydi
+#: DB:script/name:110
+msgid "Lydian"
+msgstr ""
+
+#. frequency:3 iso_code:Mlym
+#: DB:script/name:62
+msgid "Malayalam"
+msgstr ""
+
+#. frequency:1 iso_code:Mand
+#: DB:script/name:16
+msgid "Mandaic"
+msgstr ""
+
+#. frequency:1 iso_code:Mani
+#: DB:script/name:118
+msgid "Manichaean"
+msgstr ""
+
+#. frequency:2 iso_code:Zmth
+#: DB:script/name:111
+msgid "Mathematical notation"
+msgstr ""
+
+#. frequency:1 iso_code:Maya
+#: DB:script/name:7
+msgid "Mayan hieroglyphs"
+msgstr ""
+
+#. frequency:1 iso_code:Mtei
+#: DB:script/name:120
+msgid "Meitei Mayek"
+msgstr ""
+
+#. frequency:1 iso_code:Mend
+#: DB:script/name:148
+msgid "Mende"
+msgstr ""
+
+#. frequency:1 iso_code:Merc
+#: DB:script/name:153
+msgid "Meroitic Cursive"
+msgstr ""
+
+#. frequency:1 iso_code:Mero
+#: DB:script/name:8
+msgid "Meroitic Hieroglyphs"
+msgstr ""
+
+#. frequency:1 iso_code:Plrd
+#: DB:script/name:41
+msgid "Miao"
+msgstr ""
+
+#. frequency:3 iso_code:Mong
+#: DB:script/name:17
+msgid "Mongolian"
+msgstr ""
+
+#. frequency:1 iso_code:Moon
+#: DB:script/name:119
+msgid "Moon"
+msgstr ""
+
+#. frequency:1 iso_code:Mroo
+#: DB:script/name:135
+msgid "Mro, Mru"
+msgstr ""
+
+#. frequency:3 iso_code:Mymr
+#: DB:script/name:64
+msgid "Myanmar"
+msgstr ""
+
+#. frequency:2 iso_code:Nkoo
+#: DB:script/name:103
+msgid "N'ko"
+msgstr ""
+
+#. frequency:1 iso_code:Nbat
+#: DB:script/name:149
+msgid "Nabataean"
+msgstr ""
+
+#. frequency:1 iso_code:Nkgb
+#: DB:script/name:158
+msgid "Nakhi Geba"
+msgstr ""
+
+#. frequency:2 iso_code:Talu
+#: DB:script/name:67
+msgid "New Tai Lue"
+msgstr ""
+
+#. frequency:1 iso_code:Nshu
+#: DB:script/name:136
+msgid "Nüshu"
+msgstr ""
+
+#. frequency:2 iso_code:Ogam
+#: DB:script/name:27
+msgid "Ogham"
+msgstr ""
+
+#. frequency:2 iso_code:Olck
+#: DB:script/name:104
+msgid "Ol Chiki"
+msgstr ""
+
+#. frequency:1 iso_code:Hung
+#: DB:script/name:21
+msgid "Old Hungarian"
+msgstr ""
+
+#. frequency:2 iso_code:Ital
+#: DB:script/name:25
+msgid "Old Italic"
+msgstr ""
+
+#. frequency:1 iso_code:Narb
+#: DB:script/name:150
+msgid "Old North Arabian"
+msgstr ""
+
+#. frequency:1 iso_code:Perm
+#: DB:script/name:34
+msgid "Old Permic"
+msgstr ""
+
+#. frequency:2 iso_code:Xpeo
+#: DB:script/name:2
+msgid "Old Persian"
+msgstr ""
+
+#. frequency:1 iso_code:Sarb
+#: DB:script/name:156
+msgid "Old South Arabian"
+msgstr ""
+
+#. frequency:2 iso_code:Orkh
+#: DB:script/name:20
+msgid "Old Turkic"
+msgstr ""
+
+#. frequency:3 iso_code:Orya
+#: DB:script/name:54
+msgid "Oriya"
+msgstr ""
+
+#. frequency:2 iso_code:Osma
+#: DB:script/name:38
+msgid "Osmanya"
+msgstr ""
+
+#. frequency:1 iso_code:Hmng
+#: DB:script/name:89
+msgid "Pahawh Hmong"
+msgstr ""
+
+#. frequency:1 iso_code:Palm
+#: DB:script/name:151
+msgid "Palmyrene"
+msgstr ""
+
+#. frequency:2 iso_code:Phag
+#: DB:script/name:56
+msgid "Phags-pa"
+msgstr ""
+
+#. frequency:2 iso_code:Phnx
+#: DB:script/name:9
+msgid "Phoenician"
+msgstr ""
+
+#. frequency:1 iso_code:Phlp
+#: DB:script/name:122
+msgid "Psalter Pahlavi"
+msgstr ""
+
+#. frequency:2 iso_code:Rjng
+#: DB:script/name:105
+msgid "Rejang"
+msgstr ""
+
+#. frequency:1 iso_code:Roro
+#: DB:script/name:98
+msgid "Rongorongo"
+msgstr ""
+
+#. frequency:2 iso_code:Runr
+#: DB:script/name:26
+msgid "Runic"
+msgstr ""
+
+#. frequency:1 iso_code:Samr
+#: DB:script/name:125
+msgid "Samaritan"
+msgstr ""
+
+#. frequency:1 iso_code:Sara
+#: DB:script/name:46
+msgid "Sarati"
+msgstr ""
+
+#. frequency:2 iso_code:Saur
+#: DB:script/name:106
+msgid "Saurashtra"
+msgstr ""
+
+#. frequency:1 iso_code:Shrd
+#: DB:script/name:138
+msgid "Sharada"
+msgstr ""
+
+#. frequency:2 iso_code:Shaw
+#: DB:script/name:40
+msgid "Shavian"
+msgstr ""
+
+#. frequency:1 iso_code:Sgnw
+#: DB:script/name:126
+msgid "SignWriting"
+msgstr ""
+
+#. frequency:3 iso_code:Sinh
+#: DB:script/name:63
+msgid "Sinhala"
+msgstr ""
+
+#. frequency:1 iso_code:Sora
+#: DB:script/name:137
+msgid "Sora Sompeng"
+msgstr ""
+
+#. frequency:2 iso_code:Sund
+#: DB:script/name:107
+msgid "Sundanese"
+msgstr ""
+
+#. frequency:2 iso_code:Sylo
+#: DB:script/name:51
+msgid "Syloti Nagri"
+msgstr ""
+
+#. frequency:3 iso_code:Zsym
+#: DB:script/name:112
+msgid "Symbols"
+msgstr ""
+
+#. frequency:2 iso_code:Syrc
+#: DB:script/name:12
+msgid "Syriac"
+msgstr ""
+
+#. frequency:1 iso_code:Syrn
+#: DB:script/name:13
+msgid "Syriac (Eastern variant)"
+msgstr ""
+
+#. frequency:1 iso_code:Syre
+#: DB:script/name:15
+msgid "Syriac (Estrangelo variant)"
+msgstr ""
+
+#. frequency:1 iso_code:Syrj
+#: DB:script/name:14
+msgid "Syriac (Western variant)"
+msgstr ""
+
+#. frequency:2 iso_code:Tglg
+#: DB:script/name:76
+msgid "Tagalog"
+msgstr ""
+
+#. frequency:2 iso_code:Tagb
+#: DB:script/name:79
+msgid "Tagbanwa"
+msgstr ""
+
+#. frequency:2 iso_code:Tale
+#: DB:script/name:66
+msgid "Tai Le"
+msgstr ""
+
+#. frequency:1 iso_code:Lana
+#: DB:script/name:117
+msgid "Tai Tham"
+msgstr ""
+
+#. frequency:1 iso_code:Tavt
+#: DB:script/name:127
+msgid "Tai Viet"
+msgstr ""
+
+#. frequency:1 iso_code:Takr
+#: DB:script/name:139
+msgid "Takri"
+msgstr ""
+
+#. frequency:3 iso_code:Taml
+#: DB:script/name:61
+msgid "Tamil"
+msgstr ""
+
+#. frequency:1 iso_code:Tang
+#: DB:script/name:140
+msgid "Tangut"
+msgstr ""
+
+#. frequency:3 iso_code:Telu
+#: DB:script/name:59
+msgid "Telugu"
+msgstr ""
+
+#. frequency:1 iso_code:Teng
+#: DB:script/name:44
+msgid "Tengwar"
+msgstr ""
+
+#. frequency:2 iso_code:Thaa
+#: DB:script/name:19
+msgid "Thaana"
+msgstr ""
+
+#. frequency:4 iso_code:Thai
+#: DB:script/name:65
+msgid "Thai"
+msgstr ""
+
+#. frequency:3 iso_code:Tibt
+#: DB:script/name:55
+msgid "Tibetan"
+msgstr ""
+
+#. frequency:3 iso_code:Tfng
+#: DB:script/name:10
+msgid "Tifinagh"
+msgstr ""
+
+#. frequency:1 iso_code:Tirh
+#: DB:script/name:132
+msgid "Tiruta"
+msgstr ""
+
+#. frequency:2 iso_code:Ugar
+#: DB:script/name:3
+msgid "Ugaritic"
+msgstr ""
+
+#. frequency:2 iso_code:Vaii
+#: DB:script/name:91
+msgid "Vai"
+msgstr ""
+
+#. frequency:1 iso_code:Visp
+#: DB:script/name:39
+msgid "Visible Speech"
+msgstr ""
+
+#. frequency:1 iso_code:Wara
+#: DB:script/name:154
+msgid "Warang Citi"
+msgstr ""
+
+#. frequency:1 iso_code:Wole
+#: DB:script/name:141
+msgid "Woleai"
+msgstr ""
+
+#. frequency:2 iso_code:Yiii
+#: DB:script/name:90
+msgid "Yi"
+msgstr ""
+
+#. frequency:2 iso_code:Qaaa
+#: DB:script/name:160
+msgid "[Multiple scripts]"
+msgstr ""
diff --git a/po/scripts.zh_Hant.po b/po/scripts.zh_Hant.po
new file mode 100644
index 00000000000..aad55f5fcfc
--- /dev/null
+++ b/po/scripts.zh_Hant.po
@@ -0,0 +1,805 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: zh_Hant\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. frequency:1 iso_code:Afak
+#: DB:script/name:133
+msgid "Afaka"
+msgstr ""
+
+#. frequency:4 iso_code:Arab
+#: DB:script/name:18
+msgid "Arabic"
+msgstr ""
+
+#. frequency:3 iso_code:Armn
+#: DB:script/name:35
+msgid "Armenian"
+msgstr ""
+
+#. frequency:1 iso_code:Avst
+#: DB:script/name:114
+msgid "Avestan"
+msgstr ""
+
+#. frequency:2 iso_code:Bali
+#: DB:script/name:72
+msgid "Balinese"
+msgstr ""
+
+#. frequency:1 iso_code:Bamu
+#: DB:script/name:155
+msgid "Bamum"
+msgstr ""
+
+#. frequency:1 iso_code:Bass
+#: DB:script/name:145
+msgid "Bassa Vah"
+msgstr ""
+
+#. frequency:1 iso_code:Batk
+#: DB:script/name:74
+msgid "Batak"
+msgstr ""
+
+#. frequency:3 iso_code:Beng
+#: DB:script/name:53
+msgid "Bengali"
+msgstr ""
+
+#. frequency:1 iso_code:Blis
+#: DB:script/name:95
+msgid "Blissymbols"
+msgstr ""
+
+#. frequency:1 iso_code:Phlv
+#: DB:script/name:123
+msgid "Book Pahlavi"
+msgstr ""
+
+#. frequency:3 iso_code:Bopo
+#: DB:script/name:42
+msgid "Bopomofo"
+msgstr ""
+
+#. frequency:1 iso_code:Brah
+#: DB:script/name:47
+msgid "Brahmi"
+msgstr ""
+
+#. frequency:2 iso_code:Brai
+#: DB:script/name:96
+msgid "Braille"
+msgstr ""
+
+#. frequency:2 iso_code:Bugi
+#: DB:script/name:75
+msgid "Buginese"
+msgstr ""
+
+#. frequency:2 iso_code:Buhd
+#: DB:script/name:78
+msgid "Buhid"
+msgstr ""
+
+#. frequency:2 iso_code:Cans
+#: DB:script/name:87
+msgid "Canadian Syllabics"
+msgstr ""
+
+#. frequency:2 iso_code:Cari
+#: DB:script/name:108
+msgid "Carian"
+msgstr ""
+
+#. frequency:1 iso_code:Cakm
+#: DB:script/name:115
+msgid "Chakma"
+msgstr ""
+
+#. frequency:2 iso_code:Cham
+#: DB:script/name:71
+msgid "Cham"
+msgstr ""
+
+#. frequency:2 iso_code:Cher
+#: DB:script/name:88
+msgid "Cherokee"
+msgstr ""
+
+#. frequency:1 iso_code:Cirt
+#: DB:script/name:45
+msgid "Cirth"
+msgstr ""
+
+#. frequency:1 iso_code:Zinh
+#: DB:script/name:159
+msgid "Code for inherited script"
+msgstr ""
+
+#. frequency:1 iso_code:Zzzz
+#: DB:script/name:130
+msgid "Code for uncoded script"
+msgstr ""
+
+#. frequency:1 iso_code:Zyyy
+#: DB:script/name:129
+msgid "Code for undetermined script"
+msgstr ""
+
+#. frequency:1 iso_code:Zxxx
+#: DB:script/name:128
+msgid "Code for unwritten documents"
+msgstr ""
+
+#. frequency:2 iso_code:Copt
+#: DB:script/name:23
+msgid "Coptic"
+msgstr ""
+
+#. frequency:2 iso_code:Xsux
+#: DB:script/name:1
+msgid "Cuneiform, Sumero-Akkadian"
+msgstr ""
+
+#. frequency:2 iso_code:Cprt
+#: DB:script/name:82
+msgid "Cypriot"
+msgstr ""
+
+#. frequency:4 iso_code:Cyrl
+#: DB:script/name:31
+msgid "Cyrillic"
+msgstr ""
+
+#. frequency:1 iso_code:Cyrs
+#: DB:script/name:32
+msgid "Cyrillic (Old Church Slavonic variant)"
+msgstr ""
+
+#. frequency:2 iso_code:Dsrt
+#: DB:script/name:37
+msgid "Deseret"
+msgstr ""
+
+#. frequency:3 iso_code:Deva
+#: DB:script/name:50
+msgid "Devanagari"
+msgstr ""
+
+#. frequency:1 iso_code:Dupl
+#: DB:script/name:142
+msgid "Duployan shorthand"
+msgstr ""
+
+#. frequency:1 iso_code:Egyd
+#: DB:script/name:6
+msgid "Egyptian demotic"
+msgstr ""
+
+#. frequency:1 iso_code:Egyh
+#: DB:script/name:5
+msgid "Egyptian hieratic"
+msgstr ""
+
+#. frequency:2 iso_code:Egyp
+#: DB:script/name:4
+msgid "Egyptian hieroglyphs"
+msgstr ""
+
+#. frequency:1 iso_code:Elba
+#: DB:script/name:143
+msgid "Elbasan"
+msgstr ""
+
+#. frequency:3 iso_code:Ethi
+#: DB:script/name:86
+msgid "Ethiopic"
+msgstr ""
+
+#. frequency:3 iso_code:Geor
+#: DB:script/name:36
+msgid "Georgian"
+msgstr ""
+
+#. frequency:2 iso_code:Glag
+#: DB:script/name:33
+msgid "Glagolitic"
+msgstr ""
+
+#. frequency:2 iso_code:Goth
+#: DB:script/name:24
+msgid "Gothic"
+msgstr ""
+
+#. frequency:1 iso_code:Gran
+#: DB:script/name:152
+msgid "Grantha"
+msgstr ""
+
+#. frequency:4 iso_code:Grek
+#: DB:script/name:22
+msgid "Greek"
+msgstr ""
+
+#. frequency:3 iso_code:Gujr
+#: DB:script/name:52
+msgid "Gujarati"
+msgstr ""
+
+#. frequency:3 iso_code:Guru
+#: DB:script/name:49
+msgid "Gurmukhi"
+msgstr ""
+
+#. frequency:4 iso_code:Hani
+#: DB:script/name:92
+msgid "Han (Hanzi, Kanji, Hanja)"
+msgstr ""
+
+#. frequency:4 iso_code:Hans
+#: DB:script/name:93
+msgid "Han (Simplified variant)"
+msgstr ""
+
+#. frequency:4 iso_code:Hant
+#: DB:script/name:94
+msgid "Han (Traditional variant)"
+msgstr ""
+
+#. frequency:3 iso_code:Hang
+#: DB:script/name:101
+msgid "Hangul"
+msgstr ""
+
+#. frequency:2 iso_code:Hano
+#: DB:script/name:77
+msgid "Hanunoo"
+msgstr ""
+
+#. frequency:4 iso_code:Hebr
+#: DB:script/name:11
+msgid "Hebrew"
+msgstr ""
+
+#. frequency:3 iso_code:Hira
+#: DB:script/name:83
+msgid "Hiragana"
+msgstr ""
+
+#. frequency:1 iso_code:Armi
+#: DB:script/name:113
+msgid "Imperial Aramaic"
+msgstr ""
+
+#. frequency:1 iso_code:Inds
+#: DB:script/name:97
+msgid "Indus"
+msgstr ""
+
+#. frequency:1 iso_code:Phli
+#: DB:script/name:121
+msgid "Inscriptional Pahlavi"
+msgstr ""
+
+#. frequency:1 iso_code:Prti
+#: DB:script/name:124
+msgid "Inscriptional Parthian"
+msgstr ""
+
+#. frequency:4 iso_code:Jpan
+#: DB:script/name:85
+msgid "Japanese"
+msgstr ""
+
+#. frequency:3 iso_code:Hrkt
+#: DB:script/name:100
+msgid "Japanese syllabaries"
+msgstr ""
+
+#. frequency:1 iso_code:Java
+#: DB:script/name:73
+msgid "Javanese"
+msgstr ""
+
+#. frequency:1 iso_code:Jurc
+#: DB:script/name:134
+msgid "Jurchen"
+msgstr ""
+
+#. frequency:1 iso_code:Kthi
+#: DB:script/name:116
+msgid "Kaithi"
+msgstr ""
+
+#. frequency:3 iso_code:Knda
+#: DB:script/name:60
+msgid "Kannada"
+msgstr ""
+
+#. frequency:4 iso_code:Kana
+#: DB:script/name:84
+msgid "Katakana"
+msgstr ""
+
+#. frequency:2 iso_code:Kali
+#: DB:script/name:70
+msgid "Kayah Li"
+msgstr ""
+
+#. frequency:2 iso_code:Khar
+#: DB:script/name:48
+msgid "Kharoshthi"
+msgstr ""
+
+#. frequency:3 iso_code:Khmr
+#: DB:script/name:68
+msgid "Khmer"
+msgstr ""
+
+#. frequency:1 iso_code:Khoj
+#: DB:script/name:131
+msgid "Khojki"
+msgstr ""
+
+#. frequency:1 iso_code:Sind
+#: DB:script/name:144
+msgid "Khudawadi"
+msgstr ""
+
+#. frequency:2 iso_code:Geok
+#: DB:script/name:102
+msgid "Khutsuri"
+msgstr ""
+
+#. frequency:4 iso_code:Kore
+#: DB:script/name:43
+msgid "Korean"
+msgstr ""
+
+#. frequency:1 iso_code:Kpel
+#: DB:script/name:146
+msgid "Kpelle"
+msgstr ""
+
+#. frequency:3 iso_code:Laoo
+#: DB:script/name:69
+msgid "Lao"
+msgstr ""
+
+#. frequency:4 iso_code:Latn
+#: DB:script/name:28
+msgid "Latin"
+msgstr ""
+
+#. frequency:1 iso_code:Latf
+#: DB:script/name:30
+msgid "Latin (Fraktur variant)"
+msgstr ""
+
+#. frequency:1 iso_code:Latg
+#: DB:script/name:29
+msgid "Latin (Gaelic variant)"
+msgstr ""
+
+#. frequency:2 iso_code:Lepc
+#: DB:script/name:57
+msgid "Lepcha"
+msgstr ""
+
+#. frequency:2 iso_code:Limb
+#: DB:script/name:58
+msgid "Limbu"
+msgstr ""
+
+#. frequency:1 iso_code:Lina
+#: DB:script/name:80
+msgid "Linear A"
+msgstr ""
+
+#. frequency:2 iso_code:Linb
+#: DB:script/name:81
+msgid "Linear B"
+msgstr ""
+
+#. frequency:1 iso_code:Lisu
+#: DB:script/name:157
+msgid "Lisu (Fraser)"
+msgstr ""
+
+#. frequency:1 iso_code:Loma
+#: DB:script/name:147
+msgid "Loma"
+msgstr ""
+
+#. frequency:2 iso_code:Lyci
+#: DB:script/name:109
+msgid "Lycian"
+msgstr ""
+
+#. frequency:2 iso_code:Lydi
+#: DB:script/name:110
+msgid "Lydian"
+msgstr ""
+
+#. frequency:3 iso_code:Mlym
+#: DB:script/name:62
+msgid "Malayalam"
+msgstr ""
+
+#. frequency:1 iso_code:Mand
+#: DB:script/name:16
+msgid "Mandaic"
+msgstr ""
+
+#. frequency:1 iso_code:Mani
+#: DB:script/name:118
+msgid "Manichaean"
+msgstr ""
+
+#. frequency:2 iso_code:Zmth
+#: DB:script/name:111
+msgid "Mathematical notation"
+msgstr ""
+
+#. frequency:1 iso_code:Maya
+#: DB:script/name:7
+msgid "Mayan hieroglyphs"
+msgstr ""
+
+#. frequency:1 iso_code:Mtei
+#: DB:script/name:120
+msgid "Meitei Mayek"
+msgstr ""
+
+#. frequency:1 iso_code:Mend
+#: DB:script/name:148
+msgid "Mende"
+msgstr ""
+
+#. frequency:1 iso_code:Merc
+#: DB:script/name:153
+msgid "Meroitic Cursive"
+msgstr ""
+
+#. frequency:1 iso_code:Mero
+#: DB:script/name:8
+msgid "Meroitic Hieroglyphs"
+msgstr ""
+
+#. frequency:1 iso_code:Plrd
+#: DB:script/name:41
+msgid "Miao"
+msgstr ""
+
+#. frequency:3 iso_code:Mong
+#: DB:script/name:17
+msgid "Mongolian"
+msgstr ""
+
+#. frequency:1 iso_code:Moon
+#: DB:script/name:119
+msgid "Moon"
+msgstr ""
+
+#. frequency:1 iso_code:Mroo
+#: DB:script/name:135
+msgid "Mro, Mru"
+msgstr ""
+
+#. frequency:3 iso_code:Mymr
+#: DB:script/name:64
+msgid "Myanmar"
+msgstr ""
+
+#. frequency:2 iso_code:Nkoo
+#: DB:script/name:103
+msgid "N'ko"
+msgstr ""
+
+#. frequency:1 iso_code:Nbat
+#: DB:script/name:149
+msgid "Nabataean"
+msgstr ""
+
+#. frequency:1 iso_code:Nkgb
+#: DB:script/name:158
+msgid "Nakhi Geba"
+msgstr ""
+
+#. frequency:2 iso_code:Talu
+#: DB:script/name:67
+msgid "New Tai Lue"
+msgstr ""
+
+#. frequency:1 iso_code:Nshu
+#: DB:script/name:136
+msgid "Nüshu"
+msgstr ""
+
+#. frequency:2 iso_code:Ogam
+#: DB:script/name:27
+msgid "Ogham"
+msgstr ""
+
+#. frequency:2 iso_code:Olck
+#: DB:script/name:104
+msgid "Ol Chiki"
+msgstr ""
+
+#. frequency:1 iso_code:Hung
+#: DB:script/name:21
+msgid "Old Hungarian"
+msgstr ""
+
+#. frequency:2 iso_code:Ital
+#: DB:script/name:25
+msgid "Old Italic"
+msgstr ""
+
+#. frequency:1 iso_code:Narb
+#: DB:script/name:150
+msgid "Old North Arabian"
+msgstr ""
+
+#. frequency:1 iso_code:Perm
+#: DB:script/name:34
+msgid "Old Permic"
+msgstr ""
+
+#. frequency:2 iso_code:Xpeo
+#: DB:script/name:2
+msgid "Old Persian"
+msgstr ""
+
+#. frequency:1 iso_code:Sarb
+#: DB:script/name:156
+msgid "Old South Arabian"
+msgstr ""
+
+#. frequency:2 iso_code:Orkh
+#: DB:script/name:20
+msgid "Old Turkic"
+msgstr ""
+
+#. frequency:3 iso_code:Orya
+#: DB:script/name:54
+msgid "Oriya"
+msgstr ""
+
+#. frequency:2 iso_code:Osma
+#: DB:script/name:38
+msgid "Osmanya"
+msgstr ""
+
+#. frequency:1 iso_code:Hmng
+#: DB:script/name:89
+msgid "Pahawh Hmong"
+msgstr ""
+
+#. frequency:1 iso_code:Palm
+#: DB:script/name:151
+msgid "Palmyrene"
+msgstr ""
+
+#. frequency:2 iso_code:Phag
+#: DB:script/name:56
+msgid "Phags-pa"
+msgstr ""
+
+#. frequency:2 iso_code:Phnx
+#: DB:script/name:9
+msgid "Phoenician"
+msgstr ""
+
+#. frequency:1 iso_code:Phlp
+#: DB:script/name:122
+msgid "Psalter Pahlavi"
+msgstr ""
+
+#. frequency:2 iso_code:Rjng
+#: DB:script/name:105
+msgid "Rejang"
+msgstr ""
+
+#. frequency:1 iso_code:Roro
+#: DB:script/name:98
+msgid "Rongorongo"
+msgstr ""
+
+#. frequency:2 iso_code:Runr
+#: DB:script/name:26
+msgid "Runic"
+msgstr ""
+
+#. frequency:1 iso_code:Samr
+#: DB:script/name:125
+msgid "Samaritan"
+msgstr ""
+
+#. frequency:1 iso_code:Sara
+#: DB:script/name:46
+msgid "Sarati"
+msgstr ""
+
+#. frequency:2 iso_code:Saur
+#: DB:script/name:106
+msgid "Saurashtra"
+msgstr ""
+
+#. frequency:1 iso_code:Shrd
+#: DB:script/name:138
+msgid "Sharada"
+msgstr ""
+
+#. frequency:2 iso_code:Shaw
+#: DB:script/name:40
+msgid "Shavian"
+msgstr ""
+
+#. frequency:1 iso_code:Sgnw
+#: DB:script/name:126
+msgid "SignWriting"
+msgstr ""
+
+#. frequency:3 iso_code:Sinh
+#: DB:script/name:63
+msgid "Sinhala"
+msgstr ""
+
+#. frequency:1 iso_code:Sora
+#: DB:script/name:137
+msgid "Sora Sompeng"
+msgstr ""
+
+#. frequency:2 iso_code:Sund
+#: DB:script/name:107
+msgid "Sundanese"
+msgstr ""
+
+#. frequency:2 iso_code:Sylo
+#: DB:script/name:51
+msgid "Syloti Nagri"
+msgstr ""
+
+#. frequency:3 iso_code:Zsym
+#: DB:script/name:112
+msgid "Symbols"
+msgstr ""
+
+#. frequency:2 iso_code:Syrc
+#: DB:script/name:12
+msgid "Syriac"
+msgstr ""
+
+#. frequency:1 iso_code:Syrn
+#: DB:script/name:13
+msgid "Syriac (Eastern variant)"
+msgstr ""
+
+#. frequency:1 iso_code:Syre
+#: DB:script/name:15
+msgid "Syriac (Estrangelo variant)"
+msgstr ""
+
+#. frequency:1 iso_code:Syrj
+#: DB:script/name:14
+msgid "Syriac (Western variant)"
+msgstr ""
+
+#. frequency:2 iso_code:Tglg
+#: DB:script/name:76
+msgid "Tagalog"
+msgstr ""
+
+#. frequency:2 iso_code:Tagb
+#: DB:script/name:79
+msgid "Tagbanwa"
+msgstr ""
+
+#. frequency:2 iso_code:Tale
+#: DB:script/name:66
+msgid "Tai Le"
+msgstr ""
+
+#. frequency:1 iso_code:Lana
+#: DB:script/name:117
+msgid "Tai Tham"
+msgstr ""
+
+#. frequency:1 iso_code:Tavt
+#: DB:script/name:127
+msgid "Tai Viet"
+msgstr ""
+
+#. frequency:1 iso_code:Takr
+#: DB:script/name:139
+msgid "Takri"
+msgstr ""
+
+#. frequency:3 iso_code:Taml
+#: DB:script/name:61
+msgid "Tamil"
+msgstr ""
+
+#. frequency:1 iso_code:Tang
+#: DB:script/name:140
+msgid "Tangut"
+msgstr ""
+
+#. frequency:3 iso_code:Telu
+#: DB:script/name:59
+msgid "Telugu"
+msgstr ""
+
+#. frequency:1 iso_code:Teng
+#: DB:script/name:44
+msgid "Tengwar"
+msgstr ""
+
+#. frequency:2 iso_code:Thaa
+#: DB:script/name:19
+msgid "Thaana"
+msgstr ""
+
+#. frequency:4 iso_code:Thai
+#: DB:script/name:65
+msgid "Thai"
+msgstr ""
+
+#. frequency:3 iso_code:Tibt
+#: DB:script/name:55
+msgid "Tibetan"
+msgstr ""
+
+#. frequency:3 iso_code:Tfng
+#: DB:script/name:10
+msgid "Tifinagh"
+msgstr ""
+
+#. frequency:1 iso_code:Tirh
+#: DB:script/name:132
+msgid "Tiruta"
+msgstr ""
+
+#. frequency:2 iso_code:Ugar
+#: DB:script/name:3
+msgid "Ugaritic"
+msgstr ""
+
+#. frequency:2 iso_code:Vaii
+#: DB:script/name:91
+msgid "Vai"
+msgstr ""
+
+#. frequency:1 iso_code:Visp
+#: DB:script/name:39
+msgid "Visible Speech"
+msgstr ""
+
+#. frequency:1 iso_code:Wara
+#: DB:script/name:154
+msgid "Warang Citi"
+msgstr ""
+
+#. frequency:1 iso_code:Wole
+#: DB:script/name:141
+msgid "Woleai"
+msgstr ""
+
+#. frequency:2 iso_code:Yiii
+#: DB:script/name:90
+msgid "Yi"
+msgstr ""
+
+#. frequency:2 iso_code:Qaaa
+#: DB:script/name:160
+msgid "[Multiple scripts]"
+msgstr ""
diff --git a/po/statistics.bg.po b/po/statistics.bg.po
index 39c046dd5cb..6b99a74d7d3 100644
--- a/po/statistics.bg.po
+++ b/po/statistics.bg.po
@@ -1114,7 +1114,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1146,7 +1146,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1172,14 +1173,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1193,8 +1190,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1216,7 +1215,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1224,39 +1223,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Издания"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1411,7 +1426,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1431,69 +1447,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Жанрове"
@@ -1505,10 +1501,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1531,8 +1523,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1543,20 +1535,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1667,28 +1660,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1717,10 +1706,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1737,13 +1722,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1762,11 +1742,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1775,27 +1750,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1940,20 +1894,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1969,7 +1919,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1980,14 +1931,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2251,10 +2199,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2460,470 +2404,450 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Парче"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.bn.po b/po/statistics.bn.po
index 3960033d89c..88102404784 100644
--- a/po/statistics.bn.po
+++ b/po/statistics.bn.po
@@ -1114,7 +1114,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1146,7 +1146,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1172,14 +1173,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1193,8 +1190,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1216,7 +1215,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1224,39 +1223,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "রিলিজ সমূহ"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1411,7 +1426,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1431,69 +1447,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1505,10 +1501,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1531,8 +1523,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1543,20 +1535,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1667,28 +1660,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1717,10 +1706,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1737,13 +1722,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1762,11 +1742,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1775,27 +1750,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1940,20 +1894,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1969,7 +1919,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1980,14 +1931,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2251,10 +2199,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2460,470 +2404,450 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "ট্র্যাক সমূহ"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.ca.po b/po/statistics.ca.po
index 1038b3aadf7..e830b89c497 100644
--- a/po/statistics.ca.po
+++ b/po/statistics.ca.po
@@ -1114,7 +1114,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1146,7 +1146,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1172,14 +1173,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1193,8 +1190,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1216,7 +1215,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1224,39 +1223,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artistes"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1411,7 +1426,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1431,69 +1447,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1505,10 +1501,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1531,8 +1523,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1543,20 +1535,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1667,28 +1660,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1717,10 +1706,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1737,13 +1722,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1762,11 +1742,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1775,27 +1750,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1940,20 +1894,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1969,7 +1919,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1980,14 +1931,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2251,10 +2199,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2460,470 +2404,450 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Pistes"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.cs.po b/po/statistics.cs.po
index 50ca383f08f..00a41a1c08c 100644
--- a/po/statistics.cs.po
+++ b/po/statistics.cs.po
@@ -1116,7 +1116,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1148,7 +1148,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1174,14 +1175,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1195,8 +1192,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1218,7 +1217,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1226,39 +1225,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Vydání"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1415,7 +1430,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1435,69 +1451,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Žánry"
@@ -1509,10 +1505,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1535,8 +1527,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1547,20 +1539,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1671,28 +1664,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1723,10 +1712,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1743,13 +1728,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1768,11 +1748,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1781,27 +1756,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1946,20 +1900,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1975,7 +1925,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1986,14 +1937,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2257,10 +2205,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2466,342 +2410,314 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Skladby"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
@@ -2809,7 +2725,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
@@ -2817,7 +2733,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
@@ -2825,7 +2741,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
@@ -2833,111 +2749,119 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.cy.po b/po/statistics.cy.po
index 19f61cd49b6..31c1bfdf9bf 100644
--- a/po/statistics.cy.po
+++ b/po/statistics.cy.po
@@ -1116,7 +1116,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1148,7 +1148,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1174,14 +1175,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1195,8 +1192,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1218,7 +1217,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1226,39 +1225,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Gwlad"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Labeli"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1415,7 +1430,8 @@ msgstr "Fformat"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1435,69 +1451,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1509,10 +1505,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1535,8 +1527,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1547,20 +1539,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1671,28 +1664,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1723,10 +1712,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1743,13 +1728,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1768,11 +1748,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1781,27 +1756,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1946,20 +1900,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1975,7 +1925,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1986,14 +1937,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2257,10 +2205,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2466,342 +2410,314 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Traciau"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
@@ -2809,7 +2725,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
@@ -2817,7 +2733,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
@@ -2825,7 +2741,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
@@ -2833,111 +2749,119 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.da.po b/po/statistics.da.po
index ae76f252275..b197fb2a4d4 100644
--- a/po/statistics.da.po
+++ b/po/statistics.da.po
@@ -1114,7 +1114,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1146,7 +1146,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1172,14 +1173,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1193,8 +1190,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1216,7 +1215,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1224,39 +1223,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "land"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Kunstnere"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Selskaber"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1411,7 +1426,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1431,69 +1447,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1505,10 +1501,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1531,8 +1523,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1543,20 +1535,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1667,28 +1660,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1717,10 +1706,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1737,13 +1722,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1762,11 +1742,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1775,27 +1750,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1940,20 +1894,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1969,7 +1919,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1980,14 +1931,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2251,10 +2199,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2460,470 +2404,450 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Skæringer"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.de.po b/po/statistics.de.po
index 211568af72a..774938c7a43 100644
--- a/po/statistics.de.po
+++ b/po/statistics.de.po
@@ -686,9 +686,9 @@ msgid ""
"Additionally, the German, French and Dutch translations are available on the "
"main server."
msgstr ""
-"Mehr Bearbeitungstypen werden zu automatischen Bearbeitungen für jeden: „"
-"Beziehung hinzufügen“, „Veröffentlichung hinzufügen“ sowie „"
-"Veröffentlichungslabel hinzufügen“, „bearbeiten“ und „entfernen“. Außerdem "
+"Mehr Bearbeitungstypen werden zu automatischen Bearbeitungen für jeden: "
+"„Beziehung hinzufügen“, „Veröffentlichung hinzufügen“ sowie "
+"„Veröffentlichungslabel hinzufügen“, „bearbeiten“ und „entfernen“. Außerdem "
"stehen die deutsche, französische und niederländische Übersetzung auf dem "
"Haupt-Server bereit."
@@ -1214,7 +1214,7 @@ msgstr "Anklicken, um abzuwählen"
msgid "Controls"
msgstr "Steuerelemente"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "Länder"
@@ -1246,7 +1246,8 @@ msgstr "Bearbeiter"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Bearbeitungen"
@@ -1272,14 +1273,10 @@ msgstr "Sprachen/Schriften"
msgid "Legend"
msgstr "Legende"
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "MusicBrainz-Ereignisse"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "MusicBrainz-Ereignisse:"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1293,8 +1290,10 @@ msgstr "Änderungsrate (durchschnittliche Elemente/Tag vs. Tag)"
msgid "Rate of Change Graph"
msgstr "Diagramm der Veränderungsrate"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1316,7 +1315,7 @@ msgstr "Zeitleistendiagramm"
msgid "Zoom:"
msgstr "Zoom:"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1324,39 +1323,55 @@ msgstr "Zoom:"
msgid "Last updated: {date}"
msgstr "Zuletzt aktualisiert: {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "Rang"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Land"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Künstler"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Veröffentlichungen"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Labels"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "Veranstaltungen"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "Örtlichkeiten"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Insgesamt"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "Unbekanntes Land"
@@ -1513,7 +1528,8 @@ msgstr "Format"
msgid "% of total releases"
msgstr "% aller Veröffentlichungen"
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr "Medien"
@@ -1533,69 +1549,49 @@ msgstr "Grundlegende Metadaten"
msgid "Core Entities"
msgstr "Hauptobjekte"
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Künstler:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr "Veröffentlichungsgruppen:"
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Veröffentlichungen:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "Medien:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "Veröffentlichungsgruppen"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "Aufnahmen:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Aufnahmen"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "Titel:"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Labels:"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "Werke:"
+msgid "Tracks)"
+msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Werke"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr "Gebiete:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "URLs"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr "Örtlichkeiten:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Gebiete"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "Serie:"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr "Instrumente:"
+msgid "Series"
+msgstr "Serien"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr "Veranstaltungen:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Instrumente"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Genres"
@@ -1607,10 +1603,6 @@ msgstr "Andere Objekte"
msgid "Editors (valid / deleted):"
msgstr "Bearbeiter (bestätigt / gelöscht):"
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Beziehungen:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1633,9 +1625,9 @@ msgstr "Bewertungen (roh / kumuliert):"
msgid "Identifiers"
msgstr "Identifikatoren"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
-msgstr "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
+msgstr ""
#: ../root/statistics/Index.js:203
msgid "ISRCs (all / unique):"
@@ -1645,21 +1637,22 @@ msgstr "ISRCs (alle / einzigartig):"
msgid "ISWCs (all / unique):"
msgstr "ISWCs (alle / einzigartig):"
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr "Disc-IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "Disc-IDs"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Strichcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Strichcodes"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr "IPIs"
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
-msgstr "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr "ISNIs"
#: ../root/statistics/Index.js:246
msgid "of type Person:"
@@ -1769,29 +1762,25 @@ msgstr "Kein vorderes Cover-Art:"
msgid "Data Quality"
msgstr "Datenqualität"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr "Hohe Datenqualität:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "Hohe Datenqualität"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr "Standarddatenqualität:"
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr "Normale Datenqualität:"
+msgid "Default Data Quality"
+msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "Unbekannte Datenqualität:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "Normale Datenqualität"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr "Niedrige Datenqualität:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "Unbekannte Datenqualität"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "Disc-IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr "Niedrige Datenqualität"
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1819,10 +1808,6 @@ msgstr "Medien ohne Disc-IDs:"
msgid "Mediums with at least one disc ID:"
msgstr "Medien mit mindestens einer Disc-ID:"
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "Veröffentlichungsgruppen"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "Primäre Typen"
@@ -1839,14 +1824,9 @@ msgstr "Keine"
msgid "Secondary Types"
msgstr "Sekundärtypen"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Aufnahmen"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
-msgstr "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr "Videos"
#: ../root/statistics/Index.js:699
msgctxt "recording"
@@ -1864,11 +1844,6 @@ msgstr ""
msgid "Types"
msgstr "Typen"
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Werke"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1877,27 +1852,6 @@ msgstr ""
msgid "Attributes"
msgstr "Eigenschaften"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Gebiete"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "Örtlichkeiten"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Serien"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Instrumente"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "Veranstaltungen"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -2042,21 +1996,17 @@ msgstr "inaktiv:"
msgid "Editors (deleted):"
msgstr "Bearbeiter (gelöscht):"
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Bearbeitungen:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "Offen:"
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "Angewandt:"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "Abgelehnt:"
+msgid "Voted down"
+msgstr ""
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -2071,8 +2021,9 @@ msgid "Failed (internal error):"
msgstr "Fehlgeschlagen (interner Fehler):"
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Abgebrochen:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -2082,14 +2033,11 @@ msgstr "Letzte 7 Tage:"
msgid "Yesterday:"
msgstr "Gestern:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Stimmen"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "Stimmen:"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2358,10 +2306,6 @@ msgstr "Personen"
msgid "Artist Credits"
msgstr "Künstlernennungen"
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Strichcodes"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2567,473 +2511,553 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr "IPIs"
+msgid "Instruments with no type set"
+msgstr ""
-#: ../root/statistics/stats.js:464
+#: ../root/statistics/stats.js:469
msgid "Artist IPIs"
msgstr "Künstler-IPIs"
-#: ../root/statistics/stats.js:469
+#: ../root/statistics/stats.js:474
msgid "Label IPIs"
msgstr "Label-IPIs"
-#: ../root/statistics/stats.js:474
-msgid "ISNIs"
-msgstr "ISNIs"
-
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr "Künstler-ISNIs"
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr "Label-ISNIs"
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
+#: ../root/statistics/stats.js:519
msgid "Labels with no country set"
msgstr "Labels ohne Land"
-#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr "Medien ohne Format"
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr "Medien mit Disc-IDs"
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "Hohe Datenqualität"
+msgid "Places with no type set"
+msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr "Niedrige Datenqualität"
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "Normale Datenqualität"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "Unbekannte Datenqualität"
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr "Objekte mit Bewertungen"
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Bewertungen"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Künstlerbewertungen"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr "Labelbewertungen"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Aufnahmebewertungen"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "Veröffentlichungsgruppenbewertungen"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr "Werkbewertungen"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr "Veröffentlichungsgruppen mit Bewertungen"
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr "Werke mit Bewertungen"
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr "Aufnahmen mit ISRCs"
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr "Veröffentlichungen ohne Land"
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr "Veröffentlichungen mit CAA-Cover-Art"
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr "Veröffentlichungen ohne Cover-Art"
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr "Veröffentlichungen mit Cover-Art"
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr "Veröffentlichungen mit Disc-IDs"
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr "Veröffentlichungen ohne Sprache"
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr "Veröffentlichungen ohne Schrift"
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Titel"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr "URLs"
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr "Videos"
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr "Enthaltungen"
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr "Absegnungen"
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr "Keine Stimmen"
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr "Stimmen pro Tag"
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr "Stimmen pro Woche"
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr "Ja-Stimmen"
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/Tag"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] "Veröffentlichungen mit einer Disc-ID"
msgstr[1] "Veröffentlichungen mit {n} Disc-IDs"
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] "Medien mit einer Disc-ID"
msgstr[1] "Medien mit {n} Disc-IDs"
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] "Aufnahmen mit einer Veröffentlichung"
msgstr[1] "Aufnahmen mit {n} Veröffentlichungen"
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] "Veröffentlichungsgruppen mit einer Veröffentlichung"
msgstr[1] "Veröffentlichungsgruppen mit {n} Veröffentlichungen"
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr "{type} Gebiete"
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr "{country} Künstler"
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr "{country} Labels"
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr "{country} Veröffentlichungen"
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr "{type} Bearbeitungen"
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr "{type} Veranstaltungen"
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr "{name} Veröffentlichungen"
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr "{name} Medien"
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr "{type} Instrumente"
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "{language} Veröffentlichungen"
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr "{script} Veröffentlichungen"
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "MusicBrainz-Ereignisse:"
+
+#~ msgid "Artists:"
+#~ msgstr "Künstler:"
+
+#~ msgid "Release Groups:"
+#~ msgstr "Veröffentlichungsgruppen:"
+
+#~ msgid "Releases:"
+#~ msgstr "Veröffentlichungen:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Medien:"
+
+#~ msgid "Recordings:"
+#~ msgstr "Aufnahmen:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Titel:"
+
+#~ msgid "Labels:"
+#~ msgstr "Labels:"
+
+#~ msgid "Works:"
+#~ msgstr "Werke:"
+
+#~ msgid "URLs:"
+#~ msgstr "URLs:"
+
+#~ msgid "Areas:"
+#~ msgstr "Gebiete:"
+
+#~ msgid "Places:"
+#~ msgstr "Örtlichkeiten:"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "Serie:"
+
+#~ msgid "Instruments:"
+#~ msgstr "Instrumente:"
+
+#~ msgid "Events:"
+#~ msgstr "Veranstaltungen:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Beziehungen:"
+
+#~ msgid "MBIDs:"
+#~ msgstr "MBIDs:"
+
+#~ msgid "Disc IDs:"
+#~ msgstr "Disc-IDs:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Strichcodes:"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPIs:"
+
+#~ msgid "ISNIs:"
+#~ msgstr "ISNIs:"
+
+#~ msgid "High Data Quality:"
+#~ msgstr "Hohe Datenqualität:"
+
+#~ msgid "Default Data Quality:"
+#~ msgstr "Standarddatenqualität:"
+
+#~ msgid "Normal Data Quality:"
+#~ msgstr "Normale Datenqualität:"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "Unbekannte Datenqualität:"
+
+#~ msgid "Low Data Quality:"
+#~ msgstr "Niedrige Datenqualität:"
+
+#~ msgid "Videos:"
+#~ msgstr "Videos:"
+
+#~ msgid "Edits:"
+#~ msgstr "Bearbeitungen:"
+
+#~ msgid "Open:"
+#~ msgstr "Offen:"
+
+#~ msgid "Applied:"
+#~ msgstr "Angewandt:"
+
+#~ msgid "Voted down:"
+#~ msgstr "Abgelehnt:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Abgebrochen:"
+
+#~ msgid "Votes:"
+#~ msgstr "Stimmen:"
diff --git a/po/statistics.el.po b/po/statistics.el.po
index f0b2c8fb4a2..28eedc17709 100644
--- a/po/statistics.el.po
+++ b/po/statistics.el.po
@@ -1134,7 +1134,7 @@ msgstr "Κάντε κλικ για αποεπιλογή"
msgid "Controls"
msgstr "Στοιχεία ελέγχου"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "Χώρες"
@@ -1166,7 +1166,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Επεξεργασίες"
@@ -1192,14 +1193,10 @@ msgstr ""
msgid "Legend"
msgstr "Υπόμνημα"
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "Γεγονότα MusicBrainz"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "Γεγονότα MusicBrainz:"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1213,8 +1210,10 @@ msgstr "Κατάταξη αλλαγών (μέσος όρος αντικειμέ
msgid "Rate of Change Graph"
msgstr "Γράφημα ρυθμού αλλαγών"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1236,7 +1235,7 @@ msgstr "Χρονογράφημα"
msgid "Zoom:"
msgstr "Εστίαση:"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1244,39 +1243,55 @@ msgstr "Εστίαση:"
msgid "Last updated: {date}"
msgstr "Τελευταία ενημέρωση: {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "Κατάταξη"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Χώρα"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Καλλιτέχνες"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Κυκλοφορίες"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Δισκογραφικές εταιρείες"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Σύνολο"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "Άγνωστη χώρα"
@@ -1433,7 +1448,8 @@ msgstr "Μορφή"
msgid "% of total releases"
msgstr "% από σύνολο κυκλοφοριών"
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr "Μέσα"
@@ -1453,69 +1469,49 @@ msgstr "Βασικά μεταδεδομένα"
msgid "Core Entities"
msgstr "Βασικά στοιχεία"
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Καλλιτέχνες:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr "Ομάδες κυκλοφοριών:"
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Κυκλοφορίες:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "Μέσα:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "Ομάδες κυκλοφοριών"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "Ηχογραφήσεις:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Ηχογραφήσεις"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "Κομμάτια:"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Δισκογραφικές εταιρείες:"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "Έργα:"
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr ""
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Έργα"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
-msgctxt "plural"
-msgid "Series:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
+msgctxt "plural"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Είδη"
@@ -1527,10 +1523,6 @@ msgstr "Άλλα στοιχεία"
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Σχέσεις:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1555,8 +1547,8 @@ msgstr ""
msgid "Identifiers"
msgstr "Αναγνωριστικά"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1567,20 +1559,21 @@ msgstr "ISRC (όλα / μοναδικά):"
msgid "ISWCs (all / unique):"
msgstr "ISWC (όλα / μοναδικά):"
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "Disc IDs"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Bardcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Barcodes"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPI:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr "IPI"
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1691,29 +1684,25 @@ msgstr ""
msgid "Data Quality"
msgstr "Ποιότητα δεδομένων"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr "Υψηλή ποιότητα δεδομένων:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "Υψηλή ποιότητα δεδομένων"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr "Προεπιλεγμένη ποιότητα δεδομένων:"
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr "Κανονική ποιότητα δεδομένων:"
+msgid "Default Data Quality"
+msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "Άγνωστη ποιότητα δεδομένων:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "Κανονική ποιότητα δεδομένων"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr "Χαμηλή ποιότητα δεδομένων:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "Άγνωστη ποιότητα δεδομένων"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr "Χαμηλή ποιότητα δεδομένων"
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1741,10 +1730,6 @@ msgstr "Μέσα χωρίς disc IDs:"
msgid "Mediums with at least one disc ID:"
msgstr "Μέσα με τουλάχιστον ένα disc ID:"
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "Ομάδες κυκλοφοριών"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "Πρωτεύοντες τύποι"
@@ -1761,13 +1746,8 @@ msgstr "Κανένα"
msgid "Secondary Types"
msgstr "Δευτερεύοντες τύποι"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Ηχογραφήσεις"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1786,11 +1766,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Έργα"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1799,27 +1774,6 @@ msgstr ""
msgid "Attributes"
msgstr "Γνωρίσματα"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1964,21 +1918,17 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Επεξεργασίες:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "Ανοικτές:"
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "Εφαρμόστηκε:"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "Καταψηφίστηκαν:"
+msgid "Voted down"
+msgstr ""
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -1993,8 +1943,9 @@ msgid "Failed (internal error):"
msgstr "Απέτυχε (εσωτερικό σφάλμα):"
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Ακυρώθηκε:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -2004,14 +1955,11 @@ msgstr ""
msgid "Yesterday:"
msgstr "Χθες:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Ψήφοι"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "Ψήφοι:"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2276,10 +2224,6 @@ msgstr "Άτομα"
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Barcodes"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2485,473 +2429,525 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr "IPI"
+msgid "Instruments with no type set"
+msgstr ""
-#: ../root/statistics/stats.js:464
+#: ../root/statistics/stats.js:469
msgid "Artist IPIs"
msgstr "IPIs καλλιτεχνών"
-#: ../root/statistics/stats.js:469
+#: ../root/statistics/stats.js:474
msgid "Label IPIs"
msgstr "IPI δισκογραφικών εταιρειών"
-#: ../root/statistics/stats.js:474
-msgid "ISNIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
+#: ../root/statistics/stats.js:519
msgid "Labels with no country set"
msgstr "Δισκογραφικές εταιρείες χωρίς ρυθμισμένη χώρα"
-#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr "Μέσα χωρίς ρυθμισμένη μορφή"
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "Υψηλή ποιότητα δεδομένων"
+msgid "Places with no type set"
+msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr "Χαμηλή ποιότητα δεδομένων"
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "Κανονική ποιότητα δεδομένων"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "Άγνωστη ποιότητα δεδομένων"
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Βαθμολογίες"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Βαθμολογίες καλλιτέχνη"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr "Βαθμολογίες δισκογραφικής εταιρείας"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Βαθμολογίες ηχογράφησης"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "Βαθμολογίες ομάδας κυκλοφοριών"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr "Βαθμολογίες έργου"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr "Κυκλοφορίες με ISRC"
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr "Κυκλοφορίες χωρίς ρυθμισμένη χώρα"
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr "Κυκλοφορίες με εξώφυλλο"
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr "Κυκλοφορίες χωρίς ρυθμισμένη γλώσσα"
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Κομμάτια"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr "Αποχές"
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr "Αρνητικές ψήφοι"
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr "Ψήφοι ανά ημέρα"
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr "Ψήφοι ανά βδομάδα"
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr "Θετικές ψήφοι"
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/ημέρα"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] "Ηχογραφήσεις με 1 κυκλοφορία"
msgstr[1] "Ηχογραφήσεις με {n} κυκλοφορίες"
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] "Ομάδες κυκλοφοριών με 1 κυκλοφορία"
msgstr[1] "Ομάδες κυκλοφοριών με {n} κυκλοφορίες"
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr "Καλλιτέχνες από {country}"
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr "Δισκογραφικές εταιρείες από {country}"
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr "Κυκλοφορίες από {country}"
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr "Κυκλοφορίες {name}"
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr "Μέσα {name}"
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "Κυκλοφορίες στα {language} "
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr "Κυκλοφορίες με {script} "
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "Γεγονότα MusicBrainz:"
+
+#~ msgid "Artists:"
+#~ msgstr "Καλλιτέχνες:"
+
+#~ msgid "Release Groups:"
+#~ msgstr "Ομάδες κυκλοφοριών:"
+
+#~ msgid "Releases:"
+#~ msgstr "Κυκλοφορίες:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Μέσα:"
+
+#~ msgid "Recordings:"
+#~ msgstr "Ηχογραφήσεις:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Κομμάτια:"
+
+#~ msgid "Labels:"
+#~ msgstr "Δισκογραφικές εταιρείες:"
+
+#~ msgid "Works:"
+#~ msgstr "Έργα:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Σχέσεις:"
+
+#~ msgid "Disc IDs:"
+#~ msgstr "Disc IDs:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Bardcodes:"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPI:"
+
+#~ msgid "High Data Quality:"
+#~ msgstr "Υψηλή ποιότητα δεδομένων:"
+
+#~ msgid "Default Data Quality:"
+#~ msgstr "Προεπιλεγμένη ποιότητα δεδομένων:"
+
+#~ msgid "Normal Data Quality:"
+#~ msgstr "Κανονική ποιότητα δεδομένων:"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "Άγνωστη ποιότητα δεδομένων:"
+
+#~ msgid "Low Data Quality:"
+#~ msgstr "Χαμηλή ποιότητα δεδομένων:"
+
+#~ msgid "Edits:"
+#~ msgstr "Επεξεργασίες:"
+
+#~ msgid "Open:"
+#~ msgstr "Ανοικτές:"
+
+#~ msgid "Applied:"
+#~ msgstr "Εφαρμόστηκε:"
+
+#~ msgid "Voted down:"
+#~ msgstr "Καταψηφίστηκαν:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Ακυρώθηκε:"
+
+#~ msgid "Votes:"
+#~ msgstr "Ψήφοι:"
diff --git a/po/statistics.eo.po b/po/statistics.eo.po
index dc922ecb280..c565df74cad 100644
--- a/po/statistics.eo.po
+++ b/po/statistics.eo.po
@@ -1128,7 +1128,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1160,7 +1160,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1186,14 +1187,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1207,8 +1204,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1230,7 +1229,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1238,39 +1237,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artistoj"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1425,7 +1440,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1445,69 +1461,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "Pecoj:"
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr ""
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Pecoj"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1519,10 +1515,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1545,8 +1537,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1557,20 +1549,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1681,28 +1674,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1731,10 +1720,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1751,13 +1736,8 @@ msgstr "Neniu"
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1776,11 +1756,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Pecoj"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1789,27 +1764,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1954,20 +1908,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1983,7 +1933,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1994,14 +1945,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2265,10 +2213,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2474,473 +2418,456 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
-msgid "Release groups with no secondary type set"
-msgstr ""
-
#: ../root/statistics/stats.js:774
-msgid "Series with no type set"
-msgstr ""
-
-#: ../root/statistics/stats.js:779
-msgid "Unique tag names"
+msgid "Release groups with no secondary type set"
msgstr ""
#: ../root/statistics/stats.js:784
-msgid "Votes for/against tags"
+msgid "Series with no type set"
msgstr ""
#: ../root/statistics/stats.js:789
-msgid "Votes for/against area tags"
+msgid "Unique tag names"
msgstr ""
#: ../root/statistics/stats.js:794
-msgid "Votes for/against artist tags"
+msgid "Votes for/against tags"
msgstr ""
#: ../root/statistics/stats.js:799
-msgid "Votes for/against instrument tags"
+msgid "Votes for/against area tags"
msgstr ""
#: ../root/statistics/stats.js:804
-msgid "Votes for/against label tags"
+msgid "Votes for/against artist tags"
msgstr ""
#: ../root/statistics/stats.js:809
-msgid "Votes for/against recording tags"
+msgid "Votes for/against instrument tags"
msgstr ""
#: ../root/statistics/stats.js:814
-msgid "Votes for/against release tags"
+msgid "Votes for/against label tags"
msgstr ""
#: ../root/statistics/stats.js:819
-msgid "Votes for/against release group tags"
+msgid "Votes for/against recording tags"
msgstr ""
#: ../root/statistics/stats.js:824
-msgid "Votes for/against series tags"
+msgid "Votes for/against release tags"
msgstr ""
#: ../root/statistics/stats.js:829
-msgid "Votes for/against work tags"
+msgid "Votes for/against release group tags"
msgstr ""
#: ../root/statistics/stats.js:834
-msgid "Tracks"
+msgid "Votes for/against series tags"
msgstr ""
#: ../root/statistics/stats.js:839
-msgid "URLs"
+msgid "Votes for/against work tags"
msgstr ""
#: ../root/statistics/stats.js:844
-msgid "Videos"
+msgid "Tracks"
msgstr ""
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/tago"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "Works:"
+#~ msgstr "Pecoj:"
diff --git a/po/statistics.es.po b/po/statistics.es.po
index 5fe755bf38c..324748c865f 100644
--- a/po/statistics.es.po
+++ b/po/statistics.es.po
@@ -12,22 +12,25 @@
# Roboron , 2020
# Stich Lilo , 2020
# Kevin López Brante , 2012
-# Tobias Quathamer , 2007
+# Tobias Quathamer , 2007
# t0n3t , 2012
+# reosarevok , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2012-05-24 18:54+0000\n"
-"Last-Translator: Antonio Perea, 2022\n"
-"Language-Team: Spanish (http://app.transifex.com/musicbrainz/musicbrainz/"
-"language/es/)\n"
+"PO-Revision-Date: 2023-10-20 16:27+0000\n"
+"Last-Translator: reosarevok \n"
+"Language-Team: Spanish \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
-"1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
+"0) ? 1 : 2);\n"
+"X-Generator: Weblate 5.0.2\n"
#: DB:statistics.statistic_event/title:2015-09-08
msgid "\"Do Not Cluster\" guideline dropped"
@@ -558,7 +561,7 @@ msgstr "Kuno Woudt contratado como desarrollador a tiempo completo"
#: DB:statistics.statistic_event/title:2007-04-01
msgid "Labels/data quality"
-msgstr "Calidad de nombres/datos"
+msgstr "Discográficas / calidad de datos"
#: DB:statistics.statistic_event/title:2007-11-07
msgid "Last.fm"
@@ -1148,7 +1151,7 @@ msgstr "Clic para deseleccionar"
msgid "Controls"
msgstr "Controles"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "Países"
@@ -1180,7 +1183,8 @@ msgstr "Editores"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Ediciones"
@@ -1206,14 +1210,10 @@ msgstr "Idiomas y alfabetos"
msgid "Legend"
msgstr "Leyenda"
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "Eventos MusicBrainz"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "Eventos MusicBrainz:"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1227,8 +1227,10 @@ msgstr "Ratio de cambio (media de elementos/día vs día)"
msgid "Rate of Change Graph"
msgstr "Gráfico de ratio de cambio"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1250,7 +1252,7 @@ msgstr "Gráfica cronológica"
msgid "Zoom:"
msgstr "Zoom:"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1258,39 +1260,55 @@ msgstr "Zoom:"
msgid "Last updated: {date}"
msgstr "Última actualización: {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "Posicición"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "País"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artistas"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Publicaciones"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Discográficas"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "Eventos"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "Lugares"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Total"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "País desconocido"
@@ -1448,7 +1466,8 @@ msgstr "Formato"
msgid "% of total releases"
msgstr "% del total de lanzamientos"
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr "Medios"
@@ -1468,69 +1487,49 @@ msgstr "Metadatos básicos"
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Artistas:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr "Grupos de publicaciones:"
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Publicaciones:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "Medios:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "Grupos de publicaciones"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "Grabaciones:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Grabaciones"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "Pistas:"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Discográficas:"
+msgid "Tracks)"
+msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr "Obras:"
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr "URLs:"
-
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr ""
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "URLs"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr "Lugares:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Áreas"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "Series:"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr "Instrumentos:"
+msgid "Series"
+msgstr "Series"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr ""
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Instrumentos"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Géneros"
@@ -1542,10 +1541,6 @@ msgstr "Otras entidades"
msgid "Editors (valid / deleted):"
msgstr "Editores (válidos / eliminados):"
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Relaciones:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1568,9 +1563,9 @@ msgstr ""
msgid "Identifiers"
msgstr "Identificadores"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
-msgstr "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
+msgstr ""
#: ../root/statistics/Index.js:203
msgid "ISRCs (all / unique):"
@@ -1580,21 +1575,22 @@ msgstr "ISRCs (totales / distintos):"
msgid "ISWCs (all / unique):"
msgstr "ISWCs (totales / distintos):"
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr "IDs de disco"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Códigos de barras:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Códigos de barras"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr "IPIs"
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
-msgstr "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr "ISNIs"
#: ../root/statistics/Index.js:246
msgid "of type Person:"
@@ -1704,29 +1700,25 @@ msgstr "Sin imagen de portada:"
msgid "Data Quality"
msgstr "Calidad de datos"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr "Calidad de datos alta:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "Calidad de datos alta"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr "Calidad de datos predeterminada:"
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr "Calidad de datos normal:"
+msgid "Default Data Quality"
+msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "Calidad de datos desconocida:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "Calidad de datos normal"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr "Calidad de datos baja:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "Calidad de datos desconocida"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "IDs de disco"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr "Calidad de datos baja"
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1755,10 +1747,6 @@ msgstr "Medios sin ID de disco:"
msgid "Mediums with at least one disc ID:"
msgstr "Medios con al menos una ID de disco:"
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "Grupos de publicaciones"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "Tipos primarios"
@@ -1775,14 +1763,9 @@ msgstr "Ninguno"
msgid "Secondary Types"
msgstr "Tipos secundarios"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Grabaciones"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
-msgstr "Vídeos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr ""
#: ../root/statistics/Index.js:699
msgctxt "recording"
@@ -1800,11 +1783,6 @@ msgstr ""
msgid "Types"
msgstr "Tipos"
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Obras:"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1813,27 +1791,6 @@ msgstr ""
msgid "Attributes"
msgstr "Atributos"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Áreas"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "Lugares"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Series"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Instrumentos"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "Eventos"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1978,21 +1935,17 @@ msgstr "inactivos:"
msgid "Editors (deleted):"
msgstr "Editores (eliminados):"
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Ediciones:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "Abrir:"
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "Aplicadas:"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "Rechazadas:"
+msgid "Voted down"
+msgstr ""
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -2007,8 +1960,9 @@ msgid "Failed (internal error):"
msgstr "Fallo (error interno):"
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Canceladas:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -2018,14 +1972,11 @@ msgstr "Últimos 7 días:"
msgid "Yesterday:"
msgstr "Ayer:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Votos"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "Votos:"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2292,10 +2243,6 @@ msgstr "Personas"
msgid "Artist Credits"
msgstr "Créditos del artista"
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Códigos de barras"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2501,477 +2448,551 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr "IPIs"
+msgid "Instruments with no type set"
+msgstr ""
-#: ../root/statistics/stats.js:464
+#: ../root/statistics/stats.js:469
msgid "Artist IPIs"
msgstr ""
-#: ../root/statistics/stats.js:469
+#: ../root/statistics/stats.js:474
msgid "Label IPIs"
msgstr "IPIs de discográficas"
-#: ../root/statistics/stats.js:474
-msgid "ISNIs"
-msgstr "ISNIs"
-
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
+#: ../root/statistics/stats.js:519
msgid "Labels with no country set"
msgstr "Discográficas sin un país indicado"
-#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr "Medios sin formato definido:"
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr "Medios con IDs de disco"
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "Calidad de datos alta"
+msgid "Places with no type set"
+msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr "Calidad de datos baja"
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "Calidad de datos normal"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "Calidad de datos desconocida"
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Calificaciones"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Valoración del artista"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr "Valoraciones de la discográfica"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Valoraciones de la grabación"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "Valoraciones del grupo de publicaciones"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr "Valoraciones de la obra"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr "Grabaciones con ISRCs"
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr "Publicaciones sin un país indicado"
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr "Publicaciones sin imágenes"
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr "Publicaciones con imágenes"
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr "Publicaciones con IDs de disco"
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr "Publicaciones sin un idioma indicado"
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr "Publicaciones sin un alfabeto indicado"
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Pistas"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr "URLs"
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr "Abstenciones"
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr "Sin votos"
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr "Votos al día"
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr "Votos a la semana"
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr "Votos \"Sí\""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/día"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] "Publicaciones con 1 ID de disco"
msgstr[1] "Publicaciones con {n} IDs de disco"
msgstr[2] "Publicaciones con {n} IDs de disco"
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] "Medios con 1 ID de disco"
msgstr[1] "Medios con {n} IDs de disco"
msgstr[2] "Medios con {n} IDs de disco"
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] "Grupos de publicaciones con 1 publicación"
msgstr[1] "Grupos de publicaciones con {n} publicaciones"
msgstr[2] "Grupos de publicaciones con {n} publicaciones"
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr "Artistas de {country}"
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr "Discográficas de {country}"
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr "Publicaciones de {country}"
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr "Publicaciones de [name]"
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr "Medios de [name]"
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "Publicaciones en {language}"
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr "Publicaciones con alfabeto {script}"
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "Eventos MusicBrainz:"
+
+#~ msgid "Artists:"
+#~ msgstr "Artistas:"
+
+#~ msgid "Release Groups:"
+#~ msgstr "Grupos de publicaciones:"
+
+#~ msgid "Releases:"
+#~ msgstr "Publicaciones:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Medios:"
+
+#~ msgid "Recordings:"
+#~ msgstr "Grabaciones:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Pistas:"
+
+#~ msgid "Labels:"
+#~ msgstr "Discográficas:"
+
+#~ msgid "Works:"
+#~ msgstr "Obras:"
+
+#~ msgid "URLs:"
+#~ msgstr "URLs:"
+
+#~ msgid "Places:"
+#~ msgstr "Lugares:"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "Series:"
+
+#~ msgid "Instruments:"
+#~ msgstr "Instrumentos:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Relaciones:"
+
+#~ msgid "MBIDs:"
+#~ msgstr "MBIDs:"
+
+#~ msgid "Disc IDs:"
+#~ msgstr "IDs de disco"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Códigos de barras:"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPIs:"
+
+#~ msgid "ISNIs:"
+#~ msgstr "ISNIs:"
+
+#~ msgid "High Data Quality:"
+#~ msgstr "Calidad de datos alta:"
+
+#~ msgid "Default Data Quality:"
+#~ msgstr "Calidad de datos predeterminada:"
+
+#~ msgid "Normal Data Quality:"
+#~ msgstr "Calidad de datos normal:"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "Calidad de datos desconocida:"
+
+#~ msgid "Low Data Quality:"
+#~ msgstr "Calidad de datos baja:"
+
+#~ msgid "Videos:"
+#~ msgstr "Vídeos:"
+
+#~ msgid "Edits:"
+#~ msgstr "Ediciones:"
+
+#~ msgid "Open:"
+#~ msgstr "Abrir:"
+
+#~ msgid "Applied:"
+#~ msgstr "Aplicadas:"
+
+#~ msgid "Voted down:"
+#~ msgstr "Rechazadas:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Canceladas:"
+
+#~ msgid "Votes:"
+#~ msgstr "Votos:"
diff --git a/po/statistics.es_419.po b/po/statistics.es_419.po
new file mode 100644
index 00000000000..1b09d2fe2c5
--- /dev/null
+++ b/po/statistics.es_419.po
@@ -0,0 +1,2853 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: es_419\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+
+#: DB:statistics.statistic_event/title:2015-09-08
+msgid "\"Do Not Cluster\" guideline dropped"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2017-04-11
+msgid "\"feat.\" standardization dropped"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-04-19
+msgid "1200px thumbnails"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-04-19
+msgid ""
+"1200px thumbnails are added to the Cover Art Archive, providing users with a "
+"very large image with a consistent size that avoids having to use the "
+"original uploads directly."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2016-03-01
+msgid ""
+"A Discourse forum platform is added to replace both the old-school forums "
+"and the (by now dead) mailing lists and unify community communication in one "
+"place."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-06-29
+msgid ""
+"A change is introduced that allows voting for and against existing "
+"folksonomy tags, rather than only adding your own."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-07-19
+msgid ""
+"A major update for the Picard tagger is released, with a huge amount of "
+"bugfixes and improvements."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2019-11-12
+msgid ""
+"A new \"Voting suggestions\" page is released, containing predefined edit "
+"searches to help editors find interesting and/or important edits to review "
+"and vote on."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-08-05
+msgid ""
+"A new AJAX coverart uploader is released, making it easier to add cover art "
+"to releases."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-12-28
+msgid ""
+"A new banner message now notifies users whenever they receive a new edit "
+"note."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-04-05
+msgid "A new, much faster search mechanism is added."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-08-15
+msgid "A rift in the MusicBrainz community leads to a Great Dispute."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-05-15
+msgid ""
+"A very substantial schema change release adds a new entity type (areas), "
+"support for ISNI codes for artists and labels, and the possibility to have "
+"more than one release event on one release."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-11-10
+msgid ""
+"A way to search for edits based on several different criteria is released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-11-19
+msgid ""
+"AcousticBrainz, which aims to crowd source acoustic information for music, "
+"is announced in cooperation with the Music Technology Group at Universitat "
+"Pompeu Fabra."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-04-10
+msgid "Advanced relationships"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-04-10
+msgid ""
+"Advanced relationships that allow users to connect basic data entities is "
+"relased and unused TRMs pruned from the database. Inline editing is turned "
+"off by default, causing a drop in voting activity."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2019-06-25
+msgid ""
+"After a lot of behind-the-scenes drama, MetaBrainz wins a legal battle "
+"against a copyright troll who tried to sue because of the use of Wikimedia "
+"Commons images. Commons images are still dropped from MusicBrainz sites to "
+"avoid further issues until Wikimedia makes changes that make image reuse "
+"more safe."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-11-23
+msgid ""
+"After a lot of debate, relationship data starts being displayed on release "
+"pages, making it a lot more visible."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-09-01
+msgid ""
+"After a successful Summer of Code, Ian McEwen joins the MusicBrainz team"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2016-11-08
+msgid ""
+"After many years at Digital West in California, the MetaBrainz project moves "
+"all servers to a much larger dedicated provider in Germany, Hetzner."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-09-10
+msgid ""
+"After several years as a community-driven only project, BookBrainz is "
+"adopted as an official project and given an actual developer position with "
+"the hiring of Monkey."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-05-26
+msgid ""
+"After unexpected upheaval on Freenode, MetaBrainz moves all official "
+"channels to Libera.Chat instead."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-05-22
+msgid "Album languages"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-05-22
+msgid ""
+"Album languages, guess case improvements and revamps edit forms released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-05-19
+msgid ""
+"Aliases are added to the three entity types that were still missing them: "
+"recordings, releases and release groups. This allows storing aliases for, "
+"for example, English names of Asian release groups."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-05-19
+msgid "Aliases for recordings, releases and release groups"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-02-24
+msgid "Amazon Coverart"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-09-01
+msgid ""
+"Amazon betas SoundUnwound with data from "
+"MusicBrainz."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-09-01
+msgid "Amazon betas SoundUnwound"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-02-24
+msgid "Amazon coverart support released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-07-12
+msgid "An improved release editor and a new site design are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-06-02
+msgid ""
+"An update is released that allows specifying a credit for artists in a "
+"relationship, if not the same as the artist name."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-11-14
+msgid "Annotation support released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-11-14
+msgid "Annotations"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-05-15
+msgid "Areas, ISNI codes and multiple release events per release"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-06-22
+msgid "Artist subscriptions"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-02-13
+msgid ""
+"Artist subscriptions made public and various smaller user centric "
+"improvements are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-06-22
+msgid "Artist subscriptions."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2017-04-11
+msgid ""
+"As part of a long term move towards more fidelity to the original data, we "
+"stop standardizing \"featuring\" and all its variants to \"feat.\", and ask "
+"editors to use whatever is printed instead."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-07-30
+msgid "BBC dynamic artist pages"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-07-30
+msgid "BBC launches the dynamic artist pages based on MusicBrainz data."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-06-28
+msgid "BBC partners with MetaBrainz"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-09-10
+msgid "BookBrainz becomes official MetaBrainz project"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-04-30
+msgid "CAA initial release"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-10-10
+msgid "CAA official release"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2016-06-20
+msgid "CatQuest becomes Instrument Inserter"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2016-06-20
+msgid ""
+"CatQuest officially takes over from reosarevok as the main person for adding "
+"new instruments to MusicBrainz, with the newly created Instrument Inserter "
+"position."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2019-08-08
+msgid "Collaborative collections"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2019-08-08
+msgid ""
+"Collection owners are now able to allow other editors to also add/remove "
+"entities from any of their collections."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-11-24
+msgid "Collection, Ratings, CDStubs"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-11-24
+msgid "Collection, Ratings, CDStubs, LastUpdate released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-05-18
+msgid ""
+"Collections can now be merged, in case an editor wants to consolidate "
+"several of their collections into one. Additionally, it is now possible to "
+"create series of artists, and to rate places (the only entity that could be "
+"reviewed on CritiqueBrainz but not rated on MusicBrainz)."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-08-05
+msgid "Cover Art Uploader"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-03-29
+msgid "Dedicated database server"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2016-03-01
+msgid "Discourse unifies community communication"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-07-25
+msgid "Easier edit note adding"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-05-09
+msgid ""
+"Edit display improvements, turned off RDF dumps, new install scripts "
+"released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2020-02-18
+msgid "Edit history visible without logging in"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-12-28
+msgid "Edit note notifications"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-07-25
+msgid ""
+"Edit notes can now be added when creating an edit, making it much easier for "
+"editors to explain their changes."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-11-10
+msgid "Edit search"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-12-07
+msgid ""
+"Editor ojnkpjg runs a script setting track times from DiscID values, "
+"creating a huge spike in edits."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-11-30
+msgid ""
+"Edits made by editors to their own release additions within 1 hour of adding "
+"them are now auto-edits, as are \"Add recording\" and \"Remove alias\" edits."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-06-07
+msgid "Email verification"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-06-25
+msgid ""
+"Empty labels, release groups and works are now auto-removed after 24 hours "
+"of being unused, in the same way artists already were before."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-06-25
+msgid "Empty labels, release groups and works start being auto-removed"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-09-17
+msgid ""
+"Event support is added to MusicBrainz, allowing storing information about "
+"concerts and festivals. Also part of this schema change release is a proper "
+"way to indicate the content of data tracks in release tracklists, and the "
+"extension of tagging to areas, instruments and series."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-09-17
+msgid "Event support, data tracks"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-10-17
+msgid ""
+"Folksonomy tagging and editor subscriptions are released. Additionally, it's "
+"now possible to batch-add relationships to multiple tracks on a release."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-09-04
+msgid ""
+"Former GSoC student Roman Tsukanov begins working for MetaBrainz part-time."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-08-06
+msgid "Frederik \"Freso\" S. Olesen becomes MetaBrainz Community Manager"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-10-10
+msgid ""
+"FreeDB auto import feature turned off and autoeditor elections released. "
+"Unused TRMs pruned from the database."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-10-10
+msgid "FreeDB off/Autoeditors"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-08-06
+msgid ""
+"Freso becomes the first MetaBrainz Community Manager, tasked with helping "
+"resolve conflicts in the community and keeping an eye on their needs."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-11-02
+msgid "Genre added as a new entity"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-11-02
+msgid ""
+"Genres are added as a new entity, although still tightly tied to folksonomy "
+"tags."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-08-15
+msgid "Great Dispute"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-04-27
+msgid "Guess feat. buttons"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-05-26
+msgid "IRC channels move to Libera.Chat"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-09-01
+msgid "Ian McEwen hired"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-07-17
+msgid "Ian McEwen leaves MetaBrainz"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-07-17
+msgid "Ian McEwen leaves the project for personal reasons."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2009-06-17
+msgid "Imported CD Baby catalog as CD Stubs"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2009-06-17
+msgid ""
+"Imported the metadata from the CD Baby catalog into our CD Stubs collection."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-07-24
+msgid "Improve voting"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-04-05
+msgid "Improved search"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-02-11
+msgid ""
+"In an effort to reduce the size of the open edit queue and force less "
+"waiting for changes, the length of time edits stay open before expiration is "
+"reduced from 14 to 7 days."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-04-27
+msgid ""
+"In order to make it easier to fix a lot of cases where featured artists are "
+"still part of the track / release titles rather than the artists, guess "
+"feat. buttons are added that greatly simplify the process."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-05-12
+msgid "In preparation for NGS, editing is turned off until release."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-05-02
+msgid ""
+"In preparation for NGS, editors are encouraged to avoid editing until "
+"release unless entirely necessary."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-03-05
+msgid "Indexed search/XML WS"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-03-05
+msgid "Indexes search and a new XML based Web Service are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-01-17
+msgid "Inline edits"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-01-17
+msgid "Inline edits, new reports, improved data import scripts."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-05-09
+msgid "Install scripts"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2020-12-31
+msgid "Instrument images, recordings' first release date"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-05-14
+msgid "Instruments and series"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-02-01
+msgid "Italian translation released, IPI and ISNI become autoedits"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-02-23
+msgid "Kartik Ohri joins the MetaBrainz team"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-02-23
+msgid ""
+"Kartik Ohri joins the MetaBrainz team to work on ListenBrainz, "
+"AcousticBrainz and CritiqueBrainz, plus the Android app, which he had "
+"already significantly rewritten as a volunteer."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2009-12-14
+msgid "Kuno Woudt begins working for MusicBrainz full-time."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2009-12-14
+msgid "Kuno Woudt hired as full-time developer"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-04-01
+msgid "Labels/data quality"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-11-07
+msgid "Last.fm"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-11-07
+msgid "Last.fm signs up with MetaBrainz and starts using MusicBrainz data."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-09-28
+msgid "Laurent \"zas\" Monin becomes sysadmin"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-09-28
+msgid ""
+"Laurent Monin, better known as Zas, joins the team as a dedicated systems "
+"administrator, to make sure the servers run properly and help transition to "
+"a new community discussion system."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-12-28
+msgid ""
+"Link to MusicBrainz feature, release events and edit suggestions released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-01-20
+msgid "Linkara Musica becomes first commercial customer of MetaBrainz."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-12-28
+msgid "Linking"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2020-10-07
+msgid ""
+"MBBE_Bot is created to make fixes that are too time-consuming to do by hand, "
+"but should still leave a trace in edit history. This usually involves "
+"removing URLs from problematic domains, marking URLs from domains that have "
+"been closed as ended, and other similar batch-editing jobs."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2020-10-07
+msgid "MBBE_Bot starts running"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-10-23
+msgid "Menus/Client scripting"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-05-18
+msgid "Mergeable collections, artist series and ratable places"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-04-21
+msgid "MetaBrainz accepts three students for Google Summer of Code."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-09-23
+msgid "MetaBrainz hires Oliver Charles"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-04-19
+msgid "MetaBrainz launched"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2016-11-08
+msgid "MetaBrainz projects complete move to European servers"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-01-20
+msgid "MetaBrainz signs first customer"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2019-06-25
+msgid "MetaBrainz wins copyright troll battle, Wikimedia images dropped"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-04-01
+msgid "MetaWeb becomes a MusicBrainz data user."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-04-01
+msgid "MetaWeb signed"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-11-30
+msgid "More auto-edits"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-11-16
+msgid ""
+"More edit types are made auto-edits for everyone: \"Add relationship\" and "
+"\"Add release\"; and \"Add\", \"Edit\" and \"Remove release label\". "
+"Additionally, the German, French and Dutch translations are available on the "
+"main server."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-02-27
+msgid "MusicBrainz Move"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2010-02-08
+msgid "MusicBrainz Server source code moved to Git from Subversion."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-01-12
+msgid "MusicBrainz adds AcoustID support"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-03-29
+msgid "MusicBrainz gets its first dedicated database server."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2016-02-22
+msgid ""
+"MusicBrainz itself gets a new design to better match the rest of the *Brainz "
+"family."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-02-27
+msgid "MusicBrainz moved to Digital West Networks in San Luis Obispo."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-03-12
+msgid ""
+"MusicBrainz partners with MusicIP and starts using MusicDNS's PUID acoustic "
+"fingerprints. Picard becomes the official MusicBrainz tagger with PUID "
+"support, which causes edit activity to decrease."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-03-12
+msgid "MusicIP PUID"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-05-12
+msgid "NGS No-Editing Phase"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-05-02
+msgid "NGS Reduced Editing Phase"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-05-18
+msgid "NGS Release"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-05-18
+msgid "NGS, a MusicBrainz major rewrite, is released!"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2016-02-22
+msgid "New MusicBrainz design"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2017-10-31
+msgid "New entity auto-editing period extended to 24 hours"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-02-17
+msgid ""
+"Nicolás Tamargo (reosarevok) becomes the MusicBrainz style leader, and a "
+"new, more official style process using Jira is established."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-10-13
+msgid "Non album tracks"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-10-13
+msgid "Non album tracks are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-09-23
+msgid "Oliver Charles becomes employee #1 of MetaBrainz Foundation."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2010-06-18
+msgid "Oliver Charles begins working for MusicBrainz full-time."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2010-06-18
+msgid "Oliver Charles joins MusicBrainz full-time"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-06-30
+msgid ""
+"Our old search server gets a significant upgrade with its move to SOLR, "
+"including almost-instant index updates."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-10-14
+msgid "PUID support is removed"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-04-05
+msgid "Pagination added for relationships, user tags"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-04-05
+msgid ""
+"Pagination was added for two very long lists that sometimes couldn't be "
+"loaded in full because of timeouts: user tags and entity relationships."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-06-02
+msgid "Picard 1.0 released"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-07-19
+msgid "Picard 2.0 released"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2017-10-31
+msgid ""
+"Rather than having to notice any errors during a fairly brief 1 hour period, "
+"editors now have 24 hours to correct errors in the data they have added "
+"without needing a vote."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-10-15
+msgid "Relationship Editor"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-06-02
+msgid "Relationship credits become available"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-11-23
+msgid "Relationships displayed on release pages"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-04-06
+msgid "Release \"stubs\", minimum voting period for destructive edits"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2009-05-24
+msgid "Release Groups, ISRCs, CDStub searching"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-07-12
+#: DB:statistics.statistic_event/title:2003-10-19
+msgid "Release editor"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-10-19
+msgid "Release editor and Guess Case released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2009-05-24
+msgid ""
+"Release groups, ISRC support, CDStub searching and search fixes released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-04-06
+msgid ""
+"Releases can now be added without any mediums, for cases where the only "
+"information available is, for example, a title + date + label + catalog "
+"number entry in a catalog. Additionally, any destructive edits such as "
+"entity merges and removals no longer close immediately once they get 3 Yes "
+"votes, but they remain open for at least 48 hours to ensure people who "
+"oppose them have time to see them."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2017-09-06
+msgid ""
+"Roman Tsukanov decides not to renew his contract. Sambhav Kothari and Param "
+"Singh are hired as replacements to work on search and Picard and on "
+"ListenBrainz, respectively."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-09-04
+msgid "Roman Tsukanov joins the MetaBrainz team"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-01-08
+msgid "SG5 Fixes"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-06-30
+msgid "SOLR-based search server deployed"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2017-09-06
+msgid "Sambhav Kothari and Param Singh replace Roman Tsukanov"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-09-09
+msgid ""
+"Sambhav Kothari leaves MetaBrainz after a lot of hard work getting the SOLR "
+"server ready. Nicolás Tamargo (reosarevok) joins as a programmer part-time "
+"in addition to his style and support positions, to work on MusicBrainz."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-09-09
+msgid "Sambhav Kothari leaves, Nicolás Tamargo joins as a programmer"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-12-17
+msgid "Search improvements"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-11-16
+msgid "Several new auto-edit types and translations"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2020-05-16
+msgid ""
+"Since the Virtual Machine project tended to just lag way behind current data "
+"because of the time required to always push new versions, it is dropped and "
+"users are suggested to just run their own Docker setup for MusicBrainz "
+"(which the Virtual Machine already did behind the scenes)."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-04-21
+msgid "SoC 2008"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2020-12-31
+msgid ""
+"Some instrument pages start displaying instrument illustrations by IROM. "
+"Additionally, a first release date starts being calculated and displayed for "
+"recordings based on the releases they appear on."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-01-08
+msgid ""
+"Style Guideline 5 workaround introduced and unused TRMs pruned from the "
+"database."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-10-17
+msgid "Style process updated again, reosarevok \"promoted\" to Style BDFL"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-04-01
+msgid "Support for Labels and data quality are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-06-29
+msgid "Tag up/downvoting"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-10-17
+msgid "Tags, editor subscriptions, relationship batch-adding"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-11-19
+msgid "The AcousticBrainz project goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2022-02-16
+msgid "The AcousticBrainz project is discontinued"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-08-03
+msgid "The Android app goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-06-28
+msgid ""
+"The BBC becomes a MetaBrainz customer and starts using MusicBrainz data."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-04-30
+msgid "The Cover Art Archive becomes initially available"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-10-10
+msgid "The Cover Art Archive is officially released"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-05-19
+msgid "The CritiqueBrainz project goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-02-01
+msgid ""
+"The Italian translation, mostly worked on by salo.rock, is officially "
+"released. Adding the first IPI and/or ISNI code for an entity becomes an "
+"autoedit, unless the same code is already in use for another."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-09-17
+msgid "The ListenBrainz project goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-04-19
+msgid ""
+"The MetaBrainz Foundation, the legal home for MusicBrainz is announced to "
+"the public."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2020-05-16
+msgid "The MusicBrainz Virtual Machine is replaced by MusicBrainz Docker"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-09-17
+msgid ""
+"The alpha version of ListenBrainz, an open source and open data alternative "
+"to Last.fm®, goes live."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-05-19
+msgid "The beta version of CritiqueBrainz is launched."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-10-14
+msgid ""
+"The diminishing quality of the PUID fingerprinting service and the continued "
+"availability of an open source alternative in AcoustID leads to the decision "
+"of dropping PUIDs from MusicBrainz and supporting only AcoustID."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2020-02-18
+msgid ""
+"The edit history for entities is made visible even when logged out, to make "
+"it easier to understand how each entity has changed (edit notes are kept "
+"hidden to preserve some privacy)."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-06-02
+msgid ""
+"The first full-version release of the Picard tagger comes out, with a lot of "
+"changes and improvements."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-08-03
+msgid ""
+"The first version of the MusicBrainz Android app, a Google Summer of Code "
+"project by Jamie McDonald, is made officially available"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-09-08
+msgid ""
+"The increasingly controversial \"Do Not Cluster\" guideline, which forbid "
+"relationship clusters such as linking every Jackson sibling to each other, "
+"is dropped - avoiding duplicate data becomes a task for relationship "
+"designers, not users entering the data."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-05-18
+msgid "The new MetaBrainz website goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-05-18
+msgid ""
+"The new MetaBrainz website, featuring an all-new design and online sign-up "
+"for commercial users, is launched, replacing the one designed in the year "
+"2000!"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-01-12
+msgid ""
+"The open source fingerprinting solution AcoustID (developed by friend of "
+"MusicBrainz Lukáš Lalinský) starts being used alongside PUID on MusicBrainz "
+"fingerprint pages."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-10-15
+msgid ""
+"The relationship editor, for bulk-editing relationships for a release, is "
+"released to production."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-12-17
+msgid "The search features and web service improvements are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-10-17
+msgid ""
+"The style process is updated again. Rather than requiring long, often angry "
+"community debate until something is passed by community consensus without a "
+"veto, decisions are taken by a BDFL who consults the community when needed. "
+"Nicolás Tamargo (reosarevok) is \"promoted\" from style leader to style BDFL."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-06-24
+msgid ""
+"The voting period for edits that get a No vote is extended to give users "
+"more time to react to the issues."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-10-23
+msgid ""
+"Top menu navigation improved, duplicate artists, album edit all, track time "
+"editing features released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-12-07
+msgid "Track times set from DiscIDs"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-05-14
+msgid ""
+"Two new entity types are added to MusicBrainz: instruments and series. "
+"Series of recordings, releases, release groups and works are supported."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-02-13
+msgid "User improvements"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-06-07
+msgid "Users now have to verify their email address for editing."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2019-04-26
+msgid ""
+"Version 1 of the web service (already deprecated since 2011) is finally "
+"taken down for good (more than a year after announcing it would happen in "
+"six months!)."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-07-24
+msgid "Voting logic was improved, web based autoeditor elections released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-06-24
+msgid "Voting period for contested edits extended"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-02-11
+msgid "Voting period shortened to 7 days"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2019-11-12
+msgid "Voting suggestions"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2019-04-26
+msgid "Web service version 1 taken down"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2022-02-16
+msgid ""
+"With the AcousticBrainz project deemed to not have fulfilled its original "
+"goals, the MetaBrainz Foundation decides to stop work on it, with a view to "
+"shut down the site in 2023"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-03-17
+msgid "Work attributes"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-03-17
+msgid ""
+"Works get their first attributes (such as keys) allowing us to store data "
+"that doesn't make sense as relationships but deserves more than an "
+"annotation entry."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2017-03-13
+msgid "Yvanzo joins MusicBrainz as a developer"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2017-03-13
+msgid ""
+"Yvanzo joins the development team as a second dedicated MusicBrainz "
+"developer."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2010-02-08
+msgid "mb_server now hosted on Git"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-02-17
+msgid "reosarevok becomes the MusicBrainz style leader"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:18
+msgid "Add/remove lines:"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:18
+msgid "Check boxes above"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:17
+msgid "Click to deselect"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:14
+msgid "Controls"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
+#: ../root/statistics/StatisticsLayout.js:50
+msgid "Countries"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/CoverArt.js:67
+#: ../root/statistics/StatisticsLayout.js:60 ../root/statistics/stats.js:21
+msgid "Cover Art"
+msgstr ""
+
+#: ../root/statistics/layout.tt:23 ../root/statistics/layout.tt:34
+#: ../root/statistics/StatisticsLayout.js:96
+#: ../root/statistics/StatisticsLayout.js:109
+msgid "Database Statistics"
+msgstr ""
+
+#: ../root/statistics/layout.tt:15
+msgid "Database Statistics - {title}"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:16
+msgid "Draw a rectangle on either graph"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Editors.js:98
+#: ../root/statistics/Editors.js:109 ../root/statistics/Index.js:1096
+#: ../root/statistics/StatisticsLayout.js:80
+msgid "Editors"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
+#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/stats.js:289
+msgid "Edits"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:28
+msgid "Exact Values (items vs. day)"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/StatisticsLayout.js:75
+#: ../root/statistics/stats.js:25
+msgid "Formats"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:19
+msgid "Hover and click on vertical lines"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/StatisticsLayout.js:55
+msgid "Languages/Scripts"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:2
+msgid "Legend"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
+msgid "MusicBrainz Events"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
+#: ../root/statistics/StatisticsLayout.js:45
+msgid "Overview"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:30
+msgid "Rate of Change (average items/day vs. day)"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:10
+msgid "Rate of Change Graph"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
+#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
+#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
+#: ../root/statistics/stats.js:48
+msgid "Relationships"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:17
+msgid "Reset:"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/StatisticsLayout.js:85
+msgid "Timeline"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:25
+msgid "Timeline Graph"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:16
+msgid "Zoom:"
+msgstr ""
+
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
+#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
+#: ../root/statistics/LanguagesScripts.js:53
+#: ../root/statistics/Relationships.js:108
+msgid "Last updated: {date}"
+msgstr ""
+
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
+#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
+#: ../root/statistics/LanguagesScripts.js:154
+msgid "Rank"
+msgstr ""
+
+#: ../root/statistics/Countries.js:52
+msgid "Country"
+msgstr ""
+
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
+msgid "Artists"
+msgstr ""
+
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
+msgid "Releases"
+msgstr ""
+
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
+msgid "Labels"
+msgstr ""
+
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
+#: ../root/statistics/LanguagesScripts.js:80
+msgid "Total"
+msgstr ""
+
+#: ../root/statistics/Countries.js:98
+msgid "Unknown Country"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:71
+msgid "Basics"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:74 ../root/statistics/CoverArt.js:111
+#: ../root/statistics/CoverArt.js:283
+msgid "No cover art statistics available."
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:80 ../root/statistics/CoverArt.js:120
+#: ../root/statistics/CoverArt.js:155 ../root/statistics/CoverArt.js:191
+#: ../root/statistics/CoverArt.js:327
+msgid "Releases with cover art:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:95 ../root/statistics/CoverArt.js:292
+msgid "Pieces of cover art:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:117
+msgid "By Release Group Type"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:134 ../root/statistics/CoverArt.js:306
+msgid "No type"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:152
+msgid "By Release Status"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:169
+msgid "No status"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:188
+msgid "By Release Format"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:205
+msgid "No format"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:226
+msgid "Release groups"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:230
+msgid "Release groups with cover art:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:240
+msgid "manually selected:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:262
+msgid "automatically inferred:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:280
+msgid "Pieces of cover art"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:289
+msgid "By Cover Art Type"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:324
+msgid "Per release"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:340
+msgid "with {num} piece of cover art:"
+msgid_plural "with {num} pieces of cover art:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/CoverArt.js:370
+msgid "with 30 or more pieces of cover art:"
+msgstr ""
+
+#: ../root/statistics/Editors.js:82
+msgid "There is no data to display here."
+msgstr ""
+
+#: ../root/statistics/Editors.js:103
+msgid ""
+"For the vote statistics, only yes or no votes are counted, abstain votes are "
+"not counted."
+msgstr ""
+
+#: ../root/statistics/Editors.js:111
+msgid "Open and applied edits in past week"
+msgstr ""
+
+#: ../root/statistics/Editors.js:113 ../root/statistics/Editors.js:119
+msgid "Editor"
+msgstr ""
+
+#: ../root/statistics/Editors.js:114
+msgid "Most active editors in the past week"
+msgstr ""
+
+#: ../root/statistics/Editors.js:117
+msgid "Total applied edits"
+msgstr ""
+
+#: ../root/statistics/Editors.js:120
+msgid "Top editors overall"
+msgstr ""
+
+#: ../root/statistics/Editors.js:126
+msgid "Voters"
+msgstr ""
+
+#: ../root/statistics/Editors.js:128
+msgid "Votes in past week"
+msgstr ""
+
+#: ../root/statistics/Editors.js:130 ../root/statistics/Editors.js:136
+msgid "Voter"
+msgstr ""
+
+#: ../root/statistics/Editors.js:131
+msgid "Most active voters in the past week"
+msgstr ""
+
+#: ../root/statistics/Editors.js:134
+msgid "Total votes"
+msgstr ""
+
+#: ../root/statistics/Editors.js:137
+msgid "Top voters overall"
+msgstr ""
+
+#: ../root/statistics/Edits.js:45
+msgid "No edit statistics available."
+msgstr ""
+
+#: ../root/statistics/Formats.js:45 ../root/statistics/Formats.js:51
+msgid "Release/Medium Formats"
+msgstr ""
+
+#: ../root/statistics/Formats.js:56
+msgid "Format"
+msgstr ""
+
+#: ../root/statistics/Formats.js:58
+msgid "% of total releases"
+msgstr ""
+
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
+msgid "Mediums"
+msgstr ""
+
+#: ../root/statistics/Formats.js:60
+msgid "% of total mediums"
+msgstr ""
+
+#: ../root/statistics/Formats.js:94
+msgid "Unknown Format"
+msgstr ""
+
+#: ../root/statistics/Index.js:87
+msgid "Basic metadata"
+msgstr ""
+
+#: ../root/statistics/Index.js:91 ../root/statistics/stats.js:20
+msgid "Core Entities"
+msgstr ""
+
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr ""
+
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr ""
+
+#: ../root/statistics/Index.js:114
+msgid "Tracks)"
+msgstr ""
+
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr ""
+
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr ""
+
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr ""
+
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
+msgctxt "plural"
+msgid "Series"
+msgstr ""
+
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr ""
+
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
+msgid "Genres"
+msgstr ""
+
+#: ../root/statistics/Index.js:156
+msgid "Other Entities"
+msgstr ""
+
+#: ../root/statistics/Index.js:159
+msgid "Editors (valid / deleted):"
+msgstr ""
+
+#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
+#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
+#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
+msgid "Collections"
+msgstr ""
+
+#: ../root/statistics/Index.js:173
+msgid "CD Stubs (all time / current):"
+msgstr ""
+
+#: ../root/statistics/Index.js:182
+msgid "Tags (raw / aggregated):"
+msgstr ""
+
+#: ../root/statistics/Index.js:188
+msgid "Ratings (raw / aggregated):"
+msgstr ""
+
+#: ../root/statistics/Index.js:196
+msgid "Identifiers"
+msgstr ""
+
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
+msgstr ""
+
+#: ../root/statistics/Index.js:203
+msgid "ISRCs (all / unique):"
+msgstr ""
+
+#: ../root/statistics/Index.js:209
+msgid "ISWCs (all / unique):"
+msgstr ""
+
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr ""
+
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr ""
+
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr ""
+
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr ""
+
+#: ../root/statistics/Index.js:246
+msgid "of type Person:"
+msgstr ""
+
+#: ../root/statistics/Index.js:252
+msgid "of type Group:"
+msgstr ""
+
+#: ../root/statistics/Index.js:258
+msgid "of type Orchestra:"
+msgstr ""
+
+#: ../root/statistics/Index.js:264
+msgid "of type Choir:"
+msgstr ""
+
+#: ../root/statistics/Index.js:270
+msgid "of type Character:"
+msgstr ""
+
+#: ../root/statistics/Index.js:276
+msgid "of type Other:"
+msgstr ""
+
+#: ../root/statistics/Index.js:282
+msgid "with no type set:"
+msgstr ""
+
+#: ../root/statistics/Index.js:288
+msgid "with appearances in artist credits:"
+msgstr ""
+
+#: ../root/statistics/Index.js:294
+msgid "with no appearances in artist credits:"
+msgstr ""
+
+#: ../root/statistics/Index.js:299
+msgid "Non-group artists:"
+msgstr ""
+
+#: ../root/statistics/Index.js:305
+msgid "Male:"
+msgstr ""
+
+#: ../root/statistics/Index.js:316
+msgid "Female:"
+msgstr ""
+
+#: ../root/statistics/Index.js:327
+msgid "Non-binary"
+msgstr ""
+
+#: ../root/statistics/Index.js:338
+msgid "Other gender:"
+msgstr ""
+
+#: ../root/statistics/Index.js:349
+msgid "Gender not applicable:"
+msgstr ""
+
+#: ../root/statistics/Index.js:360
+msgid "with no gender set:"
+msgstr ""
+
+#: ../root/statistics/Index.js:372
+msgid "Releases, Data Quality, and Disc IDs"
+msgstr ""
+
+#: ../root/statistics/Index.js:385
+msgid "by various artists:"
+msgstr ""
+
+#: ../root/statistics/Index.js:391
+msgid "by a single artist:"
+msgstr ""
+
+#: ../root/statistics/Index.js:398
+msgid "Release Status"
+msgstr ""
+
+#: ../root/statistics/Index.js:417
+msgid "No status set"
+msgstr ""
+
+#: ../root/statistics/Index.js:424
+msgid "Release Packaging"
+msgstr ""
+
+#: ../root/statistics/Index.js:443
+msgid "No packaging set"
+msgstr ""
+
+#: ../root/statistics/Index.js:450
+msgid "Cover Art Sources"
+msgstr ""
+
+#: ../root/statistics/Index.js:459
+msgid "CAA:"
+msgstr ""
+
+#: ../root/statistics/Index.js:465
+msgid "No front cover art:"
+msgstr ""
+
+#: ../root/statistics/Index.js:472
+msgid "Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:487
+msgid "Default Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:530
+msgid "Releases with no disc IDs:"
+msgstr ""
+
+#: ../root/statistics/Index.js:537
+msgid "Releases with at least one disc ID:"
+msgstr ""
+
+#: ../root/statistics/Index.js:548 ../root/statistics/Index.js:592
+msgid "with {num} disc ID:"
+msgid_plural "with {num} disc IDs:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/Index.js:563 ../root/statistics/Index.js:605
+msgid "with 10 or more disc IDs:"
+msgstr ""
+
+#: ../root/statistics/Index.js:574
+msgid "Mediums with no disc IDs:"
+msgstr ""
+
+#: ../root/statistics/Index.js:581
+msgid "Mediums with at least one disc ID:"
+msgstr ""
+
+#: ../root/statistics/Index.js:616
+msgid "Primary Types"
+msgstr ""
+
+#: ../root/statistics/Index.js:643 ../root/statistics/Index.js:675
+#: ../root/statistics/Index.js:732 ../root/statistics/Index.js:760
+#: ../root/statistics/Index.js:794 ../root/statistics/Index.js:822
+#: ../root/statistics/Index.js:850 ../root/statistics/Index.js:902
+#: ../root/statistics/Index.js:930
+msgid "None"
+msgstr ""
+
+#: ../root/statistics/Index.js:648
+msgid "Secondary Types"
+msgstr ""
+
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr ""
+
+#: ../root/statistics/Index.js:699
+msgctxt "recording"
+msgid "Standalone"
+msgstr ""
+
+#: ../root/statistics/Index.js:704
+msgid "With ISRCs"
+msgstr ""
+
+#: ../root/statistics/Index.js:715 ../root/statistics/Index.js:743
+#: ../root/statistics/Index.js:805 ../root/statistics/Index.js:833
+#: ../root/statistics/Index.js:861 ../root/statistics/Index.js:883
+#: ../root/statistics/Index.js:913
+msgid "Types"
+msgstr ""
+
+#: ../root/statistics/Index.js:765
+msgid "With ISWCs"
+msgstr ""
+
+#: ../root/statistics/Index.js:775
+msgid "Attributes"
+msgstr ""
+
+#: ../root/statistics/Index.js:950
+msgid "Of releases"
+msgstr ""
+
+#: ../root/statistics/Index.js:957 ../root/statistics/Index.js:990
+msgid "Generic"
+msgstr ""
+
+#: ../root/statistics/Index.js:966
+msgid "Owned music"
+msgstr ""
+
+#: ../root/statistics/Index.js:975
+msgid "Wishlist"
+msgstr ""
+
+#: ../root/statistics/Index.js:983
+msgid "Of events"
+msgstr ""
+
+#: ../root/statistics/Index.js:999
+msgid "Of type Attending"
+msgstr ""
+
+#: ../root/statistics/Index.js:1008
+msgid "Of type Maybe attending"
+msgstr ""
+
+#: ../root/statistics/Index.js:1019
+msgid "Of areas"
+msgstr ""
+
+#: ../root/statistics/Index.js:1025
+msgid "Of artists"
+msgstr ""
+
+#: ../root/statistics/Index.js:1031
+msgid "Of instruments"
+msgstr ""
+
+#: ../root/statistics/Index.js:1037
+msgid "Of labels"
+msgstr ""
+
+#: ../root/statistics/Index.js:1043
+msgid "Of places"
+msgstr ""
+
+#: ../root/statistics/Index.js:1049
+msgid "Of recordings"
+msgstr ""
+
+#: ../root/statistics/Index.js:1055
+msgid "Of release groups"
+msgstr ""
+
+#: ../root/statistics/Index.js:1061
+msgid "Of series"
+msgstr ""
+
+#: ../root/statistics/Index.js:1067
+msgid "Of works"
+msgstr ""
+
+#: ../root/statistics/Index.js:1073
+msgid "Public"
+msgstr ""
+
+#: ../root/statistics/Index.js:1079
+msgid "Private"
+msgstr ""
+
+#: ../root/statistics/Index.js:1085
+msgid "With collaborators"
+msgstr ""
+
+#: ../root/statistics/Index.js:1092
+msgid "Editors, Edits, and Votes"
+msgstr ""
+
+#: ../root/statistics/Index.js:1099
+msgid "Editors (valid):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1105
+msgid "active ever:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1113
+msgid "who edited and/or voted in the last 7 days:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1122
+msgid "who edited in the last 7 days:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1130
+msgid "who voted in the last 7 days:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1137
+msgid "who edit:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1144
+msgid "who vote:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1151
+msgid "who leave edit notes:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1158
+msgid "who use tags:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1165
+msgid "who use ratings:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1174
+msgid "who use subscriptions:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1183
+msgid "who use collections:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1193
+msgid "who have registered applications:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1202
+msgid "validated email only:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1208
+msgid "inactive:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1213
+msgid "Editors (deleted):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1229
+msgid "Open"
+msgstr ""
+
+#: ../root/statistics/Index.js:1235
+msgid "Applied"
+msgstr ""
+
+#: ../root/statistics/Index.js:1241
+msgid "Voted down"
+msgstr ""
+
+#: ../root/statistics/Index.js:1247
+msgid "Failed (dependency):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1253
+msgid "Failed (prerequisite):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1259
+msgid "Failed (internal error):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1265
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
+
+#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
+msgid "Last 7 days:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1283 ../root/statistics/Index.js:1335
+msgid "Yesterday:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
+msgid "Votes"
+msgstr ""
+
+#: ../root/statistics/Index.js:1299
+msgctxt "vote"
+msgid "Approve"
+msgstr ""
+
+#: ../root/statistics/Index.js:1305
+msgctxt "vote"
+msgid "Yes"
+msgstr ""
+
+#: ../root/statistics/Index.js:1311
+msgctxt "vote"
+msgid "No"
+msgstr ""
+
+#: ../root/statistics/Index.js:1317
+msgctxt "vote"
+msgid "Abstain"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:50
+msgid "Languages and Scripts"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:56
+msgid "All other available languages and scripts have 0 releases and works."
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:62
+#: ../root/statistics/LanguagesScripts.js:68
+msgid "Languages"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:97
+msgid "Unknown language"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:150
+msgid "Scripts"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:156
+msgid "Script"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:173
+msgid "Unknown script"
+msgstr ""
+
+#: ../root/statistics/MusicBrainzHistory.js:20
+msgid "History"
+msgstr ""
+
+#: ../root/statistics/MusicBrainzHistory.js:21
+msgid "Our Glorious History"
+msgstr ""
+
+#: ../root/statistics/MusicBrainzHistory.js:25
+msgid "{date} - {title}"
+msgstr ""
+
+#: ../root/statistics/MusicBrainzHistory.js:41
+msgid "It seems we have no history to show at all!"
+msgstr ""
+
+#: ../root/statistics/NoStatistics.js:15 ../root/statistics/NoStatistics.js:16
+msgid "No Statistics"
+msgstr ""
+
+#: ../root/statistics/NoStatistics.js:19
+msgid ""
+"Statistics have never been collected for this server. If you are the "
+"administrator for this server, you should run ./admin/CollectStats.pl"
+"code> or import mbdump-stats.tar.bz2
."
+msgstr ""
+
+#: ../root/statistics/Relationships.js:113
+msgid "No relationship statistics available."
+msgstr ""
+
+#: ../root/statistics/Relationships.js:120
+msgctxt "relationships"
+msgid "This type only"
+msgstr ""
+
+#: ../root/statistics/Relationships.js:121
+msgctxt "relationships"
+msgid "Including subtypes"
+msgstr ""
+
+#: ../root/statistics/Relationships.js:143
+msgid "{type0}-{type1}"
+msgstr ""
+
+#: ../root/statistics/Relationships.js:151
+msgid "{type0}-{type1} relationships:"
+msgstr ""
+
+#: ../root/statistics/stats.js:16
+msgid "Area Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:17
+msgid "Artist Countries"
+msgstr ""
+
+#: ../root/statistics/stats.js:18
+msgid "Artist Types and Genders"
+msgstr ""
+
+#: ../root/statistics/stats.js:22
+msgid "Edit Information"
+msgstr ""
+
+#: ../root/statistics/stats.js:23
+msgid "Edit Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:24
+msgid "Event Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:26
+msgid "Instrument Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:27
+msgid "Label Countries"
+msgstr ""
+
+#: ../root/statistics/stats.js:28
+msgid "Label Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:29
+msgctxt "stats category"
+msgid "Other"
+msgstr ""
+
+#: ../root/statistics/stats.js:30
+msgid "Place Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:31
+msgid "Ratings and Tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:33
+msgid "Release Countries"
+msgstr ""
+
+#: ../root/statistics/stats.js:34
+msgid "Release Group Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:35
+msgid "Release Languages"
+msgstr ""
+
+#: ../root/statistics/stats.js:36
+msgid "Release Packagings"
+msgstr ""
+
+#: ../root/statistics/stats.js:37
+msgid "Release Data Quality"
+msgstr ""
+
+#: ../root/statistics/stats.js:38
+msgid "Release Scripts"
+msgstr ""
+
+#: ../root/statistics/stats.js:39
+msgid "Release Statuses"
+msgstr ""
+
+#: ../root/statistics/stats.js:40
+msgid "Series Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:41
+msgid "Work Attributes"
+msgstr ""
+
+#: ../root/statistics/stats.js:42
+msgid "Work Languages"
+msgstr ""
+
+#: ../root/statistics/stats.js:43
+msgid "Work Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:58
+msgid "Areas with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:68
+msgid "Artists with no appearances in artist credits"
+msgstr ""
+
+#: ../root/statistics/stats.js:73
+msgid "Artists with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:78
+msgid "Female Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:83
+msgid "Male Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:88
+msgid "Non-binary Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:93
+msgid "Gender Not Applicable"
+msgstr ""
+
+#: ../root/statistics/stats.js:98
+msgid "Artists with no gender set (non-group artists)"
+msgstr ""
+
+#: ../root/statistics/stats.js:103
+msgid "Artists with gender set to Other"
+msgstr ""
+
+#: ../root/statistics/stats.js:108
+msgid "Artists with at least one artist credit appearance"
+msgstr ""
+
+#: ../root/statistics/stats.js:113
+msgid "Characters"
+msgstr ""
+
+#: ../root/statistics/stats.js:118
+msgid "Choirs"
+msgstr ""
+
+#: ../root/statistics/stats.js:123
+msgid "Groups"
+msgstr ""
+
+#: ../root/statistics/stats.js:128
+msgid "Artists with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:133
+msgid "Orchestras"
+msgstr ""
+
+#: ../root/statistics/stats.js:138
+msgid "Artists with type set to Other"
+msgstr ""
+
+#: ../root/statistics/stats.js:143
+msgid "Persons"
+msgstr ""
+
+#: ../root/statistics/stats.js:148
+msgid "Artist Credits"
+msgstr ""
+
+#: ../root/statistics/stats.js:158
+msgid "CDStubs (current)"
+msgstr ""
+
+#: ../root/statistics/stats.js:163
+msgid "CDStubs (ever submitted)"
+msgstr ""
+
+#: ../root/statistics/stats.js:168
+msgid "CDStub tracks"
+msgstr ""
+
+#: ../root/statistics/stats.js:178
+msgid "Collections with collaborators"
+msgstr ""
+
+#: ../root/statistics/stats.js:183
+msgid "Private collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:188
+msgid "Public collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:193
+msgid "Area collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:198
+msgid "Artist collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:203
+msgid "Collections of type Attending"
+msgstr ""
+
+#: ../root/statistics/stats.js:208
+msgid "Collections of type Event"
+msgstr ""
+
+#: ../root/statistics/stats.js:213
+msgid "Event collections (all types)"
+msgstr ""
+
+#: ../root/statistics/stats.js:218
+msgid "Instrument collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:223
+msgid "Label collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:228
+msgid "Collections of type Maybe attending"
+msgstr ""
+
+#: ../root/statistics/stats.js:233
+msgid "Collections of type Owned music"
+msgstr ""
+
+#: ../root/statistics/stats.js:238
+msgid "Place collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:243
+msgid "Recording collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:248
+msgid "Collections of type Release"
+msgstr ""
+
+#: ../root/statistics/stats.js:253
+msgid "Release collections (all types)"
+msgstr ""
+
+#: ../root/statistics/stats.js:258
+msgid "Release group collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:263
+msgid "Series collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:268
+msgid "Collections of type Wishlist"
+msgstr ""
+
+#: ../root/statistics/stats.js:273
+msgid "Work collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:278
+msgid "Pieces of Cover Art"
+msgstr ""
+
+#: ../root/statistics/stats.js:294
+msgid "Applied edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:299
+msgid "Cancelled edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:304
+msgid "Error edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:309
+msgid "Evalnochange Edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:314
+msgid "Edits that have failed dependency checks"
+msgstr ""
+
+#: ../root/statistics/stats.js:319
+msgid "Edits that have failed prerequisite checks"
+msgstr ""
+
+#: ../root/statistics/stats.js:324
+msgid "Edits that have been voted down"
+msgstr ""
+
+#: ../root/statistics/stats.js:329
+msgid "Open Edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:335
+msgid "Edits per day"
+msgstr ""
+
+#: ../root/statistics/stats.js:340
+msgid "Edits per week"
+msgstr ""
+
+#: ../root/statistics/stats.js:346
+msgid "Editors (all)"
+msgstr ""
+
+#: ../root/statistics/stats.js:351
+msgid "Editors who edited or voted in the last week"
+msgstr ""
+
+#: ../root/statistics/stats.js:357
+msgid "Editors (deleted)"
+msgstr ""
+
+#: ../root/statistics/stats.js:362
+msgid "Editors who submitted edits in the last week"
+msgstr ""
+
+#: ../root/statistics/stats.js:368
+msgid "Editors (current)"
+msgstr ""
+
+#: ../root/statistics/stats.js:374
+msgid "Editors (current) who have ever been active"
+msgstr ""
+
+#: ../root/statistics/stats.js:379
+msgid "Editors who have registered applications"
+msgstr ""
+
+#: ../root/statistics/stats.js:384
+msgid "Editors who use collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:389
+msgid "Editors who have made edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:394
+msgid "Editors who have written edit notes"
+msgstr ""
+
+#: ../root/statistics/stats.js:399
+msgid "Editors who have added ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:404
+msgid "Editors who use subscriptions"
+msgstr ""
+
+#: ../root/statistics/stats.js:409
+msgid "Editors who have added tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:414
+msgid "Editors who have voted on edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:419
+msgid "Editors who have not been active at all"
+msgstr ""
+
+#: ../root/statistics/stats.js:424
+msgid "Editors who have only validated their email"
+msgstr ""
+
+#: ../root/statistics/stats.js:429
+msgid "Editors who voted in the last week"
+msgstr ""
+
+#: ../root/statistics/stats.js:439
+msgid "Events with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:459
+msgid "Instruments with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:469
+msgid "Artist IPIs"
+msgstr ""
+
+#: ../root/statistics/stats.js:474
+msgid "Label IPIs"
+msgstr ""
+
+#: ../root/statistics/stats.js:484
+msgid "Artist ISNIs"
+msgstr ""
+
+#: ../root/statistics/stats.js:489
+msgid "Label ISNIs"
+msgstr ""
+
+#: ../root/statistics/stats.js:494
+msgid "ISRCs (unique)"
+msgstr ""
+
+#: ../root/statistics/stats.js:499
+msgid "ISRCs (all uses)"
+msgstr ""
+
+#: ../root/statistics/stats.js:504
+msgid "ISWCs (unique)"
+msgstr ""
+
+#: ../root/statistics/stats.js:509
+msgid "ISWCs (all uses)"
+msgstr ""
+
+#: ../root/statistics/stats.js:519
+msgid "Labels with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:524
+msgid "Labels with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:539
+msgid "Mediums with no format set"
+msgstr ""
+
+#: ../root/statistics/stats.js:544
+msgid "Mediums with Disc IDs"
+msgstr ""
+
+#: ../root/statistics/stats.js:554
+msgid "Places with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:559
+msgid "Places with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:564
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
+
+#: ../root/statistics/stats.js:589
+msgid "Entities with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:594
+msgid "Artists with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:599
+msgid "Labels with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:604
+msgid "Places with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:609
+msgid "Ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:614
+msgid "Artist ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:619
+msgid "Label ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:624
+msgid "Place ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:629
+msgid "Recording ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:634
+msgid "Release group ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:639
+msgid "Work ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:644
+msgid "Recordings with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:649
+msgid "Release groups with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:654
+msgid "Works with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:664
+msgid "Recordings with ISRCs"
+msgstr ""
+
+#: ../root/statistics/stats.js:669
+msgid "Standalone recordings"
+msgstr ""
+
+#: ../root/statistics/stats.js:679
+msgid "Releases with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:684
+msgid "Releases with CAA Cover Art"
+msgstr ""
+
+#: ../root/statistics/stats.js:689
+msgid "Releases with No Cover Art"
+msgstr ""
+
+#: ../root/statistics/stats.js:694
+msgid "Releases with a medium with no format set"
+msgstr ""
+
+#: ../root/statistics/stats.js:699
+msgid "Releases with a medium with no format set that have cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:704
+msgid "Releases with Cover Art"
+msgstr ""
+
+#: ../root/statistics/stats.js:709
+msgid "Releases with Disc IDs"
+msgstr ""
+
+#: ../root/statistics/stats.js:714
+msgid "Releases with no language set"
+msgstr ""
+
+#: ../root/statistics/stats.js:719
+msgid "Releases not credited to Various Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:724
+msgid "Releases with no packaging set"
+msgstr ""
+
+#: ../root/statistics/stats.js:729
+msgid "Releases with no script set"
+msgstr ""
+
+#: ../root/statistics/stats.js:734
+msgid "Releases with no status set"
+msgstr ""
+
+#: ../root/statistics/stats.js:739
+msgid "Releases with no status set that have cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:744
+msgid "Releases in groups with no type set that have cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:749
+msgid "Releases credited to Various Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:759
+msgid "Release groups with automatically inferred cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:764
+msgid "Release groups with user-selected cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:769
+msgid "Release groups with no primary type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:774
+msgid "Release groups with no secondary type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:784
+msgid "Series with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:789
+msgid "Unique tag names"
+msgstr ""
+
+#: ../root/statistics/stats.js:794
+msgid "Votes for/against tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:799
+msgid "Votes for/against area tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:804
+msgid "Votes for/against artist tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:809
+msgid "Votes for/against instrument tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:814
+msgid "Votes for/against label tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:819
+msgid "Votes for/against recording tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:824
+msgid "Votes for/against release tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:829
+msgid "Votes for/against release group tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:834
+msgid "Votes for/against series tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:839
+msgid "Votes for/against work tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:844
+msgid "Tracks"
+msgstr ""
+
+#: ../root/statistics/stats.js:865
+msgid "Abstentions"
+msgstr ""
+
+#: ../root/statistics/stats.js:870
+msgid "Approvals"
+msgstr ""
+
+#: ../root/statistics/stats.js:875
+msgid "No Votes"
+msgstr ""
+
+#: ../root/statistics/stats.js:881
+msgid "Votes per day"
+msgstr ""
+
+#: ../root/statistics/stats.js:886
+msgid "Votes per week"
+msgstr ""
+
+#: ../root/statistics/stats.js:891
+msgid "Yes Votes"
+msgstr ""
+
+#: ../root/statistics/stats.js:901
+msgid "Works with no attributes"
+msgstr ""
+
+#: ../root/statistics/stats.js:906
+msgid "Works with ISWCs"
+msgstr ""
+
+#: ../root/statistics/stats.js:911
+msgid "Works with no language set"
+msgstr ""
+
+#: ../root/statistics/stats.js:916
+msgid "Works with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:918
+msgid "/day"
+msgstr ""
+
+#: ../root/statistics/stats.js:928
+msgid "Releases with 1 Disc ID"
+msgid_plural "Releases with {n} Disc IDs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/stats.js:939
+msgid "Mediums with 1 Disc ID"
+msgid_plural "Mediums with {n} Disc IDs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/stats.js:950
+msgid "Recordings with 1 Release"
+msgid_plural "Recordings with {n} Releases"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/stats.js:961
+msgid "Release Groups with 1 Release"
+msgid_plural "Release Groups with {n} Releases"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/stats.js:1014
+msgid "{type} areas"
+msgstr ""
+
+#: ../root/statistics/stats.js:1026
+msgid "{country} artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
+msgid "{country} labels"
+msgstr ""
+
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
+msgid "{country} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1061
+msgid "{type} edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:1072
+msgid "{type} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1083
+msgid "{name} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1089
+msgid "{name} mediums"
+msgstr ""
+
+#: ../root/statistics/stats.js:1096
+msgid "Releases with a medium of format “{format}” that have cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:1109
+msgid "{type} instruments"
+msgstr ""
+
+#: ../root/statistics/stats.js:1120
+msgid "{type} labels"
+msgstr ""
+
+#: ../root/statistics/stats.js:1131
+msgid "{language} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1137
+msgid "{language} works"
+msgstr ""
+
+#: ../root/statistics/stats.js:1149
+msgid "Releases with packaging “{packaging}”"
+msgstr ""
+
+#: ../root/statistics/stats.js:1162
+msgid "{type} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1170
+msgid "{first_entity_type}-{second_entity_type} Relationships"
+msgstr ""
+
+#: ../root/statistics/stats.js:1189
+msgid ""
+"{first_entity_type_name}-{second_entity_type_name} "
+"“{relationship_type_name}” relationships"
+msgstr ""
+
+#: ../root/statistics/stats.js:1205
+msgid ""
+"{first_entity_type_name}-{second_entity_type_name} "
+"“{relationship_type_name}” relationships including child relationship types"
+msgstr ""
+
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
+msgid "{type} release groups"
+msgstr ""
+
+#: ../root/statistics/stats.js:1235
+msgid "Releases in groups of type “{type}” with cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:1259
+msgid "{script} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1270
+msgid "{type} series"
+msgstr ""
+
+#: ../root/statistics/stats.js:1281
+msgid "{status} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1288
+msgid "Releases of status “{status}” with cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:1305
+msgid "Works with attribute “{attribute}”"
+msgstr ""
+
+#: ../root/statistics/stats.js:1318
+msgid "{type} works"
+msgstr ""
+
+#: ../root/statistics/utilities.js:40
+msgid "See on timeline"
+msgstr ""
diff --git a/po/statistics.et.po b/po/statistics.et.po
index d5d9cc2da40..81637ff5d83 100644
--- a/po/statistics.et.po
+++ b/po/statistics.et.po
@@ -1157,7 +1157,7 @@ msgstr "Klõpsa valiku eemaldamiseks"
msgid "Controls"
msgstr "Juhtimine"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "Riigid"
@@ -1189,7 +1189,8 @@ msgstr "Toimetajad"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Toimetused"
@@ -1215,14 +1216,10 @@ msgstr "Keeled ja kirjad"
msgid "Legend"
msgstr "Legend"
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "MusicBrainzi sündmused"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "MusicBrainzi sündmused:"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1236,8 +1233,10 @@ msgstr "Muutumiskiirus (keskmine elementide arvu muutus vastaval päeval)"
msgid "Rate of Change Graph"
msgstr "Muutumiskiiruse graafik"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1259,7 +1258,7 @@ msgstr "Ajatelg"
msgid "Zoom:"
msgstr "Suurendamine:"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1267,39 +1266,55 @@ msgstr "Suurendamine:"
msgid "Last updated: {date}"
msgstr "Viimati uuendatud: {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "Koht"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Riik"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artistid"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Väljalasked"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Plaadifirmad"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "Sündmused"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "Kohad"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Kokku"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "[riik määramata]"
@@ -1456,7 +1471,8 @@ msgstr "Formaat"
msgid "% of total releases"
msgstr "% kõigist väljalasetest"
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr "Helikandjad"
@@ -1476,69 +1492,49 @@ msgstr "Põhilised metaandmed"
msgid "Core Entities"
msgstr "Põhiolemid"
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Artiste:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr "Väljalaskerühmi:"
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Väljalaskeid:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "Helikandjaid:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "Väljalaskerühmad"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "Salvestisi:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Salvestised"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "Radu:"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Plaadifirmasid:"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "Teoseid:"
+msgid "Tracks)"
+msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr "URL-e:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Teosed"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr "Piirkondi:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "URL-id"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr "Kohti:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Piirkonnad"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "Seeriaid:"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr "Instrumente:"
+msgid "Series"
+msgstr "Seeriad"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr "Sündmusi:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Instrumendid"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Muusikastiilid"
@@ -1550,10 +1546,6 @@ msgstr "Muud olemid"
msgid "Editors (valid / deleted):"
msgstr "Toimetajaid (kehtiva / kustutatud kontoga)"
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Seoseid:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1576,9 +1568,9 @@ msgstr "Hinnanguid (toorelt / koondatult):"
msgid "Identifiers"
msgstr "Identifikaatorid"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
-msgstr "MBID-sid:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
+msgstr ""
#: ../root/statistics/Index.js:203
msgid "ISRCs (all / unique):"
@@ -1588,21 +1580,22 @@ msgstr "ISRC-sid (kokku / unikaalseid):"
msgid "ISWCs (all / unique):"
msgstr "ISWC-sid (kokku / unikaalseid):"
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr "Plaadi-ID-sid:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "Plaadi-ID-d"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Vöötkoode:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Vöötkoodid"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPI-sid:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr "IPI-d"
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
-msgstr "ISNI-sid:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr "ISNI-d"
#: ../root/statistics/Index.js:246
msgid "of type Person:"
@@ -1712,29 +1705,25 @@ msgstr "Ilma esikaanepildita:"
msgid "Data Quality"
msgstr "Andmekvaliteet"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr "Kõrge andmekvaliteediga:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "Kõrge andmekvaliteet"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr "Vaikimisi andmekvaliteediga:"
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr "Tavalise andmekvaliteediga:"
+msgid "Default Data Quality"
+msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "Teadmata andmekvaliteediga:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "Tavaline andmekvaliteet"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr "Madala andmekvaliteediga:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "Teadmata andmekvaliteet"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "Plaadi-ID-d"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr ""
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1762,10 +1751,6 @@ msgstr "Ilma plaadi-ID-ta helikandjaid:"
msgid "Mediums with at least one disc ID:"
msgstr "Vähemalt ühe plaadi-ID-ga helikandjaid:"
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "Väljalaskerühmad"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "Põhitüübid"
@@ -1782,14 +1767,9 @@ msgstr "[määramata]"
msgid "Secondary Types"
msgstr "Teisesed tüübid"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Salvestised"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
-msgstr "Videoid:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr ""
#: ../root/statistics/Index.js:699
msgctxt "recording"
@@ -1807,11 +1787,6 @@ msgstr ""
msgid "Types"
msgstr "Tüübid"
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Teosed"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1820,27 +1795,6 @@ msgstr ""
msgid "Attributes"
msgstr "Atribuudid"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Piirkonnad"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "Kohad"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Seeriad"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Instrumendid"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "Sündmused"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1985,21 +1939,17 @@ msgstr "Passiivseid:"
msgid "Editors (deleted):"
msgstr "Toimetajad (kustutatud kontoga):"
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Toimetusi:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "Lahtisi:"
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "Rakendatud:"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "Mahahääletatud:"
+msgid "Voted down"
+msgstr ""
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -2014,8 +1964,9 @@ msgid "Failed (internal error):"
msgstr "Nurjunud (sisemine viga):"
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Tühistatud:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -2025,14 +1976,11 @@ msgstr "Viimase 7 päeva jooksul:"
msgid "Yesterday:"
msgstr "Eile:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Hääled"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "Hääli:"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2298,10 +2246,6 @@ msgstr "Isikud"
msgid "Artist Credits"
msgstr "Nimekujud"
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Vöötkoodid"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2507,473 +2451,553 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr "IPI-d"
+msgid "Instruments with no type set"
+msgstr ""
-#: ../root/statistics/stats.js:464
+#: ../root/statistics/stats.js:469
msgid "Artist IPIs"
msgstr "Artistide IPI-d"
-#: ../root/statistics/stats.js:469
+#: ../root/statistics/stats.js:474
msgid "Label IPIs"
msgstr "Plaadifirmade IPI-d"
-#: ../root/statistics/stats.js:474
-msgid "ISNIs"
-msgstr "ISNI-d"
-
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr "Artistide ISNI-d"
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr "Plaadifirmade ISNI-d"
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr "Plaadi-ID-dega helikandjad"
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "Kõrge andmekvaliteet"
+msgid "Places with no type set"
+msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "Tavaline andmekvaliteet"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "Teadmata andmekvaliteet"
-
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Hinnangud"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Hinded artistidele"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr "Hinded plaadifirmadele"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Hinded salvestistele"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "Hinded väljalaskerühmadele"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr "Hinded teostele"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr "ISRC-dega salvestised"
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr "CAA aaanepiltidega väljalasked"
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr "Ilma kaanepildita väljalasked"
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr "Kaanepildiga väljalasked"
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Rajad"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr "URL-id"
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr "Erapooletuksjäämised"
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr "Hääli päevas"
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr "Hääli nädalas"
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/päev"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] "1 plaadi-ID-ga helikandjad"
msgstr[1] "{n} plaadi-ID-ga helikandjad"
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] "Salvestised 1 väljalaskel"
msgstr[1] "Salvestised {n} väljalaskel"
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] "1 väljalaskega väljalaskerühmad"
msgstr[1] "{n} väljalaskega väljalaskerühmad"
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr "{country}: artistid"
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr "{country}: plaadifirmad"
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr "{country}: väljalasked"
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "{language} keeles väljalasked"
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr "{script} kirjas väljalasked"
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "MusicBrainzi sündmused:"
+
+#~ msgid "Artists:"
+#~ msgstr "Artiste:"
+
+#~ msgid "Release Groups:"
+#~ msgstr "Väljalaskerühmi:"
+
+#~ msgid "Releases:"
+#~ msgstr "Väljalaskeid:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Helikandjaid:"
+
+#~ msgid "Recordings:"
+#~ msgstr "Salvestisi:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Radu:"
+
+#~ msgid "Labels:"
+#~ msgstr "Plaadifirmasid:"
+
+#~ msgid "Works:"
+#~ msgstr "Teoseid:"
+
+#~ msgid "URLs:"
+#~ msgstr "URL-e:"
+
+#~ msgid "Areas:"
+#~ msgstr "Piirkondi:"
+
+#~ msgid "Places:"
+#~ msgstr "Kohti:"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "Seeriaid:"
+
+#~ msgid "Instruments:"
+#~ msgstr "Instrumente:"
+
+#~ msgid "Events:"
+#~ msgstr "Sündmusi:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Seoseid:"
+
+#~ msgid "MBIDs:"
+#~ msgstr "MBID-sid:"
+
+#~ msgid "Disc IDs:"
+#~ msgstr "Plaadi-ID-sid:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Vöötkoode:"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPI-sid:"
+
+#~ msgid "ISNIs:"
+#~ msgstr "ISNI-sid:"
+
+#~ msgid "High Data Quality:"
+#~ msgstr "Kõrge andmekvaliteediga:"
+
+#~ msgid "Default Data Quality:"
+#~ msgstr "Vaikimisi andmekvaliteediga:"
+
+#~ msgid "Normal Data Quality:"
+#~ msgstr "Tavalise andmekvaliteediga:"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "Teadmata andmekvaliteediga:"
+
+#~ msgid "Low Data Quality:"
+#~ msgstr "Madala andmekvaliteediga:"
+
+#~ msgid "Videos:"
+#~ msgstr "Videoid:"
+
+#~ msgid "Edits:"
+#~ msgstr "Toimetusi:"
+
+#~ msgid "Open:"
+#~ msgstr "Lahtisi:"
+
+#~ msgid "Applied:"
+#~ msgstr "Rakendatud:"
+
+#~ msgid "Voted down:"
+#~ msgstr "Mahahääletatud:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Tühistatud:"
+
+#~ msgid "Votes:"
+#~ msgstr "Hääli:"
diff --git a/po/statistics.fi.po b/po/statistics.fi.po
index e7702b6615d..9aded12ae8d 100644
--- a/po/statistics.fi.po
+++ b/po/statistics.fi.po
@@ -1152,7 +1152,7 @@ msgstr ""
msgid "Controls"
msgstr "Säätimet"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "Maat"
@@ -1184,7 +1184,8 @@ msgstr "Käyttäjät"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Muokkaukset"
@@ -1210,14 +1211,10 @@ msgstr "Kielet/merkistöt"
msgid "Legend"
msgstr "Selite"
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "MusicBrainzin tapahtumia"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "MusicBrainzin tapahtumia:"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1231,8 +1228,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr "Muutosnopeuksien kuvaaja"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1254,7 +1253,7 @@ msgstr "Aikajana"
msgid "Zoom:"
msgstr "Suurenna:"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1262,39 +1261,55 @@ msgstr "Suurenna:"
msgid "Last updated: {date}"
msgstr "Päivitetty viimeksi: {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "Sijoitus"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Maa"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artistit"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Julkaisut"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Levymerkit"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "Tapahtumat"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "Paikat"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Yhteensä"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "Tuntematon maa"
@@ -1450,7 +1465,8 @@ msgstr "Tallenteen muoto"
msgid "% of total releases"
msgstr "% kaikista julkaisuista"
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr "Tallenteet"
@@ -1470,69 +1486,49 @@ msgstr "Perustiedot"
msgid "Core Entities"
msgstr "Keskeisimmät kohteet"
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Artistit:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr "Julkaisuryhmät:"
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Julkaisut:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "Tallenteet:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "Julkaisuryhmät"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr "Äänitteet"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "Kappaleet:"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Levymerkit:"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "Teokset:"
+msgid "Tracks)"
+msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr "URL-osoitteet:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Teokset"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr "Alueet:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "Web-osoitteet"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr "Paikat:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Alueet"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "Sarjat:"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr "Soittimet:"
+msgid "Series"
+msgstr "Sarjat"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr ""
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Soittimet"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Tyylilajit"
@@ -1544,10 +1540,6 @@ msgstr "Muut entiteetit"
msgid "Editors (valid / deleted):"
msgstr "Käyttäjät (voimassa olevat / poistetut):"
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Yhteydet:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1570,8 +1562,8 @@ msgstr "Arvostelut (käsittelemättömät / koostetut):"
msgid "Identifiers"
msgstr "Tunnisteet"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1582,21 +1574,22 @@ msgstr "ISRC-koodia (kaikki / uniikit)"
msgid "ISWCs (all / unique):"
msgstr "ISWC-koodit (kaikki / uniikit):"
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr "Levyn tunnisteet:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "Levyn tunnisteet"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Viivakoodit:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Viivakoodit"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPI-koodit:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr "IPI-koodit"
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
-msgstr "ISNI-koodit:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr "ISNI-koodit"
#: ../root/statistics/Index.js:246
msgid "of type Person:"
@@ -1706,29 +1699,25 @@ msgstr "Ei kansitaidetta:"
msgid "Data Quality"
msgstr "Tiedon laatu"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr "Korkea tiedon laatu:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "Korkea tiedon laatu"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr "Normaali tiedon laatu:"
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr "Normaali tiedon laatu:"
+msgid "Default Data Quality"
+msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "Tuntematon tiedon laatu:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "Normaali tiedon laatu"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr "Alhainen tiedon laatu:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "Tuntematon tiedon laatu"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "Levyn tunnisteet"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr "Alhainen tiedon laatu"
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1756,10 +1745,6 @@ msgstr "Tallenteet, joissa ei levyn tunnistetta:"
msgid "Mediums with at least one disc ID:"
msgstr "Tallenteet, joissa ainakin yksi levyn tunniste:"
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "Julkaisuryhmät"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "Ensisijaiset tyypit"
@@ -1776,14 +1761,9 @@ msgstr "Ei mitään"
msgid "Secondary Types"
msgstr "Toissijaiset tyypit"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Äänitteet"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
-msgstr "Videoita:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr ""
#: ../root/statistics/Index.js:699
msgctxt "recording"
@@ -1801,11 +1781,6 @@ msgstr ""
msgid "Types"
msgstr "Tyypit"
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Teokset"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1814,27 +1789,6 @@ msgstr ""
msgid "Attributes"
msgstr "Ominaisuudet"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Alueet"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "Paikat"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Sarjat"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Soittimet"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "Tapahtumat"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1979,21 +1933,17 @@ msgstr "passiivinen:"
msgid "Editors (deleted):"
msgstr "Käyttäjät (poistetut):"
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Muokkaukset:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "Avoin:"
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "Hyväksytty:"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "Äänestetty kumoon:"
+msgid "Voted down"
+msgstr ""
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -2008,8 +1958,9 @@ msgid "Failed (internal error):"
msgstr "Epäonnistunut (sisäinen virhe):"
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Peruutettu:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -2019,14 +1970,11 @@ msgstr "Viimeiset 7 päivää:"
msgid "Yesterday:"
msgstr "Eilinen:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Annetut äänet"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "Äänet:"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2295,10 +2243,6 @@ msgstr "Henkilöt"
msgid "Artist Credits"
msgstr "Artistin tekijänimet"
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Viivakoodit"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2504,473 +2448,547 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr "IPI-koodit"
+msgid "Instruments with no type set"
+msgstr ""
-#: ../root/statistics/stats.js:464
+#: ../root/statistics/stats.js:469
msgid "Artist IPIs"
msgstr "Artistien IPI-koodit"
-#: ../root/statistics/stats.js:469
+#: ../root/statistics/stats.js:474
msgid "Label IPIs"
msgstr "Levymerkkien IPI-koodit"
-#: ../root/statistics/stats.js:474
-msgid "ISNIs"
-msgstr "ISNI-koodit"
-
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr "Artistin ISNI-koodit"
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr "Levymerkin ISNI-koodit"
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
+#: ../root/statistics/stats.js:519
msgid "Labels with no country set"
msgstr "Levymerkit ilman määritettyä maata"
-#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr "Tallenteet, joille ei ole asetettu tallennusformaattia"
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr "Tallenteet, joissa ei levyn tunnistetta"
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "Korkea tiedon laatu"
+msgid "Places with no type set"
+msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr "Alhainen tiedon laatu"
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "Normaali tiedon laatu"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "Tuntematon tiedon laatu"
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Arvostelut"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Artistien arvostelut"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr "Levymerkien arvostelut"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr "Paikan arvostelut"
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Äänitteiden arvostelut"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "Julkaisuryhmien arvostelut"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr "Teoksien arvostelut"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr "Julkaisut, joissa maata ei valittu"
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr "Kansitaiteelliset julkaisut"
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr "Julkaisut joilla ei kansitaidetta"
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr "Julkaisut, joissa kansitaidetta"
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr "Julkaisuja, joilla Disc ID"
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr "Julkaisut, joissa ei ole kieltä asetttuna"
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr "Julkaisut, joissa ei ole merkistöä asetettuna"
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Kappaleet"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr "Web-osoitteet"
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr "Tyhjiä"
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr "Ei-äänet"
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr "Päiväkohtaiset äänet"
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr "Viikkokohtaiset äänet"
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr "Kyllä-äänet"
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/päivä"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] "Tallenteet, joissa {n} levyn tunnistetta"
msgstr[1] "Tallenteet, joissa {n} levyn tunnistetta"
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] "Julkaisuryhmät joissa {n} julkaisu"
msgstr[1] "Julkaisuryhmät joissa {n} julkaisua"
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr "{country} artistit"
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr "{country} levymerkit"
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr "{country} julkaisut"
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr "{name} julkaisut"
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr "{name} tallenteet"
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "{language} julkaisut"
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr "{script} julkaisut"
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "MusicBrainzin tapahtumia:"
+
+#~ msgid "Artists:"
+#~ msgstr "Artistit:"
+
+#~ msgid "Release Groups:"
+#~ msgstr "Julkaisuryhmät:"
+
+#~ msgid "Releases:"
+#~ msgstr "Julkaisut:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Tallenteet:"
+
+#~ msgid "Recordings:"
+#~ msgstr "Äänitteet"
+
+#~ msgid "Tracks:"
+#~ msgstr "Kappaleet:"
+
+#~ msgid "Labels:"
+#~ msgstr "Levymerkit:"
+
+#~ msgid "Works:"
+#~ msgstr "Teokset:"
+
+#~ msgid "URLs:"
+#~ msgstr "URL-osoitteet:"
+
+#~ msgid "Areas:"
+#~ msgstr "Alueet:"
+
+#~ msgid "Places:"
+#~ msgstr "Paikat:"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "Sarjat:"
+
+#~ msgid "Instruments:"
+#~ msgstr "Soittimet:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Yhteydet:"
+
+#~ msgid "Disc IDs:"
+#~ msgstr "Levyn tunnisteet:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Viivakoodit:"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPI-koodit:"
+
+#~ msgid "ISNIs:"
+#~ msgstr "ISNI-koodit:"
+
+#~ msgid "High Data Quality:"
+#~ msgstr "Korkea tiedon laatu:"
+
+#~ msgid "Default Data Quality:"
+#~ msgstr "Normaali tiedon laatu:"
+
+#~ msgid "Normal Data Quality:"
+#~ msgstr "Normaali tiedon laatu:"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "Tuntematon tiedon laatu:"
+
+#~ msgid "Low Data Quality:"
+#~ msgstr "Alhainen tiedon laatu:"
+
+#~ msgid "Videos:"
+#~ msgstr "Videoita:"
+
+#~ msgid "Edits:"
+#~ msgstr "Muokkaukset:"
+
+#~ msgid "Open:"
+#~ msgstr "Avoin:"
+
+#~ msgid "Applied:"
+#~ msgstr "Hyväksytty:"
+
+#~ msgid "Voted down:"
+#~ msgstr "Äänestetty kumoon:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Peruutettu:"
+
+#~ msgid "Votes:"
+#~ msgstr "Äänet:"
diff --git a/po/statistics.fr.po b/po/statistics.fr.po
index 897e265a021..6ab684246e3 100644
--- a/po/statistics.fr.po
+++ b/po/statistics.fr.po
@@ -12,11 +12,12 @@
# AO , 2013-2015
# yvanz, 2016,2019-2021,2023
# yvanz, 2016
+# yvanzo , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2023-08-21 12:28+0000\n"
+"PO-Revision-Date: 2023-11-09 17:27+0000\n"
"Last-Translator: yvanzo \n"
"Language-Team: French \n"
@@ -26,7 +27,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
"1000000 == 0) ? 1 : 2);\n"
-"X-Generator: Weblate 4.18.2\n"
+"X-Generator: Weblate 5.1\n"
#: DB:statistics.statistic_event/title:2015-09-08
msgid "\"Do Not Cluster\" guideline dropped"
@@ -1231,7 +1232,7 @@ msgstr "Cliquez pour désélectionner"
msgid "Controls"
msgstr "Contrôles"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "Pays"
@@ -1263,7 +1264,8 @@ msgstr "Éditeurs"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Modifications"
@@ -1289,14 +1291,10 @@ msgstr "Langues/systèmes d’écriture"
msgid "Legend"
msgstr "Légende"
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "Événements MusicBrainz"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "Événements MusicBrainz :"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1310,8 +1308,10 @@ msgstr "Taux de modification (articles moyens/jour vs jour)"
msgid "Rate of Change Graph"
msgstr "Graphique du taux de modification"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1333,7 +1333,7 @@ msgstr "Graphique chronologique"
msgid "Zoom:"
msgstr "Zoom :"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1341,39 +1341,55 @@ msgstr "Zoom :"
msgid "Last updated: {date}"
msgstr "Dernière mise à jour : {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "Rang"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Pays"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artistes"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Parutions"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Labels"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "Événements"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "Lieux"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Total"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "Pays inconnu"
@@ -1531,7 +1547,8 @@ msgstr "Format"
msgid "% of total releases"
msgstr "% du total des parutions"
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr "Supports"
@@ -1551,69 +1568,49 @@ msgstr "Métadonnées de base"
msgid "Core Entities"
msgstr "Entités principales"
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Artistes : "
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr "Groupes de parution :"
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Parutions :"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "Supports :"
-
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "Enregistrements : "
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Enregistrements"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "Pistes :"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Labels :"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "Œuvres :"
+msgid "Tracks)"
+msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr "URLs :"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Œuvres"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr "Régions :"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "URLs"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr "Lieux :"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Régions"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "Séries :"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr "Instruments :"
+msgid "Series"
+msgstr "Séries"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr "Événements :"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Instruments"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Genres"
@@ -1625,10 +1622,6 @@ msgstr "Autres entités"
msgid "Editors (valid / deleted):"
msgstr "Éditeurs (valides / supprimés) :"
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Relations : "
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1651,9 +1644,9 @@ msgstr "Évaluations (brut / agrégé) : "
msgid "Identifiers"
msgstr "Identifiants"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
-msgstr "MBID :"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
+msgstr ""
#: ../root/statistics/Index.js:203
msgid "ISRCs (all / unique):"
@@ -1663,21 +1656,22 @@ msgstr "ISRC (tous / unique) :"
msgid "ISWCs (all / unique):"
msgstr "ISWC (tous / unique) :"
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr "ID de disque :"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "ID de disque"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Codes-barres : "
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Codes-barres"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPI :"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr "IPI"
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
-msgstr "ISNI :"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr "ISNI"
#: ../root/statistics/Index.js:246
msgid "of type Person:"
@@ -1787,29 +1781,25 @@ msgstr "Pas d’illustration de couverture :"
msgid "Data Quality"
msgstr "Qualité des données"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr "Données de haute qualité :"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "Données de haute qualité"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr "Qualité par défaut des données :"
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr "Qualité de données normale :"
+msgid "Default Data Quality"
+msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "Qualité de données inconnue :"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "Qualité de données normale"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr "Données de mauvaise qualité :"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "Qualité de données inconnue"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "ID de disque"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr "Données de mauvaise qualité"
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1838,10 +1828,6 @@ msgstr "Support sans ID de disque :"
msgid "Mediums with at least one disc ID:"
msgstr "Support avec au moins un ID de disque :"
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "Groupes de parution :"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "Types principaux"
@@ -1858,14 +1844,9 @@ msgstr "Aucun"
msgid "Secondary Types"
msgstr "Types secondaires"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Enregistrements"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
-msgstr "Vidéos :"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr ""
#: ../root/statistics/Index.js:699
msgctxt "recording"
@@ -1883,11 +1864,6 @@ msgstr "Avec ISRC"
msgid "Types"
msgstr "Types"
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Œuvres"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr "Avec ISWC"
@@ -1896,27 +1872,6 @@ msgstr "Avec ISWC"
msgid "Attributes"
msgstr "Attributs"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Régions"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "Lieux"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Séries"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Instruments"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "Événements"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr "De parutions"
@@ -2062,21 +2017,17 @@ msgstr "inactif :"
msgid "Editors (deleted):"
msgstr "Éditeurs (supprimés) :"
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Modifications :"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "Ouvertes : "
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "Appliquées :"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "Rejetées par vote :"
+msgid "Voted down"
+msgstr ""
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -2091,8 +2042,9 @@ msgid "Failed (internal error):"
msgstr "Échec (erreur interne) :"
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Annulées :"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr "Annulée"
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -2102,14 +2054,11 @@ msgstr "7 derniers jours :"
msgid "Yesterday:"
msgstr "Hier :"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Votes"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "Votes :"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2378,10 +2327,6 @@ msgstr "Personnes"
msgid "Artist Credits"
msgstr "Crédits d’artistes"
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Codes-barres"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2587,477 +2532,557 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr "IPI"
+msgid "Instruments with no type set"
+msgstr ""
-#: ../root/statistics/stats.js:464
+#: ../root/statistics/stats.js:469
msgid "Artist IPIs"
msgstr "IPI d’artiste"
-#: ../root/statistics/stats.js:469
+#: ../root/statistics/stats.js:474
msgid "Label IPIs"
msgstr "IPI des labels"
-#: ../root/statistics/stats.js:474
-msgid "ISNIs"
-msgstr "ISNI"
-
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr "ISNI d’artistes"
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr "INSI des labels"
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
+#: ../root/statistics/stats.js:519
msgid "Labels with no country set"
msgstr "Labels sans pays d’indiqué"
-#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr "Support sans format de défini"
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr "Support avec ID de disque"
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "Données de haute qualité"
+msgid "Places with no type set"
+msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr "Données de mauvaise qualité"
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "Qualité de données normale"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "Qualité de données inconnue"
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Évaluations"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Évaluations de l’artiste"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr "Évaluations des labels"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr "Évaluations des lieux"
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Évaluations d’enregistrement"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "Évaluations des groupes de parution"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr "Évaluations des œuvres"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr "Enregistrements avec ISRC"
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr "Enregistrements isolés"
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr "Parutions sans pays de déterminé"
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr "Parutions avec des illustrations CAA"
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr "Parutions sans illustration"
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr "Parutions avec illustration"
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr "Parutions avec ID de disque"
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr "Parutions sans langue de déterminée"
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr "Parutions sans système d’écriture de déterminé"
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Pistes"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr "URLs"
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr "Abstentions"
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr "Approbations"
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr "Pas de vote"
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr "Votes par jour"
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr "Votes par semaine"
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr "Votes oui"
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr "Œuvres avec ISWC"
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/jour"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] "Parutions avec 1 ID de disque"
msgstr[1] "Parutions avec {n} ID de disque"
msgstr[2] "Parutions avec {n} ID de disque"
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] "Support avec 1 ID de disque"
msgstr[1] "Support avec {n} ID de disque"
msgstr[2] "Support avec {n} ID de disque"
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] "Enregistrements avec 1 parution"
msgstr[1] "Enregistrements avec {n} parutions"
msgstr[2] "Enregistrements avec {n} parutions"
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] "Groupes de parution avec 1 parution"
msgstr[1] "Groupes de parution avec {n} parution"
msgstr[2] "Groupes de parution avec {n} parution"
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr "{country} artistes"
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr "{country} labels"
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr "Parutions de {country}"
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr "Parutions {name}"
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr "Supports {name}"
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "Parutions de {language}"
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr "Parutions {script}"
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr "Voir dans la chronologie"
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "Événements MusicBrainz :"
+
+#~ msgid "Artists:"
+#~ msgstr "Artistes : "
+
+#~ msgid "Release Groups:"
+#~ msgstr "Groupes de parution :"
+
+#~ msgid "Releases:"
+#~ msgstr "Parutions :"
+
+#~ msgid "Mediums:"
+#~ msgstr "Supports :"
+
+#~ msgid "Recordings:"
+#~ msgstr "Enregistrements : "
+
+#~ msgid "Tracks:"
+#~ msgstr "Pistes :"
+
+#~ msgid "Labels:"
+#~ msgstr "Labels :"
+
+#~ msgid "Works:"
+#~ msgstr "Œuvres :"
+
+#~ msgid "URLs:"
+#~ msgstr "URLs :"
+
+#~ msgid "Areas:"
+#~ msgstr "Régions :"
+
+#~ msgid "Places:"
+#~ msgstr "Lieux :"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "Séries :"
+
+#~ msgid "Instruments:"
+#~ msgstr "Instruments :"
+
+#~ msgid "Events:"
+#~ msgstr "Événements :"
+
+#~ msgid "Relationships:"
+#~ msgstr "Relations : "
+
+#~ msgid "MBIDs:"
+#~ msgstr "MBID :"
+
+#~ msgid "Disc IDs:"
+#~ msgstr "ID de disque :"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Codes-barres : "
+
+#~ msgid "IPIs:"
+#~ msgstr "IPI :"
+
+#~ msgid "ISNIs:"
+#~ msgstr "ISNI :"
+
+#~ msgid "High Data Quality:"
+#~ msgstr "Données de haute qualité :"
+
+#~ msgid "Default Data Quality:"
+#~ msgstr "Qualité par défaut des données :"
+
+#~ msgid "Normal Data Quality:"
+#~ msgstr "Qualité de données normale :"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "Qualité de données inconnue :"
+
+#~ msgid "Low Data Quality:"
+#~ msgstr "Données de mauvaise qualité :"
+
+#~ msgid "Videos:"
+#~ msgstr "Vidéos :"
+
+#~ msgid "Edits:"
+#~ msgstr "Modifications :"
+
+#~ msgid "Open:"
+#~ msgstr "Ouvertes : "
+
+#~ msgid "Applied:"
+#~ msgstr "Appliquées :"
+
+#~ msgid "Voted down:"
+#~ msgstr "Rejetées par vote :"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Annulées :"
+
+#~ msgid "Votes:"
+#~ msgstr "Votes :"
diff --git a/po/statistics.gl.po b/po/statistics.gl.po
index 0eef3316f36..d383ffacdde 100644
--- a/po/statistics.gl.po
+++ b/po/statistics.gl.po
@@ -1114,7 +1114,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1146,7 +1146,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1172,14 +1173,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1193,8 +1190,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1216,7 +1215,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1224,39 +1223,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "País"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1411,7 +1426,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1431,69 +1447,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1505,10 +1501,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1531,8 +1523,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1543,20 +1535,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1667,28 +1660,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1717,10 +1706,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1737,13 +1722,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1762,11 +1742,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1775,27 +1750,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1940,20 +1894,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1969,7 +1919,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1980,14 +1931,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2251,10 +2199,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2460,470 +2404,450 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Pistas"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.he.po b/po/statistics.he.po
index 53ed7945fb2..cf2564bc945 100644
--- a/po/statistics.he.po
+++ b/po/statistics.he.po
@@ -112,8 +112,8 @@ msgid ""
"relased and unused TRMs pruned from the database. Inline editing is turned "
"off by default, causing a drop in voting activity."
msgstr ""
-"קשרי־גומלין מתקדמים המאפשרים למשתמשים לחבר ישויות נתונים בסיסיות הם הוצאות ו־"
-"TRMs שאינם בשימוש שנגזרו ממסד הנתונים. עריכה מקוונת מושבתת כברירת מחדל, מה "
+"קשרי־גומלין מתקדמים המאפשרים למשתמשים לחבר ישויות נתונים בסיסיות הם הוצאות "
+"ו־TRMs שאינם בשימוש שנגזרו ממסד הנתונים. עריכה מקוונת מושבתת כברירת מחדל, מה "
"שגורם לירידה בפעילות ההצבעה."
#: DB:statistics.statistic_event/description:2019-06-25
@@ -642,9 +642,9 @@ msgid ""
"Additionally, the German, French and Dutch translations are available on the "
"main server."
msgstr ""
-"סוגי עריכה נוספים נעשים בעריכה אוטומטיות לכולם: \"הוספת קשר־גומלין\" ו־"
-"\"הוספת הוצאה\"; ו־\"הוספה\",\"עריכה\" ו־\"הסרת חברת תקליטים הוצאה\". בנוסף, "
-"התרגומים לגרמנית, צרפתית והולנדית זמינים בשרת הראשי."
+"סוגי עריכה נוספים נעשים בעריכה אוטומטיות לכולם: \"הוספת קשר־גומלין\" "
+"ו־\"הוספת הוצאה\"; ו־\"הוספה\",\"עריכה\" ו־\"הסרת חברת תקליטים הוצאה\". "
+"בנוסף, התרגומים לגרמנית, צרפתית והולנדית זמינים בשרת הראשי."
#: DB:statistics.statistic_event/title:2006-02-27
msgid "MusicBrainz Move"
@@ -1151,7 +1151,7 @@ msgstr "הקלקה לביטול בחירה"
msgid "Controls"
msgstr "בקרות"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "מדינות"
@@ -1183,7 +1183,8 @@ msgstr "עורכים"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "עריכות"
@@ -1209,14 +1210,10 @@ msgstr "שפות/כיתוב"
msgid "Legend"
msgstr "מקרא"
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "ארועי מוזיקבריינז"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "ארועי מוזיקבריינז:"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1230,8 +1227,10 @@ msgstr "קצב שינוי (ממוצע פריטים ליום לעומת יום)"
msgid "Rate of Change Graph"
msgstr "תרשים יחס שינוי"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1253,7 +1252,7 @@ msgstr "תרשים ציר זמן"
msgid "Zoom:"
msgstr "מקד:"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1261,39 +1260,55 @@ msgstr "מקד:"
msgid "Last updated: {date}"
msgstr "עודכן לאחרונה: {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "דירוג"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "מדינה"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "אמנים"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "הוצאות"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "חברות תקליטים"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "ארועים"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "מקומות"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "סך כל"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "מדינה לא ידועה"
@@ -1452,7 +1467,8 @@ msgstr "תבנית"
msgid "% of total releases"
msgstr "% מסך כל ההוצאות"
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr "מדיה"
@@ -1472,69 +1488,49 @@ msgstr "נתוני־על בסיסים"
msgid "Core Entities"
msgstr "ישויות ליבה"
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "אמנים:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr "קבוצות הוצאה:"
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "הוצאות:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "מדיה:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "קבוצת הוצאה"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "הקלטות:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "הקלטות"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "רצועות:"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "חברות תקליטים:"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "יצירות:"
+msgid "Tracks)"
+msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr "מעני url:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "יצירות"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr "אזורים:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "מעני url"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr "מקומות:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "אזורים"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "סדרה:"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr "כלי נגינה:"
+msgid "Series"
+msgstr "סדרה"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr "ארועים:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "כלי נגינה"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "סוגה"
@@ -1546,10 +1542,6 @@ msgstr "ישויות אחרות"
msgid "Editors (valid / deleted):"
msgstr "עורכים (תקפים/נמחקו):"
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "קשרי־גומלין:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1572,9 +1564,9 @@ msgstr "דירוגים (גָּלְמִי / מקובץ):"
msgid "Identifiers"
msgstr "מזהים"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
-msgstr "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
+msgstr ""
#: ../root/statistics/Index.js:203
msgid "ISRCs (all / unique):"
@@ -1584,21 +1576,22 @@ msgstr "ISRCs (הכל/יחודאי):"
msgid "ISWCs (all / unique):"
msgstr "ISWCs (הכל/יחדי):"
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr "מזהי תקליטור:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "מזהי תקליטור"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "ברקוד:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "ברקוד"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr "IPIs"
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
-msgstr "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr "ISNIs"
#: ../root/statistics/Index.js:246
msgid "of type Person:"
@@ -1708,29 +1701,25 @@ msgstr "אין תמונות עטיפה - חזית:"
msgid "Data Quality"
msgstr "איכות נתונים"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr "איכות נתונים גבוהה:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "איכות נתונים גבוהה"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr "איכות נתונים ברירת מחדל:"
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr "איכות נתונים תקנית:"
+msgid "Default Data Quality"
+msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "איכות נתונים לא ידועה:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "איכות נתונים תקנית"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr "איכות נתונים נמוכה:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "איכות נתונים לא ידועה"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "מזהי תקליטור"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr "איכות נתונים נמוכה"
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1760,10 +1749,6 @@ msgstr "מדיה ללא מזהי תקליטור:"
msgid "Mediums with at least one disc ID:"
msgstr "מדיה עם לפחות מזהה תקליטור אחד:"
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "קבוצת הוצאה"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "סוגים עקריים"
@@ -1780,14 +1765,9 @@ msgstr "ללא"
msgid "Secondary Types"
msgstr "סוגים משניים"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "הקלטות"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
-msgstr "חוזי:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr ""
#: ../root/statistics/Index.js:699
msgctxt "recording"
@@ -1805,11 +1785,6 @@ msgstr "עם ISRCs"
msgid "Types"
msgstr "סוגים"
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "יצירות"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr "עם ISWCs"
@@ -1818,27 +1793,6 @@ msgstr "עם ISWCs"
msgid "Attributes"
msgstr "תכונות"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "אזורים"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "מקומות"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "סדרה"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "כלי נגינה"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "ארועים"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1983,21 +1937,17 @@ msgstr "לא פעיל:"
msgid "Editors (deleted):"
msgstr "עורכים (נמחקו):"
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "עריכות:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "פתיחה:"
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "הוחל:"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "הצבעה שלילית:"
+msgid "Voted down"
+msgstr ""
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -2012,8 +1962,9 @@ msgid "Failed (internal error):"
msgstr "כשל (שגיאה פנימית):"
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "מבוטל:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -2023,14 +1974,11 @@ msgstr "7 ימים אחרונים:"
msgid "Yesterday:"
msgstr "אתמול:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "הצבעות"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "הצבעות:"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2296,10 +2244,6 @@ msgstr "אנשים"
msgid "Artist Credits"
msgstr "מזכה אמן"
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "ברקוד"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2505,342 +2449,314 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr "IPIs"
+msgid "Instruments with no type set"
+msgstr ""
-#: ../root/statistics/stats.js:464
+#: ../root/statistics/stats.js:469
msgid "Artist IPIs"
msgstr "אמן IPI"
-#: ../root/statistics/stats.js:469
+#: ../root/statistics/stats.js:474
msgid "Label IPIs"
msgstr "IPI של חברת תקליטים"
-#: ../root/statistics/stats.js:474
-msgid "ISNIs"
-msgstr "ISNIs"
-
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr "ISNI אמן:"
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr " ISNI של חברת תקליטים"
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
+#: ../root/statistics/stats.js:519
msgid "Labels with no country set"
msgstr "הוגדרו חברות תקליטים ללא מדינה"
-#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr "מדיה ללא הגדרת תַּבְנִית"
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr "מדיה עם מזהי תקליטור:"
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "איכות נתונים גבוהה"
+msgid "Places with no type set"
+msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr "איכות נתונים נמוכה"
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "איכות נתונים תקנית"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "איכות נתונים לא ידועה"
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "דֵּרוּגים"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "תגי אמן"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr "דירוג חברת תקליטים"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr "דירוגי מקום"
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr "הקלטות עם ISRCs"
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr "הקלטה עצמאית"
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr "הוגדרו הוצאות ללא מדינה"
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr "הוצאה עם תמונת עטיפה CAA"
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr "הוצאה ללא תמונת עטיפה"
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr "הוצאה עם תמונת עטיפה"
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr "הוצאות עם מזהה תקליטור"
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr "הוצאות ללא הגדרת שפה"
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr "הוצאות ללא הגדרת כיתוב"
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "רצועות"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr "מעני url"
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr "הימנעות"
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr "הצבעות 'לא'"
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr "הצבעות ליום"
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr "הצבעות לשבוע"
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr "הצבעות 'כן'"
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr "יצירות עם ISWCs"
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/יום"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] "הוצאות עם מזהה תקליטור {n} "
@@ -2848,7 +2764,7 @@ msgstr[1] "הוצאות עם {n} מזהי תקליטור"
msgstr[2] "הוצאות עם {n} מזהי תקליטור"
msgstr[3] "הוצאות עם {n} מזהי תקליטור"
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] "מדיה עם מזהה תקליטורים {n}:"
@@ -2856,7 +2772,7 @@ msgstr[1] "מדיה עם מזהי {n} תקליטורים:"
msgstr[2] "מדיה עם מזהי {n} תקליטורים:"
msgstr[3] "מדיה עם מזהי {n} תקליטורים:"
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] "הקלטות עם הוצאה {n}"
@@ -2864,7 +2780,7 @@ msgstr[1] "הקלטות עם {n} הוצאות"
msgstr[2] "הקלטות עם {n} הוצאות"
msgstr[3] "הקלטות עם {n} הוצאות"
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] "קבוצות הוצאה עם הוצאה {n}"
@@ -2872,114 +2788,222 @@ msgstr[1] "קבוצות הוצאה עם {n} הוצאות"
msgstr[2] "קבוצות הוצאה עם {n} הוצאות"
msgstr[3] "קבוצות הוצאה עם {n} הוצאות"
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr "אמנים {country}"
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr "חברות תקליטים {country} "
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr "הוצאות {country}"
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr "הוצאות {name}"
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr "מדיה {name}"
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "הוצאות {language}"
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr "הוצאות {script}"
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr "ראו על גבי ציר הזמן"
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "ארועי מוזיקבריינז:"
+
+#~ msgid "Artists:"
+#~ msgstr "אמנים:"
+
+#~ msgid "Release Groups:"
+#~ msgstr "קבוצות הוצאה:"
+
+#~ msgid "Releases:"
+#~ msgstr "הוצאות:"
+
+#~ msgid "Mediums:"
+#~ msgstr "מדיה:"
+
+#~ msgid "Recordings:"
+#~ msgstr "הקלטות:"
+
+#~ msgid "Tracks:"
+#~ msgstr "רצועות:"
+
+#~ msgid "Labels:"
+#~ msgstr "חברות תקליטים:"
+
+#~ msgid "Works:"
+#~ msgstr "יצירות:"
+
+#~ msgid "URLs:"
+#~ msgstr "מעני url:"
+
+#~ msgid "Areas:"
+#~ msgstr "אזורים:"
+
+#~ msgid "Places:"
+#~ msgstr "מקומות:"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "סדרה:"
+
+#~ msgid "Instruments:"
+#~ msgstr "כלי נגינה:"
+
+#~ msgid "Events:"
+#~ msgstr "ארועים:"
+
+#~ msgid "Relationships:"
+#~ msgstr "קשרי־גומלין:"
+
+#~ msgid "MBIDs:"
+#~ msgstr "MBIDs:"
+
+#~ msgid "Disc IDs:"
+#~ msgstr "מזהי תקליטור:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "ברקוד:"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPIs:"
+
+#~ msgid "ISNIs:"
+#~ msgstr "ISNIs:"
+
+#~ msgid "High Data Quality:"
+#~ msgstr "איכות נתונים גבוהה:"
+
+#~ msgid "Default Data Quality:"
+#~ msgstr "איכות נתונים ברירת מחדל:"
+
+#~ msgid "Normal Data Quality:"
+#~ msgstr "איכות נתונים תקנית:"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "איכות נתונים לא ידועה:"
+
+#~ msgid "Low Data Quality:"
+#~ msgstr "איכות נתונים נמוכה:"
+
+#~ msgid "Videos:"
+#~ msgstr "חוזי:"
+
+#~ msgid "Edits:"
+#~ msgstr "עריכות:"
+
+#~ msgid "Open:"
+#~ msgstr "פתיחה:"
+
+#~ msgid "Applied:"
+#~ msgstr "הוחל:"
+
+#~ msgid "Voted down:"
+#~ msgstr "הצבעה שלילית:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "מבוטל:"
+
+#~ msgid "Votes:"
+#~ msgstr "הצבעות:"
diff --git a/po/statistics.hr.po b/po/statistics.hr.po
index 92eaa399b7f..4412055fc52 100644
--- a/po/statistics.hr.po
+++ b/po/statistics.hr.po
@@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.18.2\n"
#: DB:statistics.statistic_event/title:2015-09-08
@@ -1117,7 +1117,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1149,7 +1149,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1175,14 +1176,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1196,8 +1193,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1219,7 +1218,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1227,39 +1226,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Država"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Izdanja"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1415,7 +1430,8 @@ msgstr "Format"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1435,69 +1451,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1509,10 +1505,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1535,8 +1527,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1547,20 +1539,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1671,28 +1664,24 @@ msgstr ""
msgid "Data Quality"
msgstr "Kvaliteta podataka"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1722,10 +1711,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1742,13 +1727,8 @@ msgstr "Nijedan"
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1767,11 +1747,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1780,27 +1755,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1945,20 +1899,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1974,7 +1924,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1985,14 +1936,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2256,10 +2204,6 @@ msgstr "Osobe"
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2465,474 +2409,454 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Pjesme"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.hu.po b/po/statistics.hu.po
index 4631e6b2908..d4a8e96fdc9 100644
--- a/po/statistics.hu.po
+++ b/po/statistics.hu.po
@@ -1114,7 +1114,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1146,7 +1146,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1172,14 +1173,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1193,8 +1190,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1216,7 +1215,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1224,39 +1223,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Ország"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Kiadások"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1411,7 +1426,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1431,69 +1447,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1505,10 +1501,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1531,8 +1523,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1543,20 +1535,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1667,28 +1660,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1717,10 +1706,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1737,13 +1722,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1762,11 +1742,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1775,27 +1750,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1940,20 +1894,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1969,7 +1919,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1980,14 +1931,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2251,10 +2199,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2460,470 +2404,450 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Zenék"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.id.po b/po/statistics.id.po
index 4e0245520b5..f33af4ca8c6 100644
--- a/po/statistics.id.po
+++ b/po/statistics.id.po
@@ -1114,7 +1114,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1146,7 +1146,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1172,14 +1173,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1193,8 +1190,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1216,7 +1215,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1224,39 +1223,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Negara"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Rilis"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Label"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1410,7 +1425,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1430,69 +1446,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Genre"
@@ -1504,10 +1500,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1530,8 +1522,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1542,20 +1534,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1666,28 +1659,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1715,10 +1704,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1735,13 +1720,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1760,11 +1740,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1773,27 +1748,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1938,20 +1892,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1967,7 +1917,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1978,14 +1929,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2249,10 +2197,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2458,466 +2402,446 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Trek"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.it.po b/po/statistics.it.po
index 983140f16d8..402a51d8ef7 100644
--- a/po/statistics.it.po
+++ b/po/statistics.it.po
@@ -8,12 +8,14 @@
# salo.rock, 2012
# salo.rock, 2021,2023
# "salo.rock" , 2023.
+# "salo.rock" , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2023-08-27 21:27+0000\n"
-"Last-Translator: \"salo.rock\" \n"
+"PO-Revision-Date: 2023-11-08 05:27+0000\n"
+"Last-Translator: \"salo.rock\" \n"
"Language-Team: Italian \n"
"Language: it\n"
@@ -22,7 +24,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0)"
" ? 1 : 2);\n"
-"X-Generator: Weblate 4.18.2\n"
+"X-Generator: Weblate 5.1\n"
#: DB:statistics.statistic_event/title:2015-09-08
msgid "\"Do Not Cluster\" guideline dropped"
@@ -1123,8 +1125,8 @@ msgid ""
"autoedit, unless the same code is already in use for another."
msgstr ""
"La traduzione italiana, realizzata perlopiù da salo.rock, è rilasciata "
-"ufficialmente. Aggiungere il primo codice IPI e/o ISNI a un'entità diventa un"
-"'auto-modifica, a meno che lo stesso codice non sia già utilizzato da "
+"ufficialmente. Aggiungere il primo codice IPI e/o ISNI a un'entità diventa "
+"un'auto-modifica, a meno che lo stesso codice non sia già utilizzato da "
"un'altra entità."
#: DB:statistics.statistic_event/title:2015-09-17
@@ -1388,7 +1390,7 @@ msgstr "Clicca per deselezionare"
msgid "Controls"
msgstr "Comandi"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "Paesi"
@@ -1420,7 +1422,8 @@ msgstr "Editor"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Modifiche"
@@ -1446,14 +1449,10 @@ msgstr "Lingue/Sistemi di scrittura"
msgid "Legend"
msgstr "Legenda"
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "Eventi di MusicBrainz"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "Eventi di MusicBrainz:"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1467,8 +1466,10 @@ msgstr "Tasso di variazione (media elementi giornalieri per ogni giorno)"
msgid "Rate of Change Graph"
msgstr "Grafico del tasso di variazione"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1490,7 +1491,7 @@ msgstr "Grafico della cronologia"
msgid "Zoom:"
msgstr "Ingrandisci:"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1498,39 +1499,55 @@ msgstr "Ingrandisci:"
msgid "Last updated: {date}"
msgstr "Ultima modifica: {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "Posizione"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Paese"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artisti"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Pubblicazioni"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Etichette"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "Eventi"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "Luoghi"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Totale"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "Paese sconosciuto"
@@ -1688,7 +1705,8 @@ msgstr "Formato"
msgid "% of total releases"
msgstr "% delle pubblicazioni totali"
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr "Supporti"
@@ -1708,69 +1726,49 @@ msgstr "Metadati di base"
msgid "Core Entities"
msgstr "Entità centrali"
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Artisti:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr "Gruppi di pubblicazioni:"
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Pubblicazioni:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "Supporti:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "Gruppi di pubblicazioni"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "Registrazioni:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Registrazioni"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "Tracce:"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Etichette:"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "Opere:"
+msgid "Tracks)"
+msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr "URL:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Opere"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr "Aree:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "URL"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr "Luoghi:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Aree"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "Serie:"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr "Strumenti:"
+msgid "Series"
+msgstr "Serie"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr "Eventi:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Strumenti"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Generi"
@@ -1782,10 +1780,6 @@ msgstr "Altre entità"
msgid "Editors (valid / deleted):"
msgstr "Editor (validi / eliminati):"
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Relazioni:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1808,9 +1802,9 @@ msgstr "Valutazioni (grezze/aggregate):"
msgid "Identifiers"
msgstr "Identificatori"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
-msgstr "MBID:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
+msgstr "MBID"
#: ../root/statistics/Index.js:203
msgid "ISRCs (all / unique):"
@@ -1820,21 +1814,22 @@ msgstr "ISRC (totali/unici):"
msgid "ISWCs (all / unique):"
msgstr "ISWC (totali/unici):"
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr "ID disco:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "ID disco"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Codici a barre:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Codici a barre"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPI:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr "IPI"
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
-msgstr "ISNI:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr "ISNI"
#: ../root/statistics/Index.js:246
msgid "of type Person:"
@@ -1944,29 +1939,25 @@ msgstr "Nessuna copertina frontale:"
msgid "Data Quality"
msgstr "Qualità dati"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr "Qualità dati alta:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "Qualità dati alta"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr "Qualità dati default:"
+msgid "Default Data Quality"
+msgstr "Qualità dati default"
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr "Qualità dati normale:"
-
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "Qualità dati sconosciuta:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "Qualità dati normale"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr "Qualità dati bassa:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "Qualità dati sconosciuta"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "ID disco"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr "Qualità dati bassa"
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1995,10 +1986,6 @@ msgstr "Supporti senza ID disco:"
msgid "Mediums with at least one disc ID:"
msgstr "Supporti con almeno un ID disco:"
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "Gruppi di pubblicazioni"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "Tipi primari"
@@ -2015,14 +2002,9 @@ msgstr "Nessuno"
msgid "Secondary Types"
msgstr "Tipi secondari"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Registrazioni"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
-msgstr "Video:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr "Video"
#: ../root/statistics/Index.js:699
msgctxt "recording"
@@ -2040,11 +2022,6 @@ msgstr "Con ISRC"
msgid "Types"
msgstr "Tipi"
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Opere"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr "Con ISWC"
@@ -2053,27 +2030,6 @@ msgstr "Con ISWC"
msgid "Attributes"
msgstr "Attributi"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Aree"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "Luoghi"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Serie"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Strumenti"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "Eventi"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr "Di pubblicazioni"
@@ -2218,21 +2174,17 @@ msgstr "non attivi:"
msgid "Editors (deleted):"
msgstr "Editor (eliminati):"
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Modifiche:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "In corso:"
+msgid "Open"
+msgstr "In corso"
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "Applicate:"
+msgid "Applied"
+msgstr "Applicate"
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "Rifiutate:"
+msgid "Voted down"
+msgstr "Rifiutate"
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -2247,8 +2199,9 @@ msgid "Failed (internal error):"
msgstr "Fallite (errore interno):"
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Cancellate:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr "Annullate"
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -2258,14 +2211,11 @@ msgstr "Ultimi 7 giorni:"
msgid "Yesterday:"
msgstr "Ieri:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Voti"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "Voti:"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2534,10 +2484,6 @@ msgstr "Persone"
msgid "Artist Credits"
msgstr "Accreditamenti artista"
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Codici a barre"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr "Bozze CD (attuali)"
@@ -2743,434 +2689,414 @@ msgid "Editors who voted in the last week"
msgstr "Editor che hanno votato nell'ultima settimana"
#: ../root/statistics/stats.js:439
+msgid "Events with no country set"
+msgstr "Eventi senza un Paese impostato"
+
+#: ../root/statistics/stats.js:444
msgid "Events with no type set"
msgstr "Eventi senza un tipo impostato"
-#: ../root/statistics/stats.js:454
+#: ../root/statistics/stats.js:459
msgid "Instruments with no type set"
msgstr "Strumenti senza un tipo impostato"
-#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr "IPI"
-
-#: ../root/statistics/stats.js:464
+#: ../root/statistics/stats.js:469
msgid "Artist IPIs"
msgstr "IPI di artisti"
-#: ../root/statistics/stats.js:469
+#: ../root/statistics/stats.js:474
msgid "Label IPIs"
msgstr "IPI di etichette"
-#: ../root/statistics/stats.js:474
-msgid "ISNIs"
-msgstr "ISNI"
-
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr "ISNI artista"
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr "ISNI etichetta"
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr "ISRC (unici)"
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr "ISRC (totali)"
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr "ISWC (unici)"
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr "ISWC (totali)"
-#: ../root/statistics/stats.js:514
+#: ../root/statistics/stats.js:519
msgid "Labels with no country set"
msgstr "Etichette senza un Paese impostato"
-#: ../root/statistics/stats.js:519
+#: ../root/statistics/stats.js:524
msgid "Labels with no type set"
msgstr "Etichette senza un tipo impostato"
-#: ../root/statistics/stats.js:524
-msgid "MBIDs"
-msgstr "MBID"
-
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr "Supporti senza un formato impostato"
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr "Supporti con ID disco"
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr "Luoghi senza un tipo impostato"
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
-msgstr "Qualità dati di default (normale + sconosciuta)"
+msgid "Places with no country set"
+msgstr "Luoghi senza un Paese impostato"
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "Qualità dati alta"
+msgid "Places with no type set"
+msgstr "Luoghi senza un tipo impostato"
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr "Qualità dati bassa"
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "Qualità dati normale"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "Qualità dati sconosciuta"
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr "Qualità dati di default (normale + sconosciuta)"
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr "Entità con valutazioni"
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr "Artisti con valutazioni"
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr "Etichette con valutazioni"
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr "Luoghi con valutazioni"
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Valutazioni"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Valutazioni di artisti"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr "Valutazioni di etichette"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr "Valutazioni di luoghi"
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Valutazioni di registrazioni"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "Valutazioni di gruppi di pubblicazioni"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr "Valutazioni di opere"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr "Registrazioni con valutazioni"
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr "Gruppi di pubblicazioni con valutazioni"
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr "Opere con valutazioni"
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr "Registrazioni con ISRC"
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr "Registrazioni a sé stanti"
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr "Pubblicazioni senza un Paese impostato"
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr "Pubblicazioni con copertina da CAA"
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr "Pubblicazioni senza copertina"
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr "Pubblicazioni con un supporto senza formato"
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr "Pubblicazioni con un supporto senza formato che hanno copertine"
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr "Pubblicazioni con copertina"
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr "Pubblicazioni con ID disco"
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr "Pubblicazioni senza una lingua impostata"
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr "Pubblicazioni non accreditate ad Artisti Vari"
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr "Pubblicazioni senza confezione"
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr "Pubblicazioni senza un sistema di scrittura impostato"
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr "Pubblicazioni senza status"
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr "Pubblicazioni senza status che hanno copertine"
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr "Pubblicazioni con copertine in gruppi senza un tipo impostato"
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr "Pubblicazioni accreditate ad Artisti Vari"
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr "Gruppi di pubblicazioni che hanno copertine attribuite automaticamente"
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr "Gruppi di pubblicazioni che hanno copertine selezionate dagli utenti"
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr "Gruppi di pubblicazioni senza un tipo primario impostato"
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr "Gruppi di pubblicazioni senza un tipo secondario impostato"
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr "Serie senza un tipo impostato"
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr "Nomi di tag unici"
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr "Voti a favore/contro tag"
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr "Voti a favore/contro tag di aree"
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr "Voti a favore/contro tag di artisti"
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr "Voti a favore/contro tag di strumenti"
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr "Voti a favore/contro tag di etichette"
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr "Voti a favore/contro tag di registrazioni"
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr "Voti a favore/contro tag di pubblicazioni"
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr "Voti a favore/contro tag di gruppi di pubblicazioni"
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr "Voti a favore/contro tag di serie"
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr "Voti a favore/contro tag di opere"
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Tracce"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr "URL"
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr "Video"
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr "Astenuti"
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr "Approvazioni"
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr "Voti negativi"
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr "Voti per giorno"
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr "Voti per settimana"
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr "Voti positivi"
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr "Opere senza attributi"
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr "Opere con ISWC"
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr "Opere senza una lingua impostata"
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr "Opere senza un tipo impostato"
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/giorno"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] "Pubblicazioni con 1 ID disco"
msgstr[1] "Pubblicazioni con {n} ID disco"
msgstr[2] "Pubblicazioni con {n} ID disco"
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] "Supporti con 1 ID disco"
msgstr[1] "Supporti con {n} ID disco"
msgstr[2] "Supporti con {n} ID disco"
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] "Registrazioni con 1 pubblicazione"
msgstr[1] "Registrazioni con {n} pubblicazioni"
msgstr[2] "Registrazioni con {n} pubblicazioni"
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] "Gruppi di pubblicazioni con 1 pubblicazione"
msgstr[1] "Gruppi di pubblicazioni con {n} pubblicazioni"
msgstr[2] "Gruppi di pubblicazioni con {n} pubblicazioni"
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr "Aree {type}"
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
-msgstr "{country} artisti"
+msgstr "Artisti da: {country}"
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr "Eventi in: {country}"
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
-msgstr "{country} etichette"
+msgstr "Etichette da: {country}"
+
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr "Luoghi in: {country}"
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
-msgstr "{country} pubblicazioni"
+msgstr "Pubblicazioni da: {country}"
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr "Modifiche {type}"
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr "Eventi {type}"
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr "Pubblicazioni {name}"
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr "Supporti {name}"
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr "Pubblicazioni con un supporto in formato “{format}” con copertine"
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr "Strumenti {type}"
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr "Etichette {type}"
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "Pubblicazioni {language}"
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr "Opere in {language}"
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr "Pubblicazioni con confezione “{packaging}”"
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr "Luoghi {type}"
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr "Relazioni {first_entity_type}-{second_entity_type}"
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
@@ -3178,7 +3104,7 @@ msgstr ""
"Relazioni “{relationship_type_name}” {first_entity_type_name}-"
"{second_entity_type_name}"
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
@@ -3186,38 +3112,138 @@ msgstr ""
"Relazioni “{relationship_type_name}” {first_entity_type_name}-"
"{second_entity_type_name}, compresi i tipi di relazione discendenti"
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr "Gruppi di pubblicazioni {type}"
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr "Pubblicazioni con copertine in gruppi di tipo “{type}”"
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr "Pubblicazioni {script}"
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr "Serie {type}"
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr "Pubblicazioni {status}"
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr "Pubblicazioni con status “{status}” con copertine"
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr "Opere con attributo “{attribute}”"
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr "Opere {type}"
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr "Visualizza nella cronologia"
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "Eventi di MusicBrainz:"
+
+#~ msgid "Artists:"
+#~ msgstr "Artisti:"
+
+#~ msgid "Release Groups:"
+#~ msgstr "Gruppi di pubblicazioni:"
+
+#~ msgid "Releases:"
+#~ msgstr "Pubblicazioni:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Supporti:"
+
+#~ msgid "Recordings:"
+#~ msgstr "Registrazioni:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Tracce:"
+
+#~ msgid "Labels:"
+#~ msgstr "Etichette:"
+
+#~ msgid "Works:"
+#~ msgstr "Opere:"
+
+#~ msgid "URLs:"
+#~ msgstr "URL:"
+
+#~ msgid "Areas:"
+#~ msgstr "Aree:"
+
+#~ msgid "Places:"
+#~ msgstr "Luoghi:"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "Serie:"
+
+#~ msgid "Instruments:"
+#~ msgstr "Strumenti:"
+
+#~ msgid "Events:"
+#~ msgstr "Eventi:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Relazioni:"
+
+#~ msgid "MBIDs:"
+#~ msgstr "MBID:"
+
+#~ msgid "Disc IDs:"
+#~ msgstr "ID disco:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Codici a barre:"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPI:"
+
+#~ msgid "ISNIs:"
+#~ msgstr "ISNI:"
+
+#~ msgid "High Data Quality:"
+#~ msgstr "Qualità dati alta:"
+
+#~ msgid "Default Data Quality:"
+#~ msgstr "Qualità dati default:"
+
+#~ msgid "Normal Data Quality:"
+#~ msgstr "Qualità dati normale:"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "Qualità dati sconosciuta:"
+
+#~ msgid "Low Data Quality:"
+#~ msgstr "Qualità dati bassa:"
+
+#~ msgid "Videos:"
+#~ msgstr "Video:"
+
+#~ msgid "Edits:"
+#~ msgstr "Modifiche:"
+
+#~ msgid "Open:"
+#~ msgstr "In corso:"
+
+#~ msgid "Applied:"
+#~ msgstr "Applicate:"
+
+#~ msgid "Voted down:"
+#~ msgstr "Rifiutate:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Cancellate:"
+
+#~ msgid "Votes:"
+#~ msgstr "Voti:"
diff --git a/po/statistics.ja.po b/po/statistics.ja.po
index 92314d9a694..6895dc025f1 100644
--- a/po/statistics.ja.po
+++ b/po/statistics.ja.po
@@ -1131,7 +1131,7 @@ msgstr ""
msgid "Controls"
msgstr "コントロール"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "国"
@@ -1163,7 +1163,8 @@ msgstr "編集者"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "編集"
@@ -1189,14 +1190,10 @@ msgstr "言語/文字"
msgid "Legend"
msgstr "凡例"
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "MusicBrainzイベント"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "MusicBrainzイベント:"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1210,8 +1207,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1233,7 +1232,7 @@ msgstr "タイムライングラフ"
msgid "Zoom:"
msgstr "ズーム:"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1241,39 +1240,55 @@ msgstr "ズーム:"
msgid "Last updated: {date}"
msgstr "最終更新日: {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "ランク"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "国"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "アーティスト"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "リリース"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "レーベル"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "イベント"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "場所"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "合計"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "不明な国"
@@ -1429,7 +1444,8 @@ msgstr "フォーマット"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr "メディア"
@@ -1449,69 +1465,49 @@ msgstr "基本メタデータ"
msgid "Core Entities"
msgstr "主要な項目"
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "アーティスト数:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr "リリースグループ数:"
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "リリース数:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "メディア数:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "リリースグループ"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "レコーディング数:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "レコーディング"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "トラック数:"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "レーベル数:"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "作品数:"
+msgid "Tracks)"
+msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr "URL数:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "作品"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr "地域数:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "URL"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr "場所数:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "地域"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "シリーズ数:"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr "楽器数:"
+msgid "Series"
+msgstr "シリーズ"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr "イベント数:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "楽器"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "ジャンル数"
@@ -1523,10 +1519,6 @@ msgstr "その他の項目"
msgid "Editors (valid / deleted):"
msgstr "編集者数(有効 / 削除済):"
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "関係数:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1549,9 +1541,9 @@ msgstr ""
msgid "Identifiers"
msgstr "識別子"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
-msgstr "MBID数:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
+msgstr ""
#: ../root/statistics/Index.js:203
msgid "ISRCs (all / unique):"
@@ -1561,21 +1553,22 @@ msgstr "ISRC数(重複含む / 含まない):"
msgid "ISWCs (all / unique):"
msgstr "ISWC数(重複含む / 含まない):"
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr "ディスクID数:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "ディスクID"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "バーコード数:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "バーコード"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPI数:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
-msgstr "ISNI数:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr ""
#: ../root/statistics/Index.js:246
msgid "of type Person:"
@@ -1685,29 +1678,25 @@ msgstr "カバーアートがない:"
msgid "Data Quality"
msgstr "データ品質"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr "高いデータ品質:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "高いデータ品質"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr "デフォルトのデータ品質:"
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr "標準のデータ品質:"
+msgid "Default Data Quality"
+msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "データ品質が不明:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "標準のデータ品質"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr "低いデータ品質:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "データ品質が不明"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "ディスクID"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr "低いデータ品質"
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1734,10 +1723,6 @@ msgstr "ディスクIDのないメディア:"
msgid "Mediums with at least one disc ID:"
msgstr "ディスクIDが少なくとも1つあるメディア:"
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "リリースグループ"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "一次タイプ"
@@ -1754,14 +1739,9 @@ msgstr "なし"
msgid "Secondary Types"
msgstr "二次タイプ"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "レコーディング"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
-msgstr "ビデオ:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr ""
#: ../root/statistics/Index.js:699
msgctxt "recording"
@@ -1779,11 +1759,6 @@ msgstr ""
msgid "Types"
msgstr "タイプ"
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "作品"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1792,27 +1767,6 @@ msgstr ""
msgid "Attributes"
msgstr "属性"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "地域"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "場所"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "シリーズ"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "楽器"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "イベント"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1957,21 +1911,17 @@ msgstr "活動していない:"
msgid "Editors (deleted):"
msgstr "編集者(削除済):"
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "編集:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "未確定:"
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "適用:"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "反対投票:"
+msgid "Voted down"
+msgstr ""
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -1986,8 +1936,9 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "キャンセル:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -1997,14 +1948,11 @@ msgstr "最近7日間"
msgid "Yesterday:"
msgstr "昨日:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "投票数"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "投票数:"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2268,10 +2216,6 @@ msgstr ""
msgid "Artist Credits"
msgstr "アーティストクレジット"
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "バーコード"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2477,469 +2421,549 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "高いデータ品質"
+msgid "Places with no type set"
+msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr "低いデータ品質"
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "標準のデータ品質"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "データ品質が不明"
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "評価"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "アーティストの評価"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr "レーベルの評価"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr "場所の評価"
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "レコーディングの評価"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "リリースグループの評価"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr "作品の評価"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "トラック"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr "URL"
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr "投票なし"
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr "タイムラインで見る"
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "MusicBrainzイベント:"
+
+#~ msgid "Artists:"
+#~ msgstr "アーティスト数:"
+
+#~ msgid "Release Groups:"
+#~ msgstr "リリースグループ数:"
+
+#~ msgid "Releases:"
+#~ msgstr "リリース数:"
+
+#~ msgid "Mediums:"
+#~ msgstr "メディア数:"
+
+#~ msgid "Recordings:"
+#~ msgstr "レコーディング数:"
+
+#~ msgid "Tracks:"
+#~ msgstr "トラック数:"
+
+#~ msgid "Labels:"
+#~ msgstr "レーベル数:"
+
+#~ msgid "Works:"
+#~ msgstr "作品数:"
+
+#~ msgid "URLs:"
+#~ msgstr "URL数:"
+
+#~ msgid "Areas:"
+#~ msgstr "地域数:"
+
+#~ msgid "Places:"
+#~ msgstr "場所数:"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "シリーズ数:"
+
+#~ msgid "Instruments:"
+#~ msgstr "楽器数:"
+
+#~ msgid "Events:"
+#~ msgstr "イベント数:"
+
+#~ msgid "Relationships:"
+#~ msgstr "関係数:"
+
+#~ msgid "MBIDs:"
+#~ msgstr "MBID数:"
+
+#~ msgid "Disc IDs:"
+#~ msgstr "ディスクID数:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "バーコード数:"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPI数:"
+
+#~ msgid "ISNIs:"
+#~ msgstr "ISNI数:"
+
+#~ msgid "High Data Quality:"
+#~ msgstr "高いデータ品質:"
+
+#~ msgid "Default Data Quality:"
+#~ msgstr "デフォルトのデータ品質:"
+
+#~ msgid "Normal Data Quality:"
+#~ msgstr "標準のデータ品質:"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "データ品質が不明:"
+
+#~ msgid "Low Data Quality:"
+#~ msgstr "低いデータ品質:"
+
+#~ msgid "Videos:"
+#~ msgstr "ビデオ:"
+
+#~ msgid "Edits:"
+#~ msgstr "編集:"
+
+#~ msgid "Open:"
+#~ msgstr "未確定:"
+
+#~ msgid "Applied:"
+#~ msgstr "適用:"
+
+#~ msgid "Voted down:"
+#~ msgstr "反対投票:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "キャンセル:"
+
+#~ msgid "Votes:"
+#~ msgstr "投票数:"
diff --git a/po/statistics.ko.po b/po/statistics.ko.po
index 67de9532dfa..6e129ee7ce9 100644
--- a/po/statistics.ko.po
+++ b/po/statistics.ko.po
@@ -1114,7 +1114,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1146,7 +1146,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1172,14 +1173,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1193,8 +1190,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1216,7 +1215,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1224,39 +1223,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "국가"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "아티스트"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "릴리즈"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "레이블"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1410,7 +1425,8 @@ msgstr "포맷"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1430,69 +1446,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "장느"
@@ -1504,10 +1500,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1530,8 +1522,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1542,20 +1534,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1666,28 +1659,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1715,10 +1704,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1735,13 +1720,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1760,11 +1740,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1773,27 +1748,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1938,20 +1892,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1967,7 +1917,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1978,14 +1929,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2249,10 +2197,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2458,466 +2402,446 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "등급"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "아티스트 순위"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "트랙"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.lt.po b/po/statistics.lt.po
index 5a293c89532..d9fa335b4ce 100644
--- a/po/statistics.lt.po
+++ b/po/statistics.lt.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2023-09-24 15:27+0000\n"
+"PO-Revision-Date: 2023-10-03 22:27+0000\n"
"Last-Translator: \"Vac31.\" \n"
"Language-Team: Lithuanian \n"
@@ -14,8 +14,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < "
-"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 :"
-" n % 1 != 0 ? 2: 3);\n"
+"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? "
+"1 : n % 1 != 0 ? 2: 3);\n"
"X-Generator: Weblate 5.0.2\n"
#: DB:statistics.statistic_event/title:2015-09-08
@@ -113,7 +113,8 @@ msgstr ""
#: DB:statistics.statistic_event/description:2003-11-10
msgid ""
"A way to search for edits based on several different criteria is released."
-msgstr "Išleista galimybė ieškoti redagavimų pagal kelis skirtingus kriterijus."
+msgstr ""
+"Išleista galimybė ieškoti redagavimų pagal kelis skirtingus kriterijus."
#: DB:statistics.statistic_event/description:2014-11-19
msgid ""
@@ -572,7 +573,7 @@ msgstr ""
#: DB:statistics.statistic_event/title:2007-11-07
msgid "Last.fm"
-msgstr ""
+msgstr "Last.fm"
#: DB:statistics.statistic_event/description:2007-11-07
msgid "Last.fm signs up with MetaBrainz and starts using MusicBrainz data."
@@ -1154,7 +1155,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1186,7 +1187,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1212,14 +1214,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1233,8 +1231,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1256,7 +1256,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1264,39 +1264,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Šalis"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Leidiniai"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Įrašai"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1453,7 +1469,8 @@ msgstr "Formatas"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1473,69 +1490,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr ""
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Žanrai"
@@ -1547,10 +1544,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1573,8 +1566,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1585,20 +1578,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr ""
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "Diskų ID"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1709,30 +1703,26 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "Diskų ID"
-
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
msgstr ""
@@ -1761,10 +1751,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1781,13 +1767,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1806,11 +1787,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1819,27 +1795,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1984,20 +1939,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -2013,7 +1964,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -2024,14 +1976,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2295,10 +2244,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2504,342 +2449,314 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Takeliai"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
@@ -2847,7 +2764,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
@@ -2855,7 +2772,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
@@ -2863,7 +2780,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
@@ -2871,111 +2788,119 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.mr.po b/po/statistics.mr.po
index 861ab91e93d..89c29f36209 100644
--- a/po/statistics.mr.po
+++ b/po/statistics.mr.po
@@ -1114,7 +1114,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1146,7 +1146,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1172,14 +1173,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1193,8 +1190,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1216,7 +1215,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1224,39 +1223,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1411,7 +1426,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1431,69 +1447,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1505,10 +1501,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1531,8 +1523,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1543,20 +1535,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1667,28 +1660,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1717,10 +1706,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1737,13 +1722,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1762,11 +1742,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1775,27 +1750,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1940,20 +1894,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1969,7 +1919,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1980,14 +1931,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2251,10 +2199,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2460,470 +2404,450 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
-msgid "Release groups with no secondary type set"
-msgstr ""
-
#: ../root/statistics/stats.js:774
-msgid "Series with no type set"
-msgstr ""
-
-#: ../root/statistics/stats.js:779
-msgid "Unique tag names"
+msgid "Release groups with no secondary type set"
msgstr ""
#: ../root/statistics/stats.js:784
-msgid "Votes for/against tags"
+msgid "Series with no type set"
msgstr ""
#: ../root/statistics/stats.js:789
-msgid "Votes for/against area tags"
+msgid "Unique tag names"
msgstr ""
#: ../root/statistics/stats.js:794
-msgid "Votes for/against artist tags"
+msgid "Votes for/against tags"
msgstr ""
#: ../root/statistics/stats.js:799
-msgid "Votes for/against instrument tags"
+msgid "Votes for/against area tags"
msgstr ""
#: ../root/statistics/stats.js:804
-msgid "Votes for/against label tags"
+msgid "Votes for/against artist tags"
msgstr ""
#: ../root/statistics/stats.js:809
-msgid "Votes for/against recording tags"
+msgid "Votes for/against instrument tags"
msgstr ""
#: ../root/statistics/stats.js:814
-msgid "Votes for/against release tags"
+msgid "Votes for/against label tags"
msgstr ""
#: ../root/statistics/stats.js:819
-msgid "Votes for/against release group tags"
+msgid "Votes for/against recording tags"
msgstr ""
#: ../root/statistics/stats.js:824
-msgid "Votes for/against series tags"
+msgid "Votes for/against release tags"
msgstr ""
#: ../root/statistics/stats.js:829
-msgid "Votes for/against work tags"
+msgid "Votes for/against release group tags"
msgstr ""
#: ../root/statistics/stats.js:834
-msgid "Tracks"
+msgid "Votes for/against series tags"
msgstr ""
#: ../root/statistics/stats.js:839
-msgid "URLs"
+msgid "Votes for/against work tags"
msgstr ""
#: ../root/statistics/stats.js:844
-msgid "Videos"
+msgid "Tracks"
msgstr ""
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.nb.po b/po/statistics.nb.po
index 0c7b72caeeb..91dca9683a9 100644
--- a/po/statistics.nb.po
+++ b/po/statistics.nb.po
@@ -1121,7 +1121,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "Land"
@@ -1153,7 +1153,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Endringer"
@@ -1179,14 +1180,10 @@ msgstr "Språk/Skrift"
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1200,8 +1197,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1223,7 +1222,7 @@ msgstr "Tidslinjegraf"
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1231,39 +1230,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Land"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artister"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Plateselskap"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "Arrangementer:"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Totalt"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "Ukjent land"
@@ -1418,7 +1433,8 @@ msgstr "Format"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1438,69 +1454,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Artister:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr ""
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Innspilling"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Plateselskaper:"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "Åndsverk:"
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr ""
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Åndsverk"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr ""
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Områder"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr ""
+msgid "Series"
+msgstr "Serie"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr ""
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Instrumenter"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Sjangre"
@@ -1512,10 +1508,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Relasjoner:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1538,8 +1530,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1550,20 +1542,21 @@ msgstr "ISRCer (alle / unike):"
msgid "ISWCs (all / unique):"
msgstr "ISWCer (alle / unike):"
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPIer:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr "IPIer"
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1674,28 +1667,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1724,10 +1713,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1744,13 +1729,8 @@ msgstr "Ingen"
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Innspilling"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1769,11 +1749,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Åndsverk"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1782,27 +1757,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Områder"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Serie"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Instrumenter"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "Arrangementer:"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1947,20 +1901,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Endringer:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1976,7 +1926,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1987,14 +1938,11 @@ msgstr ""
msgid "Yesterday:"
msgstr "I går:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2258,10 +2206,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2467,473 +2411,471 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr "IPIer"
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Vurderinger"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Artistvurderinger"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Innspillingsvurdering"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "Utgivelsesgruppevurderinger"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr "Åndsverkvurderinger"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Spor"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/dag"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "Artists:"
+#~ msgstr "Artister:"
+
+#~ msgid "Labels:"
+#~ msgstr "Plateselskaper:"
+
+#~ msgid "Works:"
+#~ msgstr "Åndsverk:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Relasjoner:"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPIer:"
+
+#~ msgid "Edits:"
+#~ msgstr "Endringer:"
diff --git a/po/statistics.nl.po b/po/statistics.nl.po
index 1e9bc79be04..7425f7d85a6 100644
--- a/po/statistics.nl.po
+++ b/po/statistics.nl.po
@@ -1381,7 +1381,7 @@ msgstr "Klik ergens in de grafiek"
msgid "Controls"
msgstr "Bediening"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "Landen"
@@ -1413,7 +1413,8 @@ msgstr "Redacteurs"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Bewerkingen"
@@ -1439,14 +1440,10 @@ msgstr "Talen/Schriften"
msgid "Legend"
msgstr "Legenda"
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "Gebeurtenissen op MusicBrainz"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "Gebeurtenissen op MusicBrainz:"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1462,8 +1459,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr "Veranderingssnelheidsgrafiek"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1485,7 +1484,7 @@ msgstr "Tijdslijn"
msgid "Zoom:"
msgstr "Vergroten:"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1493,39 +1492,55 @@ msgstr "Vergroten:"
msgid "Last updated: {date}"
msgstr "Het laatst bijgewerkt op {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "Rang"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Land"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artiesten"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Uitgaven"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Platenmaatschappijen"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "Evenementen"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "Plaatsen"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Totaal"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "Onbekend land"
@@ -1682,7 +1697,8 @@ msgstr "Mediumtype"
msgid "% of total releases"
msgstr "% van het totale aantal uitgaven"
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr "Media"
@@ -1702,69 +1718,49 @@ msgstr "Basisgegevens"
msgid "Core Entities"
msgstr "Kernobjecten"
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Artiesten:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr "Uitgavegroepen:"
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Uitgaven:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "Media:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "Uitgavegroepen"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "Opnames:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Opnames"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "Nummers:"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Platenmaatschappijen:"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "Composities:"
+msgid "Tracks)"
+msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr "URL’s:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Composities"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr "Gebieden:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "URL’s"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr "Plaatsen:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Gebieden"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "Series:"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr "Instrumenten:"
+msgid "Series"
+msgstr "Series"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr "Evenementen:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Instrumenten"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Genres"
@@ -1776,10 +1772,6 @@ msgstr "Andere objecten"
msgid "Editors (valid / deleted):"
msgstr "Redacteurs (geldig / verwijderd):"
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Relaties:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1802,9 +1794,9 @@ msgstr "Waarderingen (totaal / verzameld):"
msgid "Identifiers"
msgstr "Identificatoren"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
-msgstr "MBID’s:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
+msgstr "MBID’s"
#: ../root/statistics/Index.js:203
msgid "ISRCs (all / unique):"
@@ -1814,21 +1806,22 @@ msgstr "ISRC’s (totaal / uniek):"
msgid "ISWCs (all / unique):"
msgstr "ISWC’s (totaal / uniek):"
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr "Disc-ID’s:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "Disc-ID’s"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Streepjescodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Streepjescodes"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPI’s:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr "IPI’s"
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
-msgstr "ISNI’s:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr "ISNI’s"
#: ../root/statistics/Index.js:246
msgid "of type Person:"
@@ -1938,29 +1931,25 @@ msgstr "Geen afbeelding van de voorkant:"
msgid "Data Quality"
msgstr "Gegevenskwaliteit"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr "hoge gegevenskwaliteit:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "hoge gegevenskwaliteit"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr "standaard gegevenskwaliteit:"
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr "normale gegevenskwaliteit:"
+msgid "Default Data Quality"
+msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "onbekende gegevenskwaliteit:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "normale gegevenskwaliteit"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr "lage gegevenskwaliteit:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "Kwaliteit van de gegevens onbekend"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "Disc-ID’s"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr "lage gegevenskwaliteit"
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1988,10 +1977,6 @@ msgstr "Media zonder disc-ID’s:"
msgid "Mediums with at least one disc ID:"
msgstr "Media met ten minste één disc-ID:"
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "Uitgavegroepen"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "Primaire types"
@@ -2008,14 +1993,9 @@ msgstr "Geen"
msgid "Secondary Types"
msgstr "Secundaire types"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Opnames"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
-msgstr "Video’s:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr "Video’s"
#: ../root/statistics/Index.js:699
msgctxt "recording"
@@ -2033,11 +2013,6 @@ msgstr "Met ISRC’s"
msgid "Types"
msgstr "Types"
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Composities"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr "Met ISWC’s"
@@ -2046,27 +2021,6 @@ msgstr "Met ISWC’s"
msgid "Attributes"
msgstr "Eigenschappen"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Gebieden"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "Plaatsen"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Series"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Instrumenten"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "Evenementen"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr "Waarvan uitgaven"
@@ -2211,21 +2165,17 @@ msgstr "inactief:"
msgid "Editors (deleted):"
msgstr "Redacteurs (verwijderd):"
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Bewerkingen:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "open:"
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "doorgevoerd:"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "weggestemd:"
+msgid "Voted down"
+msgstr ""
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -2240,8 +2190,9 @@ msgid "Failed (internal error):"
msgstr "mislukt (interne fout):"
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "geannuleerd:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -2251,14 +2202,11 @@ msgstr "afgelopen 7 dagen:"
msgid "Yesterday:"
msgstr "gisteren:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Stemmen"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "Stemmen:"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2527,10 +2475,6 @@ msgstr "Personen"
msgid "Artist Credits"
msgstr "Artiestvermeldingen"
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Streepjescodes"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr "Cd-beginnetjes (huidig)"
@@ -2736,430 +2680,410 @@ msgid "Editors who voted in the last week"
msgstr "Redacteurs die afgelopen week hebben gestemd"
#: ../root/statistics/stats.js:439
+msgid "Events with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:444
msgid "Events with no type set"
msgstr "Evenementen zonder ingesteld type"
-#: ../root/statistics/stats.js:454
+#: ../root/statistics/stats.js:459
msgid "Instruments with no type set"
msgstr "Instrumenten zonder types"
-#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr "IPI’s"
-
-#: ../root/statistics/stats.js:464
+#: ../root/statistics/stats.js:469
msgid "Artist IPIs"
msgstr "Artiest-IPI’s"
-#: ../root/statistics/stats.js:469
+#: ../root/statistics/stats.js:474
msgid "Label IPIs"
msgstr "IPI’s van platenmaatschappijen"
-#: ../root/statistics/stats.js:474
-msgid "ISNIs"
-msgstr "ISNI’s"
-
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr "ISNI’s van artiesten"
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr "ISNI’s van platenmaatschappijen"
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr "ISRC’s (uniek)"
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr "ISRC’s (elk gebruik)"
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr "ISWC’s (uniek)"
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr "ISWC’s (elk gebruik)"
-#: ../root/statistics/stats.js:514
+#: ../root/statistics/stats.js:519
msgid "Labels with no country set"
msgstr "Platenmaatschappijen zonder land"
-#: ../root/statistics/stats.js:519
+#: ../root/statistics/stats.js:524
msgid "Labels with no type set"
msgstr "Platenmaatschappijen zonder ingesteld type"
-#: ../root/statistics/stats.js:524
-msgid "MBIDs"
-msgstr "MBID’s"
-
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr "Media waarvan het type niet is ingesteld"
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr "Media met disc-ID’s"
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr "Plaatsen zonder ingesteld type"
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
-msgstr "Standaard (normale en onbekende) gegevenskwaliteit"
+msgid "Places with no country set"
+msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "hoge gegevenskwaliteit"
+msgid "Places with no type set"
+msgstr "Plaatsen zonder ingesteld type"
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr "lage gegevenskwaliteit"
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "normale gegevenskwaliteit"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "Kwaliteit van de gegevens onbekend"
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr "Standaard (normale en onbekende) gegevenskwaliteit"
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr "Objecten met waarderingen"
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr "Artiesten met waarderingen"
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr "Platenmaatschappijen met waarderingen"
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr "Plaatsen met waarderingen"
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Waarderingen"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Waarderingen van artiesten"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr "Waarderingen van platenmaatschappijen"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr "Waarderingen van plaatsen"
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Waarderingen van opnames"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "Waarderingen van uitgavegroepen"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr "Compositiewaarderingen"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr "Opnames met waarderingen"
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr "Uitgavegroepen met waarderingen"
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr "Composities met waarderingen"
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr "Opnames met ISRC’s"
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr "Losse opnames (zonder uitgave)"
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr "Uitgaven waarvan het land niet is ingesteld"
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr "Uitgaven met afbeeldingen van het CAA"
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr "Uitgaven zonder afbeeldingen"
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr "Uitgaven met een medium zonder ingesteld mediumtype"
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr "Uitgaven met afbeelding en met een medium zonder ingesteld mediumtype"
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr "Uitgaven met afbeeldingen"
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr "Uitgaven met disc-ID’s"
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr "Uitgaven waarvoor geen taal is ingesteld"
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr "Uitgaven die niet aan diverse artiesten zijn toegeschreven"
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr "Uitgaven zonder ingestelde verpakking"
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr "Uitgaven waarvoor geen schrift is ingesteld"
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr "Uitgaven zonder ingestelde status"
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr "Uitgaven zonder ingestelde status maar met afbeelding"
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr "Uitgaven met afbeelding in uitgavegroepen zonder ingesteld type"
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr "Uitgaven die aan diverse artiesten zijn toegeschreven"
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr "Uitgavegroepen met automatisch afgeleide hoesafbeeldingen"
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr "Uitgavegroepen met door gebruikers ingestelde hoesafbeeldingen"
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr "Series zonder ingesteld type"
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr "Unieke etiketnamen"
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr "Stemmen voor/tegen etiketten"
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr "Stemmen voor/tegen etiketten voor gebieden"
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr "Stemmen voor/tegen etiketten voor artiesten"
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr "Stemmen voor/tegen etiketten voor instrumenten"
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr "Stemmen voor/tegen etiketten voor platenmaatschappijen"
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr "Stemmen voor/tegen etiketten voor opnames"
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr "Stemmen voor/tegen etiketten voor uitgaven"
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr "Stemmen voor/tegen etiketten voor uitgavegroepen"
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr "Stemmen voor/tegen etiketten voor series"
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr "Stemmen voor/tegen etiketten voor composities"
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Nummers"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr "URL’s"
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr "Video’s"
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr "Onthoudingen"
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr "Goedkeuringen"
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr "Geen stemmen"
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr "Stemmen per dag"
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr "Stemmen per week"
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr "Voorstemmen"
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr "Composities zonder eigenschappen"
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr "Composities met ISWC’s"
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr "Composities waarvoor geen taal is ingesteld"
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr "Composities zonder ingesteld type"
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/dag"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] "Uitgaven met één disc-id"
msgstr[1] "Uitgaven met {n} disc-ID’s"
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] "Media met 1 disc-id"
msgstr[1] "Media met {n} disc-ID’s"
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] "Opnames met één uitgave"
msgstr[1] "Opnames met {n} uitgaven"
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] "Uitgavegroepen met 1 uitgave"
msgstr[1] "Uitgavegroepen met {n} uitgaven"
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr "Gebieden van het type ‘{type}’"
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr "artiesten uit {country}"
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr "platenmaatschappijen uit {country}"
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr "uitgaven uit {country}"
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr "Bewerkingen van het type ‘{type}’"
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr "Evenementen van het type ‘{type}’"
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr "uitgaven met de naam {name}"
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr "{name} media"
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr "Uitgaven met een medium van het type ‘{format}’ met afbeelding"
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr "Instrumenten van het type ‘{type}’"
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr "Platenmaatschappijen van het type ‘{type}’"
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "uitgaven in het {language}"
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr "Composities in het {language}"
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr "Uitgaven met de verpakking ‘{packaging}’"
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr "Plaatsen van het type ‘{type}’"
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr "Relaties tussen {first_entity_type} en {second_entity_type}"
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
@@ -3167,7 +3091,7 @@ msgstr ""
"Relaties van het type {relationship_type_name} tussen "
"{first_entity_type_name} en {second_entity_type_name} "
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
@@ -3175,38 +3099,138 @@ msgstr ""
"Relaties van het type {relationship_type_name} en onderliggende relatietypes "
"tussen {first_entity_type_name} en {second_entity_type_name} "
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr "Uitgavegroepen van het type ‘{type}’"
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr "Uitgaven in groepen van het type ‘{type}’ met afbeelding"
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr "uitgaven in het {script} schrift"
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr "Series van het type ‘{type}’"
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr "Uitgaven met de status ‘{status}’"
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr "Uitgaven met de status ‘{status}’ met afbeelding"
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr "Composities met de eigenschap ‘{attribute}’"
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr "Composities van het type ‘{type}’"
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr "Op de tijdslijn bekijken"
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "Gebeurtenissen op MusicBrainz:"
+
+#~ msgid "Artists:"
+#~ msgstr "Artiesten:"
+
+#~ msgid "Release Groups:"
+#~ msgstr "Uitgavegroepen:"
+
+#~ msgid "Releases:"
+#~ msgstr "Uitgaven:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Media:"
+
+#~ msgid "Recordings:"
+#~ msgstr "Opnames:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Nummers:"
+
+#~ msgid "Labels:"
+#~ msgstr "Platenmaatschappijen:"
+
+#~ msgid "Works:"
+#~ msgstr "Composities:"
+
+#~ msgid "URLs:"
+#~ msgstr "URL’s:"
+
+#~ msgid "Areas:"
+#~ msgstr "Gebieden:"
+
+#~ msgid "Places:"
+#~ msgstr "Plaatsen:"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "Series:"
+
+#~ msgid "Instruments:"
+#~ msgstr "Instrumenten:"
+
+#~ msgid "Events:"
+#~ msgstr "Evenementen:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Relaties:"
+
+#~ msgid "MBIDs:"
+#~ msgstr "MBID’s:"
+
+#~ msgid "Disc IDs:"
+#~ msgstr "Disc-ID’s:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Streepjescodes:"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPI’s:"
+
+#~ msgid "ISNIs:"
+#~ msgstr "ISNI’s:"
+
+#~ msgid "High Data Quality:"
+#~ msgstr "hoge gegevenskwaliteit:"
+
+#~ msgid "Default Data Quality:"
+#~ msgstr "standaard gegevenskwaliteit:"
+
+#~ msgid "Normal Data Quality:"
+#~ msgstr "normale gegevenskwaliteit:"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "onbekende gegevenskwaliteit:"
+
+#~ msgid "Low Data Quality:"
+#~ msgstr "lage gegevenskwaliteit:"
+
+#~ msgid "Videos:"
+#~ msgstr "Video’s:"
+
+#~ msgid "Edits:"
+#~ msgstr "Bewerkingen:"
+
+#~ msgid "Open:"
+#~ msgstr "open:"
+
+#~ msgid "Applied:"
+#~ msgstr "doorgevoerd:"
+
+#~ msgid "Voted down:"
+#~ msgstr "weggestemd:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "geannuleerd:"
+
+#~ msgid "Votes:"
+#~ msgstr "Stemmen:"
diff --git a/po/statistics.oc.po b/po/statistics.oc.po
index 2af0a088072..fe4c66dc526 100644
--- a/po/statistics.oc.po
+++ b/po/statistics.oc.po
@@ -1177,7 +1177,7 @@ msgstr "Clicatz per deseleccionar"
msgid "Controls"
msgstr "Contraròtles"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "Païses"
@@ -1209,7 +1209,8 @@ msgstr "Editors"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Modificacions"
@@ -1235,14 +1236,10 @@ msgstr "Lengas/sistèmas d'escritura"
msgid "Legend"
msgstr "Legenda"
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "Eveniments MusicBrainz"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "Eveniments MusicBrainz :"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1256,8 +1253,10 @@ msgstr "Taus de modificacion (articles mejans/jorn vs jorn)"
msgid "Rate of Change Graph"
msgstr "Grafic del taus de modificacion"
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1279,7 +1278,7 @@ msgstr "Grafic cronologic"
msgid "Zoom:"
msgstr "Zoom :"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1287,39 +1286,55 @@ msgstr "Zoom :"
msgid "Last updated: {date}"
msgstr "Darrièra mesa a jorn : {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "Reng"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "País"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artistas"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Parucions"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Labèls"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "Eveniments"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "Luòcs"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Total"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "País desconegut"
@@ -1476,7 +1491,8 @@ msgstr "Format"
msgid "% of total releases"
msgstr "% del total de las parucions"
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr "Supòrts"
@@ -1496,69 +1512,49 @@ msgstr "Metadonadas de basa"
msgid "Core Entities"
msgstr "Entitats principalas"
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Artistas :"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr "Gropes de parucion :"
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Parucions :"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "Supòrts :"
-
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "Enregistraments :"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Enregistraments"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "Pistas :"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Labèls :"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "Òbras :"
+msgid "Tracks)"
+msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr "URLs :"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Òbras"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr "Regions :"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr "Luòcs :"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Regions"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "Serias :"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr "Instruments :"
+msgid "Series"
+msgstr "Serias"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr "Eveniments :"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Instruments"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1570,10 +1566,6 @@ msgstr "Autras entitats"
msgid "Editors (valid / deleted):"
msgstr "Editors (valids / suprimits) :"
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Relacions :"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1596,9 +1588,9 @@ msgstr "Avaloracions (brut / agregat) : "
msgid "Identifiers"
msgstr "Identificants"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
-msgstr "MBID :"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
+msgstr ""
#: ../root/statistics/Index.js:203
msgid "ISRCs (all / unique):"
@@ -1608,21 +1600,22 @@ msgstr "ISRC (totes / unic) :"
msgid "ISWCs (all / unique):"
msgstr "ISWC (totes / unic) :"
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr "IDs de disc :"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "ID de disc"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Còdes barras :"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Còdes barras"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPI :"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr "IPI"
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
-msgstr "ISNI :"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr "ISNI"
#: ../root/statistics/Index.js:246
msgid "of type Person:"
@@ -1732,29 +1725,25 @@ msgstr "Pas d'illustracion de tampa :"
msgid "Data Quality"
msgstr "Qualitat de las donadas"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr "Donadas de nauta qualitat :"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "Donadas de nauta qualitat"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr "Qualitat per defaut de las donadas :"
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr "Qualitat de donadas normala :"
+msgid "Default Data Quality"
+msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "Qualitat de donadas desconeguda :"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "Qualitat de donadas normala"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr "Donadas de marrida qualitat :"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "Qualitat de donadas desconeguda"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "ID de disc"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr "Donadas de marrida qualitat"
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1782,10 +1771,6 @@ msgstr "Supòrt sens ID de disc :"
msgid "Mediums with at least one disc ID:"
msgstr "Supòrt amb al moins un ID de disc :"
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "Gropes de parucion :"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "Tipes principals"
@@ -1802,14 +1787,9 @@ msgstr "Pas cap"
msgid "Secondary Types"
msgstr "Tipes segondaris"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Enregistraments"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
-msgstr "Vidèos :"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr ""
#: ../root/statistics/Index.js:699
msgctxt "recording"
@@ -1827,11 +1807,6 @@ msgstr ""
msgid "Types"
msgstr "Tipes"
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Òbras"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1840,27 +1815,6 @@ msgstr ""
msgid "Attributes"
msgstr "Atributs"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Regions"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "Luòcs"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Serias"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Instruments"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "Eveniments"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -2006,21 +1960,17 @@ msgstr "inactiu :"
msgid "Editors (deleted):"
msgstr "Editors (suprimits) :"
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Modificacions :"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "Dobrir :"
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "Aplicat :"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "Votat contra :"
+msgid "Voted down"
+msgstr ""
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -2035,8 +1985,9 @@ msgid "Failed (internal error):"
msgstr "Fracàs (error intèrna) :"
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Anullat :"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -2046,14 +1997,11 @@ msgstr "7 darrièrs jorns :"
msgid "Yesterday:"
msgstr "Ièr :"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Vòtes"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "Vòtes :"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2321,10 +2269,6 @@ msgstr "Personas"
msgid "Artist Credits"
msgstr "Crédits d'artistas"
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Còdes barras"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2530,473 +2474,553 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr "IPI"
+msgid "Instruments with no type set"
+msgstr ""
-#: ../root/statistics/stats.js:464
+#: ../root/statistics/stats.js:469
msgid "Artist IPIs"
msgstr "IPI d'artista"
-#: ../root/statistics/stats.js:469
+#: ../root/statistics/stats.js:474
msgid "Label IPIs"
msgstr "IPI dels labèls"
-#: ../root/statistics/stats.js:474
-msgid "ISNIs"
-msgstr "ISNI"
-
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr "ISNI d'artistas"
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr "INSI dels labèls"
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
+#: ../root/statistics/stats.js:519
msgid "Labels with no country set"
msgstr "Labèls sens país d'indicat"
-#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr "Supòrt sens format de definit"
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr "Supòrt amb ID de disc"
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "Donadas de nauta qualitat"
+msgid "Places with no type set"
+msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr "Donadas de marrida qualitat"
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "Qualitat de donadas normala"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "Qualitat de donadas desconeguda"
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Avaloracions"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr "Enregistraments amb ISRC"
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr "Parucions sens país de determinat"
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr "Parucions amb de las illustracions CAA"
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr "Parucions sens illustracion"
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr "Parucions amb illustracion"
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr "Parucions amb ID de disc"
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr "Parucions sens langue de determinada"
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr "Parucions sens sistèma d'escritura de determinat"
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Pistas"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr "Abstencions"
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr "Pas de vòte"
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr "Vòtes per jorn"
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr "Vòtes per setmana"
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr "Vòtes òc"
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/jorn"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] "Parucions amb 1 ID de disc"
msgstr[1] "Parucions amb {n} ID de disc"
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] "Supòrt amb 1 ID de disc"
msgstr[1] "Supòrt amb {n} ID de disc"
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] "Enregistraments amb 1 parucion"
msgstr[1] "Enregistraments amb {n} parucions"
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] "Gropes de parucion amb 1 parucion"
msgstr[1] "Gropes de parucion amb {n} parucion"
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr "{country} artistas"
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr "{country} labèls"
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr "Parucions de {country}"
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr "Parucions {name}"
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr "Supòrts {name}"
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "Parucions de {language}"
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr "Parucions {script}"
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "Eveniments MusicBrainz :"
+
+#~ msgid "Artists:"
+#~ msgstr "Artistas :"
+
+#~ msgid "Release Groups:"
+#~ msgstr "Gropes de parucion :"
+
+#~ msgid "Releases:"
+#~ msgstr "Parucions :"
+
+#~ msgid "Mediums:"
+#~ msgstr "Supòrts :"
+
+#~ msgid "Recordings:"
+#~ msgstr "Enregistraments :"
+
+#~ msgid "Tracks:"
+#~ msgstr "Pistas :"
+
+#~ msgid "Labels:"
+#~ msgstr "Labèls :"
+
+#~ msgid "Works:"
+#~ msgstr "Òbras :"
+
+#~ msgid "URLs:"
+#~ msgstr "URLs :"
+
+#~ msgid "Areas:"
+#~ msgstr "Regions :"
+
+#~ msgid "Places:"
+#~ msgstr "Luòcs :"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "Serias :"
+
+#~ msgid "Instruments:"
+#~ msgstr "Instruments :"
+
+#~ msgid "Events:"
+#~ msgstr "Eveniments :"
+
+#~ msgid "Relationships:"
+#~ msgstr "Relacions :"
+
+#~ msgid "MBIDs:"
+#~ msgstr "MBID :"
+
+#~ msgid "Disc IDs:"
+#~ msgstr "IDs de disc :"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Còdes barras :"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPI :"
+
+#~ msgid "ISNIs:"
+#~ msgstr "ISNI :"
+
+#~ msgid "High Data Quality:"
+#~ msgstr "Donadas de nauta qualitat :"
+
+#~ msgid "Default Data Quality:"
+#~ msgstr "Qualitat per defaut de las donadas :"
+
+#~ msgid "Normal Data Quality:"
+#~ msgstr "Qualitat de donadas normala :"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "Qualitat de donadas desconeguda :"
+
+#~ msgid "Low Data Quality:"
+#~ msgstr "Donadas de marrida qualitat :"
+
+#~ msgid "Videos:"
+#~ msgstr "Vidèos :"
+
+#~ msgid "Edits:"
+#~ msgstr "Modificacions :"
+
+#~ msgid "Open:"
+#~ msgstr "Dobrir :"
+
+#~ msgid "Applied:"
+#~ msgstr "Aplicat :"
+
+#~ msgid "Voted down:"
+#~ msgstr "Votat contra :"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Anullat :"
+
+#~ msgid "Votes:"
+#~ msgstr "Vòtes :"
diff --git a/po/statistics.pa.po b/po/statistics.pa.po
index 3cfce360479..b1f4087f3d3 100644
--- a/po/statistics.pa.po
+++ b/po/statistics.pa.po
@@ -1114,7 +1114,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1146,7 +1146,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1172,14 +1173,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1193,8 +1190,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1216,7 +1215,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1224,39 +1223,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1411,7 +1426,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1431,69 +1447,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1505,10 +1501,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1531,8 +1523,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1543,20 +1535,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1667,28 +1660,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1717,10 +1706,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1737,13 +1722,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1762,11 +1742,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1775,27 +1750,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1940,20 +1894,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1969,7 +1919,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1980,14 +1931,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2251,10 +2199,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2460,470 +2404,450 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
-msgid "Release groups with no secondary type set"
-msgstr ""
-
#: ../root/statistics/stats.js:774
-msgid "Series with no type set"
-msgstr ""
-
-#: ../root/statistics/stats.js:779
-msgid "Unique tag names"
+msgid "Release groups with no secondary type set"
msgstr ""
#: ../root/statistics/stats.js:784
-msgid "Votes for/against tags"
+msgid "Series with no type set"
msgstr ""
#: ../root/statistics/stats.js:789
-msgid "Votes for/against area tags"
+msgid "Unique tag names"
msgstr ""
#: ../root/statistics/stats.js:794
-msgid "Votes for/against artist tags"
+msgid "Votes for/against tags"
msgstr ""
#: ../root/statistics/stats.js:799
-msgid "Votes for/against instrument tags"
+msgid "Votes for/against area tags"
msgstr ""
#: ../root/statistics/stats.js:804
-msgid "Votes for/against label tags"
+msgid "Votes for/against artist tags"
msgstr ""
#: ../root/statistics/stats.js:809
-msgid "Votes for/against recording tags"
+msgid "Votes for/against instrument tags"
msgstr ""
#: ../root/statistics/stats.js:814
-msgid "Votes for/against release tags"
+msgid "Votes for/against label tags"
msgstr ""
#: ../root/statistics/stats.js:819
-msgid "Votes for/against release group tags"
+msgid "Votes for/against recording tags"
msgstr ""
#: ../root/statistics/stats.js:824
-msgid "Votes for/against series tags"
+msgid "Votes for/against release tags"
msgstr ""
#: ../root/statistics/stats.js:829
-msgid "Votes for/against work tags"
+msgid "Votes for/against release group tags"
msgstr ""
#: ../root/statistics/stats.js:834
-msgid "Tracks"
+msgid "Votes for/against series tags"
msgstr ""
#: ../root/statistics/stats.js:839
-msgid "URLs"
+msgid "Votes for/against work tags"
msgstr ""
#: ../root/statistics/stats.js:844
-msgid "Videos"
+msgid "Tracks"
msgstr ""
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.pl.po b/po/statistics.pl.po
index 05f7a977d85..9aaaea3d3af 100644
--- a/po/statistics.pl.po
+++ b/po/statistics.pl.po
@@ -20,9 +20,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
-"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
-"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
+"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
+"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#: DB:statistics.statistic_event/title:2015-09-08
msgid "\"Do Not Cluster\" guideline dropped"
@@ -1124,7 +1124,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1156,7 +1156,8 @@ msgstr "Edytorzy"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Edycje"
@@ -1182,14 +1183,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1203,8 +1200,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1226,7 +1225,7 @@ msgstr "Wykres z osią czasu"
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1234,39 +1233,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr "Ostatnia aktualizacja: {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Kraj"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artyści"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Wydania"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Wytwórnie"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "Wydarzenia"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "Miejsca"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Razem"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1423,7 +1438,8 @@ msgstr "Format"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr "Nośniki"
@@ -1443,69 +1459,49 @@ msgstr "Podstawowe metadane"
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Artyści:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Wydania:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "Nośnik:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "Grupy Wydań"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "Nagrania:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Nagrania"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Wytwórnie:"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "Prace:"
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr ""
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Prace"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr ""
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "Adresy URL"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr ""
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Rejony"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "Serie:"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr ""
+msgid "Series"
+msgstr "Serie"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr ""
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Instrumenty"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Gatunki"
@@ -1517,10 +1513,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Relacje:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1543,8 +1535,8 @@ msgstr "Oceny (surowe / zagregowane):"
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1555,20 +1547,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr "Disc IDy:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "Disc IDy"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Kody kreskowe:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Kody kreskowe"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr "IPIy:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1679,30 +1672,26 @@ msgstr ""
msgid "Data Quality"
msgstr "Jakość Danych"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "Disc IDy"
-
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
msgstr "Wydania bez Disc ID:"
@@ -1731,10 +1720,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "Grupy Wydań"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1751,13 +1736,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Nagrania"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1776,11 +1756,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Prace"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1789,27 +1764,6 @@ msgstr ""
msgid "Attributes"
msgstr "Atrybuty"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Rejony"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "Miejsca"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Serie"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Instrumenty"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "Wydarzenia"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1954,21 +1908,17 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Edycje:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "Otwarte:"
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "Zatwierdzono:"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "Odrzucono:"
+msgid "Voted down"
+msgstr ""
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -1983,8 +1933,9 @@ msgid "Failed (internal error):"
msgstr "Nieudane (błąd wewnętrzny):"
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Anulowane:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -1994,14 +1945,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Głosy"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "Głosy:"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2265,10 +2213,6 @@ msgstr "Osoby"
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Kody kreskowe"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2474,342 +2418,314 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Oceny"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Oceny Artystów"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr "Oceny wytwórni"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Oceny nagrań"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "Oceny grupy wydań"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr "Oceny prac"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Utwory"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr "Adresy URL"
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
@@ -2817,7 +2733,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
@@ -2825,7 +2741,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
@@ -2833,7 +2749,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
@@ -2841,114 +2757,174 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "{language} wydania"
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "Artists:"
+#~ msgstr "Artyści:"
+
+#~ msgid "Releases:"
+#~ msgstr "Wydania:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Nośnik:"
+
+#~ msgid "Recordings:"
+#~ msgstr "Nagrania:"
+
+#~ msgid "Labels:"
+#~ msgstr "Wytwórnie:"
+
+#~ msgid "Works:"
+#~ msgstr "Prace:"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "Serie:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Relacje:"
+
+#~ msgid "Disc IDs:"
+#~ msgstr "Disc IDy:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Kody kreskowe:"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPIy:"
+
+#~ msgid "Edits:"
+#~ msgstr "Edycje:"
+
+#~ msgid "Open:"
+#~ msgstr "Otwarte:"
+
+#~ msgid "Applied:"
+#~ msgstr "Zatwierdzono:"
+
+#~ msgid "Voted down:"
+#~ msgstr "Odrzucono:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Anulowane:"
+
+#~ msgid "Votes:"
+#~ msgstr "Głosy:"
diff --git a/po/statistics.pot b/po/statistics.pot
index 377ee638970..ebba79e7462 100644
--- a/po/statistics.pot
+++ b/po/statistics.pot
@@ -1129,7 +1129,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1161,7 +1161,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1187,14 +1188,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1208,8 +1205,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1231,7 +1230,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1239,39 +1238,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1426,7 +1441,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1446,69 +1462,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1520,10 +1516,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1546,8 +1538,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1558,20 +1550,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1682,28 +1675,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1732,10 +1721,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1752,13 +1737,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1777,11 +1757,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1790,27 +1765,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1955,20 +1909,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1984,7 +1934,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1995,14 +1946,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2266,10 +2214,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2475,470 +2419,450 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
-msgid "Release groups with no secondary type set"
-msgstr ""
-
#: ../root/statistics/stats.js:774
-msgid "Series with no type set"
-msgstr ""
-
-#: ../root/statistics/stats.js:779
-msgid "Unique tag names"
+msgid "Release groups with no secondary type set"
msgstr ""
#: ../root/statistics/stats.js:784
-msgid "Votes for/against tags"
+msgid "Series with no type set"
msgstr ""
#: ../root/statistics/stats.js:789
-msgid "Votes for/against area tags"
+msgid "Unique tag names"
msgstr ""
#: ../root/statistics/stats.js:794
-msgid "Votes for/against artist tags"
+msgid "Votes for/against tags"
msgstr ""
#: ../root/statistics/stats.js:799
-msgid "Votes for/against instrument tags"
+msgid "Votes for/against area tags"
msgstr ""
#: ../root/statistics/stats.js:804
-msgid "Votes for/against label tags"
+msgid "Votes for/against artist tags"
msgstr ""
#: ../root/statistics/stats.js:809
-msgid "Votes for/against recording tags"
+msgid "Votes for/against instrument tags"
msgstr ""
#: ../root/statistics/stats.js:814
-msgid "Votes for/against release tags"
+msgid "Votes for/against label tags"
msgstr ""
#: ../root/statistics/stats.js:819
-msgid "Votes for/against release group tags"
+msgid "Votes for/against recording tags"
msgstr ""
#: ../root/statistics/stats.js:824
-msgid "Votes for/against series tags"
+msgid "Votes for/against release tags"
msgstr ""
#: ../root/statistics/stats.js:829
-msgid "Votes for/against work tags"
+msgid "Votes for/against release group tags"
msgstr ""
#: ../root/statistics/stats.js:834
-msgid "Tracks"
+msgid "Votes for/against series tags"
msgstr ""
#: ../root/statistics/stats.js:839
-msgid "URLs"
+msgid "Votes for/against work tags"
msgstr ""
#: ../root/statistics/stats.js:844
-msgid "Videos"
+msgid "Tracks"
msgstr ""
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.pt.po b/po/statistics.pt.po
index 0b01db047ed..7131b064950 100644
--- a/po/statistics.pt.po
+++ b/po/statistics.pt.po
@@ -1115,7 +1115,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1147,7 +1147,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1173,14 +1174,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1194,8 +1191,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1217,7 +1216,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1225,39 +1224,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artistas"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1413,7 +1428,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1433,69 +1449,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1507,10 +1503,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1533,8 +1525,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1545,20 +1537,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1669,28 +1662,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1720,10 +1709,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1740,13 +1725,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1765,11 +1745,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1778,27 +1753,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1943,20 +1897,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1972,7 +1922,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1983,14 +1934,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2254,10 +2202,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2463,474 +2407,454 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Faixas"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.ro.po b/po/statistics.ro.po
index 4d1eaa52f43..c1f34b56d76 100644
--- a/po/statistics.ro.po
+++ b/po/statistics.ro.po
@@ -1116,7 +1116,7 @@ msgstr "Click pentru deselectare"
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1148,7 +1148,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1174,14 +1175,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1195,8 +1192,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1218,7 +1217,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1226,39 +1225,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artiști"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1414,7 +1429,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1434,69 +1450,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Artiști:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr ""
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1508,10 +1504,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1534,8 +1526,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1546,20 +1538,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Coduri de bare:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Coduri de bare"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1670,28 +1663,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1721,10 +1710,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1741,13 +1726,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1766,11 +1746,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1779,27 +1754,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1944,20 +1898,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1973,8 +1923,9 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Anulate:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -1984,14 +1935,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2255,10 +2203,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Coduri de bare"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2464,477 +2408,466 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Piese"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "Artists:"
+#~ msgstr "Artiști:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Coduri de bare:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Anulate:"
diff --git a/po/statistics.ru.po b/po/statistics.ru.po
index d19aa02ddc2..4ac565dc469 100644
--- a/po/statistics.ru.po
+++ b/po/statistics.ru.po
@@ -25,9 +25,9 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
-"%100>=11 && n%100<=14)? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
+"(n%100>=11 && n%100<=14)? 2 : 3);\n"
#: DB:statistics.statistic_event/title:2015-09-08
msgid "\"Do Not Cluster\" guideline dropped"
@@ -1146,7 +1146,7 @@ msgstr "Нажмите, чтобы отменить выбор"
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "Страны"
@@ -1178,7 +1178,8 @@ msgstr "Редакторы"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Правки"
@@ -1204,14 +1205,10 @@ msgstr "Языки/Написание"
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "События MusicBrainz"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "События MusicBrainz:"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1225,8 +1222,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1248,7 +1247,7 @@ msgstr ""
msgid "Zoom:"
msgstr "Зум:"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1256,39 +1255,55 @@ msgstr "Зум:"
msgid "Last updated: {date}"
msgstr "Последнее обновление: {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "Ранг"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Страна"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Исполнители"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Релизы"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Лэйблы"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "События"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "Места"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Итого"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "Неизвестная страна"
@@ -1445,7 +1460,8 @@ msgstr "Format"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1465,69 +1481,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Исполнители:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr "Релиз-группы:"
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Релизы:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "Записи:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Записи"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "Треки:"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr "URL-ссылки:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Работы"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr ""
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "URL-адрес"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr "Места:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Области"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr "Инструменты:"
+msgid "Series"
+msgstr "Серия"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr "События:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Инструменты"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Жанры"
@@ -1539,10 +1535,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr "Редакторы (действующие / удалённые):"
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1565,8 +1557,8 @@ msgstr ""
msgid "Identifiers"
msgstr "Идентификаторы"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1577,21 +1569,22 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr ""
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "ID диска"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Штрих-коды:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Штрих-коды"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
-msgstr "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr "ISNIs"
#: ../root/statistics/Index.js:246
msgid "of type Person:"
@@ -1701,29 +1694,25 @@ msgstr "Нет передней обложки:"
msgid "Data Quality"
msgstr "Качество данных"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr ""
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "Высокое качество"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "Неизвестное качество данных:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "Нормальное качество"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr ""
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "Неизвестное качество данных"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "ID диска"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr "Низкое качество"
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1753,10 +1742,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "Основные типы"
@@ -1773,14 +1758,9 @@ msgstr "Нет"
msgid "Secondary Types"
msgstr "Вторичные типы"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Записи"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
-msgstr "Видео:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr ""
#: ../root/statistics/Index.js:699
msgctxt "recording"
@@ -1798,11 +1778,6 @@ msgstr ""
msgid "Types"
msgstr "Типы"
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Работы"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1811,27 +1786,6 @@ msgstr ""
msgid "Attributes"
msgstr "Атрибуты"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Области"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "Места"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Серия"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Инструменты"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "События"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1976,20 +1930,16 @@ msgstr "неактивные:"
msgid "Editors (deleted):"
msgstr "Редакторы (удалённые):"
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Правки:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "Открыть:"
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "Одобренные:"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -2005,8 +1955,9 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Отменено:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -2016,14 +1967,11 @@ msgstr "Последние 7 дней:"
msgid "Yesterday:"
msgstr "Вчера:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Голоса"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "Голоса:"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2287,10 +2235,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Штрих-коды"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2496,342 +2440,314 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
+msgid "Instruments with no type set"
msgstr ""
-#: ../root/statistics/stats.js:464
+#: ../root/statistics/stats.js:469
msgid "Artist IPIs"
msgstr ""
-#: ../root/statistics/stats.js:469
+#: ../root/statistics/stats.js:474
msgid "Label IPIs"
msgstr "Коды IPI"
-#: ../root/statistics/stats.js:474
-msgid "ISNIs"
-msgstr "ISNIs"
-
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr "Коды ISNI"
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "Высокое качество"
+msgid "Places with no type set"
+msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr "Низкое качество"
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "Нормальное качество"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "Неизвестное качество данных"
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Рейтинги"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Рейтинги исполнителей"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Рейтинги Записи"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr "Релизы без обложки"
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Треки"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr "URL-адрес"
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr "Нет голосов"
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr "Голоса за день"
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr "Голоса за неделю"
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/day"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
@@ -2839,7 +2755,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
@@ -2847,7 +2763,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
@@ -2855,7 +2771,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
@@ -2863,114 +2779,179 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr "{country} артист"
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr "{country} лейбл"
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr "{country} релиз"
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr "{name} релиз"
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "{language} релиз"
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr "{script} релиз"
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "События MusicBrainz:"
+
+#~ msgid "Artists:"
+#~ msgstr "Исполнители:"
+
+#~ msgid "Release Groups:"
+#~ msgstr "Релиз-группы:"
+
+#~ msgid "Releases:"
+#~ msgstr "Релизы:"
+
+#~ msgid "Recordings:"
+#~ msgstr "Записи:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Треки:"
+
+#~ msgid "URLs:"
+#~ msgstr "URL-ссылки:"
+
+#~ msgid "Places:"
+#~ msgstr "Места:"
+
+#~ msgid "Instruments:"
+#~ msgstr "Инструменты:"
+
+#~ msgid "Events:"
+#~ msgstr "События:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Штрих-коды:"
+
+#~ msgid "ISNIs:"
+#~ msgstr "ISNIs:"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "Неизвестное качество данных:"
+
+#~ msgid "Videos:"
+#~ msgstr "Видео:"
+
+#~ msgid "Edits:"
+#~ msgstr "Правки:"
+
+#~ msgid "Open:"
+#~ msgstr "Открыть:"
+
+#~ msgid "Applied:"
+#~ msgstr "Одобренные:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Отменено:"
+
+#~ msgid "Votes:"
+#~ msgstr "Голоса:"
diff --git a/po/statistics.sk.po b/po/statistics.sk.po
index d447dbbd040..5ab8208e8d1 100644
--- a/po/statistics.sk.po
+++ b/po/statistics.sk.po
@@ -1116,7 +1116,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1148,7 +1148,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1174,14 +1175,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1195,8 +1192,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1218,7 +1217,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1226,39 +1225,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1415,7 +1430,8 @@ msgstr "Formát"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1435,69 +1451,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1509,10 +1505,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1535,8 +1527,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1547,20 +1539,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1671,28 +1664,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1723,10 +1712,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1743,13 +1728,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1768,11 +1748,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1781,27 +1756,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1946,20 +1900,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1975,7 +1925,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1986,14 +1937,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2257,10 +2205,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2466,342 +2410,314 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Hodnotenie"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
-msgid "Release groups with no secondary type set"
-msgstr ""
-
#: ../root/statistics/stats.js:774
-msgid "Series with no type set"
-msgstr ""
-
-#: ../root/statistics/stats.js:779
-msgid "Unique tag names"
+msgid "Release groups with no secondary type set"
msgstr ""
#: ../root/statistics/stats.js:784
-msgid "Votes for/against tags"
+msgid "Series with no type set"
msgstr ""
#: ../root/statistics/stats.js:789
-msgid "Votes for/against area tags"
+msgid "Unique tag names"
msgstr ""
#: ../root/statistics/stats.js:794
-msgid "Votes for/against artist tags"
+msgid "Votes for/against tags"
msgstr ""
#: ../root/statistics/stats.js:799
-msgid "Votes for/against instrument tags"
+msgid "Votes for/against area tags"
msgstr ""
#: ../root/statistics/stats.js:804
-msgid "Votes for/against label tags"
+msgid "Votes for/against artist tags"
msgstr ""
#: ../root/statistics/stats.js:809
-msgid "Votes for/against recording tags"
+msgid "Votes for/against instrument tags"
msgstr ""
#: ../root/statistics/stats.js:814
-msgid "Votes for/against release tags"
+msgid "Votes for/against label tags"
msgstr ""
#: ../root/statistics/stats.js:819
-msgid "Votes for/against release group tags"
+msgid "Votes for/against recording tags"
msgstr ""
#: ../root/statistics/stats.js:824
-msgid "Votes for/against series tags"
+msgid "Votes for/against release tags"
msgstr ""
#: ../root/statistics/stats.js:829
-msgid "Votes for/against work tags"
+msgid "Votes for/against release group tags"
msgstr ""
#: ../root/statistics/stats.js:834
-msgid "Tracks"
+msgid "Votes for/against series tags"
msgstr ""
#: ../root/statistics/stats.js:839
-msgid "URLs"
+msgid "Votes for/against work tags"
msgstr ""
#: ../root/statistics/stats.js:844
-msgid "Videos"
+msgid "Tracks"
msgstr ""
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
@@ -2809,7 +2725,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
@@ -2817,7 +2733,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
@@ -2825,7 +2741,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
@@ -2833,111 +2749,119 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.sl.po b/po/statistics.sl.po
index 3d8129c8c7b..89ad747b051 100644
--- a/po/statistics.sl.po
+++ b/po/statistics.sl.po
@@ -12,8 +12,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
-"%100==4 ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
+"n%100==4 ? 2 : 3);\n"
#: DB:statistics.statistic_event/title:2015-09-08
msgid "\"Do Not Cluster\" guideline dropped"
@@ -1115,7 +1115,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1147,7 +1147,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1173,14 +1174,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1194,8 +1191,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1217,7 +1216,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1225,39 +1224,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Založbe"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1414,7 +1429,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1434,69 +1450,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1508,10 +1504,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1534,8 +1526,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1546,20 +1538,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1670,28 +1663,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1722,10 +1711,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1742,13 +1727,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1767,11 +1747,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1780,27 +1755,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1945,20 +1899,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1974,7 +1924,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1985,14 +1936,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2256,10 +2204,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2465,342 +2409,314 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
-msgid "Release groups with no secondary type set"
-msgstr ""
-
#: ../root/statistics/stats.js:774
-msgid "Series with no type set"
-msgstr ""
-
-#: ../root/statistics/stats.js:779
-msgid "Unique tag names"
+msgid "Release groups with no secondary type set"
msgstr ""
#: ../root/statistics/stats.js:784
-msgid "Votes for/against tags"
+msgid "Series with no type set"
msgstr ""
#: ../root/statistics/stats.js:789
-msgid "Votes for/against area tags"
+msgid "Unique tag names"
msgstr ""
#: ../root/statistics/stats.js:794
-msgid "Votes for/against artist tags"
+msgid "Votes for/against tags"
msgstr ""
#: ../root/statistics/stats.js:799
-msgid "Votes for/against instrument tags"
+msgid "Votes for/against area tags"
msgstr ""
#: ../root/statistics/stats.js:804
-msgid "Votes for/against label tags"
+msgid "Votes for/against artist tags"
msgstr ""
#: ../root/statistics/stats.js:809
-msgid "Votes for/against recording tags"
+msgid "Votes for/against instrument tags"
msgstr ""
#: ../root/statistics/stats.js:814
-msgid "Votes for/against release tags"
+msgid "Votes for/against label tags"
msgstr ""
#: ../root/statistics/stats.js:819
-msgid "Votes for/against release group tags"
+msgid "Votes for/against recording tags"
msgstr ""
#: ../root/statistics/stats.js:824
-msgid "Votes for/against series tags"
+msgid "Votes for/against release tags"
msgstr ""
#: ../root/statistics/stats.js:829
-msgid "Votes for/against work tags"
+msgid "Votes for/against release group tags"
msgstr ""
#: ../root/statistics/stats.js:834
-msgid "Tracks"
+msgid "Votes for/against series tags"
msgstr ""
#: ../root/statistics/stats.js:839
-msgid "URLs"
+msgid "Votes for/against work tags"
msgstr ""
#: ../root/statistics/stats.js:844
-msgid "Videos"
+msgid "Tracks"
msgstr ""
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
@@ -2808,7 +2724,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
@@ -2816,7 +2732,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
@@ -2824,7 +2740,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
@@ -2832,111 +2748,119 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.sq.po b/po/statistics.sq.po
index ad186f370e3..a3684b16365 100644
--- a/po/statistics.sq.po
+++ b/po/statistics.sq.po
@@ -1114,7 +1114,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1146,7 +1146,8 @@ msgstr "Përpunues"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1172,14 +1173,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1193,8 +1190,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1216,7 +1215,7 @@ msgstr "Grafik Rrjedhe Kohore"
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1224,39 +1223,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr "Përditësuar së fundi më: {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Vend"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artistë"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Hedhje në qarkullim"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Etiketa"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "Veprimtari"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "Vende"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Githsej"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1411,7 +1426,8 @@ msgstr "Format"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1431,69 +1447,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Hedhje në qarkullim:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr "Media:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "Grupe Hedhjesh Në Qarkullim"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "Incizime:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Incizime"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "Pjesë:"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Eetiketa:"
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr ""
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Vepra"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr ""
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "URL-ra"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr ""
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Zona"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "Seri:"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr ""
+msgid "Series"
+msgstr "Seri"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr ""
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Instrumenta"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Zhanre"
@@ -1505,10 +1501,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Marrëdhënie:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1531,8 +1523,8 @@ msgstr ""
msgid "Identifiers"
msgstr "Identifikues"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1543,20 +1535,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr ""
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "ID Disku"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1667,30 +1660,26 @@ msgstr ""
msgid "Data Quality"
msgstr "Cilësi të Dhënash"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr "ID Disku"
-
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
msgstr ""
@@ -1717,10 +1706,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "Grupe Hedhjesh Në Qarkullim"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1737,13 +1722,8 @@ msgstr "Asnjë"
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Incizime"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1762,11 +1742,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Vepra"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1775,27 +1750,6 @@ msgstr ""
msgid "Attributes"
msgstr "Atribute"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Zona"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "Vende"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Seri"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Instrumenta"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "Veprimtari"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1940,20 +1894,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1969,8 +1919,9 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Të anuluara:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -1980,14 +1931,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Vota"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2251,10 +2199,6 @@ msgstr ""
msgid "Artist Credits"
msgstr "Kredite Artisti"
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2460,473 +2404,478 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Vlerësime"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Vlerësime artisti"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Vlerësime incizimi"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "Vlerësime grupi hedhjesh në qarkullim"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr "Vlerësime vepre"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Gjurmë"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr "URL-ra"
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "Releases:"
+#~ msgstr "Hedhje në qarkullim:"
+
+#~ msgid "Mediums:"
+#~ msgstr "Media:"
+
+#~ msgid "Recordings:"
+#~ msgstr "Incizime:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Pjesë:"
+
+#~ msgid "Labels:"
+#~ msgstr "Eetiketa:"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "Seri:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Marrëdhënie:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Të anuluara:"
diff --git a/po/statistics.sr.po b/po/statistics.sr.po
index 0455946c3cc..ac537c60d99 100644
--- a/po/statistics.sr.po
+++ b/po/statistics.sr.po
@@ -12,8 +12,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: DB:statistics.statistic_event/title:2015-09-08
msgid "\"Do Not Cluster\" guideline dropped"
@@ -1115,7 +1115,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1147,7 +1147,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1173,14 +1174,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1194,8 +1191,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1217,7 +1216,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1225,39 +1224,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Држава"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1413,7 +1428,8 @@ msgstr "Формат"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1433,69 +1449,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1507,10 +1503,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1533,8 +1525,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1545,20 +1537,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1669,28 +1662,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1720,10 +1709,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1740,13 +1725,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1765,11 +1745,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1778,27 +1753,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1943,20 +1897,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1972,7 +1922,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1983,14 +1934,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2254,10 +2202,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2463,474 +2407,454 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Песме"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.sv.po b/po/statistics.sv.po
index 28d03077c17..3544e6630cd 100644
--- a/po/statistics.sv.po
+++ b/po/statistics.sv.po
@@ -1126,7 +1126,7 @@ msgstr "Klicka för att avmarkera"
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr "Länder"
@@ -1158,7 +1158,8 @@ msgstr "Redigerare"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr "Redigeringar"
@@ -1184,14 +1185,10 @@ msgstr "Språk/skript"
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr "MusicBrainz-händelser"
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr "MusicBrainz-händelser:"
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1205,8 +1202,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1228,7 +1227,7 @@ msgstr "Tidslinjegraf"
msgid "Zoom:"
msgstr "Zoom:"
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1236,39 +1235,55 @@ msgstr "Zoom:"
msgid "Last updated: {date}"
msgstr "Senast uppdaterad: {date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr "Rank"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Land"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Artister"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "Utgivningar"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Skivbolag"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "Händelser"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "Platser"
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "Totalt"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr "Okänt land"
@@ -1423,7 +1438,8 @@ msgstr "Format"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1443,69 +1459,49 @@ msgstr "Grundläggande metadata"
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr "Artister:"
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr "Utgivningsgrupper:"
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr "Utgivningar:"
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr ""
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "Utgivningsgrupper"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr "Inspelningar:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Inspelningar"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr "Spår:"
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr "Skivbolag:"
+msgid "Tracks)"
+msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr "Verk:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "Verk"
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr "Områden:"
-
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr "Platser:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "Områden"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr "Serier:"
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr "Instrument:"
+msgid "Series"
+msgstr "Serier"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr "Händelser:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "Instrument"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "Genrer"
@@ -1517,10 +1513,6 @@ msgstr "Övriga entiteter"
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr "Förhållanden:"
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1543,8 +1535,8 @@ msgstr ""
msgid "Identifiers"
msgstr "Identifierare"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1555,20 +1547,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr "Streckkoder:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "Streckkoder"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1679,29 +1672,25 @@ msgstr "Inget främre omslag:"
msgid "Data Quality"
msgstr "datakvalitet"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
-msgstr "Hög datakvalitet:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr "Hög datakvalitet"
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr "Normal datakvalitet:"
-
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
-msgstr "Okänd datakvalitet:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr "Normal datakvalitet"
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
-msgstr "Låg datakvalitet:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr "Okänd datakvalitet"
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
-msgstr ""
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr "Låg datakvalitet"
#: ../root/statistics/Index.js:530
msgid "Releases with no disc IDs:"
@@ -1729,10 +1718,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr "Utgivningsgrupper"
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr "Primära typer"
@@ -1749,14 +1734,9 @@ msgstr "Inga"
msgid "Secondary Types"
msgstr "Sekundära typer"
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Inspelningar"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
-msgstr "Videor:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr ""
#: ../root/statistics/Index.js:699
msgctxt "recording"
@@ -1774,11 +1754,6 @@ msgstr ""
msgid "Types"
msgstr "Typer"
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr "Verk"
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1787,27 +1762,6 @@ msgstr ""
msgid "Attributes"
msgstr "Attributer"
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr "Områden"
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr "Platser"
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "Serier"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr "Instrument"
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr "Händelser"
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1952,21 +1906,17 @@ msgstr "inaktiv:"
msgid "Editors (deleted):"
msgstr "Redigerare (borttagna):"
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr "Redigeringar:"
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
-msgstr "Öppnade:"
+msgid "Open"
+msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
-msgstr "Tillämpade:"
+msgid "Applied"
+msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
-msgstr "Nedröstat:"
+msgid "Voted down"
+msgstr ""
#: ../root/statistics/Index.js:1247
msgid "Failed (dependency):"
@@ -1981,8 +1931,9 @@ msgid "Failed (internal error):"
msgstr "Misslyckades (internt fel):"
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
-msgstr "Avbrutna:"
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
@@ -1992,14 +1943,11 @@ msgstr "Senaste 7 dagarna:"
msgid "Yesterday:"
msgstr "I går:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr "Röster"
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr "Röster:"
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2263,10 +2211,6 @@ msgstr "Personer"
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr "Streckkoder"
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2472,473 +2416,532 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
+#: ../root/statistics/stats.js:519
msgid "Labels with no country set"
msgstr "Skivbolag utan angivet land"
-#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
-msgstr "Hög datakvalitet"
+msgid "Places with no type set"
+msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr "Låg datakvalitet"
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr "Normal datakvalitet"
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
-msgstr "Okänd datakvalitet"
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "Betyg"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr "Artistbetyg"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr "Skivbolagsbetyg"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr "Inspelningsbetyg"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr "Utgivningsgruppsbetyg"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr "Utgivningar med omslag från CAA"
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr "Utgivningar utan omslag"
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr "Utgivningar med omslag"
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Spår"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr "Inga röster"
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr "Röster per dag"
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr "Röster per vecka"
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr "Ja-röster"
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr "/dag"
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] "Utgivningsgrupper med 1 utgivning"
msgstr[1] "Utgivningsgrupper med {n} utgivningar"
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr "Artister från {country}"
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr "Skivbolag från {country}"
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr "Utgivningar från {country}"
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr "Utgivningar på {language}"
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "MusicBrainz Events:"
+#~ msgstr "MusicBrainz-händelser:"
+
+#~ msgid "Artists:"
+#~ msgstr "Artister:"
+
+#~ msgid "Release Groups:"
+#~ msgstr "Utgivningsgrupper:"
+
+#~ msgid "Releases:"
+#~ msgstr "Utgivningar:"
+
+#~ msgid "Recordings:"
+#~ msgstr "Inspelningar:"
+
+#~ msgid "Tracks:"
+#~ msgstr "Spår:"
+
+#~ msgid "Labels:"
+#~ msgstr "Skivbolag:"
+
+#~ msgid "Works:"
+#~ msgstr "Verk:"
+
+#~ msgid "Areas:"
+#~ msgstr "Områden:"
+
+#~ msgid "Places:"
+#~ msgstr "Platser:"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "Serier:"
+
+#~ msgid "Instruments:"
+#~ msgstr "Instrument:"
+
+#~ msgid "Events:"
+#~ msgstr "Händelser:"
+
+#~ msgid "Relationships:"
+#~ msgstr "Förhållanden:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "Streckkoder:"
+
+#~ msgid "High Data Quality:"
+#~ msgstr "Hög datakvalitet:"
+
+#~ msgid "Normal Data Quality:"
+#~ msgstr "Normal datakvalitet:"
+
+#~ msgid "Unknown Data Quality:"
+#~ msgstr "Okänd datakvalitet:"
+
+#~ msgid "Low Data Quality:"
+#~ msgstr "Låg datakvalitet:"
+
+#~ msgid "Videos:"
+#~ msgstr "Videor:"
+
+#~ msgid "Edits:"
+#~ msgstr "Redigeringar:"
+
+#~ msgid "Open:"
+#~ msgstr "Öppnade:"
+
+#~ msgid "Applied:"
+#~ msgstr "Tillämpade:"
+
+#~ msgid "Voted down:"
+#~ msgstr "Nedröstat:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "Avbrutna:"
+
+#~ msgid "Votes:"
+#~ msgstr "Röster:"
diff --git a/po/statistics.th.po b/po/statistics.th.po
new file mode 100644
index 00000000000..5d33991699a
--- /dev/null
+++ b/po/statistics.th.po
@@ -0,0 +1,2853 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: th\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: DB:statistics.statistic_event/title:2015-09-08
+msgid "\"Do Not Cluster\" guideline dropped"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2017-04-11
+msgid "\"feat.\" standardization dropped"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-04-19
+msgid "1200px thumbnails"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-04-19
+msgid ""
+"1200px thumbnails are added to the Cover Art Archive, providing users with a "
+"very large image with a consistent size that avoids having to use the "
+"original uploads directly."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2016-03-01
+msgid ""
+"A Discourse forum platform is added to replace both the old-school forums "
+"and the (by now dead) mailing lists and unify community communication in one "
+"place."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-06-29
+msgid ""
+"A change is introduced that allows voting for and against existing "
+"folksonomy tags, rather than only adding your own."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-07-19
+msgid ""
+"A major update for the Picard tagger is released, with a huge amount of "
+"bugfixes and improvements."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2019-11-12
+msgid ""
+"A new \"Voting suggestions\" page is released, containing predefined edit "
+"searches to help editors find interesting and/or important edits to review "
+"and vote on."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-08-05
+msgid ""
+"A new AJAX coverart uploader is released, making it easier to add cover art "
+"to releases."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-12-28
+msgid ""
+"A new banner message now notifies users whenever they receive a new edit "
+"note."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-04-05
+msgid "A new, much faster search mechanism is added."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-08-15
+msgid "A rift in the MusicBrainz community leads to a Great Dispute."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-05-15
+msgid ""
+"A very substantial schema change release adds a new entity type (areas), "
+"support for ISNI codes for artists and labels, and the possibility to have "
+"more than one release event on one release."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-11-10
+msgid ""
+"A way to search for edits based on several different criteria is released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-11-19
+msgid ""
+"AcousticBrainz, which aims to crowd source acoustic information for music, "
+"is announced in cooperation with the Music Technology Group at Universitat "
+"Pompeu Fabra."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-04-10
+msgid "Advanced relationships"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-04-10
+msgid ""
+"Advanced relationships that allow users to connect basic data entities is "
+"relased and unused TRMs pruned from the database. Inline editing is turned "
+"off by default, causing a drop in voting activity."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2019-06-25
+msgid ""
+"After a lot of behind-the-scenes drama, MetaBrainz wins a legal battle "
+"against a copyright troll who tried to sue because of the use of Wikimedia "
+"Commons images. Commons images are still dropped from MusicBrainz sites to "
+"avoid further issues until Wikimedia makes changes that make image reuse "
+"more safe."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-11-23
+msgid ""
+"After a lot of debate, relationship data starts being displayed on release "
+"pages, making it a lot more visible."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-09-01
+msgid ""
+"After a successful Summer of Code, Ian McEwen joins the MusicBrainz team"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2016-11-08
+msgid ""
+"After many years at Digital West in California, the MetaBrainz project moves "
+"all servers to a much larger dedicated provider in Germany, Hetzner."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-09-10
+msgid ""
+"After several years as a community-driven only project, BookBrainz is "
+"adopted as an official project and given an actual developer position with "
+"the hiring of Monkey."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-05-26
+msgid ""
+"After unexpected upheaval on Freenode, MetaBrainz moves all official "
+"channels to Libera.Chat instead."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-05-22
+msgid "Album languages"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-05-22
+msgid ""
+"Album languages, guess case improvements and revamps edit forms released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-05-19
+msgid ""
+"Aliases are added to the three entity types that were still missing them: "
+"recordings, releases and release groups. This allows storing aliases for, "
+"for example, English names of Asian release groups."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-05-19
+msgid "Aliases for recordings, releases and release groups"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-02-24
+msgid "Amazon Coverart"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-09-01
+msgid ""
+"Amazon betas SoundUnwound with data from "
+"MusicBrainz."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-09-01
+msgid "Amazon betas SoundUnwound"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-02-24
+msgid "Amazon coverart support released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-07-12
+msgid "An improved release editor and a new site design are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-06-02
+msgid ""
+"An update is released that allows specifying a credit for artists in a "
+"relationship, if not the same as the artist name."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-11-14
+msgid "Annotation support released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-11-14
+msgid "Annotations"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-05-15
+msgid "Areas, ISNI codes and multiple release events per release"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-06-22
+msgid "Artist subscriptions"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-02-13
+msgid ""
+"Artist subscriptions made public and various smaller user centric "
+"improvements are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-06-22
+msgid "Artist subscriptions."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2017-04-11
+msgid ""
+"As part of a long term move towards more fidelity to the original data, we "
+"stop standardizing \"featuring\" and all its variants to \"feat.\", and ask "
+"editors to use whatever is printed instead."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-07-30
+msgid "BBC dynamic artist pages"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-07-30
+msgid "BBC launches the dynamic artist pages based on MusicBrainz data."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-06-28
+msgid "BBC partners with MetaBrainz"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-09-10
+msgid "BookBrainz becomes official MetaBrainz project"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-04-30
+msgid "CAA initial release"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-10-10
+msgid "CAA official release"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2016-06-20
+msgid "CatQuest becomes Instrument Inserter"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2016-06-20
+msgid ""
+"CatQuest officially takes over from reosarevok as the main person for adding "
+"new instruments to MusicBrainz, with the newly created Instrument Inserter "
+"position."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2019-08-08
+msgid "Collaborative collections"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2019-08-08
+msgid ""
+"Collection owners are now able to allow other editors to also add/remove "
+"entities from any of their collections."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-11-24
+msgid "Collection, Ratings, CDStubs"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-11-24
+msgid "Collection, Ratings, CDStubs, LastUpdate released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-05-18
+msgid ""
+"Collections can now be merged, in case an editor wants to consolidate "
+"several of their collections into one. Additionally, it is now possible to "
+"create series of artists, and to rate places (the only entity that could be "
+"reviewed on CritiqueBrainz but not rated on MusicBrainz)."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-08-05
+msgid "Cover Art Uploader"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-03-29
+msgid "Dedicated database server"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2016-03-01
+msgid "Discourse unifies community communication"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-07-25
+msgid "Easier edit note adding"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-05-09
+msgid ""
+"Edit display improvements, turned off RDF dumps, new install scripts "
+"released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2020-02-18
+msgid "Edit history visible without logging in"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-12-28
+msgid "Edit note notifications"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-07-25
+msgid ""
+"Edit notes can now be added when creating an edit, making it much easier for "
+"editors to explain their changes."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-11-10
+msgid "Edit search"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-12-07
+msgid ""
+"Editor ojnkpjg runs a script setting track times from DiscID values, "
+"creating a huge spike in edits."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-11-30
+msgid ""
+"Edits made by editors to their own release additions within 1 hour of adding "
+"them are now auto-edits, as are \"Add recording\" and \"Remove alias\" edits."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-06-07
+msgid "Email verification"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-06-25
+msgid ""
+"Empty labels, release groups and works are now auto-removed after 24 hours "
+"of being unused, in the same way artists already were before."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-06-25
+msgid "Empty labels, release groups and works start being auto-removed"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-09-17
+msgid ""
+"Event support is added to MusicBrainz, allowing storing information about "
+"concerts and festivals. Also part of this schema change release is a proper "
+"way to indicate the content of data tracks in release tracklists, and the "
+"extension of tagging to areas, instruments and series."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-09-17
+msgid "Event support, data tracks"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-10-17
+msgid ""
+"Folksonomy tagging and editor subscriptions are released. Additionally, it's "
+"now possible to batch-add relationships to multiple tracks on a release."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-09-04
+msgid ""
+"Former GSoC student Roman Tsukanov begins working for MetaBrainz part-time."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-08-06
+msgid "Frederik \"Freso\" S. Olesen becomes MetaBrainz Community Manager"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-10-10
+msgid ""
+"FreeDB auto import feature turned off and autoeditor elections released. "
+"Unused TRMs pruned from the database."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-10-10
+msgid "FreeDB off/Autoeditors"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-08-06
+msgid ""
+"Freso becomes the first MetaBrainz Community Manager, tasked with helping "
+"resolve conflicts in the community and keeping an eye on their needs."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-11-02
+msgid "Genre added as a new entity"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-11-02
+msgid ""
+"Genres are added as a new entity, although still tightly tied to folksonomy "
+"tags."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-08-15
+msgid "Great Dispute"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-04-27
+msgid "Guess feat. buttons"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-05-26
+msgid "IRC channels move to Libera.Chat"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-09-01
+msgid "Ian McEwen hired"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-07-17
+msgid "Ian McEwen leaves MetaBrainz"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-07-17
+msgid "Ian McEwen leaves the project for personal reasons."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2009-06-17
+msgid "Imported CD Baby catalog as CD Stubs"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2009-06-17
+msgid ""
+"Imported the metadata from the CD Baby catalog into our CD Stubs collection."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-07-24
+msgid "Improve voting"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-04-05
+msgid "Improved search"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-02-11
+msgid ""
+"In an effort to reduce the size of the open edit queue and force less "
+"waiting for changes, the length of time edits stay open before expiration is "
+"reduced from 14 to 7 days."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-04-27
+msgid ""
+"In order to make it easier to fix a lot of cases where featured artists are "
+"still part of the track / release titles rather than the artists, guess "
+"feat. buttons are added that greatly simplify the process."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-05-12
+msgid "In preparation for NGS, editing is turned off until release."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-05-02
+msgid ""
+"In preparation for NGS, editors are encouraged to avoid editing until "
+"release unless entirely necessary."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-03-05
+msgid "Indexed search/XML WS"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-03-05
+msgid "Indexes search and a new XML based Web Service are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-01-17
+msgid "Inline edits"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-01-17
+msgid "Inline edits, new reports, improved data import scripts."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-05-09
+msgid "Install scripts"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2020-12-31
+msgid "Instrument images, recordings' first release date"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-05-14
+msgid "Instruments and series"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-02-01
+msgid "Italian translation released, IPI and ISNI become autoedits"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-02-23
+msgid "Kartik Ohri joins the MetaBrainz team"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-02-23
+msgid ""
+"Kartik Ohri joins the MetaBrainz team to work on ListenBrainz, "
+"AcousticBrainz and CritiqueBrainz, plus the Android app, which he had "
+"already significantly rewritten as a volunteer."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2009-12-14
+msgid "Kuno Woudt begins working for MusicBrainz full-time."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2009-12-14
+msgid "Kuno Woudt hired as full-time developer"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-04-01
+msgid "Labels/data quality"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-11-07
+msgid "Last.fm"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-11-07
+msgid "Last.fm signs up with MetaBrainz and starts using MusicBrainz data."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-09-28
+msgid "Laurent \"zas\" Monin becomes sysadmin"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-09-28
+msgid ""
+"Laurent Monin, better known as Zas, joins the team as a dedicated systems "
+"administrator, to make sure the servers run properly and help transition to "
+"a new community discussion system."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-12-28
+msgid ""
+"Link to MusicBrainz feature, release events and edit suggestions released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-01-20
+msgid "Linkara Musica becomes first commercial customer of MetaBrainz."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-12-28
+msgid "Linking"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2020-10-07
+msgid ""
+"MBBE_Bot is created to make fixes that are too time-consuming to do by hand, "
+"but should still leave a trace in edit history. This usually involves "
+"removing URLs from problematic domains, marking URLs from domains that have "
+"been closed as ended, and other similar batch-editing jobs."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2020-10-07
+msgid "MBBE_Bot starts running"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-10-23
+msgid "Menus/Client scripting"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-05-18
+msgid "Mergeable collections, artist series and ratable places"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-04-21
+msgid "MetaBrainz accepts three students for Google Summer of Code."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-09-23
+msgid "MetaBrainz hires Oliver Charles"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-04-19
+msgid "MetaBrainz launched"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2016-11-08
+msgid "MetaBrainz projects complete move to European servers"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-01-20
+msgid "MetaBrainz signs first customer"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2019-06-25
+msgid "MetaBrainz wins copyright troll battle, Wikimedia images dropped"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-04-01
+msgid "MetaWeb becomes a MusicBrainz data user."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-04-01
+msgid "MetaWeb signed"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-11-30
+msgid "More auto-edits"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-11-16
+msgid ""
+"More edit types are made auto-edits for everyone: \"Add relationship\" and "
+"\"Add release\"; and \"Add\", \"Edit\" and \"Remove release label\". "
+"Additionally, the German, French and Dutch translations are available on the "
+"main server."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-02-27
+msgid "MusicBrainz Move"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2010-02-08
+msgid "MusicBrainz Server source code moved to Git from Subversion."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-01-12
+msgid "MusicBrainz adds AcoustID support"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-03-29
+msgid "MusicBrainz gets its first dedicated database server."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2016-02-22
+msgid ""
+"MusicBrainz itself gets a new design to better match the rest of the *Brainz "
+"family."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-02-27
+msgid "MusicBrainz moved to Digital West Networks in San Luis Obispo."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-03-12
+msgid ""
+"MusicBrainz partners with MusicIP and starts using MusicDNS's PUID acoustic "
+"fingerprints. Picard becomes the official MusicBrainz tagger with PUID "
+"support, which causes edit activity to decrease."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-03-12
+msgid "MusicIP PUID"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-05-12
+msgid "NGS No-Editing Phase"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-05-02
+msgid "NGS Reduced Editing Phase"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-05-18
+msgid "NGS Release"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-05-18
+msgid "NGS, a MusicBrainz major rewrite, is released!"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2016-02-22
+msgid "New MusicBrainz design"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2017-10-31
+msgid "New entity auto-editing period extended to 24 hours"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-02-17
+msgid ""
+"Nicolás Tamargo (reosarevok) becomes the MusicBrainz style leader, and a "
+"new, more official style process using Jira is established."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-10-13
+msgid "Non album tracks"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-10-13
+msgid "Non album tracks are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-09-23
+msgid "Oliver Charles becomes employee #1 of MetaBrainz Foundation."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2010-06-18
+msgid "Oliver Charles begins working for MusicBrainz full-time."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2010-06-18
+msgid "Oliver Charles joins MusicBrainz full-time"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-06-30
+msgid ""
+"Our old search server gets a significant upgrade with its move to SOLR, "
+"including almost-instant index updates."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-10-14
+msgid "PUID support is removed"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-04-05
+msgid "Pagination added for relationships, user tags"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-04-05
+msgid ""
+"Pagination was added for two very long lists that sometimes couldn't be "
+"loaded in full because of timeouts: user tags and entity relationships."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-06-02
+msgid "Picard 1.0 released"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-07-19
+msgid "Picard 2.0 released"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2017-10-31
+msgid ""
+"Rather than having to notice any errors during a fairly brief 1 hour period, "
+"editors now have 24 hours to correct errors in the data they have added "
+"without needing a vote."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-10-15
+msgid "Relationship Editor"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-06-02
+msgid "Relationship credits become available"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-11-23
+msgid "Relationships displayed on release pages"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-04-06
+msgid "Release \"stubs\", minimum voting period for destructive edits"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2009-05-24
+msgid "Release Groups, ISRCs, CDStub searching"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-07-12
+#: DB:statistics.statistic_event/title:2003-10-19
+msgid "Release editor"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-10-19
+msgid "Release editor and Guess Case released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2009-05-24
+msgid ""
+"Release groups, ISRC support, CDStub searching and search fixes released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-04-06
+msgid ""
+"Releases can now be added without any mediums, for cases where the only "
+"information available is, for example, a title + date + label + catalog "
+"number entry in a catalog. Additionally, any destructive edits such as "
+"entity merges and removals no longer close immediately once they get 3 Yes "
+"votes, but they remain open for at least 48 hours to ensure people who "
+"oppose them have time to see them."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2017-09-06
+msgid ""
+"Roman Tsukanov decides not to renew his contract. Sambhav Kothari and Param "
+"Singh are hired as replacements to work on search and Picard and on "
+"ListenBrainz, respectively."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-09-04
+msgid "Roman Tsukanov joins the MetaBrainz team"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-01-08
+msgid "SG5 Fixes"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-06-30
+msgid "SOLR-based search server deployed"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2017-09-06
+msgid "Sambhav Kothari and Param Singh replace Roman Tsukanov"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-09-09
+msgid ""
+"Sambhav Kothari leaves MetaBrainz after a lot of hard work getting the SOLR "
+"server ready. Nicolás Tamargo (reosarevok) joins as a programmer part-time "
+"in addition to his style and support positions, to work on MusicBrainz."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-09-09
+msgid "Sambhav Kothari leaves, Nicolás Tamargo joins as a programmer"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-12-17
+msgid "Search improvements"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-11-16
+msgid "Several new auto-edit types and translations"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2020-05-16
+msgid ""
+"Since the Virtual Machine project tended to just lag way behind current data "
+"because of the time required to always push new versions, it is dropped and "
+"users are suggested to just run their own Docker setup for MusicBrainz "
+"(which the Virtual Machine already did behind the scenes)."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-04-21
+msgid "SoC 2008"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2020-12-31
+msgid ""
+"Some instrument pages start displaying instrument illustrations by IROM. "
+"Additionally, a first release date starts being calculated and displayed for "
+"recordings based on the releases they appear on."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-01-08
+msgid ""
+"Style Guideline 5 workaround introduced and unused TRMs pruned from the "
+"database."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-10-17
+msgid "Style process updated again, reosarevok \"promoted\" to Style BDFL"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-04-01
+msgid "Support for Labels and data quality are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-06-29
+msgid "Tag up/downvoting"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-10-17
+msgid "Tags, editor subscriptions, relationship batch-adding"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-11-19
+msgid "The AcousticBrainz project goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2022-02-16
+msgid "The AcousticBrainz project is discontinued"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-08-03
+msgid "The Android app goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-06-28
+msgid ""
+"The BBC becomes a MetaBrainz customer and starts using MusicBrainz data."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-04-30
+msgid "The Cover Art Archive becomes initially available"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-10-10
+msgid "The Cover Art Archive is officially released"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-05-19
+msgid "The CritiqueBrainz project goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-02-01
+msgid ""
+"The Italian translation, mostly worked on by salo.rock, is officially "
+"released. Adding the first IPI and/or ISNI code for an entity becomes an "
+"autoedit, unless the same code is already in use for another."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-09-17
+msgid "The ListenBrainz project goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-04-19
+msgid ""
+"The MetaBrainz Foundation, the legal home for MusicBrainz is announced to "
+"the public."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2020-05-16
+msgid "The MusicBrainz Virtual Machine is replaced by MusicBrainz Docker"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-09-17
+msgid ""
+"The alpha version of ListenBrainz, an open source and open data alternative "
+"to Last.fm®, goes live."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-05-19
+msgid "The beta version of CritiqueBrainz is launched."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-10-14
+msgid ""
+"The diminishing quality of the PUID fingerprinting service and the continued "
+"availability of an open source alternative in AcoustID leads to the decision "
+"of dropping PUIDs from MusicBrainz and supporting only AcoustID."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2020-02-18
+msgid ""
+"The edit history for entities is made visible even when logged out, to make "
+"it easier to understand how each entity has changed (edit notes are kept "
+"hidden to preserve some privacy)."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-06-02
+msgid ""
+"The first full-version release of the Picard tagger comes out, with a lot of "
+"changes and improvements."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-08-03
+msgid ""
+"The first version of the MusicBrainz Android app, a Google Summer of Code "
+"project by Jamie McDonald, is made officially available"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-09-08
+msgid ""
+"The increasingly controversial \"Do Not Cluster\" guideline, which forbid "
+"relationship clusters such as linking every Jackson sibling to each other, "
+"is dropped - avoiding duplicate data becomes a task for relationship "
+"designers, not users entering the data."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-05-18
+msgid "The new MetaBrainz website goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-05-18
+msgid ""
+"The new MetaBrainz website, featuring an all-new design and online sign-up "
+"for commercial users, is launched, replacing the one designed in the year "
+"2000!"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-01-12
+msgid ""
+"The open source fingerprinting solution AcoustID (developed by friend of "
+"MusicBrainz Lukáš Lalinský) starts being used alongside PUID on MusicBrainz "
+"fingerprint pages."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-10-15
+msgid ""
+"The relationship editor, for bulk-editing relationships for a release, is "
+"released to production."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-12-17
+msgid "The search features and web service improvements are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-10-17
+msgid ""
+"The style process is updated again. Rather than requiring long, often angry "
+"community debate until something is passed by community consensus without a "
+"veto, decisions are taken by a BDFL who consults the community when needed. "
+"Nicolás Tamargo (reosarevok) is \"promoted\" from style leader to style BDFL."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-06-24
+msgid ""
+"The voting period for edits that get a No vote is extended to give users "
+"more time to react to the issues."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-10-23
+msgid ""
+"Top menu navigation improved, duplicate artists, album edit all, track time "
+"editing features released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-12-07
+msgid "Track times set from DiscIDs"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-05-14
+msgid ""
+"Two new entity types are added to MusicBrainz: instruments and series. "
+"Series of recordings, releases, release groups and works are supported."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-02-13
+msgid "User improvements"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-06-07
+msgid "Users now have to verify their email address for editing."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2019-04-26
+msgid ""
+"Version 1 of the web service (already deprecated since 2011) is finally "
+"taken down for good (more than a year after announcing it would happen in "
+"six months!)."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-07-24
+msgid "Voting logic was improved, web based autoeditor elections released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-06-24
+msgid "Voting period for contested edits extended"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-02-11
+msgid "Voting period shortened to 7 days"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2019-11-12
+msgid "Voting suggestions"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2019-04-26
+msgid "Web service version 1 taken down"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2022-02-16
+msgid ""
+"With the AcousticBrainz project deemed to not have fulfilled its original "
+"goals, the MetaBrainz Foundation decides to stop work on it, with a view to "
+"shut down the site in 2023"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-03-17
+msgid "Work attributes"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-03-17
+msgid ""
+"Works get their first attributes (such as keys) allowing us to store data "
+"that doesn't make sense as relationships but deserves more than an "
+"annotation entry."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2017-03-13
+msgid "Yvanzo joins MusicBrainz as a developer"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2017-03-13
+msgid ""
+"Yvanzo joins the development team as a second dedicated MusicBrainz "
+"developer."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2010-02-08
+msgid "mb_server now hosted on Git"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-02-17
+msgid "reosarevok becomes the MusicBrainz style leader"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:18
+msgid "Add/remove lines:"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:18
+msgid "Check boxes above"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:17
+msgid "Click to deselect"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:14
+msgid "Controls"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
+#: ../root/statistics/StatisticsLayout.js:50
+msgid "Countries"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/CoverArt.js:67
+#: ../root/statistics/StatisticsLayout.js:60 ../root/statistics/stats.js:21
+msgid "Cover Art"
+msgstr ""
+
+#: ../root/statistics/layout.tt:23 ../root/statistics/layout.tt:34
+#: ../root/statistics/StatisticsLayout.js:96
+#: ../root/statistics/StatisticsLayout.js:109
+msgid "Database Statistics"
+msgstr ""
+
+#: ../root/statistics/layout.tt:15
+msgid "Database Statistics - {title}"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:16
+msgid "Draw a rectangle on either graph"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Editors.js:98
+#: ../root/statistics/Editors.js:109 ../root/statistics/Index.js:1096
+#: ../root/statistics/StatisticsLayout.js:80
+msgid "Editors"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
+#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/stats.js:289
+msgid "Edits"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:28
+msgid "Exact Values (items vs. day)"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/StatisticsLayout.js:75
+#: ../root/statistics/stats.js:25
+msgid "Formats"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:19
+msgid "Hover and click on vertical lines"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/StatisticsLayout.js:55
+msgid "Languages/Scripts"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:2
+msgid "Legend"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
+msgid "MusicBrainz Events"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
+#: ../root/statistics/StatisticsLayout.js:45
+msgid "Overview"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:30
+msgid "Rate of Change (average items/day vs. day)"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:10
+msgid "Rate of Change Graph"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
+#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
+#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
+#: ../root/statistics/stats.js:48
+msgid "Relationships"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:17
+msgid "Reset:"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/StatisticsLayout.js:85
+msgid "Timeline"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:25
+msgid "Timeline Graph"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:16
+msgid "Zoom:"
+msgstr ""
+
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
+#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
+#: ../root/statistics/LanguagesScripts.js:53
+#: ../root/statistics/Relationships.js:108
+msgid "Last updated: {date}"
+msgstr ""
+
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
+#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
+#: ../root/statistics/LanguagesScripts.js:154
+msgid "Rank"
+msgstr ""
+
+#: ../root/statistics/Countries.js:52
+msgid "Country"
+msgstr ""
+
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
+msgid "Artists"
+msgstr ""
+
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
+msgid "Releases"
+msgstr ""
+
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
+msgid "Labels"
+msgstr ""
+
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
+#: ../root/statistics/LanguagesScripts.js:80
+msgid "Total"
+msgstr ""
+
+#: ../root/statistics/Countries.js:98
+msgid "Unknown Country"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:71
+msgid "Basics"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:74 ../root/statistics/CoverArt.js:111
+#: ../root/statistics/CoverArt.js:283
+msgid "No cover art statistics available."
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:80 ../root/statistics/CoverArt.js:120
+#: ../root/statistics/CoverArt.js:155 ../root/statistics/CoverArt.js:191
+#: ../root/statistics/CoverArt.js:327
+msgid "Releases with cover art:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:95 ../root/statistics/CoverArt.js:292
+msgid "Pieces of cover art:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:117
+msgid "By Release Group Type"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:134 ../root/statistics/CoverArt.js:306
+msgid "No type"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:152
+msgid "By Release Status"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:169
+msgid "No status"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:188
+msgid "By Release Format"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:205
+msgid "No format"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:226
+msgid "Release groups"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:230
+msgid "Release groups with cover art:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:240
+msgid "manually selected:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:262
+msgid "automatically inferred:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:280
+msgid "Pieces of cover art"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:289
+msgid "By Cover Art Type"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:324
+msgid "Per release"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:340
+msgid "with {num} piece of cover art:"
+msgid_plural "with {num} pieces of cover art:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/CoverArt.js:370
+msgid "with 30 or more pieces of cover art:"
+msgstr ""
+
+#: ../root/statistics/Editors.js:82
+msgid "There is no data to display here."
+msgstr ""
+
+#: ../root/statistics/Editors.js:103
+msgid ""
+"For the vote statistics, only yes or no votes are counted, abstain votes are "
+"not counted."
+msgstr ""
+
+#: ../root/statistics/Editors.js:111
+msgid "Open and applied edits in past week"
+msgstr ""
+
+#: ../root/statistics/Editors.js:113 ../root/statistics/Editors.js:119
+msgid "Editor"
+msgstr ""
+
+#: ../root/statistics/Editors.js:114
+msgid "Most active editors in the past week"
+msgstr ""
+
+#: ../root/statistics/Editors.js:117
+msgid "Total applied edits"
+msgstr ""
+
+#: ../root/statistics/Editors.js:120
+msgid "Top editors overall"
+msgstr ""
+
+#: ../root/statistics/Editors.js:126
+msgid "Voters"
+msgstr ""
+
+#: ../root/statistics/Editors.js:128
+msgid "Votes in past week"
+msgstr ""
+
+#: ../root/statistics/Editors.js:130 ../root/statistics/Editors.js:136
+msgid "Voter"
+msgstr ""
+
+#: ../root/statistics/Editors.js:131
+msgid "Most active voters in the past week"
+msgstr ""
+
+#: ../root/statistics/Editors.js:134
+msgid "Total votes"
+msgstr ""
+
+#: ../root/statistics/Editors.js:137
+msgid "Top voters overall"
+msgstr ""
+
+#: ../root/statistics/Edits.js:45
+msgid "No edit statistics available."
+msgstr ""
+
+#: ../root/statistics/Formats.js:45 ../root/statistics/Formats.js:51
+msgid "Release/Medium Formats"
+msgstr ""
+
+#: ../root/statistics/Formats.js:56
+msgid "Format"
+msgstr ""
+
+#: ../root/statistics/Formats.js:58
+msgid "% of total releases"
+msgstr ""
+
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
+msgid "Mediums"
+msgstr ""
+
+#: ../root/statistics/Formats.js:60
+msgid "% of total mediums"
+msgstr ""
+
+#: ../root/statistics/Formats.js:94
+msgid "Unknown Format"
+msgstr ""
+
+#: ../root/statistics/Index.js:87
+msgid "Basic metadata"
+msgstr ""
+
+#: ../root/statistics/Index.js:91 ../root/statistics/stats.js:20
+msgid "Core Entities"
+msgstr ""
+
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr ""
+
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr ""
+
+#: ../root/statistics/Index.js:114
+msgid "Tracks)"
+msgstr ""
+
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr ""
+
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr ""
+
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr ""
+
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
+msgctxt "plural"
+msgid "Series"
+msgstr ""
+
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr ""
+
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
+msgid "Genres"
+msgstr ""
+
+#: ../root/statistics/Index.js:156
+msgid "Other Entities"
+msgstr ""
+
+#: ../root/statistics/Index.js:159
+msgid "Editors (valid / deleted):"
+msgstr ""
+
+#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
+#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
+#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
+msgid "Collections"
+msgstr ""
+
+#: ../root/statistics/Index.js:173
+msgid "CD Stubs (all time / current):"
+msgstr ""
+
+#: ../root/statistics/Index.js:182
+msgid "Tags (raw / aggregated):"
+msgstr ""
+
+#: ../root/statistics/Index.js:188
+msgid "Ratings (raw / aggregated):"
+msgstr ""
+
+#: ../root/statistics/Index.js:196
+msgid "Identifiers"
+msgstr ""
+
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
+msgstr ""
+
+#: ../root/statistics/Index.js:203
+msgid "ISRCs (all / unique):"
+msgstr ""
+
+#: ../root/statistics/Index.js:209
+msgid "ISWCs (all / unique):"
+msgstr ""
+
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr ""
+
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr ""
+
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr ""
+
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr ""
+
+#: ../root/statistics/Index.js:246
+msgid "of type Person:"
+msgstr ""
+
+#: ../root/statistics/Index.js:252
+msgid "of type Group:"
+msgstr ""
+
+#: ../root/statistics/Index.js:258
+msgid "of type Orchestra:"
+msgstr ""
+
+#: ../root/statistics/Index.js:264
+msgid "of type Choir:"
+msgstr ""
+
+#: ../root/statistics/Index.js:270
+msgid "of type Character:"
+msgstr ""
+
+#: ../root/statistics/Index.js:276
+msgid "of type Other:"
+msgstr ""
+
+#: ../root/statistics/Index.js:282
+msgid "with no type set:"
+msgstr ""
+
+#: ../root/statistics/Index.js:288
+msgid "with appearances in artist credits:"
+msgstr ""
+
+#: ../root/statistics/Index.js:294
+msgid "with no appearances in artist credits:"
+msgstr ""
+
+#: ../root/statistics/Index.js:299
+msgid "Non-group artists:"
+msgstr ""
+
+#: ../root/statistics/Index.js:305
+msgid "Male:"
+msgstr ""
+
+#: ../root/statistics/Index.js:316
+msgid "Female:"
+msgstr ""
+
+#: ../root/statistics/Index.js:327
+msgid "Non-binary"
+msgstr ""
+
+#: ../root/statistics/Index.js:338
+msgid "Other gender:"
+msgstr ""
+
+#: ../root/statistics/Index.js:349
+msgid "Gender not applicable:"
+msgstr ""
+
+#: ../root/statistics/Index.js:360
+msgid "with no gender set:"
+msgstr ""
+
+#: ../root/statistics/Index.js:372
+msgid "Releases, Data Quality, and Disc IDs"
+msgstr ""
+
+#: ../root/statistics/Index.js:385
+msgid "by various artists:"
+msgstr ""
+
+#: ../root/statistics/Index.js:391
+msgid "by a single artist:"
+msgstr ""
+
+#: ../root/statistics/Index.js:398
+msgid "Release Status"
+msgstr ""
+
+#: ../root/statistics/Index.js:417
+msgid "No status set"
+msgstr ""
+
+#: ../root/statistics/Index.js:424
+msgid "Release Packaging"
+msgstr ""
+
+#: ../root/statistics/Index.js:443
+msgid "No packaging set"
+msgstr ""
+
+#: ../root/statistics/Index.js:450
+msgid "Cover Art Sources"
+msgstr ""
+
+#: ../root/statistics/Index.js:459
+msgid "CAA:"
+msgstr ""
+
+#: ../root/statistics/Index.js:465
+msgid "No front cover art:"
+msgstr ""
+
+#: ../root/statistics/Index.js:472
+msgid "Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:487
+msgid "Default Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:530
+msgid "Releases with no disc IDs:"
+msgstr ""
+
+#: ../root/statistics/Index.js:537
+msgid "Releases with at least one disc ID:"
+msgstr ""
+
+#: ../root/statistics/Index.js:548 ../root/statistics/Index.js:592
+msgid "with {num} disc ID:"
+msgid_plural "with {num} disc IDs:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/Index.js:563 ../root/statistics/Index.js:605
+msgid "with 10 or more disc IDs:"
+msgstr ""
+
+#: ../root/statistics/Index.js:574
+msgid "Mediums with no disc IDs:"
+msgstr ""
+
+#: ../root/statistics/Index.js:581
+msgid "Mediums with at least one disc ID:"
+msgstr ""
+
+#: ../root/statistics/Index.js:616
+msgid "Primary Types"
+msgstr ""
+
+#: ../root/statistics/Index.js:643 ../root/statistics/Index.js:675
+#: ../root/statistics/Index.js:732 ../root/statistics/Index.js:760
+#: ../root/statistics/Index.js:794 ../root/statistics/Index.js:822
+#: ../root/statistics/Index.js:850 ../root/statistics/Index.js:902
+#: ../root/statistics/Index.js:930
+msgid "None"
+msgstr ""
+
+#: ../root/statistics/Index.js:648
+msgid "Secondary Types"
+msgstr ""
+
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr ""
+
+#: ../root/statistics/Index.js:699
+msgctxt "recording"
+msgid "Standalone"
+msgstr ""
+
+#: ../root/statistics/Index.js:704
+msgid "With ISRCs"
+msgstr ""
+
+#: ../root/statistics/Index.js:715 ../root/statistics/Index.js:743
+#: ../root/statistics/Index.js:805 ../root/statistics/Index.js:833
+#: ../root/statistics/Index.js:861 ../root/statistics/Index.js:883
+#: ../root/statistics/Index.js:913
+msgid "Types"
+msgstr ""
+
+#: ../root/statistics/Index.js:765
+msgid "With ISWCs"
+msgstr ""
+
+#: ../root/statistics/Index.js:775
+msgid "Attributes"
+msgstr ""
+
+#: ../root/statistics/Index.js:950
+msgid "Of releases"
+msgstr ""
+
+#: ../root/statistics/Index.js:957 ../root/statistics/Index.js:990
+msgid "Generic"
+msgstr ""
+
+#: ../root/statistics/Index.js:966
+msgid "Owned music"
+msgstr ""
+
+#: ../root/statistics/Index.js:975
+msgid "Wishlist"
+msgstr ""
+
+#: ../root/statistics/Index.js:983
+msgid "Of events"
+msgstr ""
+
+#: ../root/statistics/Index.js:999
+msgid "Of type Attending"
+msgstr ""
+
+#: ../root/statistics/Index.js:1008
+msgid "Of type Maybe attending"
+msgstr ""
+
+#: ../root/statistics/Index.js:1019
+msgid "Of areas"
+msgstr ""
+
+#: ../root/statistics/Index.js:1025
+msgid "Of artists"
+msgstr ""
+
+#: ../root/statistics/Index.js:1031
+msgid "Of instruments"
+msgstr ""
+
+#: ../root/statistics/Index.js:1037
+msgid "Of labels"
+msgstr ""
+
+#: ../root/statistics/Index.js:1043
+msgid "Of places"
+msgstr ""
+
+#: ../root/statistics/Index.js:1049
+msgid "Of recordings"
+msgstr ""
+
+#: ../root/statistics/Index.js:1055
+msgid "Of release groups"
+msgstr ""
+
+#: ../root/statistics/Index.js:1061
+msgid "Of series"
+msgstr ""
+
+#: ../root/statistics/Index.js:1067
+msgid "Of works"
+msgstr ""
+
+#: ../root/statistics/Index.js:1073
+msgid "Public"
+msgstr ""
+
+#: ../root/statistics/Index.js:1079
+msgid "Private"
+msgstr ""
+
+#: ../root/statistics/Index.js:1085
+msgid "With collaborators"
+msgstr ""
+
+#: ../root/statistics/Index.js:1092
+msgid "Editors, Edits, and Votes"
+msgstr ""
+
+#: ../root/statistics/Index.js:1099
+msgid "Editors (valid):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1105
+msgid "active ever:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1113
+msgid "who edited and/or voted in the last 7 days:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1122
+msgid "who edited in the last 7 days:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1130
+msgid "who voted in the last 7 days:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1137
+msgid "who edit:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1144
+msgid "who vote:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1151
+msgid "who leave edit notes:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1158
+msgid "who use tags:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1165
+msgid "who use ratings:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1174
+msgid "who use subscriptions:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1183
+msgid "who use collections:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1193
+msgid "who have registered applications:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1202
+msgid "validated email only:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1208
+msgid "inactive:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1213
+msgid "Editors (deleted):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1229
+msgid "Open"
+msgstr ""
+
+#: ../root/statistics/Index.js:1235
+msgid "Applied"
+msgstr ""
+
+#: ../root/statistics/Index.js:1241
+msgid "Voted down"
+msgstr ""
+
+#: ../root/statistics/Index.js:1247
+msgid "Failed (dependency):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1253
+msgid "Failed (prerequisite):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1259
+msgid "Failed (internal error):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1265
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
+
+#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
+msgid "Last 7 days:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1283 ../root/statistics/Index.js:1335
+msgid "Yesterday:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
+msgid "Votes"
+msgstr ""
+
+#: ../root/statistics/Index.js:1299
+msgctxt "vote"
+msgid "Approve"
+msgstr ""
+
+#: ../root/statistics/Index.js:1305
+msgctxt "vote"
+msgid "Yes"
+msgstr ""
+
+#: ../root/statistics/Index.js:1311
+msgctxt "vote"
+msgid "No"
+msgstr ""
+
+#: ../root/statistics/Index.js:1317
+msgctxt "vote"
+msgid "Abstain"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:50
+msgid "Languages and Scripts"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:56
+msgid "All other available languages and scripts have 0 releases and works."
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:62
+#: ../root/statistics/LanguagesScripts.js:68
+msgid "Languages"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:97
+msgid "Unknown language"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:150
+msgid "Scripts"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:156
+msgid "Script"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:173
+msgid "Unknown script"
+msgstr ""
+
+#: ../root/statistics/MusicBrainzHistory.js:20
+msgid "History"
+msgstr ""
+
+#: ../root/statistics/MusicBrainzHistory.js:21
+msgid "Our Glorious History"
+msgstr ""
+
+#: ../root/statistics/MusicBrainzHistory.js:25
+msgid "{date} - {title}"
+msgstr ""
+
+#: ../root/statistics/MusicBrainzHistory.js:41
+msgid "It seems we have no history to show at all!"
+msgstr ""
+
+#: ../root/statistics/NoStatistics.js:15 ../root/statistics/NoStatistics.js:16
+msgid "No Statistics"
+msgstr ""
+
+#: ../root/statistics/NoStatistics.js:19
+msgid ""
+"Statistics have never been collected for this server. If you are the "
+"administrator for this server, you should run ./admin/CollectStats.pl"
+"code> or import mbdump-stats.tar.bz2
."
+msgstr ""
+
+#: ../root/statistics/Relationships.js:113
+msgid "No relationship statistics available."
+msgstr ""
+
+#: ../root/statistics/Relationships.js:120
+msgctxt "relationships"
+msgid "This type only"
+msgstr ""
+
+#: ../root/statistics/Relationships.js:121
+msgctxt "relationships"
+msgid "Including subtypes"
+msgstr ""
+
+#: ../root/statistics/Relationships.js:143
+msgid "{type0}-{type1}"
+msgstr ""
+
+#: ../root/statistics/Relationships.js:151
+msgid "{type0}-{type1} relationships:"
+msgstr ""
+
+#: ../root/statistics/stats.js:16
+msgid "Area Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:17
+msgid "Artist Countries"
+msgstr ""
+
+#: ../root/statistics/stats.js:18
+msgid "Artist Types and Genders"
+msgstr ""
+
+#: ../root/statistics/stats.js:22
+msgid "Edit Information"
+msgstr ""
+
+#: ../root/statistics/stats.js:23
+msgid "Edit Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:24
+msgid "Event Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:26
+msgid "Instrument Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:27
+msgid "Label Countries"
+msgstr ""
+
+#: ../root/statistics/stats.js:28
+msgid "Label Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:29
+msgctxt "stats category"
+msgid "Other"
+msgstr ""
+
+#: ../root/statistics/stats.js:30
+msgid "Place Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:31
+msgid "Ratings and Tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:33
+msgid "Release Countries"
+msgstr ""
+
+#: ../root/statistics/stats.js:34
+msgid "Release Group Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:35
+msgid "Release Languages"
+msgstr ""
+
+#: ../root/statistics/stats.js:36
+msgid "Release Packagings"
+msgstr ""
+
+#: ../root/statistics/stats.js:37
+msgid "Release Data Quality"
+msgstr ""
+
+#: ../root/statistics/stats.js:38
+msgid "Release Scripts"
+msgstr ""
+
+#: ../root/statistics/stats.js:39
+msgid "Release Statuses"
+msgstr ""
+
+#: ../root/statistics/stats.js:40
+msgid "Series Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:41
+msgid "Work Attributes"
+msgstr ""
+
+#: ../root/statistics/stats.js:42
+msgid "Work Languages"
+msgstr ""
+
+#: ../root/statistics/stats.js:43
+msgid "Work Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:58
+msgid "Areas with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:68
+msgid "Artists with no appearances in artist credits"
+msgstr ""
+
+#: ../root/statistics/stats.js:73
+msgid "Artists with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:78
+msgid "Female Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:83
+msgid "Male Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:88
+msgid "Non-binary Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:93
+msgid "Gender Not Applicable"
+msgstr ""
+
+#: ../root/statistics/stats.js:98
+msgid "Artists with no gender set (non-group artists)"
+msgstr ""
+
+#: ../root/statistics/stats.js:103
+msgid "Artists with gender set to Other"
+msgstr ""
+
+#: ../root/statistics/stats.js:108
+msgid "Artists with at least one artist credit appearance"
+msgstr ""
+
+#: ../root/statistics/stats.js:113
+msgid "Characters"
+msgstr ""
+
+#: ../root/statistics/stats.js:118
+msgid "Choirs"
+msgstr ""
+
+#: ../root/statistics/stats.js:123
+msgid "Groups"
+msgstr ""
+
+#: ../root/statistics/stats.js:128
+msgid "Artists with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:133
+msgid "Orchestras"
+msgstr ""
+
+#: ../root/statistics/stats.js:138
+msgid "Artists with type set to Other"
+msgstr ""
+
+#: ../root/statistics/stats.js:143
+msgid "Persons"
+msgstr ""
+
+#: ../root/statistics/stats.js:148
+msgid "Artist Credits"
+msgstr ""
+
+#: ../root/statistics/stats.js:158
+msgid "CDStubs (current)"
+msgstr ""
+
+#: ../root/statistics/stats.js:163
+msgid "CDStubs (ever submitted)"
+msgstr ""
+
+#: ../root/statistics/stats.js:168
+msgid "CDStub tracks"
+msgstr ""
+
+#: ../root/statistics/stats.js:178
+msgid "Collections with collaborators"
+msgstr ""
+
+#: ../root/statistics/stats.js:183
+msgid "Private collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:188
+msgid "Public collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:193
+msgid "Area collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:198
+msgid "Artist collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:203
+msgid "Collections of type Attending"
+msgstr ""
+
+#: ../root/statistics/stats.js:208
+msgid "Collections of type Event"
+msgstr ""
+
+#: ../root/statistics/stats.js:213
+msgid "Event collections (all types)"
+msgstr ""
+
+#: ../root/statistics/stats.js:218
+msgid "Instrument collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:223
+msgid "Label collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:228
+msgid "Collections of type Maybe attending"
+msgstr ""
+
+#: ../root/statistics/stats.js:233
+msgid "Collections of type Owned music"
+msgstr ""
+
+#: ../root/statistics/stats.js:238
+msgid "Place collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:243
+msgid "Recording collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:248
+msgid "Collections of type Release"
+msgstr ""
+
+#: ../root/statistics/stats.js:253
+msgid "Release collections (all types)"
+msgstr ""
+
+#: ../root/statistics/stats.js:258
+msgid "Release group collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:263
+msgid "Series collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:268
+msgid "Collections of type Wishlist"
+msgstr ""
+
+#: ../root/statistics/stats.js:273
+msgid "Work collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:278
+msgid "Pieces of Cover Art"
+msgstr ""
+
+#: ../root/statistics/stats.js:294
+msgid "Applied edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:299
+msgid "Cancelled edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:304
+msgid "Error edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:309
+msgid "Evalnochange Edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:314
+msgid "Edits that have failed dependency checks"
+msgstr ""
+
+#: ../root/statistics/stats.js:319
+msgid "Edits that have failed prerequisite checks"
+msgstr ""
+
+#: ../root/statistics/stats.js:324
+msgid "Edits that have been voted down"
+msgstr ""
+
+#: ../root/statistics/stats.js:329
+msgid "Open Edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:335
+msgid "Edits per day"
+msgstr ""
+
+#: ../root/statistics/stats.js:340
+msgid "Edits per week"
+msgstr ""
+
+#: ../root/statistics/stats.js:346
+msgid "Editors (all)"
+msgstr ""
+
+#: ../root/statistics/stats.js:351
+msgid "Editors who edited or voted in the last week"
+msgstr ""
+
+#: ../root/statistics/stats.js:357
+msgid "Editors (deleted)"
+msgstr ""
+
+#: ../root/statistics/stats.js:362
+msgid "Editors who submitted edits in the last week"
+msgstr ""
+
+#: ../root/statistics/stats.js:368
+msgid "Editors (current)"
+msgstr ""
+
+#: ../root/statistics/stats.js:374
+msgid "Editors (current) who have ever been active"
+msgstr ""
+
+#: ../root/statistics/stats.js:379
+msgid "Editors who have registered applications"
+msgstr ""
+
+#: ../root/statistics/stats.js:384
+msgid "Editors who use collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:389
+msgid "Editors who have made edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:394
+msgid "Editors who have written edit notes"
+msgstr ""
+
+#: ../root/statistics/stats.js:399
+msgid "Editors who have added ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:404
+msgid "Editors who use subscriptions"
+msgstr ""
+
+#: ../root/statistics/stats.js:409
+msgid "Editors who have added tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:414
+msgid "Editors who have voted on edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:419
+msgid "Editors who have not been active at all"
+msgstr ""
+
+#: ../root/statistics/stats.js:424
+msgid "Editors who have only validated their email"
+msgstr ""
+
+#: ../root/statistics/stats.js:429
+msgid "Editors who voted in the last week"
+msgstr ""
+
+#: ../root/statistics/stats.js:439
+msgid "Events with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:459
+msgid "Instruments with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:469
+msgid "Artist IPIs"
+msgstr ""
+
+#: ../root/statistics/stats.js:474
+msgid "Label IPIs"
+msgstr ""
+
+#: ../root/statistics/stats.js:484
+msgid "Artist ISNIs"
+msgstr ""
+
+#: ../root/statistics/stats.js:489
+msgid "Label ISNIs"
+msgstr ""
+
+#: ../root/statistics/stats.js:494
+msgid "ISRCs (unique)"
+msgstr ""
+
+#: ../root/statistics/stats.js:499
+msgid "ISRCs (all uses)"
+msgstr ""
+
+#: ../root/statistics/stats.js:504
+msgid "ISWCs (unique)"
+msgstr ""
+
+#: ../root/statistics/stats.js:509
+msgid "ISWCs (all uses)"
+msgstr ""
+
+#: ../root/statistics/stats.js:519
+msgid "Labels with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:524
+msgid "Labels with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:539
+msgid "Mediums with no format set"
+msgstr ""
+
+#: ../root/statistics/stats.js:544
+msgid "Mediums with Disc IDs"
+msgstr ""
+
+#: ../root/statistics/stats.js:554
+msgid "Places with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:559
+msgid "Places with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:564
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
+
+#: ../root/statistics/stats.js:589
+msgid "Entities with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:594
+msgid "Artists with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:599
+msgid "Labels with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:604
+msgid "Places with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:609
+msgid "Ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:614
+msgid "Artist ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:619
+msgid "Label ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:624
+msgid "Place ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:629
+msgid "Recording ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:634
+msgid "Release group ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:639
+msgid "Work ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:644
+msgid "Recordings with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:649
+msgid "Release groups with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:654
+msgid "Works with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:664
+msgid "Recordings with ISRCs"
+msgstr ""
+
+#: ../root/statistics/stats.js:669
+msgid "Standalone recordings"
+msgstr ""
+
+#: ../root/statistics/stats.js:679
+msgid "Releases with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:684
+msgid "Releases with CAA Cover Art"
+msgstr ""
+
+#: ../root/statistics/stats.js:689
+msgid "Releases with No Cover Art"
+msgstr ""
+
+#: ../root/statistics/stats.js:694
+msgid "Releases with a medium with no format set"
+msgstr ""
+
+#: ../root/statistics/stats.js:699
+msgid "Releases with a medium with no format set that have cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:704
+msgid "Releases with Cover Art"
+msgstr ""
+
+#: ../root/statistics/stats.js:709
+msgid "Releases with Disc IDs"
+msgstr ""
+
+#: ../root/statistics/stats.js:714
+msgid "Releases with no language set"
+msgstr ""
+
+#: ../root/statistics/stats.js:719
+msgid "Releases not credited to Various Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:724
+msgid "Releases with no packaging set"
+msgstr ""
+
+#: ../root/statistics/stats.js:729
+msgid "Releases with no script set"
+msgstr ""
+
+#: ../root/statistics/stats.js:734
+msgid "Releases with no status set"
+msgstr ""
+
+#: ../root/statistics/stats.js:739
+msgid "Releases with no status set that have cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:744
+msgid "Releases in groups with no type set that have cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:749
+msgid "Releases credited to Various Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:759
+msgid "Release groups with automatically inferred cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:764
+msgid "Release groups with user-selected cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:769
+msgid "Release groups with no primary type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:774
+msgid "Release groups with no secondary type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:784
+msgid "Series with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:789
+msgid "Unique tag names"
+msgstr ""
+
+#: ../root/statistics/stats.js:794
+msgid "Votes for/against tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:799
+msgid "Votes for/against area tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:804
+msgid "Votes for/against artist tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:809
+msgid "Votes for/against instrument tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:814
+msgid "Votes for/against label tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:819
+msgid "Votes for/against recording tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:824
+msgid "Votes for/against release tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:829
+msgid "Votes for/against release group tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:834
+msgid "Votes for/against series tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:839
+msgid "Votes for/against work tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:844
+msgid "Tracks"
+msgstr ""
+
+#: ../root/statistics/stats.js:865
+msgid "Abstentions"
+msgstr ""
+
+#: ../root/statistics/stats.js:870
+msgid "Approvals"
+msgstr ""
+
+#: ../root/statistics/stats.js:875
+msgid "No Votes"
+msgstr ""
+
+#: ../root/statistics/stats.js:881
+msgid "Votes per day"
+msgstr ""
+
+#: ../root/statistics/stats.js:886
+msgid "Votes per week"
+msgstr ""
+
+#: ../root/statistics/stats.js:891
+msgid "Yes Votes"
+msgstr ""
+
+#: ../root/statistics/stats.js:901
+msgid "Works with no attributes"
+msgstr ""
+
+#: ../root/statistics/stats.js:906
+msgid "Works with ISWCs"
+msgstr ""
+
+#: ../root/statistics/stats.js:911
+msgid "Works with no language set"
+msgstr ""
+
+#: ../root/statistics/stats.js:916
+msgid "Works with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:918
+msgid "/day"
+msgstr ""
+
+#: ../root/statistics/stats.js:928
+msgid "Releases with 1 Disc ID"
+msgid_plural "Releases with {n} Disc IDs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/stats.js:939
+msgid "Mediums with 1 Disc ID"
+msgid_plural "Mediums with {n} Disc IDs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/stats.js:950
+msgid "Recordings with 1 Release"
+msgid_plural "Recordings with {n} Releases"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/stats.js:961
+msgid "Release Groups with 1 Release"
+msgid_plural "Release Groups with {n} Releases"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/stats.js:1014
+msgid "{type} areas"
+msgstr ""
+
+#: ../root/statistics/stats.js:1026
+msgid "{country} artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
+msgid "{country} labels"
+msgstr ""
+
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
+msgid "{country} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1061
+msgid "{type} edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:1072
+msgid "{type} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1083
+msgid "{name} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1089
+msgid "{name} mediums"
+msgstr ""
+
+#: ../root/statistics/stats.js:1096
+msgid "Releases with a medium of format “{format}” that have cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:1109
+msgid "{type} instruments"
+msgstr ""
+
+#: ../root/statistics/stats.js:1120
+msgid "{type} labels"
+msgstr ""
+
+#: ../root/statistics/stats.js:1131
+msgid "{language} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1137
+msgid "{language} works"
+msgstr ""
+
+#: ../root/statistics/stats.js:1149
+msgid "Releases with packaging “{packaging}”"
+msgstr ""
+
+#: ../root/statistics/stats.js:1162
+msgid "{type} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1170
+msgid "{first_entity_type}-{second_entity_type} Relationships"
+msgstr ""
+
+#: ../root/statistics/stats.js:1189
+msgid ""
+"{first_entity_type_name}-{second_entity_type_name} "
+"“{relationship_type_name}” relationships"
+msgstr ""
+
+#: ../root/statistics/stats.js:1205
+msgid ""
+"{first_entity_type_name}-{second_entity_type_name} "
+"“{relationship_type_name}” relationships including child relationship types"
+msgstr ""
+
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
+msgid "{type} release groups"
+msgstr ""
+
+#: ../root/statistics/stats.js:1235
+msgid "Releases in groups of type “{type}” with cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:1259
+msgid "{script} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1270
+msgid "{type} series"
+msgstr ""
+
+#: ../root/statistics/stats.js:1281
+msgid "{status} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1288
+msgid "Releases of status “{status}” with cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:1305
+msgid "Works with attribute “{attribute}”"
+msgstr ""
+
+#: ../root/statistics/stats.js:1318
+msgid "{type} works"
+msgstr ""
+
+#: ../root/statistics/utilities.js:40
+msgid "See on timeline"
+msgstr ""
diff --git a/po/statistics.tr.po b/po/statistics.tr.po
index 7c66a244a43..ab134a7be61 100644
--- a/po/statistics.tr.po
+++ b/po/statistics.tr.po
@@ -1118,7 +1118,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1150,7 +1150,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1176,14 +1177,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1197,8 +1194,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1220,7 +1219,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1228,39 +1227,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "Ülke"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "Sanatçılar"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr "Etiketler"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1415,7 +1430,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1435,69 +1451,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr ""
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "Ses kayıtları"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr ""
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1509,10 +1505,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1535,8 +1527,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1547,20 +1539,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1671,28 +1664,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1721,10 +1710,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1741,13 +1726,8 @@ msgstr "Hiçbiri"
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr "Ses kayıtları"
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1766,11 +1746,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1779,27 +1754,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1944,20 +1898,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1973,7 +1923,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1984,14 +1935,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2255,10 +2203,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2464,470 +2408,450 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "Parçalar"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
msgstr[1] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.vi.po b/po/statistics.vi.po
index 03a37f70186..b65d0645739 100644
--- a/po/statistics.vi.po
+++ b/po/statistics.vi.po
@@ -1114,7 +1114,7 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
msgstr ""
@@ -1146,7 +1146,8 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
msgstr ""
@@ -1172,14 +1173,10 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
@@ -1193,8 +1190,10 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
@@ -1216,7 +1215,7 @@ msgstr ""
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
@@ -1224,39 +1223,55 @@ msgstr ""
msgid "Last updated: {date}"
msgstr ""
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
msgstr ""
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr ""
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr ""
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr ""
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
msgstr ""
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr ""
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
msgstr ""
@@ -1410,7 +1425,8 @@ msgstr ""
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
msgstr ""
@@ -1430,69 +1446,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
msgstr ""
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
msgstr ""
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
-msgstr ""
-
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
msgstr ""
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
msgstr ""
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
msgstr ""
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
+msgid "Series"
msgstr ""
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
msgstr ""
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr ""
@@ -1504,10 +1500,6 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
@@ -1530,8 +1522,8 @@ msgstr ""
msgid "Identifiers"
msgstr ""
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1542,20 +1534,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
msgstr ""
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
msgstr ""
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
msgstr ""
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1666,28 +1659,24 @@ msgstr ""
msgid "Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1715,10 +1704,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1735,13 +1720,8 @@ msgstr ""
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1760,11 +1740,6 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
@@ -1773,27 +1748,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr ""
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
-
#: ../root/statistics/Index.js:950
msgid "Of releases"
msgstr ""
@@ -1938,20 +1892,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1967,7 +1917,8 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
@@ -1978,14 +1929,11 @@ msgstr ""
msgid "Yesterday:"
msgstr ""
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
msgstr ""
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
-
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
@@ -2249,10 +2197,6 @@ msgstr ""
msgid "Artist Credits"
msgstr ""
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
-
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
msgstr ""
@@ -2458,466 +2402,446 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
+msgid "Artist IPIs"
msgstr ""
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
+msgid "Label IPIs"
msgstr ""
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr ""
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
msgstr ""
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
msgstr ""
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
msgstr ""
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
msgstr ""
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
msgstr ""
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
msgstr ""
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
msgstr ""
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
-msgid "Release groups with no secondary type set"
-msgstr ""
-
#: ../root/statistics/stats.js:774
-msgid "Series with no type set"
-msgstr ""
-
-#: ../root/statistics/stats.js:779
-msgid "Unique tag names"
+msgid "Release groups with no secondary type set"
msgstr ""
#: ../root/statistics/stats.js:784
-msgid "Votes for/against tags"
+msgid "Series with no type set"
msgstr ""
#: ../root/statistics/stats.js:789
-msgid "Votes for/against area tags"
+msgid "Unique tag names"
msgstr ""
#: ../root/statistics/stats.js:794
-msgid "Votes for/against artist tags"
+msgid "Votes for/against tags"
msgstr ""
#: ../root/statistics/stats.js:799
-msgid "Votes for/against instrument tags"
+msgid "Votes for/against area tags"
msgstr ""
#: ../root/statistics/stats.js:804
-msgid "Votes for/against label tags"
+msgid "Votes for/against artist tags"
msgstr ""
#: ../root/statistics/stats.js:809
-msgid "Votes for/against recording tags"
+msgid "Votes for/against instrument tags"
msgstr ""
#: ../root/statistics/stats.js:814
-msgid "Votes for/against release tags"
+msgid "Votes for/against label tags"
msgstr ""
#: ../root/statistics/stats.js:819
-msgid "Votes for/against release group tags"
+msgid "Votes for/against recording tags"
msgstr ""
#: ../root/statistics/stats.js:824
-msgid "Votes for/against series tags"
+msgid "Votes for/against release tags"
msgstr ""
#: ../root/statistics/stats.js:829
-msgid "Votes for/against work tags"
+msgid "Votes for/against release group tags"
msgstr ""
#: ../root/statistics/stats.js:834
-msgid "Tracks"
+msgid "Votes for/against series tags"
msgstr ""
#: ../root/statistics/stats.js:839
-msgid "URLs"
+msgid "Votes for/against work tags"
msgstr ""
#: ../root/statistics/stats.js:844
-msgid "Videos"
+msgid "Tracks"
msgstr ""
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
diff --git a/po/statistics.zh.po b/po/statistics.zh.po
index c2599532080..decdef2c776 100644
--- a/po/statistics.zh.po
+++ b/po/statistics.zh.po
@@ -2,31 +2,34 @@
# Translators:
# Dian Li , 2009-2019
# Gary Liu, 2022
+# suming <331874545@qq.com>, 2023.
+# claybiockiller , 2023.
msgid ""
msgstr ""
"Project-Id-Version: MusicBrainz\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2012-05-24 18:54+0000\n"
-"Last-Translator: Gary Liu, 2022\n"
-"Language-Team: Chinese (http://app.transifex.com/musicbrainz/musicbrainz/"
-"language/zh/)\n"
+"PO-Revision-Date: 2023-11-04 22:28+0000\n"
+"Last-Translator: claybiockiller \n"
+"Language-Team: Chinese (Simplified) \n"
"Language: zh\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.1\n"
#: DB:statistics.statistic_event/title:2015-09-08
msgid "\"Do Not Cluster\" guideline dropped"
-msgstr ""
+msgstr "已放弃\"Do Not Cluster\"基准"
#: DB:statistics.statistic_event/title:2017-04-11
msgid "\"feat.\" standardization dropped"
-msgstr ""
+msgstr "已放弃\"feat.\"标准化"
#: DB:statistics.statistic_event/title:2021-04-19
msgid "1200px thumbnails"
-msgstr ""
+msgstr "1200像素预览图"
#: DB:statistics.statistic_event/description:2021-04-19
msgid ""
@@ -34,6 +37,8 @@ msgid ""
"very large image with a consistent size that avoids having to use the "
"original uploads directly."
msgstr ""
+"1200像素预览图已加入Cover Art Archive,向用户提供尺寸恒定的超大图,无需直接上"
+"传。"
#: DB:statistics.statistic_event/description:2016-03-01
msgid ""
@@ -41,18 +46,20 @@ msgid ""
"and the (by now dead) mailing lists and unify community communication in one "
"place."
msgstr ""
+"加入了一个基于Discourse 的新论坛,以替代老式论坛和(现已不活跃)邮件列表,将社"
+"区交流集中于一处。"
#: DB:statistics.statistic_event/description:2015-06-29
msgid ""
"A change is introduced that allows voting for and against existing "
"folksonomy tags, rather than only adding your own."
-msgstr ""
+msgstr "允许投票支持和反对已有的folksonomy标签,而不仅是自己建立。"
#: DB:statistics.statistic_event/description:2018-07-19
msgid ""
"A major update for the Picard tagger is released, with a huge amount of "
"bugfixes and improvements."
-msgstr ""
+msgstr "发布了Picard标签系统的主要更新,含大量漏洞修复和功能改进。"
#: DB:statistics.statistic_event/description:2019-11-12
msgid ""
@@ -60,26 +67,28 @@ msgid ""
"searches to help editors find interesting and/or important edits to review "
"and vote on."
msgstr ""
+"发布了新的\"投票建议\"页面,包含可用于辅助编辑者发现感兴趣和/或重要的编辑并投"
+"票的编辑搜索预设。"
#: DB:statistics.statistic_event/description:2013-08-05
msgid ""
"A new AJAX coverart uploader is released, making it easier to add cover art "
"to releases."
-msgstr ""
+msgstr "发布了一个新的基于AJAX的封面上传器,为发行版添加封面更容易了。"
#: DB:statistics.statistic_event/description:2015-12-28
msgid ""
"A new banner message now notifies users whenever they receive a new edit "
"note."
-msgstr ""
+msgstr "现在当用户收到了新的编辑注释时会有一个新的横幅消息通知。"
#: DB:statistics.statistic_event/description:2003-04-05
msgid "A new, much faster search mechanism is added."
-msgstr ""
+msgstr "添加了一个新的、更快的搜索机制。"
#: DB:statistics.statistic_event/description:2006-08-15
msgid "A rift in the MusicBrainz community leads to a Great Dispute."
-msgstr ""
+msgstr "MusicBrainz社区的意见分歧导致了一场大争论。"
#: DB:statistics.statistic_event/description:2013-05-15
msgid ""
@@ -91,7 +100,7 @@ msgstr ""
#: DB:statistics.statistic_event/description:2003-11-10
msgid ""
"A way to search for edits based on several different criteria is released."
-msgstr ""
+msgstr "发布了一个基于多种不同条件的编辑搜索方式。"
#: DB:statistics.statistic_event/description:2014-11-19
msgid ""
@@ -99,10 +108,12 @@ msgid ""
"is announced in cooperation with the Music Technology Group at Universitat "
"Pompeu Fabra."
msgstr ""
+"庞培法布拉大学大学的音乐技术小组共同宣布成立 AcousticBrainz,其目的是在庞杂资"
+"源中获取音乐的声学信息。"
#: DB:statistics.statistic_event/title:2005-04-10
msgid "Advanced relationships"
-msgstr ""
+msgstr "高级关系"
#: DB:statistics.statistic_event/description:2005-04-10
msgid ""
@@ -152,12 +163,12 @@ msgstr ""
#: DB:statistics.statistic_event/title:2005-05-22
msgid "Album languages"
-msgstr ""
+msgstr "专辑语言"
#: DB:statistics.statistic_event/description:2005-05-22
msgid ""
"Album languages, guess case improvements and revamps edit forms released."
-msgstr ""
+msgstr "发布了专辑语言和改良的编辑表格,优化了Guess Case。"
#: DB:statistics.statistic_event/description:2015-05-19
msgid ""
@@ -172,7 +183,7 @@ msgstr ""
#: DB:statistics.statistic_event/title:2004-02-24
msgid "Amazon Coverart"
-msgstr ""
+msgstr "来自亚马逊的封面"
#: DB:statistics.statistic_event/description:2008-09-01
msgid ""
@@ -183,29 +194,29 @@ msgstr ""
#: DB:statistics.statistic_event/title:2008-09-01
msgid "Amazon betas SoundUnwound"
-msgstr ""
+msgstr "亚马逊推出了SoundUnwound的测试版。"
#: DB:statistics.statistic_event/description:2004-02-24
msgid "Amazon coverart support released."
-msgstr ""
+msgstr "发布了亚马逊封面支持。"
#: DB:statistics.statistic_event/description:2006-07-12
msgid "An improved release editor and a new site design are released."
-msgstr ""
+msgstr "发布了一个改进了的发行版编辑器和新的站点设计。"
#: DB:statistics.statistic_event/description:2015-06-02
msgid ""
"An update is released that allows specifying a credit for artists in a "
"relationship, if not the same as the artist name."
-msgstr ""
+msgstr "发布了一个允许通过关联中的艺术家(如果与艺术家名称不同)确定名单的更新。"
#: DB:statistics.statistic_event/description:2004-11-14
msgid "Annotation support released."
-msgstr ""
+msgstr "发布了注释支持。"
#: DB:statistics.statistic_event/title:2004-11-14
msgid "Annotations"
-msgstr ""
+msgstr "注释"
#: DB:statistics.statistic_event/title:2013-05-15
msgid "Areas, ISNI codes and multiple release events per release"
@@ -213,13 +224,13 @@ msgstr ""
#: DB:statistics.statistic_event/title:2003-06-22
msgid "Artist subscriptions"
-msgstr ""
+msgstr "订阅艺术家"
#: DB:statistics.statistic_event/description:2005-02-13
msgid ""
"Artist subscriptions made public and various smaller user centric "
"improvements are released."
-msgstr ""
+msgstr "艺术家关注公开化和多种较小用户体验改进发布。"
#: DB:statistics.statistic_event/description:2003-06-22
msgid "Artist subscriptions."
@@ -269,7 +280,7 @@ msgstr ""
#: DB:statistics.statistic_event/title:2019-08-08
msgid "Collaborative collections"
-msgstr ""
+msgstr "合作编辑收藏"
#: DB:statistics.statistic_event/description:2019-08-08
msgid ""
@@ -283,7 +294,7 @@ msgstr ""
#: DB:statistics.statistic_event/description:2008-11-24
msgid "Collection, Ratings, CDStubs, LastUpdate released."
-msgstr ""
+msgstr "发布了收藏,评分,CDStubs和LastUpdate功能。"
#: DB:statistics.statistic_event/description:2021-05-18
msgid ""
@@ -299,7 +310,7 @@ msgstr ""
#: DB:statistics.statistic_event/title:2003-03-29
msgid "Dedicated database server"
-msgstr ""
+msgstr "专用数据库服务器"
#: DB:statistics.statistic_event/title:2016-03-01
msgid "Discourse unifies community communication"
@@ -313,15 +324,15 @@ msgstr ""
msgid ""
"Edit display improvements, turned off RDF dumps, new install scripts "
"released."
-msgstr ""
+msgstr "优化了编辑显示,关闭了RDF转储,发布了新的安装脚本。"
#: DB:statistics.statistic_event/title:2020-02-18
msgid "Edit history visible without logging in"
-msgstr ""
+msgstr "编辑记录在未登录时可见"
#: DB:statistics.statistic_event/title:2015-12-28
msgid "Edit note notifications"
-msgstr ""
+msgstr "编辑备注通知"
#: DB:statistics.statistic_event/description:2003-07-25
msgid ""
@@ -331,13 +342,15 @@ msgstr ""
#: DB:statistics.statistic_event/title:2003-11-10
msgid "Edit search"
-msgstr ""
+msgstr "编辑搜索"
#: DB:statistics.statistic_event/description:2007-12-07
msgid ""
"Editor ojnkpjg runs a script setting track times from DiscID values, "
"creating a huge spike in edits."
msgstr ""
+"编辑器 ojnkpjg 运行脚本时,根据 DiscID 值设置音轨时长,从而在编辑中产生巨大的"
+"峰值。"
#: DB:statistics.statistic_event/description:2015-11-30
msgid ""
@@ -347,7 +360,7 @@ msgstr ""
#: DB:statistics.statistic_event/title:2003-06-07
msgid "Email verification"
-msgstr ""
+msgstr "电子邮件验证"
#: DB:statistics.statistic_event/description:2012-06-25
msgid ""
@@ -376,6 +389,8 @@ msgid ""
"Folksonomy tagging and editor subscriptions are released. Additionally, it's "
"now possible to batch-add relationships to multiple tracks on a release."
msgstr ""
+"发布了Folksonomy标签和编辑器订阅功能。此外,现在可以批量添加同一专辑中多个不"
+"同音轨的关联。"
#: DB:statistics.statistic_event/description:2015-09-04
msgid ""
@@ -391,6 +406,8 @@ msgid ""
"FreeDB auto import feature turned off and autoeditor elections released. "
"Unused TRMs pruned from the database."
msgstr ""
+"关闭了FreeDB自动导入功能,发布了自动编辑推选功能。未使用的TRM已从数据库中精"
+"简。"
#: DB:statistics.statistic_event/title:2004-10-10
msgid "FreeDB off/Autoeditors"
@@ -414,7 +431,7 @@ msgstr ""
#: DB:statistics.statistic_event/title:2006-08-15
msgid "Great Dispute"
-msgstr ""
+msgstr "大冲突"
#: DB:statistics.statistic_event/title:2015-04-27
msgid "Guess feat. buttons"
@@ -447,11 +464,11 @@ msgstr ""
#: DB:statistics.statistic_event/title:2004-07-24
msgid "Improve voting"
-msgstr ""
+msgstr "改善投票"
#: DB:statistics.statistic_event/title:2003-04-05
msgid "Improved search"
-msgstr ""
+msgstr "改善搜索"
#: DB:statistics.statistic_event/description:2013-02-11
msgid ""
@@ -483,7 +500,7 @@ msgstr ""
#: DB:statistics.statistic_event/description:2006-03-05
msgid "Indexes search and a new XML based Web Service are released."
-msgstr ""
+msgstr "发布了索引搜索以及新的基于XML的网页端服务。"
#: DB:statistics.statistic_event/title:2004-01-17
msgid "Inline edits"
@@ -495,7 +512,7 @@ msgstr ""
#: DB:statistics.statistic_event/title:2004-05-09
msgid "Install scripts"
-msgstr ""
+msgstr "安装脚本"
#: DB:statistics.statistic_event/title:2020-12-31
msgid "Instrument images, recordings' first release date"
@@ -507,7 +524,7 @@ msgstr ""
#: DB:statistics.statistic_event/title:2021-02-01
msgid "Italian translation released, IPI and ISNI become autoedits"
-msgstr ""
+msgstr "发布了意大利文翻译,IPI和ISNI为自动编辑。"
#: DB:statistics.statistic_event/title:2021-02-23
msgid "Kartik Ohri joins the MetaBrainz team"
@@ -554,7 +571,7 @@ msgstr ""
#: DB:statistics.statistic_event/description:2003-12-28
msgid ""
"Link to MusicBrainz feature, release events and edit suggestions released."
-msgstr ""
+msgstr "发布了链接到MusicBrainz功能,专辑事件以及编辑提示。"
#: DB:statistics.statistic_event/description:2007-01-20
msgid "Linkara Musica becomes first commercial customer of MetaBrainz."
@@ -562,7 +579,7 @@ msgstr ""
#: DB:statistics.statistic_event/title:2003-12-28
msgid "Linking"
-msgstr ""
+msgstr "链接"
#: DB:statistics.statistic_event/description:2020-10-07
msgid ""
@@ -660,6 +677,8 @@ msgid ""
"fingerprints. Picard becomes the official MusicBrainz tagger with PUID "
"support, which causes edit activity to decrease."
msgstr ""
+"MusicBrainz 与 MusicIP 合作,并开始使用 MusicDNS 的 PUID 声学指纹。 Picard 成"
+"为有着 PUID 支持的官方 MusicBrainz 跟踪器,这可以减少编辑活动。"
#: DB:statistics.statistic_event/title:2006-03-12
msgid "MusicIP PUID"
@@ -679,7 +698,7 @@ msgstr ""
#: DB:statistics.statistic_event/description:2011-05-18
msgid "NGS, a MusicBrainz major rewrite, is released!"
-msgstr ""
+msgstr "发布了NGS,MusicBrainz的大规模重构!"
#: DB:statistics.statistic_event/title:2016-02-22
msgid "New MusicBrainz design"
@@ -697,11 +716,11 @@ msgstr ""
#: DB:statistics.statistic_event/title:2003-10-13
msgid "Non album tracks"
-msgstr ""
+msgstr "非专辑曲目"
#: DB:statistics.statistic_event/description:2003-10-13
msgid "Non album tracks are released."
-msgstr ""
+msgstr "发布了非专辑曲目。"
#: DB:statistics.statistic_event/description:2008-09-23
msgid "Oliver Charles becomes employee #1 of MetaBrainz Foundation."
@@ -737,11 +756,11 @@ msgstr ""
#: DB:statistics.statistic_event/title:2012-06-02
msgid "Picard 1.0 released"
-msgstr ""
+msgstr "发布了Picard 1.0"
#: DB:statistics.statistic_event/title:2018-07-19
msgid "Picard 2.0 released"
-msgstr ""
+msgstr "发布了Picard 2.0"
#: DB:statistics.statistic_event/description:2017-10-31
msgid ""
@@ -752,11 +771,11 @@ msgstr ""
#: DB:statistics.statistic_event/title:2012-10-15
msgid "Relationship Editor"
-msgstr ""
+msgstr "关联编辑器"
#: DB:statistics.statistic_event/title:2015-06-02
msgid "Relationship credits become available"
-msgstr ""
+msgstr "关联名单可用"
#: DB:statistics.statistic_event/title:2011-11-23
msgid "Relationships displayed on release pages"
@@ -773,11 +792,11 @@ msgstr ""
#: DB:statistics.statistic_event/title:2006-07-12
#: DB:statistics.statistic_event/title:2003-10-19
msgid "Release editor"
-msgstr ""
+msgstr "发布了编辑器"
#: DB:statistics.statistic_event/description:2003-10-19
msgid "Release editor and Guess Case released."
-msgstr ""
+msgstr "发布了专辑编辑器以及Guess Case。"
#: DB:statistics.statistic_event/description:2009-05-24
msgid ""
@@ -879,7 +898,7 @@ msgstr ""
#: DB:statistics.statistic_event/title:2014-11-19
msgid "The AcousticBrainz project goes live"
-msgstr ""
+msgstr "AcousticBrainz 项目上线"
#: DB:statistics.statistic_event/title:2022-02-16
msgid "The AcousticBrainz project is discontinued"
@@ -1017,11 +1036,11 @@ msgstr ""
msgid ""
"Top menu navigation improved, duplicate artists, album edit all, track time "
"editing features released."
-msgstr ""
+msgstr "顶部菜单检索得到改善,复制艺术家、编辑专辑全部,曲目时间编辑功能发布。"
#: DB:statistics.statistic_event/title:2007-12-07
msgid "Track times set from DiscIDs"
-msgstr ""
+msgstr "从 DiscIDs 设置音轨时长"
#: DB:statistics.statistic_event/description:2014-05-14
msgid ""
@@ -1058,7 +1077,7 @@ msgstr ""
#: DB:statistics.statistic_event/title:2019-11-12
msgid "Voting suggestions"
-msgstr ""
+msgstr "投票建议"
#: DB:statistics.statistic_event/title:2019-04-26
msgid "Web service version 1 taken down"
@@ -1073,7 +1092,7 @@ msgstr ""
#: DB:statistics.statistic_event/title:2014-03-17
msgid "Work attributes"
-msgstr ""
+msgstr "作品属性"
#: DB:statistics.statistic_event/description:2014-03-17
msgid ""
@@ -1116,10 +1135,10 @@ msgstr ""
msgid "Controls"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:40
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
#: ../root/statistics/StatisticsLayout.js:50
msgid "Countries"
-msgstr ""
+msgstr "国家"
#: ../root/statistics/layout.tt:4 ../root/statistics/CoverArt.js:67
#: ../root/statistics/StatisticsLayout.js:60 ../root/statistics/stats.js:21
@@ -1144,14 +1163,15 @@ msgstr ""
#: ../root/statistics/Editors.js:109 ../root/statistics/Index.js:1096
#: ../root/statistics/StatisticsLayout.js:80
msgid "Editors"
-msgstr ""
+msgstr "编者"
#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
-#: ../root/statistics/Index.js:1220 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
#: ../root/statistics/stats.js:289
msgid "Edits"
-msgstr ""
+msgstr "修改"
#: ../root/statistics/timeline.tt:28
msgid "Exact Values (items vs. day)"
@@ -1160,7 +1180,7 @@ msgstr ""
#: ../root/statistics/layout.tt:4 ../root/statistics/StatisticsLayout.js:75
#: ../root/statistics/stats.js:25
msgid "Formats"
-msgstr ""
+msgstr "格式"
#: ../root/statistics/timeline.tt:19
msgid "Hover and click on vertical lines"
@@ -1174,18 +1194,14 @@ msgstr ""
msgid "Legend"
msgstr ""
-#: ../root/statistics/timeline.tt:6
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
msgid "MusicBrainz Events"
msgstr ""
-#: ../root/statistics/timeline.tt:19
-msgid "MusicBrainz Events:"
-msgstr ""
-
#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
#: ../root/statistics/StatisticsLayout.js:45
msgid "Overview"
-msgstr "总览"
+msgstr "概要"
#: ../root/statistics/timeline.tt:30
msgid "Rate of Change (average items/day vs. day)"
@@ -1195,12 +1211,14 @@ msgstr ""
msgid "Rate of Change Graph"
msgstr ""
-#: ../root/statistics/layout.tt:4 ../root/statistics/Relationships.js:105
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
#: ../root/statistics/stats.js:48
msgid "Relationships"
-msgstr ""
+msgstr "关联"
#: ../root/statistics/timeline.tt:17
msgid "Reset:"
@@ -1212,55 +1230,71 @@ msgstr ""
#: ../root/statistics/timeline.tt:25
msgid "Timeline Graph"
-msgstr ""
+msgstr "时间线图表"
#: ../root/statistics/timeline.tt:16
msgid "Zoom:"
msgstr ""
-#: ../root/statistics/Countries.js:42 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
#: ../root/statistics/LanguagesScripts.js:53
#: ../root/statistics/Relationships.js:108
msgid "Last updated: {date}"
-msgstr ""
+msgstr "最后更新时间:{date}"
-#: ../root/statistics/Countries.js:48 ../root/statistics/Editors.js:53
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
#: ../root/statistics/LanguagesScripts.js:154
msgid "Rank"
-msgstr ""
+msgstr "评级"
-#: ../root/statistics/Countries.js:50
+#: ../root/statistics/Countries.js:52
msgid "Country"
msgstr "地区"
-#: ../root/statistics/Countries.js:54 ../root/statistics/Index.js:233
-#: ../root/statistics/Index.js:237 ../root/statistics/stats.js:63
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
msgid "Artists"
msgstr "艺术家"
-#: ../root/statistics/Countries.js:58 ../root/statistics/CoverArt.js:106
-#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:376
-#: ../root/statistics/LanguagesScripts.js:72
-#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:664
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
msgid "Releases"
msgstr "专辑"
-#: ../root/statistics/Countries.js:62 ../root/statistics/Index.js:711
-#: ../root/statistics/Index.js:718 ../root/statistics/stats.js:509
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
msgid "Labels"
-msgstr "厂牌"
+msgstr "唱片公司"
+
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr "活动"
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr "地点"
-#: ../root/statistics/Countries.js:66 ../root/statistics/Formats.js:66
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
#: ../root/statistics/LanguagesScripts.js:80
msgid "Total"
msgstr "总计"
-#: ../root/statistics/Countries.js:88
+#: ../root/statistics/Countries.js:98
msgid "Unknown Country"
-msgstr ""
+msgstr "未知国家"
#: ../root/statistics/CoverArt.js:71
msgid "Basics"
@@ -1287,7 +1321,7 @@ msgstr ""
#: ../root/statistics/CoverArt.js:134 ../root/statistics/CoverArt.js:306
msgid "No type"
-msgstr ""
+msgstr "无类型"
#: ../root/statistics/CoverArt.js:152
msgid "By Release Status"
@@ -1303,11 +1337,11 @@ msgstr ""
#: ../root/statistics/CoverArt.js:205
msgid "No format"
-msgstr ""
+msgstr "无格式"
#: ../root/statistics/CoverArt.js:226
msgid "Release groups"
-msgstr ""
+msgstr "专辑组"
#: ../root/statistics/CoverArt.js:230
msgid "Release groups with cover art:"
@@ -1358,7 +1392,7 @@ msgstr ""
#: ../root/statistics/Editors.js:113 ../root/statistics/Editors.js:119
msgid "Editor"
-msgstr ""
+msgstr "编辑者"
#: ../root/statistics/Editors.js:114
msgid "Most active editors in the past week"
@@ -1412,9 +1446,10 @@ msgstr "格式"
msgid "% of total releases"
msgstr ""
-#: ../root/statistics/Formats.js:59 ../root/statistics/stats.js:529
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
msgid "Mediums"
-msgstr ""
+msgstr "媒介"
#: ../root/statistics/Formats.js:60
msgid "% of total mediums"
@@ -1422,7 +1457,7 @@ msgstr ""
#: ../root/statistics/Formats.js:94
msgid "Unknown Format"
-msgstr ""
+msgstr "未知格式"
#: ../root/statistics/Index.js:87
msgid "Basic metadata"
@@ -1432,69 +1467,49 @@ msgstr ""
msgid "Core Entities"
msgstr ""
-#: ../root/statistics/Index.js:94 ../root/statistics/Index.js:240
-msgid "Artists:"
-msgstr ""
-
-#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:619
-#: ../root/statistics/Index.js:651
-msgid "Release Groups:"
-msgstr ""
-
-#: ../root/statistics/Index.js:102 ../root/statistics/Index.js:379
-#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
-#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
-#: ../root/statistics/Index.js:524
-msgid "Releases:"
-msgstr ""
-
-#: ../root/statistics/Index.js:106 ../root/statistics/Index.js:568
-msgid "Mediums:"
-msgstr ""
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr "发行团"
-#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:689
-msgid "Recordings:"
-msgstr ""
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr "录音"
#: ../root/statistics/Index.js:114
-msgid "Tracks:"
-msgstr ""
-
-#: ../root/statistics/Index.js:118
-msgid "Labels:"
-msgstr ""
-
-#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:746
-#: ../root/statistics/Index.js:778
-msgid "Works:"
+msgid "Tracks)"
msgstr ""
-#: ../root/statistics/Index.js:126
-msgid "URLs:"
-msgstr ""
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr "作品"
-#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:808
-msgid "Areas:"
-msgstr ""
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr "URL"
-#: ../root/statistics/Index.js:134 ../root/statistics/Index.js:836
-msgid "Places:"
-msgstr ""
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr "区域"
-#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:864
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
msgctxt "plural"
-msgid "Series:"
-msgstr ""
-
-#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:886
-msgid "Instruments:"
-msgstr ""
+msgid "Series"
+msgstr "系列"
-#: ../root/statistics/Index.js:146 ../root/statistics/Index.js:916
-msgid "Events:"
-msgstr ""
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr "乐器"
-#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:444
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
msgid "Genres"
msgstr "流派"
@@ -1506,15 +1521,11 @@ msgstr ""
msgid "Editors (valid / deleted):"
msgstr ""
-#: ../root/statistics/Index.js:165 ../root/statistics/Relationships.js:125
-msgid "Relationships:"
-msgstr ""
-
#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
msgid "Collections"
-msgstr "歌曲集"
+msgstr "收藏集"
#: ../root/statistics/Index.js:173
msgid "CD Stubs (all time / current):"
@@ -1530,10 +1541,10 @@ msgstr ""
#: ../root/statistics/Index.js:196
msgid "Identifiers"
-msgstr ""
+msgstr "标识符"
-#: ../root/statistics/Index.js:199
-msgid "MBIDs:"
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
msgstr ""
#: ../root/statistics/Index.js:203
@@ -1544,20 +1555,21 @@ msgstr ""
msgid "ISWCs (all / unique):"
msgstr ""
-#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:519
-msgid "Disc IDs:"
-msgstr ""
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr "唱片IDs"
-#: ../root/statistics/Index.js:219
-msgid "Barcodes:"
-msgstr ""
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr "条形码"
-#: ../root/statistics/Index.js:223
-msgid "IPIs:"
-msgstr ""
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr "IPI"
-#: ../root/statistics/Index.js:227
-msgid "ISNIs:"
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
msgstr ""
#: ../root/statistics/Index.js:246
@@ -1590,11 +1602,11 @@ msgstr ""
#: ../root/statistics/Index.js:288
msgid "with appearances in artist credits:"
-msgstr ""
+msgstr "出现在艺术家名单中:"
#: ../root/statistics/Index.js:294
msgid "with no appearances in artist credits:"
-msgstr ""
+msgstr "未出现在艺术家名单中:"
#: ../root/statistics/Index.js:299
msgid "Non-group artists:"
@@ -1602,7 +1614,7 @@ msgstr ""
#: ../root/statistics/Index.js:305
msgid "Male:"
-msgstr ""
+msgstr "男性:"
#: ../root/statistics/Index.js:316
msgid "Female:"
@@ -1610,7 +1622,7 @@ msgstr ""
#: ../root/statistics/Index.js:327
msgid "Non-binary"
-msgstr ""
+msgstr "非二进制"
#: ../root/statistics/Index.js:338
msgid "Other gender:"
@@ -1662,34 +1674,30 @@ msgstr ""
#: ../root/statistics/Index.js:465
msgid "No front cover art:"
-msgstr ""
+msgstr "无封面图片:"
#: ../root/statistics/Index.js:472
msgid "Data Quality"
-msgstr ""
+msgstr "数据质量"
-#: ../root/statistics/Index.js:481
-msgid "High Data Quality:"
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
msgstr ""
#: ../root/statistics/Index.js:487
-msgid "Default Data Quality:"
+msgid "Default Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:494
-msgid "Normal Data Quality:"
-msgstr ""
-
-#: ../root/statistics/Index.js:501
-msgid "Unknown Data Quality:"
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:509
-msgid "Low Data Quality:"
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
msgstr ""
-#: ../root/statistics/Index.js:516 ../root/statistics/stats.js:283
-msgid "Disc IDs"
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
msgstr ""
#: ../root/statistics/Index.js:530
@@ -1717,10 +1725,6 @@ msgstr ""
msgid "Mediums with at least one disc ID:"
msgstr ""
-#: ../root/statistics/Index.js:612 ../root/statistics/stats.js:744
-msgid "Release Groups"
-msgstr ""
-
#: ../root/statistics/Index.js:616
msgid "Primary Types"
msgstr ""
@@ -1737,13 +1741,8 @@ msgstr "无"
msgid "Secondary Types"
msgstr ""
-#: ../root/statistics/Index.js:682 ../root/statistics/Index.js:686
-#: ../root/statistics/stats.js:649
-msgid "Recordings"
-msgstr ""
-
-#: ../root/statistics/Index.js:694
-msgid "Videos:"
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
msgstr ""
#: ../root/statistics/Index.js:699
@@ -1762,39 +1761,13 @@ msgstr ""
msgid "Types"
msgstr ""
-#: ../root/statistics/Index.js:739 ../root/statistics/LanguagesScripts.js:76
-#: ../root/statistics/stats.js:886
-msgid "Works"
-msgstr ""
-
#: ../root/statistics/Index.js:765
msgid "With ISWCs"
msgstr ""
#: ../root/statistics/Index.js:775
msgid "Attributes"
-msgstr ""
-
-#: ../root/statistics/Index.js:801 ../root/statistics/stats.js:53
-msgid "Areas"
-msgstr ""
-
-#: ../root/statistics/Index.js:829 ../root/statistics/stats.js:544
-msgid "Places"
-msgstr ""
-
-#: ../root/statistics/Index.js:857 ../root/statistics/stats.js:769
-msgctxt "plural"
-msgid "Series"
-msgstr "系列"
-
-#: ../root/statistics/Index.js:879 ../root/statistics/stats.js:449
-msgid "Instruments"
-msgstr ""
-
-#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
-msgid "Events"
-msgstr ""
+msgstr "属性"
#: ../root/statistics/Index.js:950
msgid "Of releases"
@@ -1806,11 +1779,11 @@ msgstr ""
#: ../root/statistics/Index.js:966
msgid "Owned music"
-msgstr ""
+msgstr "私有音乐"
#: ../root/statistics/Index.js:975
msgid "Wishlist"
-msgstr "愿望清单"
+msgstr "愿望单"
#: ../root/statistics/Index.js:983
msgid "Of events"
@@ -1862,11 +1835,11 @@ msgstr ""
#: ../root/statistics/Index.js:1073
msgid "Public"
-msgstr ""
+msgstr "公开"
#: ../root/statistics/Index.js:1079
msgid "Private"
-msgstr ""
+msgstr "私有"
#: ../root/statistics/Index.js:1085
msgid "With collaborators"
@@ -1940,20 +1913,16 @@ msgstr ""
msgid "Editors (deleted):"
msgstr ""
-#: ../root/statistics/Index.js:1223 ../root/statistics/Index.js:1270
-msgid "Edits:"
-msgstr ""
-
#: ../root/statistics/Index.js:1229
-msgid "Open:"
+msgid "Open"
msgstr ""
#: ../root/statistics/Index.js:1235
-msgid "Applied:"
+msgid "Applied"
msgstr ""
#: ../root/statistics/Index.js:1241
-msgid "Voted down:"
+msgid "Voted down"
msgstr ""
#: ../root/statistics/Index.js:1247
@@ -1969,29 +1938,27 @@ msgid "Failed (internal error):"
msgstr ""
#: ../root/statistics/Index.js:1265
-msgid "Cancelled:"
+msgctxt "edit"
+msgid "Cancelled"
msgstr ""
#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
msgid "Last 7 days:"
-msgstr ""
+msgstr "最近7天:"
#: ../root/statistics/Index.js:1283 ../root/statistics/Index.js:1335
msgid "Yesterday:"
-msgstr ""
+msgstr "昨天:"
-#: ../root/statistics/Index.js:1290 ../root/statistics/stats.js:850
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
msgid "Votes"
-msgstr ""
-
-#: ../root/statistics/Index.js:1293 ../root/statistics/Index.js:1322
-msgid "Votes:"
-msgstr ""
+msgstr "投票"
#: ../root/statistics/Index.js:1299
msgctxt "vote"
msgid "Approve"
-msgstr "赞同"
+msgstr "通过"
#: ../root/statistics/Index.js:1305
msgctxt "vote"
@@ -2006,7 +1973,7 @@ msgstr "否"
#: ../root/statistics/Index.js:1317
msgctxt "vote"
msgid "Abstain"
-msgstr ""
+msgstr "放弃"
#: ../root/statistics/LanguagesScripts.js:50
msgid "Languages and Scripts"
@@ -2019,15 +1986,15 @@ msgstr ""
#: ../root/statistics/LanguagesScripts.js:62
#: ../root/statistics/LanguagesScripts.js:68
msgid "Languages"
-msgstr "Languages"
+msgstr "语言"
#: ../root/statistics/LanguagesScripts.js:97
msgid "Unknown language"
-msgstr ""
+msgstr "未知语言"
#: ../root/statistics/LanguagesScripts.js:150
msgid "Scripts"
-msgstr ""
+msgstr "脚本"
#: ../root/statistics/LanguagesScripts.js:156
msgid "Script"
@@ -2035,7 +2002,7 @@ msgstr "文字"
#: ../root/statistics/LanguagesScripts.js:173
msgid "Unknown script"
-msgstr ""
+msgstr "位置脚本"
#: ../root/statistics/MusicBrainzHistory.js:20
msgid "History"
@@ -2055,7 +2022,7 @@ msgstr ""
#: ../root/statistics/NoStatistics.js:15 ../root/statistics/NoStatistics.js:16
msgid "No Statistics"
-msgstr ""
+msgstr "无统计信息"
#: ../root/statistics/NoStatistics.js:19
msgid ""
@@ -2080,7 +2047,7 @@ msgstr ""
#: ../root/statistics/Relationships.js:143
msgid "{type0}-{type1}"
-msgstr ""
+msgstr "{type0}-{type1}"
#: ../root/statistics/Relationships.js:151
msgid "{type0}-{type1} relationships:"
@@ -2092,7 +2059,7 @@ msgstr ""
#: ../root/statistics/stats.js:17
msgid "Artist Countries"
-msgstr ""
+msgstr "艺术家国家"
#: ../root/statistics/stats.js:18
msgid "Artist Types and Genders"
@@ -2104,7 +2071,7 @@ msgstr ""
#: ../root/statistics/stats.js:23
msgid "Edit Types"
-msgstr ""
+msgstr "编辑类型"
#: ../root/statistics/stats.js:24
msgid "Event Types"
@@ -2116,7 +2083,7 @@ msgstr ""
#: ../root/statistics/stats.js:27
msgid "Label Countries"
-msgstr ""
+msgstr "唱片公司国家"
#: ../root/statistics/stats.js:28
msgid "Label Types"
@@ -2145,7 +2112,7 @@ msgstr ""
#: ../root/statistics/stats.js:35
msgid "Release Languages"
-msgstr ""
+msgstr "发行团语言"
#: ../root/statistics/stats.js:36
msgid "Release Packagings"
@@ -2169,7 +2136,7 @@ msgstr ""
#: ../root/statistics/stats.js:41
msgid "Work Attributes"
-msgstr ""
+msgstr "作品属性"
#: ../root/statistics/stats.js:42
msgid "Work Languages"
@@ -2185,7 +2152,7 @@ msgstr ""
#: ../root/statistics/stats.js:68
msgid "Artists with no appearances in artist credits"
-msgstr ""
+msgstr "未出现在艺术家名单中的艺术家"
#: ../root/statistics/stats.js:73
msgid "Artists with no country set"
@@ -2193,11 +2160,11 @@ msgstr ""
#: ../root/statistics/stats.js:78
msgid "Female Artists"
-msgstr ""
+msgstr "女性艺术家"
#: ../root/statistics/stats.js:83
msgid "Male Artists"
-msgstr ""
+msgstr "男性艺术家"
#: ../root/statistics/stats.js:88
msgid "Non-binary Artists"
@@ -2217,11 +2184,11 @@ msgstr ""
#: ../root/statistics/stats.js:108
msgid "Artists with at least one artist credit appearance"
-msgstr ""
+msgstr "至少出现在一个艺术家名单中的艺术家"
#: ../root/statistics/stats.js:113
msgid "Characters"
-msgstr ""
+msgstr "角色"
#: ../root/statistics/stats.js:118
msgid "Choirs"
@@ -2249,11 +2216,7 @@ msgstr ""
#: ../root/statistics/stats.js:148
msgid "Artist Credits"
-msgstr ""
-
-#: ../root/statistics/stats.js:153
-msgid "Barcodes"
-msgstr ""
+msgstr "艺术家名单"
#: ../root/statistics/stats.js:158
msgid "CDStubs (current)"
@@ -2265,7 +2228,7 @@ msgstr ""
#: ../root/statistics/stats.js:168
msgid "CDStub tracks"
-msgstr ""
+msgstr "CDStub 曲目"
#: ../root/statistics/stats.js:178
msgid "Collections with collaborators"
@@ -2273,7 +2236,7 @@ msgstr ""
#: ../root/statistics/stats.js:183
msgid "Private collections"
-msgstr ""
+msgstr "私有收藏"
#: ../root/statistics/stats.js:188
msgid "Public collections"
@@ -2357,7 +2320,7 @@ msgstr ""
#: ../root/statistics/stats.js:299
msgid "Cancelled edits"
-msgstr ""
+msgstr "取消的修改"
#: ../root/statistics/stats.js:304
msgid "Error edits"
@@ -2381,7 +2344,7 @@ msgstr ""
#: ../root/statistics/stats.js:329
msgid "Open Edits"
-msgstr ""
+msgstr "开启的编辑"
#: ../root/statistics/stats.js:335
msgid "Edits per day"
@@ -2460,469 +2423,492 @@ msgid "Editors who voted in the last week"
msgstr ""
#: ../root/statistics/stats.js:439
-msgid "Events with no type set"
+msgid "Events with no country set"
msgstr ""
-#: ../root/statistics/stats.js:454
-msgid "Instruments with no type set"
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
msgstr ""
#: ../root/statistics/stats.js:459
-msgid "IPIs"
-msgstr ""
-
-#: ../root/statistics/stats.js:464
-msgid "Artist IPIs"
+msgid "Instruments with no type set"
msgstr ""
#: ../root/statistics/stats.js:469
-msgid "Label IPIs"
-msgstr ""
+msgid "Artist IPIs"
+msgstr "艺术家 IPI"
#: ../root/statistics/stats.js:474
-msgid "ISNIs"
-msgstr ""
+msgid "Label IPIs"
+msgstr "唱片公司 IPI"
-#: ../root/statistics/stats.js:479
+#: ../root/statistics/stats.js:484
msgid "Artist ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:484
+#: ../root/statistics/stats.js:489
msgid "Label ISNIs"
msgstr ""
-#: ../root/statistics/stats.js:489
+#: ../root/statistics/stats.js:494
msgid "ISRCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:494
+#: ../root/statistics/stats.js:499
msgid "ISRCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:499
+#: ../root/statistics/stats.js:504
msgid "ISWCs (unique)"
msgstr ""
-#: ../root/statistics/stats.js:504
+#: ../root/statistics/stats.js:509
msgid "ISWCs (all uses)"
msgstr ""
-#: ../root/statistics/stats.js:514
-msgid "Labels with no country set"
-msgstr ""
-
#: ../root/statistics/stats.js:519
-msgid "Labels with no type set"
+msgid "Labels with no country set"
msgstr ""
#: ../root/statistics/stats.js:524
-msgid "MBIDs"
+msgid "Labels with no type set"
msgstr ""
-#: ../root/statistics/stats.js:534
+#: ../root/statistics/stats.js:539
msgid "Mediums with no format set"
msgstr ""
-#: ../root/statistics/stats.js:539
+#: ../root/statistics/stats.js:544
msgid "Mediums with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:549
-msgid "Places with no type set"
-msgstr ""
-
#: ../root/statistics/stats.js:554
-msgid "Default (Normal + Unknown) Data Quality"
+msgid "Places with no country set"
msgstr ""
#: ../root/statistics/stats.js:559
-msgid "High Data Quality"
+msgid "Places with no type set"
msgstr ""
#: ../root/statistics/stats.js:564
-msgid "Low Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:569
-msgid "Normal Data Quality"
-msgstr ""
-
-#: ../root/statistics/stats.js:574
-msgid "Unknown Data Quality"
+msgid "Default (Normal + Unknown) Data Quality"
msgstr ""
-#: ../root/statistics/stats.js:579
+#: ../root/statistics/stats.js:589
msgid "Entities with ratings"
msgstr ""
-#: ../root/statistics/stats.js:584
+#: ../root/statistics/stats.js:594
msgid "Artists with ratings"
msgstr ""
-#: ../root/statistics/stats.js:589
+#: ../root/statistics/stats.js:599
msgid "Labels with ratings"
msgstr ""
-#: ../root/statistics/stats.js:594
+#: ../root/statistics/stats.js:604
msgid "Places with ratings"
msgstr ""
-#: ../root/statistics/stats.js:599
+#: ../root/statistics/stats.js:609
msgid "Ratings"
msgstr "评分"
-#: ../root/statistics/stats.js:604
+#: ../root/statistics/stats.js:614
msgid "Artist ratings"
-msgstr ""
+msgstr "艺术家评分"
-#: ../root/statistics/stats.js:609
+#: ../root/statistics/stats.js:619
msgid "Label ratings"
-msgstr ""
+msgstr "厂牌评分:"
-#: ../root/statistics/stats.js:614
+#: ../root/statistics/stats.js:624
msgid "Place ratings"
-msgstr ""
+msgstr "地点评分"
-#: ../root/statistics/stats.js:619
+#: ../root/statistics/stats.js:629
msgid "Recording ratings"
-msgstr ""
+msgstr "录音评分"
-#: ../root/statistics/stats.js:624
+#: ../root/statistics/stats.js:634
msgid "Release group ratings"
-msgstr ""
+msgstr "专辑组评分"
-#: ../root/statistics/stats.js:629
+#: ../root/statistics/stats.js:639
msgid "Work ratings"
-msgstr ""
+msgstr "作品评分"
-#: ../root/statistics/stats.js:634
+#: ../root/statistics/stats.js:644
msgid "Recordings with ratings"
msgstr ""
-#: ../root/statistics/stats.js:639
+#: ../root/statistics/stats.js:649
msgid "Release groups with ratings"
msgstr ""
-#: ../root/statistics/stats.js:644
+#: ../root/statistics/stats.js:654
msgid "Works with ratings"
msgstr ""
-#: ../root/statistics/stats.js:654
+#: ../root/statistics/stats.js:664
msgid "Recordings with ISRCs"
-msgstr ""
+msgstr "有ISRC的录音"
-#: ../root/statistics/stats.js:659
+#: ../root/statistics/stats.js:669
msgid "Standalone recordings"
msgstr ""
-#: ../root/statistics/stats.js:669
+#: ../root/statistics/stats.js:679
msgid "Releases with no country set"
msgstr ""
-#: ../root/statistics/stats.js:674
+#: ../root/statistics/stats.js:684
msgid "Releases with CAA Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:679
+#: ../root/statistics/stats.js:689
msgid "Releases with No Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:684
+#: ../root/statistics/stats.js:694
msgid "Releases with a medium with no format set"
msgstr ""
-#: ../root/statistics/stats.js:689
+#: ../root/statistics/stats.js:699
msgid "Releases with a medium with no format set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:694
+#: ../root/statistics/stats.js:704
msgid "Releases with Cover Art"
msgstr ""
-#: ../root/statistics/stats.js:699
+#: ../root/statistics/stats.js:709
msgid "Releases with Disc IDs"
msgstr ""
-#: ../root/statistics/stats.js:704
+#: ../root/statistics/stats.js:714
msgid "Releases with no language set"
msgstr ""
-#: ../root/statistics/stats.js:709
+#: ../root/statistics/stats.js:719
msgid "Releases not credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:714
+#: ../root/statistics/stats.js:724
msgid "Releases with no packaging set"
msgstr ""
-#: ../root/statistics/stats.js:719
+#: ../root/statistics/stats.js:729
msgid "Releases with no script set"
msgstr ""
-#: ../root/statistics/stats.js:724
+#: ../root/statistics/stats.js:734
msgid "Releases with no status set"
msgstr ""
-#: ../root/statistics/stats.js:729
+#: ../root/statistics/stats.js:739
msgid "Releases with no status set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:734
+#: ../root/statistics/stats.js:744
msgid "Releases in groups with no type set that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:739
+#: ../root/statistics/stats.js:749
msgid "Releases credited to Various Artists"
msgstr ""
-#: ../root/statistics/stats.js:749
+#: ../root/statistics/stats.js:759
msgid "Release groups with automatically inferred cover art"
msgstr ""
-#: ../root/statistics/stats.js:754
+#: ../root/statistics/stats.js:764
msgid "Release groups with user-selected cover art"
msgstr ""
-#: ../root/statistics/stats.js:759
+#: ../root/statistics/stats.js:769
msgid "Release groups with no primary type set"
msgstr ""
-#: ../root/statistics/stats.js:764
+#: ../root/statistics/stats.js:774
msgid "Release groups with no secondary type set"
msgstr ""
-#: ../root/statistics/stats.js:774
+#: ../root/statistics/stats.js:784
msgid "Series with no type set"
msgstr ""
-#: ../root/statistics/stats.js:779
+#: ../root/statistics/stats.js:789
msgid "Unique tag names"
msgstr ""
-#: ../root/statistics/stats.js:784
+#: ../root/statistics/stats.js:794
msgid "Votes for/against tags"
msgstr ""
-#: ../root/statistics/stats.js:789
+#: ../root/statistics/stats.js:799
msgid "Votes for/against area tags"
msgstr ""
-#: ../root/statistics/stats.js:794
+#: ../root/statistics/stats.js:804
msgid "Votes for/against artist tags"
msgstr ""
-#: ../root/statistics/stats.js:799
+#: ../root/statistics/stats.js:809
msgid "Votes for/against instrument tags"
msgstr ""
-#: ../root/statistics/stats.js:804
+#: ../root/statistics/stats.js:814
msgid "Votes for/against label tags"
msgstr ""
-#: ../root/statistics/stats.js:809
+#: ../root/statistics/stats.js:819
msgid "Votes for/against recording tags"
msgstr ""
-#: ../root/statistics/stats.js:814
+#: ../root/statistics/stats.js:824
msgid "Votes for/against release tags"
msgstr ""
-#: ../root/statistics/stats.js:819
+#: ../root/statistics/stats.js:829
msgid "Votes for/against release group tags"
msgstr ""
-#: ../root/statistics/stats.js:824
+#: ../root/statistics/stats.js:834
msgid "Votes for/against series tags"
msgstr ""
-#: ../root/statistics/stats.js:829
+#: ../root/statistics/stats.js:839
msgid "Votes for/against work tags"
msgstr ""
-#: ../root/statistics/stats.js:834
+#: ../root/statistics/stats.js:844
msgid "Tracks"
msgstr "音轨"
-#: ../root/statistics/stats.js:839
-msgid "URLs"
-msgstr ""
-
-#: ../root/statistics/stats.js:844
-msgid "Videos"
-msgstr ""
-
-#: ../root/statistics/stats.js:855
+#: ../root/statistics/stats.js:865
msgid "Abstentions"
msgstr ""
-#: ../root/statistics/stats.js:860
+#: ../root/statistics/stats.js:870
msgid "Approvals"
msgstr ""
-#: ../root/statistics/stats.js:865
+#: ../root/statistics/stats.js:875
msgid "No Votes"
msgstr ""
-#: ../root/statistics/stats.js:871
+#: ../root/statistics/stats.js:881
msgid "Votes per day"
msgstr ""
-#: ../root/statistics/stats.js:876
+#: ../root/statistics/stats.js:886
msgid "Votes per week"
msgstr ""
-#: ../root/statistics/stats.js:881
+#: ../root/statistics/stats.js:891
msgid "Yes Votes"
msgstr ""
-#: ../root/statistics/stats.js:891
+#: ../root/statistics/stats.js:901
msgid "Works with no attributes"
msgstr ""
-#: ../root/statistics/stats.js:896
+#: ../root/statistics/stats.js:906
msgid "Works with ISWCs"
msgstr ""
-#: ../root/statistics/stats.js:901
+#: ../root/statistics/stats.js:911
msgid "Works with no language set"
msgstr ""
-#: ../root/statistics/stats.js:906
+#: ../root/statistics/stats.js:916
msgid "Works with no type set"
msgstr ""
-#: ../root/statistics/stats.js:908
+#: ../root/statistics/stats.js:918
msgid "/day"
msgstr ""
-#: ../root/statistics/stats.js:918
+#: ../root/statistics/stats.js:928
msgid "Releases with 1 Disc ID"
msgid_plural "Releases with {n} Disc IDs"
msgstr[0] ""
-#: ../root/statistics/stats.js:929
+#: ../root/statistics/stats.js:939
msgid "Mediums with 1 Disc ID"
msgid_plural "Mediums with {n} Disc IDs"
msgstr[0] ""
-#: ../root/statistics/stats.js:940
+#: ../root/statistics/stats.js:950
msgid "Recordings with 1 Release"
msgid_plural "Recordings with {n} Releases"
msgstr[0] ""
-#: ../root/statistics/stats.js:951
+#: ../root/statistics/stats.js:961
msgid "Release Groups with 1 Release"
msgid_plural "Release Groups with {n} Releases"
msgstr[0] ""
-#: ../root/statistics/stats.js:1004
+#: ../root/statistics/stats.js:1014
msgid "{type} areas"
msgstr ""
-#: ../root/statistics/stats.js:1016
+#: ../root/statistics/stats.js:1026
msgid "{country} artists"
msgstr ""
-#: ../root/statistics/stats.js:1022
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
msgid "{country} labels"
msgstr ""
-#: ../root/statistics/stats.js:1028
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
msgid "{country} releases"
msgstr ""
-#: ../root/statistics/stats.js:1039
+#: ../root/statistics/stats.js:1061
msgid "{type} edits"
msgstr ""
-#: ../root/statistics/stats.js:1050
+#: ../root/statistics/stats.js:1072
msgid "{type} events"
msgstr ""
-#: ../root/statistics/stats.js:1061
+#: ../root/statistics/stats.js:1083
msgid "{name} releases"
msgstr ""
-#: ../root/statistics/stats.js:1067
+#: ../root/statistics/stats.js:1089
msgid "{name} mediums"
msgstr ""
-#: ../root/statistics/stats.js:1074
+#: ../root/statistics/stats.js:1096
msgid "Releases with a medium of format “{format}” that have cover art"
msgstr ""
-#: ../root/statistics/stats.js:1087
+#: ../root/statistics/stats.js:1109
msgid "{type} instruments"
msgstr ""
-#: ../root/statistics/stats.js:1098
+#: ../root/statistics/stats.js:1120
msgid "{type} labels"
msgstr ""
-#: ../root/statistics/stats.js:1109
+#: ../root/statistics/stats.js:1131
msgid "{language} releases"
msgstr ""
-#: ../root/statistics/stats.js:1115
+#: ../root/statistics/stats.js:1137
msgid "{language} works"
msgstr ""
-#: ../root/statistics/stats.js:1127
+#: ../root/statistics/stats.js:1149
msgid "Releases with packaging “{packaging}”"
msgstr ""
-#: ../root/statistics/stats.js:1140
+#: ../root/statistics/stats.js:1162
msgid "{type} places"
msgstr ""
-#: ../root/statistics/stats.js:1148
+#: ../root/statistics/stats.js:1170
msgid "{first_entity_type}-{second_entity_type} Relationships"
msgstr ""
-#: ../root/statistics/stats.js:1167
+#: ../root/statistics/stats.js:1189
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships"
msgstr ""
-#: ../root/statistics/stats.js:1183
+#: ../root/statistics/stats.js:1205
msgid ""
"{first_entity_type_name}-{second_entity_type_name} "
"“{relationship_type_name}” relationships including child relationship types"
msgstr ""
-#: ../root/statistics/stats.js:1206 ../root/statistics/stats.js:1226
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
msgid "{type} release groups"
msgstr ""
-#: ../root/statistics/stats.js:1213
+#: ../root/statistics/stats.js:1235
msgid "Releases in groups of type “{type}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1237
+#: ../root/statistics/stats.js:1259
msgid "{script} releases"
msgstr ""
-#: ../root/statistics/stats.js:1248
+#: ../root/statistics/stats.js:1270
msgid "{type} series"
msgstr ""
-#: ../root/statistics/stats.js:1259
+#: ../root/statistics/stats.js:1281
msgid "{status} releases"
msgstr ""
-#: ../root/statistics/stats.js:1266
+#: ../root/statistics/stats.js:1288
msgid "Releases of status “{status}” with cover art"
msgstr ""
-#: ../root/statistics/stats.js:1283
+#: ../root/statistics/stats.js:1305
msgid "Works with attribute “{attribute}”"
msgstr ""
-#: ../root/statistics/stats.js:1296
+#: ../root/statistics/stats.js:1318
msgid "{type} works"
msgstr ""
#: ../root/statistics/utilities.js:40
msgid "See on timeline"
msgstr ""
+
+#~ msgid "Artists:"
+#~ msgstr "艺术家:"
+
+#~ msgid "Releases:"
+#~ msgstr "发行版:"
+
+#~ msgid "Mediums:"
+#~ msgstr "媒介:"
+
+#~ msgid "Recordings:"
+#~ msgstr "录音:"
+
+#~ msgid "Tracks:"
+#~ msgstr "曲目:"
+
+#~ msgid "Labels:"
+#~ msgstr "唱片公司:"
+
+#~ msgid "Works:"
+#~ msgstr "作品:"
+
+#~ msgctxt "plural"
+#~ msgid "Series:"
+#~ msgstr "系列:"
+
+#~ msgid "Relationships:"
+#~ msgstr "关联:"
+
+#~ msgid "Barcodes:"
+#~ msgstr "条形码:"
+
+#~ msgid "IPIs:"
+#~ msgstr "IPI:"
+
+#~ msgid "Videos:"
+#~ msgstr "视频:"
+
+#~ msgid "Edits:"
+#~ msgstr "修改:"
+
+#~ msgid "Cancelled:"
+#~ msgstr "取消的:"
diff --git a/po/statistics.zh_Hant.po b/po/statistics.zh_Hant.po
new file mode 100644
index 00000000000..bbc7cf78d86
--- /dev/null
+++ b/po/statistics.zh_Hant.po
@@ -0,0 +1,2853 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: zh_Hant\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: DB:statistics.statistic_event/title:2015-09-08
+msgid "\"Do Not Cluster\" guideline dropped"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2017-04-11
+msgid "\"feat.\" standardization dropped"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-04-19
+msgid "1200px thumbnails"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-04-19
+msgid ""
+"1200px thumbnails are added to the Cover Art Archive, providing users with a "
+"very large image with a consistent size that avoids having to use the "
+"original uploads directly."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2016-03-01
+msgid ""
+"A Discourse forum platform is added to replace both the old-school forums "
+"and the (by now dead) mailing lists and unify community communication in one "
+"place."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-06-29
+msgid ""
+"A change is introduced that allows voting for and against existing "
+"folksonomy tags, rather than only adding your own."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-07-19
+msgid ""
+"A major update for the Picard tagger is released, with a huge amount of "
+"bugfixes and improvements."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2019-11-12
+msgid ""
+"A new \"Voting suggestions\" page is released, containing predefined edit "
+"searches to help editors find interesting and/or important edits to review "
+"and vote on."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-08-05
+msgid ""
+"A new AJAX coverart uploader is released, making it easier to add cover art "
+"to releases."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-12-28
+msgid ""
+"A new banner message now notifies users whenever they receive a new edit "
+"note."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-04-05
+msgid "A new, much faster search mechanism is added."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-08-15
+msgid "A rift in the MusicBrainz community leads to a Great Dispute."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-05-15
+msgid ""
+"A very substantial schema change release adds a new entity type (areas), "
+"support for ISNI codes for artists and labels, and the possibility to have "
+"more than one release event on one release."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-11-10
+msgid ""
+"A way to search for edits based on several different criteria is released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-11-19
+msgid ""
+"AcousticBrainz, which aims to crowd source acoustic information for music, "
+"is announced in cooperation with the Music Technology Group at Universitat "
+"Pompeu Fabra."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-04-10
+msgid "Advanced relationships"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-04-10
+msgid ""
+"Advanced relationships that allow users to connect basic data entities is "
+"relased and unused TRMs pruned from the database. Inline editing is turned "
+"off by default, causing a drop in voting activity."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2019-06-25
+msgid ""
+"After a lot of behind-the-scenes drama, MetaBrainz wins a legal battle "
+"against a copyright troll who tried to sue because of the use of Wikimedia "
+"Commons images. Commons images are still dropped from MusicBrainz sites to "
+"avoid further issues until Wikimedia makes changes that make image reuse "
+"more safe."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-11-23
+msgid ""
+"After a lot of debate, relationship data starts being displayed on release "
+"pages, making it a lot more visible."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-09-01
+msgid ""
+"After a successful Summer of Code, Ian McEwen joins the MusicBrainz team"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2016-11-08
+msgid ""
+"After many years at Digital West in California, the MetaBrainz project moves "
+"all servers to a much larger dedicated provider in Germany, Hetzner."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-09-10
+msgid ""
+"After several years as a community-driven only project, BookBrainz is "
+"adopted as an official project and given an actual developer position with "
+"the hiring of Monkey."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-05-26
+msgid ""
+"After unexpected upheaval on Freenode, MetaBrainz moves all official "
+"channels to Libera.Chat instead."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-05-22
+msgid "Album languages"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-05-22
+msgid ""
+"Album languages, guess case improvements and revamps edit forms released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-05-19
+msgid ""
+"Aliases are added to the three entity types that were still missing them: "
+"recordings, releases and release groups. This allows storing aliases for, "
+"for example, English names of Asian release groups."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-05-19
+msgid "Aliases for recordings, releases and release groups"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-02-24
+msgid "Amazon Coverart"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-09-01
+msgid ""
+"Amazon betas SoundUnwound with data from "
+"MusicBrainz."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-09-01
+msgid "Amazon betas SoundUnwound"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-02-24
+msgid "Amazon coverart support released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-07-12
+msgid "An improved release editor and a new site design are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-06-02
+msgid ""
+"An update is released that allows specifying a credit for artists in a "
+"relationship, if not the same as the artist name."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-11-14
+msgid "Annotation support released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-11-14
+msgid "Annotations"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-05-15
+msgid "Areas, ISNI codes and multiple release events per release"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-06-22
+msgid "Artist subscriptions"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-02-13
+msgid ""
+"Artist subscriptions made public and various smaller user centric "
+"improvements are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-06-22
+msgid "Artist subscriptions."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2017-04-11
+msgid ""
+"As part of a long term move towards more fidelity to the original data, we "
+"stop standardizing \"featuring\" and all its variants to \"feat.\", and ask "
+"editors to use whatever is printed instead."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-07-30
+msgid "BBC dynamic artist pages"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-07-30
+msgid "BBC launches the dynamic artist pages based on MusicBrainz data."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-06-28
+msgid "BBC partners with MetaBrainz"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-09-10
+msgid "BookBrainz becomes official MetaBrainz project"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-04-30
+msgid "CAA initial release"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-10-10
+msgid "CAA official release"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2016-06-20
+msgid "CatQuest becomes Instrument Inserter"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2016-06-20
+msgid ""
+"CatQuest officially takes over from reosarevok as the main person for adding "
+"new instruments to MusicBrainz, with the newly created Instrument Inserter "
+"position."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2019-08-08
+msgid "Collaborative collections"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2019-08-08
+msgid ""
+"Collection owners are now able to allow other editors to also add/remove "
+"entities from any of their collections."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-11-24
+msgid "Collection, Ratings, CDStubs"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-11-24
+msgid "Collection, Ratings, CDStubs, LastUpdate released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-05-18
+msgid ""
+"Collections can now be merged, in case an editor wants to consolidate "
+"several of their collections into one. Additionally, it is now possible to "
+"create series of artists, and to rate places (the only entity that could be "
+"reviewed on CritiqueBrainz but not rated on MusicBrainz)."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-08-05
+msgid "Cover Art Uploader"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-03-29
+msgid "Dedicated database server"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2016-03-01
+msgid "Discourse unifies community communication"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-07-25
+msgid "Easier edit note adding"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-05-09
+msgid ""
+"Edit display improvements, turned off RDF dumps, new install scripts "
+"released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2020-02-18
+msgid "Edit history visible without logging in"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-12-28
+msgid "Edit note notifications"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-07-25
+msgid ""
+"Edit notes can now be added when creating an edit, making it much easier for "
+"editors to explain their changes."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-11-10
+msgid "Edit search"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-12-07
+msgid ""
+"Editor ojnkpjg runs a script setting track times from DiscID values, "
+"creating a huge spike in edits."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-11-30
+msgid ""
+"Edits made by editors to their own release additions within 1 hour of adding "
+"them are now auto-edits, as are \"Add recording\" and \"Remove alias\" edits."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-06-07
+msgid "Email verification"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-06-25
+msgid ""
+"Empty labels, release groups and works are now auto-removed after 24 hours "
+"of being unused, in the same way artists already were before."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-06-25
+msgid "Empty labels, release groups and works start being auto-removed"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-09-17
+msgid ""
+"Event support is added to MusicBrainz, allowing storing information about "
+"concerts and festivals. Also part of this schema change release is a proper "
+"way to indicate the content of data tracks in release tracklists, and the "
+"extension of tagging to areas, instruments and series."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-09-17
+msgid "Event support, data tracks"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-10-17
+msgid ""
+"Folksonomy tagging and editor subscriptions are released. Additionally, it's "
+"now possible to batch-add relationships to multiple tracks on a release."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-09-04
+msgid ""
+"Former GSoC student Roman Tsukanov begins working for MetaBrainz part-time."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-08-06
+msgid "Frederik \"Freso\" S. Olesen becomes MetaBrainz Community Manager"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-10-10
+msgid ""
+"FreeDB auto import feature turned off and autoeditor elections released. "
+"Unused TRMs pruned from the database."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-10-10
+msgid "FreeDB off/Autoeditors"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-08-06
+msgid ""
+"Freso becomes the first MetaBrainz Community Manager, tasked with helping "
+"resolve conflicts in the community and keeping an eye on their needs."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-11-02
+msgid "Genre added as a new entity"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-11-02
+msgid ""
+"Genres are added as a new entity, although still tightly tied to folksonomy "
+"tags."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-08-15
+msgid "Great Dispute"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-04-27
+msgid "Guess feat. buttons"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-05-26
+msgid "IRC channels move to Libera.Chat"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-09-01
+msgid "Ian McEwen hired"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-07-17
+msgid "Ian McEwen leaves MetaBrainz"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-07-17
+msgid "Ian McEwen leaves the project for personal reasons."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2009-06-17
+msgid "Imported CD Baby catalog as CD Stubs"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2009-06-17
+msgid ""
+"Imported the metadata from the CD Baby catalog into our CD Stubs collection."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-07-24
+msgid "Improve voting"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-04-05
+msgid "Improved search"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-02-11
+msgid ""
+"In an effort to reduce the size of the open edit queue and force less "
+"waiting for changes, the length of time edits stay open before expiration is "
+"reduced from 14 to 7 days."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-04-27
+msgid ""
+"In order to make it easier to fix a lot of cases where featured artists are "
+"still part of the track / release titles rather than the artists, guess "
+"feat. buttons are added that greatly simplify the process."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-05-12
+msgid "In preparation for NGS, editing is turned off until release."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-05-02
+msgid ""
+"In preparation for NGS, editors are encouraged to avoid editing until "
+"release unless entirely necessary."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-03-05
+msgid "Indexed search/XML WS"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-03-05
+msgid "Indexes search and a new XML based Web Service are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-01-17
+msgid "Inline edits"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-01-17
+msgid "Inline edits, new reports, improved data import scripts."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2004-05-09
+msgid "Install scripts"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2020-12-31
+msgid "Instrument images, recordings' first release date"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-05-14
+msgid "Instruments and series"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-02-01
+msgid "Italian translation released, IPI and ISNI become autoedits"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-02-23
+msgid "Kartik Ohri joins the MetaBrainz team"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-02-23
+msgid ""
+"Kartik Ohri joins the MetaBrainz team to work on ListenBrainz, "
+"AcousticBrainz and CritiqueBrainz, plus the Android app, which he had "
+"already significantly rewritten as a volunteer."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2009-12-14
+msgid "Kuno Woudt begins working for MusicBrainz full-time."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2009-12-14
+msgid "Kuno Woudt hired as full-time developer"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-04-01
+msgid "Labels/data quality"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-11-07
+msgid "Last.fm"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-11-07
+msgid "Last.fm signs up with MetaBrainz and starts using MusicBrainz data."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-09-28
+msgid "Laurent \"zas\" Monin becomes sysadmin"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-09-28
+msgid ""
+"Laurent Monin, better known as Zas, joins the team as a dedicated systems "
+"administrator, to make sure the servers run properly and help transition to "
+"a new community discussion system."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-12-28
+msgid ""
+"Link to MusicBrainz feature, release events and edit suggestions released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-01-20
+msgid "Linkara Musica becomes first commercial customer of MetaBrainz."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-12-28
+msgid "Linking"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2020-10-07
+msgid ""
+"MBBE_Bot is created to make fixes that are too time-consuming to do by hand, "
+"but should still leave a trace in edit history. This usually involves "
+"removing URLs from problematic domains, marking URLs from domains that have "
+"been closed as ended, and other similar batch-editing jobs."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2020-10-07
+msgid "MBBE_Bot starts running"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-10-23
+msgid "Menus/Client scripting"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-05-18
+msgid "Mergeable collections, artist series and ratable places"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-04-21
+msgid "MetaBrainz accepts three students for Google Summer of Code."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-09-23
+msgid "MetaBrainz hires Oliver Charles"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-04-19
+msgid "MetaBrainz launched"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2016-11-08
+msgid "MetaBrainz projects complete move to European servers"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-01-20
+msgid "MetaBrainz signs first customer"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2019-06-25
+msgid "MetaBrainz wins copyright troll battle, Wikimedia images dropped"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-04-01
+msgid "MetaWeb becomes a MusicBrainz data user."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-04-01
+msgid "MetaWeb signed"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-11-30
+msgid "More auto-edits"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-11-16
+msgid ""
+"More edit types are made auto-edits for everyone: \"Add relationship\" and "
+"\"Add release\"; and \"Add\", \"Edit\" and \"Remove release label\". "
+"Additionally, the German, French and Dutch translations are available on the "
+"main server."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-02-27
+msgid "MusicBrainz Move"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2010-02-08
+msgid "MusicBrainz Server source code moved to Git from Subversion."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-01-12
+msgid "MusicBrainz adds AcoustID support"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-03-29
+msgid "MusicBrainz gets its first dedicated database server."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2016-02-22
+msgid ""
+"MusicBrainz itself gets a new design to better match the rest of the *Brainz "
+"family."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-02-27
+msgid "MusicBrainz moved to Digital West Networks in San Luis Obispo."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-03-12
+msgid ""
+"MusicBrainz partners with MusicIP and starts using MusicDNS's PUID acoustic "
+"fingerprints. Picard becomes the official MusicBrainz tagger with PUID "
+"support, which causes edit activity to decrease."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-03-12
+msgid "MusicIP PUID"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-05-12
+msgid "NGS No-Editing Phase"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-05-02
+msgid "NGS Reduced Editing Phase"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-05-18
+msgid "NGS Release"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-05-18
+msgid "NGS, a MusicBrainz major rewrite, is released!"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2016-02-22
+msgid "New MusicBrainz design"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2017-10-31
+msgid "New entity auto-editing period extended to 24 hours"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-02-17
+msgid ""
+"Nicolás Tamargo (reosarevok) becomes the MusicBrainz style leader, and a "
+"new, more official style process using Jira is established."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2003-10-13
+msgid "Non album tracks"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-10-13
+msgid "Non album tracks are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2008-09-23
+msgid "Oliver Charles becomes employee #1 of MetaBrainz Foundation."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2010-06-18
+msgid "Oliver Charles begins working for MusicBrainz full-time."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2010-06-18
+msgid "Oliver Charles joins MusicBrainz full-time"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-06-30
+msgid ""
+"Our old search server gets a significant upgrade with its move to SOLR, "
+"including almost-instant index updates."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-10-14
+msgid "PUID support is removed"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2021-04-05
+msgid "Pagination added for relationships, user tags"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-04-05
+msgid ""
+"Pagination was added for two very long lists that sometimes couldn't be "
+"loaded in full because of timeouts: user tags and entity relationships."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-06-02
+msgid "Picard 1.0 released"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-07-19
+msgid "Picard 2.0 released"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2017-10-31
+msgid ""
+"Rather than having to notice any errors during a fairly brief 1 hour period, "
+"editors now have 24 hours to correct errors in the data they have added "
+"without needing a vote."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-10-15
+msgid "Relationship Editor"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-06-02
+msgid "Relationship credits become available"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-11-23
+msgid "Relationships displayed on release pages"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-04-06
+msgid "Release \"stubs\", minimum voting period for destructive edits"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2009-05-24
+msgid "Release Groups, ISRCs, CDStub searching"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-07-12
+#: DB:statistics.statistic_event/title:2003-10-19
+msgid "Release editor"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-10-19
+msgid "Release editor and Guess Case released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2009-05-24
+msgid ""
+"Release groups, ISRC support, CDStub searching and search fixes released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-04-06
+msgid ""
+"Releases can now be added without any mediums, for cases where the only "
+"information available is, for example, a title + date + label + catalog "
+"number entry in a catalog. Additionally, any destructive edits such as "
+"entity merges and removals no longer close immediately once they get 3 Yes "
+"votes, but they remain open for at least 48 hours to ensure people who "
+"oppose them have time to see them."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2017-09-06
+msgid ""
+"Roman Tsukanov decides not to renew his contract. Sambhav Kothari and Param "
+"Singh are hired as replacements to work on search and Picard and on "
+"ListenBrainz, respectively."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-09-04
+msgid "Roman Tsukanov joins the MetaBrainz team"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-01-08
+msgid "SG5 Fixes"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-06-30
+msgid "SOLR-based search server deployed"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2017-09-06
+msgid "Sambhav Kothari and Param Singh replace Roman Tsukanov"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2018-09-09
+msgid ""
+"Sambhav Kothari leaves MetaBrainz after a lot of hard work getting the SOLR "
+"server ready. Nicolás Tamargo (reosarevok) joins as a programmer part-time "
+"in addition to his style and support positions, to work on MusicBrainz."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2018-09-09
+msgid "Sambhav Kothari leaves, Nicolás Tamargo joins as a programmer"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2006-12-17
+msgid "Search improvements"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-11-16
+msgid "Several new auto-edit types and translations"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2020-05-16
+msgid ""
+"Since the Virtual Machine project tended to just lag way behind current data "
+"because of the time required to always push new versions, it is dropped and "
+"users are suggested to just run their own Docker setup for MusicBrainz "
+"(which the Virtual Machine already did behind the scenes)."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2008-04-21
+msgid "SoC 2008"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2020-12-31
+msgid ""
+"Some instrument pages start displaying instrument illustrations by IROM. "
+"Additionally, a first release date starts being calculated and displayed for "
+"recordings based on the releases they appear on."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-01-08
+msgid ""
+"Style Guideline 5 workaround introduced and unused TRMs pruned from the "
+"database."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-10-17
+msgid "Style process updated again, reosarevok \"promoted\" to Style BDFL"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-04-01
+msgid "Support for Labels and data quality are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-06-29
+msgid "Tag up/downvoting"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-10-17
+msgid "Tags, editor subscriptions, relationship batch-adding"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-11-19
+msgid "The AcousticBrainz project goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2022-02-16
+msgid "The AcousticBrainz project is discontinued"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2011-08-03
+msgid "The Android app goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2007-06-28
+msgid ""
+"The BBC becomes a MetaBrainz customer and starts using MusicBrainz data."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-04-30
+msgid "The Cover Art Archive becomes initially available"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-10-10
+msgid "The Cover Art Archive is officially released"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-05-19
+msgid "The CritiqueBrainz project goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2021-02-01
+msgid ""
+"The Italian translation, mostly worked on by salo.rock, is officially "
+"released. Adding the first IPI and/or ISNI code for an entity becomes an "
+"autoedit, unless the same code is already in use for another."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-09-17
+msgid "The ListenBrainz project goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-04-19
+msgid ""
+"The MetaBrainz Foundation, the legal home for MusicBrainz is announced to "
+"the public."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2020-05-16
+msgid "The MusicBrainz Virtual Machine is replaced by MusicBrainz Docker"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-09-17
+msgid ""
+"The alpha version of ListenBrainz, an open source and open data alternative "
+"to Last.fm®, goes live."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-05-19
+msgid "The beta version of CritiqueBrainz is launched."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-10-14
+msgid ""
+"The diminishing quality of the PUID fingerprinting service and the continued "
+"availability of an open source alternative in AcoustID leads to the decision "
+"of dropping PUIDs from MusicBrainz and supporting only AcoustID."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2020-02-18
+msgid ""
+"The edit history for entities is made visible even when logged out, to make "
+"it easier to understand how each entity has changed (edit notes are kept "
+"hidden to preserve some privacy)."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-06-02
+msgid ""
+"The first full-version release of the Picard tagger comes out, with a lot of "
+"changes and improvements."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2011-08-03
+msgid ""
+"The first version of the MusicBrainz Android app, a Google Summer of Code "
+"project by Jamie McDonald, is made officially available"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-09-08
+msgid ""
+"The increasingly controversial \"Do Not Cluster\" guideline, which forbid "
+"relationship clusters such as linking every Jackson sibling to each other, "
+"is dropped - avoiding duplicate data becomes a task for relationship "
+"designers, not users entering the data."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2015-05-18
+msgid "The new MetaBrainz website goes live"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2015-05-18
+msgid ""
+"The new MetaBrainz website, featuring an all-new design and online sign-up "
+"for commercial users, is launched, replacing the one designed in the year "
+"2000!"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-01-12
+msgid ""
+"The open source fingerprinting solution AcoustID (developed by friend of "
+"MusicBrainz Lukáš Lalinský) starts being used alongside PUID on MusicBrainz "
+"fingerprint pages."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2012-10-15
+msgid ""
+"The relationship editor, for bulk-editing relationships for a release, is "
+"released to production."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2006-12-17
+msgid "The search features and web service improvements are released."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-10-17
+msgid ""
+"The style process is updated again. Rather than requiring long, often angry "
+"community debate until something is passed by community consensus without a "
+"veto, decisions are taken by a BDFL who consults the community when needed. "
+"Nicolás Tamargo (reosarevok) is \"promoted\" from style leader to style BDFL."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2013-06-24
+msgid ""
+"The voting period for edits that get a No vote is extended to give users "
+"more time to react to the issues."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2005-10-23
+msgid ""
+"Top menu navigation improved, duplicate artists, album edit all, track time "
+"editing features released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2007-12-07
+msgid "Track times set from DiscIDs"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-05-14
+msgid ""
+"Two new entity types are added to MusicBrainz: instruments and series. "
+"Series of recordings, releases, release groups and works are supported."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2005-02-13
+msgid "User improvements"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2003-06-07
+msgid "Users now have to verify their email address for editing."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2019-04-26
+msgid ""
+"Version 1 of the web service (already deprecated since 2011) is finally "
+"taken down for good (more than a year after announcing it would happen in "
+"six months!)."
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2004-07-24
+msgid "Voting logic was improved, web based autoeditor elections released."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-06-24
+msgid "Voting period for contested edits extended"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2013-02-11
+msgid "Voting period shortened to 7 days"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2019-11-12
+msgid "Voting suggestions"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2019-04-26
+msgid "Web service version 1 taken down"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2022-02-16
+msgid ""
+"With the AcousticBrainz project deemed to not have fulfilled its original "
+"goals, the MetaBrainz Foundation decides to stop work on it, with a view to "
+"shut down the site in 2023"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2014-03-17
+msgid "Work attributes"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2014-03-17
+msgid ""
+"Works get their first attributes (such as keys) allowing us to store data "
+"that doesn't make sense as relationships but deserves more than an "
+"annotation entry."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2017-03-13
+msgid "Yvanzo joins MusicBrainz as a developer"
+msgstr ""
+
+#: DB:statistics.statistic_event/description:2017-03-13
+msgid ""
+"Yvanzo joins the development team as a second dedicated MusicBrainz "
+"developer."
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2010-02-08
+msgid "mb_server now hosted on Git"
+msgstr ""
+
+#: DB:statistics.statistic_event/title:2012-02-17
+msgid "reosarevok becomes the MusicBrainz style leader"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:18
+msgid "Add/remove lines:"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:18
+msgid "Check boxes above"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:17
+msgid "Click to deselect"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:14
+msgid "Controls"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Countries.js:42
+#: ../root/statistics/StatisticsLayout.js:50
+msgid "Countries"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/CoverArt.js:67
+#: ../root/statistics/StatisticsLayout.js:60 ../root/statistics/stats.js:21
+msgid "Cover Art"
+msgstr ""
+
+#: ../root/statistics/layout.tt:23 ../root/statistics/layout.tt:34
+#: ../root/statistics/StatisticsLayout.js:96
+#: ../root/statistics/StatisticsLayout.js:109
+msgid "Database Statistics"
+msgstr ""
+
+#: ../root/statistics/layout.tt:15
+msgid "Database Statistics - {title}"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:16
+msgid "Draw a rectangle on either graph"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Editors.js:98
+#: ../root/statistics/Editors.js:109 ../root/statistics/Index.js:1096
+#: ../root/statistics/StatisticsLayout.js:80
+msgid "Editors"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Edits.js:38
+#: ../root/statistics/Edits.js:42 ../root/statistics/Edits.js:51
+#: ../root/statistics/Index.js:1220 ../root/statistics/Index.js:1223
+#: ../root/statistics/Index.js:1270 ../root/statistics/StatisticsLayout.js:70
+#: ../root/statistics/stats.js:289
+msgid "Edits"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:28
+msgid "Exact Values (items vs. day)"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/StatisticsLayout.js:75
+#: ../root/statistics/stats.js:25
+msgid "Formats"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:19
+msgid "Hover and click on vertical lines"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/StatisticsLayout.js:55
+msgid "Languages/Scripts"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:2
+msgid "Legend"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:6 ../root/statistics/timeline.tt:19
+msgid "MusicBrainz Events"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:83
+#: ../root/statistics/StatisticsLayout.js:45
+msgid "Overview"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:30
+msgid "Rate of Change (average items/day vs. day)"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:10
+msgid "Rate of Change Graph"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/Index.js:165
+#: ../root/statistics/Relationships.js:105
+#: ../root/statistics/Relationships.js:110
+#: ../root/statistics/Relationships.js:125
+#: ../root/statistics/StatisticsLayout.js:65 ../root/statistics/stats.js:32
+#: ../root/statistics/stats.js:48
+msgid "Relationships"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:17
+msgid "Reset:"
+msgstr ""
+
+#: ../root/statistics/layout.tt:4 ../root/statistics/StatisticsLayout.js:85
+msgid "Timeline"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:25
+msgid "Timeline Graph"
+msgstr ""
+
+#: ../root/statistics/timeline.tt:16
+msgid "Zoom:"
+msgstr ""
+
+#: ../root/statistics/Countries.js:44 ../root/statistics/CoverArt.js:69
+#: ../root/statistics/Editors.js:100 ../root/statistics/Edits.js:40
+#: ../root/statistics/Formats.js:48 ../root/statistics/Index.js:85
+#: ../root/statistics/LanguagesScripts.js:53
+#: ../root/statistics/Relationships.js:108
+msgid "Last updated: {date}"
+msgstr ""
+
+#: ../root/statistics/Countries.js:50 ../root/statistics/Editors.js:53
+#: ../root/statistics/Formats.js:55 ../root/statistics/LanguagesScripts.js:66
+#: ../root/statistics/LanguagesScripts.js:154
+msgid "Rank"
+msgstr ""
+
+#: ../root/statistics/Countries.js:52
+msgid "Country"
+msgstr ""
+
+#: ../root/statistics/Countries.js:56 ../root/statistics/Index.js:94
+#: ../root/statistics/Index.js:233 ../root/statistics/Index.js:237
+#: ../root/statistics/Index.js:240 ../root/statistics/stats.js:63
+msgid "Artists"
+msgstr ""
+
+#: ../root/statistics/Countries.js:60 ../root/statistics/CoverArt.js:106
+#: ../root/statistics/Formats.js:57 ../root/statistics/Index.js:102
+#: ../root/statistics/Index.js:376 ../root/statistics/Index.js:379
+#: ../root/statistics/Index.js:401 ../root/statistics/Index.js:427
+#: ../root/statistics/Index.js:453 ../root/statistics/Index.js:475
+#: ../root/statistics/Index.js:524 ../root/statistics/LanguagesScripts.js:72
+#: ../root/statistics/LanguagesScripts.js:160 ../root/statistics/stats.js:674
+msgid "Releases"
+msgstr ""
+
+#: ../root/statistics/Countries.js:64 ../root/statistics/Index.js:118
+#: ../root/statistics/Index.js:711 ../root/statistics/Index.js:718
+#: ../root/statistics/stats.js:514
+msgid "Labels"
+msgstr ""
+
+#: ../root/statistics/Countries.js:68 ../root/statistics/Index.js:146
+#: ../root/statistics/Index.js:909 ../root/statistics/stats.js:434
+msgid "Events"
+msgstr ""
+
+#: ../root/statistics/Countries.js:72 ../root/statistics/Index.js:134
+#: ../root/statistics/Index.js:829 ../root/statistics/Index.js:836
+#: ../root/statistics/stats.js:549
+msgid "Places"
+msgstr ""
+
+#: ../root/statistics/Countries.js:76 ../root/statistics/Formats.js:66
+#: ../root/statistics/LanguagesScripts.js:80
+msgid "Total"
+msgstr ""
+
+#: ../root/statistics/Countries.js:98
+msgid "Unknown Country"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:71
+msgid "Basics"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:74 ../root/statistics/CoverArt.js:111
+#: ../root/statistics/CoverArt.js:283
+msgid "No cover art statistics available."
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:80 ../root/statistics/CoverArt.js:120
+#: ../root/statistics/CoverArt.js:155 ../root/statistics/CoverArt.js:191
+#: ../root/statistics/CoverArt.js:327
+msgid "Releases with cover art:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:95 ../root/statistics/CoverArt.js:292
+msgid "Pieces of cover art:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:117
+msgid "By Release Group Type"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:134 ../root/statistics/CoverArt.js:306
+msgid "No type"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:152
+msgid "By Release Status"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:169
+msgid "No status"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:188
+msgid "By Release Format"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:205
+msgid "No format"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:226
+msgid "Release groups"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:230
+msgid "Release groups with cover art:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:240
+msgid "manually selected:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:262
+msgid "automatically inferred:"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:280
+msgid "Pieces of cover art"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:289
+msgid "By Cover Art Type"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:324
+msgid "Per release"
+msgstr ""
+
+#: ../root/statistics/CoverArt.js:340
+msgid "with {num} piece of cover art:"
+msgid_plural "with {num} pieces of cover art:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/CoverArt.js:370
+msgid "with 30 or more pieces of cover art:"
+msgstr ""
+
+#: ../root/statistics/Editors.js:82
+msgid "There is no data to display here."
+msgstr ""
+
+#: ../root/statistics/Editors.js:103
+msgid ""
+"For the vote statistics, only yes or no votes are counted, abstain votes are "
+"not counted."
+msgstr ""
+
+#: ../root/statistics/Editors.js:111
+msgid "Open and applied edits in past week"
+msgstr ""
+
+#: ../root/statistics/Editors.js:113 ../root/statistics/Editors.js:119
+msgid "Editor"
+msgstr ""
+
+#: ../root/statistics/Editors.js:114
+msgid "Most active editors in the past week"
+msgstr ""
+
+#: ../root/statistics/Editors.js:117
+msgid "Total applied edits"
+msgstr ""
+
+#: ../root/statistics/Editors.js:120
+msgid "Top editors overall"
+msgstr ""
+
+#: ../root/statistics/Editors.js:126
+msgid "Voters"
+msgstr ""
+
+#: ../root/statistics/Editors.js:128
+msgid "Votes in past week"
+msgstr ""
+
+#: ../root/statistics/Editors.js:130 ../root/statistics/Editors.js:136
+msgid "Voter"
+msgstr ""
+
+#: ../root/statistics/Editors.js:131
+msgid "Most active voters in the past week"
+msgstr ""
+
+#: ../root/statistics/Editors.js:134
+msgid "Total votes"
+msgstr ""
+
+#: ../root/statistics/Editors.js:137
+msgid "Top voters overall"
+msgstr ""
+
+#: ../root/statistics/Edits.js:45
+msgid "No edit statistics available."
+msgstr ""
+
+#: ../root/statistics/Formats.js:45 ../root/statistics/Formats.js:51
+msgid "Release/Medium Formats"
+msgstr ""
+
+#: ../root/statistics/Formats.js:56
+msgid "Format"
+msgstr ""
+
+#: ../root/statistics/Formats.js:58
+msgid "% of total releases"
+msgstr ""
+
+#: ../root/statistics/Formats.js:59 ../root/statistics/Index.js:106
+#: ../root/statistics/Index.js:568 ../root/statistics/stats.js:534
+msgid "Mediums"
+msgstr ""
+
+#: ../root/statistics/Formats.js:60
+msgid "% of total mediums"
+msgstr ""
+
+#: ../root/statistics/Formats.js:94
+msgid "Unknown Format"
+msgstr ""
+
+#: ../root/statistics/Index.js:87
+msgid "Basic metadata"
+msgstr ""
+
+#: ../root/statistics/Index.js:91 ../root/statistics/stats.js:20
+msgid "Core Entities"
+msgstr ""
+
+#: ../root/statistics/Index.js:98 ../root/statistics/Index.js:612
+#: ../root/statistics/Index.js:619 ../root/statistics/Index.js:651
+#: ../root/statistics/stats.js:754
+msgid "Release Groups"
+msgstr ""
+
+#: ../root/statistics/Index.js:110 ../root/statistics/Index.js:682
+#: ../root/statistics/Index.js:686 ../root/statistics/Index.js:689
+#: ../root/statistics/stats.js:659
+msgid "Recordings"
+msgstr ""
+
+#: ../root/statistics/Index.js:114
+msgid "Tracks)"
+msgstr ""
+
+#: ../root/statistics/Index.js:122 ../root/statistics/Index.js:739
+#: ../root/statistics/Index.js:746 ../root/statistics/Index.js:778
+#: ../root/statistics/LanguagesScripts.js:76 ../root/statistics/stats.js:896
+msgid "Works"
+msgstr ""
+
+#: ../root/statistics/Index.js:126 ../root/statistics/stats.js:849
+msgid "URLs"
+msgstr ""
+
+#: ../root/statistics/Index.js:130 ../root/statistics/Index.js:801
+#: ../root/statistics/Index.js:808 ../root/statistics/stats.js:53
+msgid "Areas"
+msgstr ""
+
+#: ../root/statistics/Index.js:138 ../root/statistics/Index.js:857
+#: ../root/statistics/Index.js:864 ../root/statistics/stats.js:779
+msgctxt "plural"
+msgid "Series"
+msgstr ""
+
+#: ../root/statistics/Index.js:142 ../root/statistics/Index.js:879
+#: ../root/statistics/Index.js:886 ../root/statistics/stats.js:454
+msgid "Instruments"
+msgstr ""
+
+#: ../root/statistics/Index.js:150 ../root/statistics/stats.js:449
+msgid "Genres"
+msgstr ""
+
+#: ../root/statistics/Index.js:156
+msgid "Other Entities"
+msgstr ""
+
+#: ../root/statistics/Index.js:159
+msgid "Editors (valid / deleted):"
+msgstr ""
+
+#: ../root/statistics/Index.js:169 ../root/statistics/Index.js:937
+#: ../root/statistics/Index.js:941 ../root/statistics/Index.js:944
+#: ../root/statistics/stats.js:19 ../root/statistics/stats.js:173
+msgid "Collections"
+msgstr ""
+
+#: ../root/statistics/Index.js:173
+msgid "CD Stubs (all time / current):"
+msgstr ""
+
+#: ../root/statistics/Index.js:182
+msgid "Tags (raw / aggregated):"
+msgstr ""
+
+#: ../root/statistics/Index.js:188
+msgid "Ratings (raw / aggregated):"
+msgstr ""
+
+#: ../root/statistics/Index.js:196
+msgid "Identifiers"
+msgstr ""
+
+#: ../root/statistics/Index.js:199 ../root/statistics/stats.js:529
+msgid "MBIDs"
+msgstr ""
+
+#: ../root/statistics/Index.js:203
+msgid "ISRCs (all / unique):"
+msgstr ""
+
+#: ../root/statistics/Index.js:209
+msgid "ISWCs (all / unique):"
+msgstr ""
+
+#: ../root/statistics/Index.js:215 ../root/statistics/Index.js:516
+#: ../root/statistics/Index.js:519 ../root/statistics/stats.js:283
+msgid "Disc IDs"
+msgstr ""
+
+#: ../root/statistics/Index.js:219 ../root/statistics/stats.js:153
+msgid "Barcodes"
+msgstr ""
+
+#: ../root/statistics/Index.js:223 ../root/statistics/stats.js:464
+msgid "IPIs"
+msgstr ""
+
+#: ../root/statistics/Index.js:227 ../root/statistics/stats.js:479
+msgid "ISNIs"
+msgstr ""
+
+#: ../root/statistics/Index.js:246
+msgid "of type Person:"
+msgstr ""
+
+#: ../root/statistics/Index.js:252
+msgid "of type Group:"
+msgstr ""
+
+#: ../root/statistics/Index.js:258
+msgid "of type Orchestra:"
+msgstr ""
+
+#: ../root/statistics/Index.js:264
+msgid "of type Choir:"
+msgstr ""
+
+#: ../root/statistics/Index.js:270
+msgid "of type Character:"
+msgstr ""
+
+#: ../root/statistics/Index.js:276
+msgid "of type Other:"
+msgstr ""
+
+#: ../root/statistics/Index.js:282
+msgid "with no type set:"
+msgstr ""
+
+#: ../root/statistics/Index.js:288
+msgid "with appearances in artist credits:"
+msgstr ""
+
+#: ../root/statistics/Index.js:294
+msgid "with no appearances in artist credits:"
+msgstr ""
+
+#: ../root/statistics/Index.js:299
+msgid "Non-group artists:"
+msgstr ""
+
+#: ../root/statistics/Index.js:305
+msgid "Male:"
+msgstr ""
+
+#: ../root/statistics/Index.js:316
+msgid "Female:"
+msgstr ""
+
+#: ../root/statistics/Index.js:327
+msgid "Non-binary"
+msgstr ""
+
+#: ../root/statistics/Index.js:338
+msgid "Other gender:"
+msgstr ""
+
+#: ../root/statistics/Index.js:349
+msgid "Gender not applicable:"
+msgstr ""
+
+#: ../root/statistics/Index.js:360
+msgid "with no gender set:"
+msgstr ""
+
+#: ../root/statistics/Index.js:372
+msgid "Releases, Data Quality, and Disc IDs"
+msgstr ""
+
+#: ../root/statistics/Index.js:385
+msgid "by various artists:"
+msgstr ""
+
+#: ../root/statistics/Index.js:391
+msgid "by a single artist:"
+msgstr ""
+
+#: ../root/statistics/Index.js:398
+msgid "Release Status"
+msgstr ""
+
+#: ../root/statistics/Index.js:417
+msgid "No status set"
+msgstr ""
+
+#: ../root/statistics/Index.js:424
+msgid "Release Packaging"
+msgstr ""
+
+#: ../root/statistics/Index.js:443
+msgid "No packaging set"
+msgstr ""
+
+#: ../root/statistics/Index.js:450
+msgid "Cover Art Sources"
+msgstr ""
+
+#: ../root/statistics/Index.js:459
+msgid "CAA:"
+msgstr ""
+
+#: ../root/statistics/Index.js:465
+msgid "No front cover art:"
+msgstr ""
+
+#: ../root/statistics/Index.js:472
+msgid "Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:481 ../root/statistics/stats.js:569
+msgid "High Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:487
+msgid "Default Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:494 ../root/statistics/stats.js:579
+msgid "Normal Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:501 ../root/statistics/stats.js:584
+msgid "Unknown Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:509 ../root/statistics/stats.js:574
+msgid "Low Data Quality"
+msgstr ""
+
+#: ../root/statistics/Index.js:530
+msgid "Releases with no disc IDs:"
+msgstr ""
+
+#: ../root/statistics/Index.js:537
+msgid "Releases with at least one disc ID:"
+msgstr ""
+
+#: ../root/statistics/Index.js:548 ../root/statistics/Index.js:592
+msgid "with {num} disc ID:"
+msgid_plural "with {num} disc IDs:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/Index.js:563 ../root/statistics/Index.js:605
+msgid "with 10 or more disc IDs:"
+msgstr ""
+
+#: ../root/statistics/Index.js:574
+msgid "Mediums with no disc IDs:"
+msgstr ""
+
+#: ../root/statistics/Index.js:581
+msgid "Mediums with at least one disc ID:"
+msgstr ""
+
+#: ../root/statistics/Index.js:616
+msgid "Primary Types"
+msgstr ""
+
+#: ../root/statistics/Index.js:643 ../root/statistics/Index.js:675
+#: ../root/statistics/Index.js:732 ../root/statistics/Index.js:760
+#: ../root/statistics/Index.js:794 ../root/statistics/Index.js:822
+#: ../root/statistics/Index.js:850 ../root/statistics/Index.js:902
+#: ../root/statistics/Index.js:930
+msgid "None"
+msgstr ""
+
+#: ../root/statistics/Index.js:648
+msgid "Secondary Types"
+msgstr ""
+
+#: ../root/statistics/Index.js:694 ../root/statistics/stats.js:854
+msgid "Videos"
+msgstr ""
+
+#: ../root/statistics/Index.js:699
+msgctxt "recording"
+msgid "Standalone"
+msgstr ""
+
+#: ../root/statistics/Index.js:704
+msgid "With ISRCs"
+msgstr ""
+
+#: ../root/statistics/Index.js:715 ../root/statistics/Index.js:743
+#: ../root/statistics/Index.js:805 ../root/statistics/Index.js:833
+#: ../root/statistics/Index.js:861 ../root/statistics/Index.js:883
+#: ../root/statistics/Index.js:913
+msgid "Types"
+msgstr ""
+
+#: ../root/statistics/Index.js:765
+msgid "With ISWCs"
+msgstr ""
+
+#: ../root/statistics/Index.js:775
+msgid "Attributes"
+msgstr ""
+
+#: ../root/statistics/Index.js:950
+msgid "Of releases"
+msgstr ""
+
+#: ../root/statistics/Index.js:957 ../root/statistics/Index.js:990
+msgid "Generic"
+msgstr ""
+
+#: ../root/statistics/Index.js:966
+msgid "Owned music"
+msgstr ""
+
+#: ../root/statistics/Index.js:975
+msgid "Wishlist"
+msgstr ""
+
+#: ../root/statistics/Index.js:983
+msgid "Of events"
+msgstr ""
+
+#: ../root/statistics/Index.js:999
+msgid "Of type Attending"
+msgstr ""
+
+#: ../root/statistics/Index.js:1008
+msgid "Of type Maybe attending"
+msgstr ""
+
+#: ../root/statistics/Index.js:1019
+msgid "Of areas"
+msgstr ""
+
+#: ../root/statistics/Index.js:1025
+msgid "Of artists"
+msgstr ""
+
+#: ../root/statistics/Index.js:1031
+msgid "Of instruments"
+msgstr ""
+
+#: ../root/statistics/Index.js:1037
+msgid "Of labels"
+msgstr ""
+
+#: ../root/statistics/Index.js:1043
+msgid "Of places"
+msgstr ""
+
+#: ../root/statistics/Index.js:1049
+msgid "Of recordings"
+msgstr ""
+
+#: ../root/statistics/Index.js:1055
+msgid "Of release groups"
+msgstr ""
+
+#: ../root/statistics/Index.js:1061
+msgid "Of series"
+msgstr ""
+
+#: ../root/statistics/Index.js:1067
+msgid "Of works"
+msgstr ""
+
+#: ../root/statistics/Index.js:1073
+msgid "Public"
+msgstr ""
+
+#: ../root/statistics/Index.js:1079
+msgid "Private"
+msgstr ""
+
+#: ../root/statistics/Index.js:1085
+msgid "With collaborators"
+msgstr ""
+
+#: ../root/statistics/Index.js:1092
+msgid "Editors, Edits, and Votes"
+msgstr ""
+
+#: ../root/statistics/Index.js:1099
+msgid "Editors (valid):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1105
+msgid "active ever:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1113
+msgid "who edited and/or voted in the last 7 days:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1122
+msgid "who edited in the last 7 days:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1130
+msgid "who voted in the last 7 days:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1137
+msgid "who edit:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1144
+msgid "who vote:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1151
+msgid "who leave edit notes:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1158
+msgid "who use tags:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1165
+msgid "who use ratings:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1174
+msgid "who use subscriptions:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1183
+msgid "who use collections:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1193
+msgid "who have registered applications:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1202
+msgid "validated email only:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1208
+msgid "inactive:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1213
+msgid "Editors (deleted):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1229
+msgid "Open"
+msgstr ""
+
+#: ../root/statistics/Index.js:1235
+msgid "Applied"
+msgstr ""
+
+#: ../root/statistics/Index.js:1241
+msgid "Voted down"
+msgstr ""
+
+#: ../root/statistics/Index.js:1247
+msgid "Failed (dependency):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1253
+msgid "Failed (prerequisite):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1259
+msgid "Failed (internal error):"
+msgstr ""
+
+#: ../root/statistics/Index.js:1265
+msgctxt "edit"
+msgid "Cancelled"
+msgstr ""
+
+#: ../root/statistics/Index.js:1276 ../root/statistics/Index.js:1328
+msgid "Last 7 days:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1283 ../root/statistics/Index.js:1335
+msgid "Yesterday:"
+msgstr ""
+
+#: ../root/statistics/Index.js:1290 ../root/statistics/Index.js:1293
+#: ../root/statistics/Index.js:1322 ../root/statistics/stats.js:860
+msgid "Votes"
+msgstr ""
+
+#: ../root/statistics/Index.js:1299
+msgctxt "vote"
+msgid "Approve"
+msgstr ""
+
+#: ../root/statistics/Index.js:1305
+msgctxt "vote"
+msgid "Yes"
+msgstr ""
+
+#: ../root/statistics/Index.js:1311
+msgctxt "vote"
+msgid "No"
+msgstr ""
+
+#: ../root/statistics/Index.js:1317
+msgctxt "vote"
+msgid "Abstain"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:50
+msgid "Languages and Scripts"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:56
+msgid "All other available languages and scripts have 0 releases and works."
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:62
+#: ../root/statistics/LanguagesScripts.js:68
+msgid "Languages"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:97
+msgid "Unknown language"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:150
+msgid "Scripts"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:156
+msgid "Script"
+msgstr ""
+
+#: ../root/statistics/LanguagesScripts.js:173
+msgid "Unknown script"
+msgstr ""
+
+#: ../root/statistics/MusicBrainzHistory.js:20
+msgid "History"
+msgstr ""
+
+#: ../root/statistics/MusicBrainzHistory.js:21
+msgid "Our Glorious History"
+msgstr ""
+
+#: ../root/statistics/MusicBrainzHistory.js:25
+msgid "{date} - {title}"
+msgstr ""
+
+#: ../root/statistics/MusicBrainzHistory.js:41
+msgid "It seems we have no history to show at all!"
+msgstr ""
+
+#: ../root/statistics/NoStatistics.js:15 ../root/statistics/NoStatistics.js:16
+msgid "No Statistics"
+msgstr ""
+
+#: ../root/statistics/NoStatistics.js:19
+msgid ""
+"Statistics have never been collected for this server. If you are the "
+"administrator for this server, you should run ./admin/CollectStats.pl"
+"code> or import mbdump-stats.tar.bz2
."
+msgstr ""
+
+#: ../root/statistics/Relationships.js:113
+msgid "No relationship statistics available."
+msgstr ""
+
+#: ../root/statistics/Relationships.js:120
+msgctxt "relationships"
+msgid "This type only"
+msgstr ""
+
+#: ../root/statistics/Relationships.js:121
+msgctxt "relationships"
+msgid "Including subtypes"
+msgstr ""
+
+#: ../root/statistics/Relationships.js:143
+msgid "{type0}-{type1}"
+msgstr ""
+
+#: ../root/statistics/Relationships.js:151
+msgid "{type0}-{type1} relationships:"
+msgstr ""
+
+#: ../root/statistics/stats.js:16
+msgid "Area Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:17
+msgid "Artist Countries"
+msgstr ""
+
+#: ../root/statistics/stats.js:18
+msgid "Artist Types and Genders"
+msgstr ""
+
+#: ../root/statistics/stats.js:22
+msgid "Edit Information"
+msgstr ""
+
+#: ../root/statistics/stats.js:23
+msgid "Edit Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:24
+msgid "Event Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:26
+msgid "Instrument Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:27
+msgid "Label Countries"
+msgstr ""
+
+#: ../root/statistics/stats.js:28
+msgid "Label Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:29
+msgctxt "stats category"
+msgid "Other"
+msgstr ""
+
+#: ../root/statistics/stats.js:30
+msgid "Place Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:31
+msgid "Ratings and Tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:33
+msgid "Release Countries"
+msgstr ""
+
+#: ../root/statistics/stats.js:34
+msgid "Release Group Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:35
+msgid "Release Languages"
+msgstr ""
+
+#: ../root/statistics/stats.js:36
+msgid "Release Packagings"
+msgstr ""
+
+#: ../root/statistics/stats.js:37
+msgid "Release Data Quality"
+msgstr ""
+
+#: ../root/statistics/stats.js:38
+msgid "Release Scripts"
+msgstr ""
+
+#: ../root/statistics/stats.js:39
+msgid "Release Statuses"
+msgstr ""
+
+#: ../root/statistics/stats.js:40
+msgid "Series Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:41
+msgid "Work Attributes"
+msgstr ""
+
+#: ../root/statistics/stats.js:42
+msgid "Work Languages"
+msgstr ""
+
+#: ../root/statistics/stats.js:43
+msgid "Work Types"
+msgstr ""
+
+#: ../root/statistics/stats.js:58
+msgid "Areas with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:68
+msgid "Artists with no appearances in artist credits"
+msgstr ""
+
+#: ../root/statistics/stats.js:73
+msgid "Artists with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:78
+msgid "Female Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:83
+msgid "Male Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:88
+msgid "Non-binary Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:93
+msgid "Gender Not Applicable"
+msgstr ""
+
+#: ../root/statistics/stats.js:98
+msgid "Artists with no gender set (non-group artists)"
+msgstr ""
+
+#: ../root/statistics/stats.js:103
+msgid "Artists with gender set to Other"
+msgstr ""
+
+#: ../root/statistics/stats.js:108
+msgid "Artists with at least one artist credit appearance"
+msgstr ""
+
+#: ../root/statistics/stats.js:113
+msgid "Characters"
+msgstr ""
+
+#: ../root/statistics/stats.js:118
+msgid "Choirs"
+msgstr ""
+
+#: ../root/statistics/stats.js:123
+msgid "Groups"
+msgstr ""
+
+#: ../root/statistics/stats.js:128
+msgid "Artists with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:133
+msgid "Orchestras"
+msgstr ""
+
+#: ../root/statistics/stats.js:138
+msgid "Artists with type set to Other"
+msgstr ""
+
+#: ../root/statistics/stats.js:143
+msgid "Persons"
+msgstr ""
+
+#: ../root/statistics/stats.js:148
+msgid "Artist Credits"
+msgstr ""
+
+#: ../root/statistics/stats.js:158
+msgid "CDStubs (current)"
+msgstr ""
+
+#: ../root/statistics/stats.js:163
+msgid "CDStubs (ever submitted)"
+msgstr ""
+
+#: ../root/statistics/stats.js:168
+msgid "CDStub tracks"
+msgstr ""
+
+#: ../root/statistics/stats.js:178
+msgid "Collections with collaborators"
+msgstr ""
+
+#: ../root/statistics/stats.js:183
+msgid "Private collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:188
+msgid "Public collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:193
+msgid "Area collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:198
+msgid "Artist collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:203
+msgid "Collections of type Attending"
+msgstr ""
+
+#: ../root/statistics/stats.js:208
+msgid "Collections of type Event"
+msgstr ""
+
+#: ../root/statistics/stats.js:213
+msgid "Event collections (all types)"
+msgstr ""
+
+#: ../root/statistics/stats.js:218
+msgid "Instrument collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:223
+msgid "Label collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:228
+msgid "Collections of type Maybe attending"
+msgstr ""
+
+#: ../root/statistics/stats.js:233
+msgid "Collections of type Owned music"
+msgstr ""
+
+#: ../root/statistics/stats.js:238
+msgid "Place collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:243
+msgid "Recording collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:248
+msgid "Collections of type Release"
+msgstr ""
+
+#: ../root/statistics/stats.js:253
+msgid "Release collections (all types)"
+msgstr ""
+
+#: ../root/statistics/stats.js:258
+msgid "Release group collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:263
+msgid "Series collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:268
+msgid "Collections of type Wishlist"
+msgstr ""
+
+#: ../root/statistics/stats.js:273
+msgid "Work collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:278
+msgid "Pieces of Cover Art"
+msgstr ""
+
+#: ../root/statistics/stats.js:294
+msgid "Applied edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:299
+msgid "Cancelled edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:304
+msgid "Error edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:309
+msgid "Evalnochange Edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:314
+msgid "Edits that have failed dependency checks"
+msgstr ""
+
+#: ../root/statistics/stats.js:319
+msgid "Edits that have failed prerequisite checks"
+msgstr ""
+
+#: ../root/statistics/stats.js:324
+msgid "Edits that have been voted down"
+msgstr ""
+
+#: ../root/statistics/stats.js:329
+msgid "Open Edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:335
+msgid "Edits per day"
+msgstr ""
+
+#: ../root/statistics/stats.js:340
+msgid "Edits per week"
+msgstr ""
+
+#: ../root/statistics/stats.js:346
+msgid "Editors (all)"
+msgstr ""
+
+#: ../root/statistics/stats.js:351
+msgid "Editors who edited or voted in the last week"
+msgstr ""
+
+#: ../root/statistics/stats.js:357
+msgid "Editors (deleted)"
+msgstr ""
+
+#: ../root/statistics/stats.js:362
+msgid "Editors who submitted edits in the last week"
+msgstr ""
+
+#: ../root/statistics/stats.js:368
+msgid "Editors (current)"
+msgstr ""
+
+#: ../root/statistics/stats.js:374
+msgid "Editors (current) who have ever been active"
+msgstr ""
+
+#: ../root/statistics/stats.js:379
+msgid "Editors who have registered applications"
+msgstr ""
+
+#: ../root/statistics/stats.js:384
+msgid "Editors who use collections"
+msgstr ""
+
+#: ../root/statistics/stats.js:389
+msgid "Editors who have made edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:394
+msgid "Editors who have written edit notes"
+msgstr ""
+
+#: ../root/statistics/stats.js:399
+msgid "Editors who have added ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:404
+msgid "Editors who use subscriptions"
+msgstr ""
+
+#: ../root/statistics/stats.js:409
+msgid "Editors who have added tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:414
+msgid "Editors who have voted on edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:419
+msgid "Editors who have not been active at all"
+msgstr ""
+
+#: ../root/statistics/stats.js:424
+msgid "Editors who have only validated their email"
+msgstr ""
+
+#: ../root/statistics/stats.js:429
+msgid "Editors who voted in the last week"
+msgstr ""
+
+#: ../root/statistics/stats.js:439
+msgid "Events with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:444
+msgid "Events with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:459
+msgid "Instruments with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:469
+msgid "Artist IPIs"
+msgstr ""
+
+#: ../root/statistics/stats.js:474
+msgid "Label IPIs"
+msgstr ""
+
+#: ../root/statistics/stats.js:484
+msgid "Artist ISNIs"
+msgstr ""
+
+#: ../root/statistics/stats.js:489
+msgid "Label ISNIs"
+msgstr ""
+
+#: ../root/statistics/stats.js:494
+msgid "ISRCs (unique)"
+msgstr ""
+
+#: ../root/statistics/stats.js:499
+msgid "ISRCs (all uses)"
+msgstr ""
+
+#: ../root/statistics/stats.js:504
+msgid "ISWCs (unique)"
+msgstr ""
+
+#: ../root/statistics/stats.js:509
+msgid "ISWCs (all uses)"
+msgstr ""
+
+#: ../root/statistics/stats.js:519
+msgid "Labels with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:524
+msgid "Labels with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:539
+msgid "Mediums with no format set"
+msgstr ""
+
+#: ../root/statistics/stats.js:544
+msgid "Mediums with Disc IDs"
+msgstr ""
+
+#: ../root/statistics/stats.js:554
+msgid "Places with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:559
+msgid "Places with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:564
+msgid "Default (Normal + Unknown) Data Quality"
+msgstr ""
+
+#: ../root/statistics/stats.js:589
+msgid "Entities with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:594
+msgid "Artists with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:599
+msgid "Labels with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:604
+msgid "Places with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:609
+msgid "Ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:614
+msgid "Artist ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:619
+msgid "Label ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:624
+msgid "Place ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:629
+msgid "Recording ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:634
+msgid "Release group ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:639
+msgid "Work ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:644
+msgid "Recordings with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:649
+msgid "Release groups with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:654
+msgid "Works with ratings"
+msgstr ""
+
+#: ../root/statistics/stats.js:664
+msgid "Recordings with ISRCs"
+msgstr ""
+
+#: ../root/statistics/stats.js:669
+msgid "Standalone recordings"
+msgstr ""
+
+#: ../root/statistics/stats.js:679
+msgid "Releases with no country set"
+msgstr ""
+
+#: ../root/statistics/stats.js:684
+msgid "Releases with CAA Cover Art"
+msgstr ""
+
+#: ../root/statistics/stats.js:689
+msgid "Releases with No Cover Art"
+msgstr ""
+
+#: ../root/statistics/stats.js:694
+msgid "Releases with a medium with no format set"
+msgstr ""
+
+#: ../root/statistics/stats.js:699
+msgid "Releases with a medium with no format set that have cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:704
+msgid "Releases with Cover Art"
+msgstr ""
+
+#: ../root/statistics/stats.js:709
+msgid "Releases with Disc IDs"
+msgstr ""
+
+#: ../root/statistics/stats.js:714
+msgid "Releases with no language set"
+msgstr ""
+
+#: ../root/statistics/stats.js:719
+msgid "Releases not credited to Various Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:724
+msgid "Releases with no packaging set"
+msgstr ""
+
+#: ../root/statistics/stats.js:729
+msgid "Releases with no script set"
+msgstr ""
+
+#: ../root/statistics/stats.js:734
+msgid "Releases with no status set"
+msgstr ""
+
+#: ../root/statistics/stats.js:739
+msgid "Releases with no status set that have cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:744
+msgid "Releases in groups with no type set that have cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:749
+msgid "Releases credited to Various Artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:759
+msgid "Release groups with automatically inferred cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:764
+msgid "Release groups with user-selected cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:769
+msgid "Release groups with no primary type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:774
+msgid "Release groups with no secondary type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:784
+msgid "Series with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:789
+msgid "Unique tag names"
+msgstr ""
+
+#: ../root/statistics/stats.js:794
+msgid "Votes for/against tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:799
+msgid "Votes for/against area tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:804
+msgid "Votes for/against artist tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:809
+msgid "Votes for/against instrument tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:814
+msgid "Votes for/against label tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:819
+msgid "Votes for/against recording tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:824
+msgid "Votes for/against release tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:829
+msgid "Votes for/against release group tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:834
+msgid "Votes for/against series tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:839
+msgid "Votes for/against work tags"
+msgstr ""
+
+#: ../root/statistics/stats.js:844
+msgid "Tracks"
+msgstr ""
+
+#: ../root/statistics/stats.js:865
+msgid "Abstentions"
+msgstr ""
+
+#: ../root/statistics/stats.js:870
+msgid "Approvals"
+msgstr ""
+
+#: ../root/statistics/stats.js:875
+msgid "No Votes"
+msgstr ""
+
+#: ../root/statistics/stats.js:881
+msgid "Votes per day"
+msgstr ""
+
+#: ../root/statistics/stats.js:886
+msgid "Votes per week"
+msgstr ""
+
+#: ../root/statistics/stats.js:891
+msgid "Yes Votes"
+msgstr ""
+
+#: ../root/statistics/stats.js:901
+msgid "Works with no attributes"
+msgstr ""
+
+#: ../root/statistics/stats.js:906
+msgid "Works with ISWCs"
+msgstr ""
+
+#: ../root/statistics/stats.js:911
+msgid "Works with no language set"
+msgstr ""
+
+#: ../root/statistics/stats.js:916
+msgid "Works with no type set"
+msgstr ""
+
+#: ../root/statistics/stats.js:918
+msgid "/day"
+msgstr ""
+
+#: ../root/statistics/stats.js:928
+msgid "Releases with 1 Disc ID"
+msgid_plural "Releases with {n} Disc IDs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/stats.js:939
+msgid "Mediums with 1 Disc ID"
+msgid_plural "Mediums with {n} Disc IDs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/stats.js:950
+msgid "Recordings with 1 Release"
+msgid_plural "Recordings with {n} Releases"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/stats.js:961
+msgid "Release Groups with 1 Release"
+msgid_plural "Release Groups with {n} Releases"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../root/statistics/stats.js:1014
+msgid "{type} areas"
+msgstr ""
+
+#: ../root/statistics/stats.js:1026
+msgid "{country} artists"
+msgstr ""
+
+#: ../root/statistics/stats.js:1032
+msgid "{country} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1038
+msgid "{country} labels"
+msgstr ""
+
+#: ../root/statistics/stats.js:1044
+msgid "{country} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1050
+msgid "{country} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1061
+msgid "{type} edits"
+msgstr ""
+
+#: ../root/statistics/stats.js:1072
+msgid "{type} events"
+msgstr ""
+
+#: ../root/statistics/stats.js:1083
+msgid "{name} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1089
+msgid "{name} mediums"
+msgstr ""
+
+#: ../root/statistics/stats.js:1096
+msgid "Releases with a medium of format “{format}” that have cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:1109
+msgid "{type} instruments"
+msgstr ""
+
+#: ../root/statistics/stats.js:1120
+msgid "{type} labels"
+msgstr ""
+
+#: ../root/statistics/stats.js:1131
+msgid "{language} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1137
+msgid "{language} works"
+msgstr ""
+
+#: ../root/statistics/stats.js:1149
+msgid "Releases with packaging “{packaging}”"
+msgstr ""
+
+#: ../root/statistics/stats.js:1162
+msgid "{type} places"
+msgstr ""
+
+#: ../root/statistics/stats.js:1170
+msgid "{first_entity_type}-{second_entity_type} Relationships"
+msgstr ""
+
+#: ../root/statistics/stats.js:1189
+msgid ""
+"{first_entity_type_name}-{second_entity_type_name} "
+"“{relationship_type_name}” relationships"
+msgstr ""
+
+#: ../root/statistics/stats.js:1205
+msgid ""
+"{first_entity_type_name}-{second_entity_type_name} "
+"“{relationship_type_name}” relationships including child relationship types"
+msgstr ""
+
+#: ../root/statistics/stats.js:1228 ../root/statistics/stats.js:1248
+msgid "{type} release groups"
+msgstr ""
+
+#: ../root/statistics/stats.js:1235
+msgid "Releases in groups of type “{type}” with cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:1259
+msgid "{script} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1270
+msgid "{type} series"
+msgstr ""
+
+#: ../root/statistics/stats.js:1281
+msgid "{status} releases"
+msgstr ""
+
+#: ../root/statistics/stats.js:1288
+msgid "Releases of status “{status}” with cover art"
+msgstr ""
+
+#: ../root/statistics/stats.js:1305
+msgid "Works with attribute “{attribute}”"
+msgstr ""
+
+#: ../root/statistics/stats.js:1318
+msgid "{type} works"
+msgstr ""
+
+#: ../root/statistics/utilities.js:40
+msgid "See on timeline"
+msgstr ""
diff --git a/root/admin/EditUser.js b/root/admin/EditUser.js
index 5c5dee1f1a3..bb039790f2e 100644
--- a/root/admin/EditUser.js
+++ b/root/admin/EditUser.js
@@ -174,7 +174,7 @@ const EditUser = ({
diff --git a/root/admin/wikidoc/CreateWikiDoc.js b/root/admin/wikidoc/CreateWikiDoc.js
index 48fa86f36f3..1871ff9291c 100644
--- a/root/admin/wikidoc/CreateWikiDoc.js
+++ b/root/admin/wikidoc/CreateWikiDoc.js
@@ -45,7 +45,7 @@ const CreateWikiDoc = ({
uncontrolled
/>
-
+
diff --git a/root/annotation/EditAnnotation.js b/root/annotation/EditAnnotation.js
index a9100397bbe..e425071a7a3 100644
--- a/root/annotation/EditAnnotation.js
+++ b/root/annotation/EditAnnotation.js
@@ -59,7 +59,7 @@ const EditAnnotation = ({
{showPreview ? (
<>
- {l('Preview:')}
+ {addColonText(lp('Preview', 'header'))}
- {l('Preview')}
+ {lp('Preview', 'button')}
diff --git a/root/area/edit_form.tt b/root/area/edit_form.tt
index 24e27b99db7..52192842ffa 100644
--- a/root/area/edit_form.tt
+++ b/root/area/edit_form.tt
@@ -9,9 +9,9 @@
[%- form_row_name_with_guesscase(r) -%]
[%- form_row_text_long(r, 'comment', add_colon(l('Disambiguation'))) -%]
[%- form_row_select(r, 'type_id', l('Type:')) -%]
- [%- form_row_text_list(r, 'iso_3166_1', l('ISO 3166-1:'), l('ISO 3166-1')) -%]
- [%- form_row_text_list(r, 'iso_3166_2', l('ISO 3166-2:'), l('ISO 3166-2')) -%]
- [%- form_row_text_list(r, 'iso_3166_3', l('ISO 3166-3:'), l('ISO 3166-3')) -%]
+ [%- form_row_text_list(r, 'iso_3166_1', add_colon(l('ISO 3166-1')), l('ISO 3166-1')) -%]
+ [%- form_row_text_list(r, 'iso_3166_2', add_colon(l('ISO 3166-2')), l('ISO 3166-2')) -%]
+ [%- form_row_text_list(r, 'iso_3166_3', add_colon(l('ISO 3166-3')), l('ISO 3166-3')) -%]
[% date_range_fieldset(r, 'area', l('This area has ended.')) %]
diff --git a/root/artist/ArtistMerge.js b/root/artist/ArtistMerge.js
index 2d452de6b61..a389d2d7cec 100644
--- a/root/artist/ArtistMerge.js
+++ b/root/artist/ArtistMerge.js
@@ -48,7 +48,7 @@ const ArtistMerge = ({
{l(
`You should only use the checkbox above
- to fix errors (e.g. typos).`,
+ to fix errors (such as typos).`,
)}
diff --git a/root/artist/edit_form.tt b/root/artist/edit_form.tt
index 053fc45a8c7..f4bb5f675e4 100644
--- a/root/artist/edit_form.tt
+++ b/root/artist/edit_form.tt
@@ -14,10 +14,10 @@
[%- form_row_text_long(r, 'comment', add_colon(l('Disambiguation'))) -%]
[%- disambiguation_error() -%]
[%- form_row_select(r, 'type_id', l('Type:')) -%]
- [%- form_row_select(r, 'gender_id', l('Gender:')) -%]
+ [%- form_row_select(r, 'gender_id', add_colon(l('Gender'))) -%]
[% WRAPPER form_row %]
[% area_field = form.field('area.name') %]
-
+
[% React.embed(c, 'static/scripts/common/components/SearchIcon') %]
[% r.hidden(form.field('area').field('gid'), { class => 'gid' }) %]
@@ -26,8 +26,8 @@
[% field_errors(r.form, 'area.name') %]
[% END %]
- [%- form_row_text_list(r, 'ipi_codes', l('IPI codes:'), l('IPI code')) -%]
- [%- form_row_text_list(r, 'isni_codes', l('ISNI codes:'), l('ISNI code')) -%]
+ [%- form_row_text_list(r, 'ipi_codes', add_colon(l('IPI codes')), l('IPI code')) -%]
+ [%- form_row_text_list(r, 'isni_codes', add_colon(l('ISNI codes')), l('ISNI code')) -%]